/* flip.css */
.perspective {
  perspective: 1000px;
}

.flip-container {
  position: relative;
}

.flip-inner {
  transition: transform 0.6s;
  transform-style: preserve-3d;
  position: relative;
  width: 100%;
  height: 100%;
}

.flip-container:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 0.5rem;
  overflow: hidden;
}

.flip-back {
  transform: rotateY(180deg);
}
/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::-moz-selection {
	background: transparent;
}
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
	}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
	}

.leaflet-container img.leaflet-tile {
	/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
	mix-blend-mode: plus-lighter;
}

.leaflet-container.leaflet-touch-zoom {
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	transform-origin: 0 0;
	}
svg.leaflet-zoom-animated {
	will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
	transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline-offset: 1px;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(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;
	box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;
	transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-interactive {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

/* Printing */

@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		}
	}
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}/*
! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

button,
select {
  text-transform: none;
}

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

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

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

:-moz-focusring {
  outline: auto;
}

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

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

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

summary {
  display: list-item;
}

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

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

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

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

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

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

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

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

/*
Set the default cursor for buttons.
*/

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

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

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

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

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

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

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

@property --motion-bounce {
  syntax: "*";
  inherits: false;
  initial-value: linear(0, 0.004, 0.016, 0.035, 0.063, 0.098, 0.141 13.6%, 0.25, 0.391, 0.563, 0.765,1, 0.891 40.9%, 0.848, 0.813, 0.785, 0.766, 0.754, 0.75, 0.754, 0.766, 0.785,0.813, 0.848, 0.891 68.2%, 1 72.7%, 0.973, 0.953, 0.941, 0.938, 0.941, 0.953,0.973, 1, 0.988, 0.984, 0.988, 1);
}

@property --motion-spring-smooth {
  syntax: "*";
  inherits: false;
  initial-value: linear(0, 0.001 0.44%, 0.0045 0.94%, 0.0195 2.03%, 0.0446 3.19%, 0.0811 4.5%, 0.1598 6.82%, 0.3685 12.34%, 0.4693 15.17%, 0.5663, 0.6498 21.27%, 0.7215 24.39%, 0.7532 25.98%, 0.7829 27.65%, 0.8105, 0.8349 31.14%, 0.8573 32.95%, 0.8776 34.84%, 0.8964 36.87%, 0.9136 39.05%, 0.929 41.37%, 0.9421 43.77%, 0.9537 46.38%, 0.9636 49.14%, 0.9789 55.31%, 0.9888 62.35%, 0.9949 71.06%, 0.9982 82.52%, 0.9997 99.94%);
}

@property --motion-spring-snappy {
  syntax: "*";
  inherits: false;
  initial-value: linear(0, 0.0014, 0.0053 1.02%, 0.0126, 0.0227 2.18%, 0.0517 3.41%, 0.094 4.79%, 0.1865 7.26%, 0.4182 12.77%, 0.5246 15.46%, 0.6249, 0.7112, 0.7831 23.95%, 0.8146 25.4%, 0.844, 0.8699 28.45%, 0.8935, 0.9139 31.64%, 0.932, 0.9473, 0.9601 36.65%, 0.9714 38.47%, 0.9808 40.35%, 0.9948 44.49%, 1.0031 49.43%, 1.0057 53.35%, 1.0063 58.14%, 1.0014 80.78%, 1.0001 99.94%);
}

@property --motion-spring-bouncy {
  syntax: "*";
  inherits: false;
  initial-value: linear(0, 0.0018, 0.0069, 0.0151 1.74%, 0.0277 2.4%, 0.062 3.7%, 0.1115 5.15%, 0.2211 7.77%, 0.4778 13.21%, 0.5912 15.75%, 0.6987 18.44%, 0.7862 20.98%, 0.861 23.59%, 0.8926, 0.9205, 0.945 27.51%, 0.9671 28.89%, 0.9868, 1.003 31.79%, 1.0224 34.11%, 1.0358 36.58%, 1.0436 39.27%, 1.046 42.31%, 1.0446 44.71%, 1.0406 47.47%, 1.0118 61.84%, 1.0027 69.53%, 0.9981 80.49%, 0.9991 99.94%);
}

@property --motion-spring-bouncier {
  syntax: "*";
  inherits: false;
  initial-value: linear(0, 0.0023, 0.0088, 0.0194 1.59%, 0.035 2.17%, 0.078 3.33%, 0.1415 4.64%, 0.2054 5.75%, 0.2821 6.95%, 0.5912 11.45%, 0.7205 13.43%, 0.8393 15.45%, 0.936 17.39%, 0.9778, 1.015, 1.0477, 1.0759, 1.0998 22.22%, 1.1203, 1.1364, 1.1484 25.26%, 1.1586 26.61%, 1.1629 28.06%, 1.1613 29.56%, 1.1537 31.2%, 1.1434 32.6%, 1.1288 34.19%, 1.0508 41.29%, 1.0174 44.87%, 1.0025 46.89%, 0.9911 48.87%, 0.9826 50.9%, 0.9769 53.03%, 0.9735 56.02%, 0.9748 59.45%, 0.9964 72.64%, 1.0031 79.69%, 1.0042 86.83%, 1.0008 99.97%);
}

@property --motion-spring-bounciest {
  syntax: "*";
  inherits: false;
  initial-value: linear(0, 0.0032, 0.0131, 0.0294, 0.0524, 0.0824, 0.1192 1.54%, 0.2134 2.11%, 0.3102 2.59%, 0.4297 3.13%, 0.8732 4.95%, 1.0373, 1.1827 6.36%, 1.2972 7.01%, 1.3444, 1.3859, 1.4215, 1.4504, 1.4735, 1.4908, 1.5024, 1.5084 9.5%, 1.5091, 1.5061, 1.4993, 1.4886, 1.4745, 1.4565 11.11%, 1.4082 11.7%, 1.3585 12.2%, 1.295 12.77%, 1.0623 14.64%, 0.9773, 0.9031 16.08%, 0.8449 16.73%, 0.8014, 0.7701 17.95%, 0.7587, 0.7501, 0.7443, 0.7412 19.16%, 0.7421 19.68%, 0.7508 20.21%, 0.7672 20.77%, 0.7917 21.37%, 0.8169 21.87%, 0.8492 22.43%, 0.9681 24.32%, 1.0114, 1.0492 25.75%, 1.0789 26.41%, 1.1008, 1.1167, 1.1271, 1.1317 28.81%, 1.1314, 1.1271 29.87%, 1.1189 30.43%, 1.1063 31.03%, 1.0769 32.11%, 0.9941 34.72%, 0.9748 35.43%, 0.9597 36.09%, 0.9487, 0.9407, 0.9355, 0.933 38.46%, 0.9344 39.38%, 0.9421 40.38%, 0.9566 41.5%, 0.9989 44.12%, 1.0161 45.37%, 1.029 46.75%, 1.0341 48.1%, 1.0335 49.04%, 1.0295 50.05%, 1.0221 51.18%, 0.992 55.02%, 0.9854 56.38%, 0.9827 57.72%, 0.985 59.73%, 1.004 64.67%, 1.0088 67.34%, 1.0076 69.42%, 0.9981 74.28%, 0.9956 76.85%, 0.9961 79.06%, 1.0023 86.46%, 0.999 95.22%, 0.9994 100%);
}

@property --motion-origin-scale-x {
  syntax: "*";
  inherits: false;
  initial-value: 100%;
}

@property --motion-origin-scale-y {
  syntax: "*";
  inherits: false;
  initial-value: 100%;
}

@property --motion-origin-translate-x {
  syntax: "*";
  inherits: false;
  initial-value: 0%;
}

@property --motion-origin-translate-y {
  syntax: "*";
  inherits: false;
  initial-value: 0%;
}

@property --motion-origin-rotate {
  syntax: "*";
  inherits: false;
  initial-value: 0deg;
}

@property --motion-origin-blur {
  syntax: "*";
  inherits: false;
  initial-value: 0px;
}

@property --motion-origin-grayscale {
  syntax: "*";
  inherits: false;
  initial-value: 0%;
}

@property --motion-origin-opacity {
  syntax: "*";
  inherits: false;
  initial-value: 100%;
}

@property --motion-origin-background-color {
  syntax: "*";
  inherits: false;
}

@property --motion-origin-text-color {
  syntax: "*";
  inherits: false;
}

@property --motion-end-scale-x {
  syntax: "*";
  inherits: false;
  initial-value: 100%;
}

@property --motion-end-scale-y {
  syntax: "*";
  inherits: false;
  initial-value: 100%;
}

@property --motion-end-translate-x {
  syntax: "*";
  inherits: false;
  initial-value: 0%;
}

@property --motion-end-translate-y {
  syntax: "*";
  inherits: false;
  initial-value: 0%;
}

@property --motion-end-rotate {
  syntax: "*";
  inherits: false;
  initial-value: 0deg;
}

@property --motion-end-blur {
  syntax: "*";
  inherits: false;
  initial-value: 0px;
}

@property --motion-end-grayscale {
  syntax: "*";
  inherits: false;
  initial-value: 0%;
}

@property --motion-end-opacity {
  syntax: "*";
  inherits: false;
  initial-value: 100%;
}

@property --motion-end-background-color {
  syntax: "*";
  inherits: false;
}

@property --motion-end-text-color {
  syntax: "*";
  inherits: false;
}

@property --motion-loop-scale-x {
  syntax: "*";
  inherits: false;
  initial-value: 100%;
}

@property --motion-loop-scale-y {
  syntax: "*";
  inherits: false;
  initial-value: 100%;
}

@property --motion-loop-translate-x {
  syntax: "*";
  inherits: false;
  initial-value: 0%;
}

@property --motion-loop-translate-y {
  syntax: "*";
  inherits: false;
  initial-value: 0%;
}

@property --motion-loop-rotate {
  syntax: "*";
  inherits: false;
  initial-value: 0deg;
}

@property --motion-loop-blur {
  syntax: "*";
  inherits: false;
  initial-value: 0px;
}

@property --motion-loop-grayscale {
  syntax: "*";
  inherits: false;
  initial-value: 0%;
}

@property --motion-loop-opacity {
  syntax: "*";
  inherits: false;
  initial-value: 100%;
}

@property --motion-loop-background-color {
  syntax: "*";
  inherits: false;
}

@property --motion-loop-text-color {
  syntax: "*";
  inherits: false;
}

@property --motion-duration {
  syntax: "*";
  inherits: false;
  initial-value: 700ms;
}

@property --motion-timing {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(.165, .84, .44, 1);
}

@property --motion-perceptual-duration-multiplier {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}

@property --motion-delay {
  syntax: "*";
  inherits: false;
  initial-value: 0ms;
}

@property --motion-loop-count {
  syntax: "*";
  inherits: false;
  initial-value: infinite;
}

@property --motion-scale-in-animation {
  syntax: "*";
  inherits: false;
  initial-value: none;
}

@property --motion-translate-in-animation {
  syntax: "*";
  inherits: false;
  initial-value: none;
}

@property --motion-rotate-in-animation {
  syntax: "*";
  inherits: false;
  initial-value: none;
}

@property --motion-filter-in-animation {
  syntax: "*";
  inherits: false;
  initial-value: none;
}

@property --motion-opacity-in-animation {
  syntax: "*";
  inherits: false;
  initial-value: none;
}

@property --motion-background-color-in-animation {
  syntax: "*";
  inherits: false;
  initial-value: none;
}

@property --motion-text-color-in-animation {
  syntax: "*";
  inherits: false;
  initial-value: none;
}

@property --motion-scale-out-animation {
  syntax: "*";
  inherits: false;
  initial-value: none;
}

@property --motion-translate-out-animation {
  syntax: "*";
  inherits: false;
  initial-value: none;
}

@property --motion-rotate-out-animation {
  syntax: "*";
  inherits: false;
  initial-value: none;
}

@property --motion-filter-out-animation {
  syntax: "*";
  inherits: false;
  initial-value: none;
}

@property --motion-opacity-out-animation {
  syntax: "*";
  inherits: false;
  initial-value: none;
}

@property --motion-background-color-out-animation {
  syntax: "*";
  inherits: false;
  initial-value: none;
}

@property --motion-text-color-out-animation {
  syntax: "*";
  inherits: false;
  initial-value: none;
}

@property --motion-scale-loop-animation {
  syntax: "*";
  inherits: false;
  initial-value: none;
}

@property --motion-translate-loop-animation {
  syntax: "*";
  inherits: false;
  initial-value: none;
}

@property --motion-rotate-loop-animation {
  syntax: "*";
  inherits: false;
  initial-value: none;
}

@property --motion-filter-loop-animation {
  syntax: "*";
  inherits: false;
  initial-value: none;
}

@property --motion-opacity-loop-animation {
  syntax: "*";
  inherits: false;
  initial-value: none;
}

@property --motion-background-color-loop-animation {
  syntax: "*";
  inherits: false;
  initial-value: none;
}

@property --motion-text-color-loop-animation {
  syntax: "*";
  inherits: false;
  initial-value: none;
}

@media screen and (prefers-reduced-motion: no-preference) {

  @keyframes motion-scale-in {

    0% {
      scale: var(--motion-origin-scale-x) var(--motion-origin-scale-y);
    }

    100% {
      scale: 1 1;
    }
  }

  @keyframes motion-scale-out {

    0% {
      scale: 1 1;
    }

    100% {
      scale: var(--motion-end-scale-x) var(--motion-end-scale-y);
    }
  }

  @keyframes motion-scale-loop-mirror {

    0%, 100% {
      scale: 1 1;
    }

    50% {
      scale: var(--motion-loop-scale-x) var(--motion-loop-scale-y);
    }
  }

  @keyframes motion-scale-loop-reset {

    0% {
      scale: 1 1;
    }

    100% {
      scale: var(--motion-loop-scale-x) var(--motion-loop-scale-y);
    }
  }

  @keyframes motion-translate-in {

    0% {
      translate: var(--motion-origin-translate-x) var(--motion-origin-translate-y);
    }

    100% {
      translate: 0 0;
    }
  }

  @keyframes motion-translate-out {

    0% {
      translate: 0 0;
    }

    100% {
      translate: var(--motion-end-translate-x) var(--motion-end-translate-y);
    }
  }

  @keyframes motion-translate-loop-mirror {

    0%, 100% {
      translate: 0 0;
    }

    50% {
      translate: var(--motion-loop-translate-x) var(--motion-loop-translate-y);
    }
  }

  @keyframes motion-translate-loop-reset {

    0% {
      translate: 0 0;
    }

    100% {
      translate: var(--motion-loop-translate-x) var(--motion-loop-translate-y);
    }
  }

  @keyframes motion-rotate-in {

    0% {
      rotate: var(--motion-origin-rotate);
    }

    100% {
      rotate: 0;
    }
  }

  @keyframes motion-rotate-out {

    0% {
      rotate: 0;
    }

    100% {
      rotate: var(--motion-end-rotate);
    }
  }

  @keyframes motion-rotate-loop-mirror {

    0%, 100% {
      rotate: 0deg;
    }

    50% {
      rotate: var(--motion-loop-rotate);
    }
  }

  @keyframes motion-rotate-loop-reset {

    0% {}

    100% {
      rotate: var(--motion-loop-rotate);
    }
  }
}

@keyframes motion-filter-in {

  0% {
    filter: blur(var(--motion-origin-blur)) grayscale(var(--motion-origin-grayscale));
  }

  100% {
    filter: blur(0) grayscale(0);
  }
}

@keyframes motion-filter-out {

  0% {
    filter: blur(0) grayscale(0);
  }

  100% {
    filter: blur(var(--motion-end-blur)) grayscale(var(--motion-end-grayscale));
  }
}

@keyframes motion-filter-loop-mirror {

  0%, 100% {
    filter: blur(0) grayscale(0);
  }

  50% {
    filter: blur(var(--motion-loop-blur)) grayscale(var(--motion-loop-grayscale));
  }
}

@keyframes motion-filter-loop-reset {

  0% {
    filter: blur(0) grayscale(0);
  }

  100% {
    filter: blur(var(--motion-loop-blur)) grayscale(var(--motion-loop-grayscale));
  }
}

@keyframes motion-opacity-in {

  0% {
    opacity: var(--motion-origin-opacity);
  }
}

@keyframes motion-opacity-out {

  100% {
    opacity: var(--motion-end-opacity);
  }
}

@keyframes motion-opacity-loop-mirror {

  0%, 100% {}

  50% {
    opacity: var(--motion-loop-opacity);
  }
}

@keyframes motion-opacity-loop-reset {

  0% {}

  100% {
    opacity: var(--motion-loop-opacity);
  }
}

@keyframes motion-background-color-in {

  0% {
    background-color: var(--motion-origin-background-color);
  }
}

@keyframes motion-background-color-out {

  100% {
    background-color: var(--motion-end-background-color);
  }
}

@keyframes motion-background-color-loop-mirror {

  0%, 100% {}

  50% {
    background-color: var(--motion-loop-background-color);
  }
}

@keyframes motion-background-color-loop-reset {

  0% {}

  100% {
    background-color: var(--motion-loop-background-color);
  }
}

@keyframes motion-text-color-in {

  0% {
    color: var(--motion-origin-text-color);
  }
}

@keyframes motion-text-color-out {

  100% {
    color: var(--motion-end-text-color);
  }
}

@keyframes motion-text-color-loop-mirror {

  0%, 100% {}

  50% {
    color: var(--motion-loop-text-color);
  }
}

@keyframes motion-text-color-loop-reset {

  0% {}

  100% {
    color: var(--motion-loop-text-color);
  }
}
  :root {
    --background: #F9FAFB;
    --foreground: rgba(10, 10, 10, 1);
    --card: rgba(255, 255, 255, 1);
    --card-foreground: rgba(10, 10, 10, 1);
    --popover: rgba(255, 255, 255, 1);
    --popover-foreground: rgba(10, 10, 10, 1);
    --primary: #1F2937;
    --primary-foreground: rgb(255, 255, 255);
    --secondary: #4F46E5;
    --secondary-foreground: rgba(10, 10, 10, 1);
    --muted: rgba(240, 240, 240, 1);
    --muted-foreground: rgba(100, 100, 100, 1);
    --accent: #3b82f6;
    ;
    --accent-foreground: #1F2937;
    --destructive: rgba(220, 38, 38, 1);
    --destructive-foreground: rgba(255, 255, 255, 1);
    --border: rgba(220, 220, 220, 1);
    --input: rgba(220, 220, 220, 1);
    --ring: rgba(200, 200, 200, 1);
    --chart-1: rgba(51, 102, 255, 1);
    --chart-2: rgba(51, 204, 153, 1);
    --chart-3: rgba(255, 170, 51, 1);
    --chart-4: rgba(204, 102, 255, 1);
    --chart-5: rgba(255, 51, 102, 1);
    --transperty-background: rgba(0, 0, 0, 0.08)
  }

  .dark {
    --background: rgba(15, 15, 15, 1);
    /* TRUE DARK */
    --foreground: rgba(245, 245, 245, 1);
    --card: rgba(24, 24, 24, 1);
    --card-foreground: rgba(245, 245, 245, 1);
    --popover: rgba(24, 24, 24, 1);
    --popover-foreground: rgba(245, 245, 245, 1);
    --primary: rgba(245, 245, 245, 1);
    --primary-foreground: rgba(0, 0, 0, 1);
    --secondary: rgba(38, 38, 38, 1);
    --secondary-foreground: rgba(245, 245, 245, 1);
    --muted: rgba(38, 38, 38, 1);
    --muted-foreground: rgba(163, 163, 163, 1);
    --accent: rgba(38, 38, 38, 1);
    --accent-foreground: rgba(245, 245, 245, 1);
    --destructive: rgba(163, 39, 39, 1);
    --destructive-foreground: rgba(255, 255, 255, 1);
    --border: rgba(55, 55, 55, 1);
    --input: rgba(55, 55, 55, 1);
    --ring: rgba(80, 80, 80, 1);
    --chart-1: rgba(51, 102, 255, 1);
    --chart-2: rgba(51, 204, 153, 1);
    --chart-3: rgba(255, 170, 51, 1);
    --chart-4: rgba(204, 102, 255, 1);
    --chart-5: rgba(255, 51, 102, 1);
    --transperty-background: rgba(0, 0, 0, 0.2)
  }
  * {
  border-color: var(--border);
}

  body {
  background-color: var(--background);
  color: var(--foreground);
}
.\!container {
  width: 100% !important;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {

  .\!container {
    max-width: 640px !important;
  }

  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  .\!container {
    max-width: 768px !important;
  }

  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  .\!container {
    max-width: 1024px !important;
  }

  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {

  .\!container {
    max-width: 1280px !important;
  }

  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  .\!container {
    max-width: 1536px !important;
  }

  .container {
    max-width: 1536px;
  }
}
.motion-preset-blur-down-lg {
  --motion-origin-blur: 10px;
  --motion-origin-translate-y: -25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-blur-down-md {
  --motion-origin-blur: 5px;
  --motion-origin-translate-y: -5%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-blur-left-lg {
  --motion-origin-blur: 10px;
  --motion-origin-translate-x: 25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-blur-left-md {
  --motion-origin-blur: 5px;
  --motion-origin-translate-x: 5%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-blur-right-lg {
  --motion-origin-blur: 10px;
  --motion-origin-translate-x: -25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-blur-right-md {
  --motion-origin-blur: 5px;
  --motion-origin-translate-x: -5%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-blur-up-lg {
  --motion-origin-blur: 10px;
  --motion-origin-translate-y: 25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-blur-up-md {
  --motion-origin-blur: 5px;
  --motion-origin-translate-y: 5%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-fade-lg {
  --motion-origin-opacity: 0;
  --motion-duration: 800ms;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-fade-md {
  --motion-origin-opacity: 0;
  --motion-duration: 500ms;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-focus-lg {
  --motion-origin-blur: 10px;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-focus-md {
  --motion-origin-blur: 5px;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-slide-down-left-lg {
  --motion-origin-translate-x: 100%;
  --motion-origin-translate-y: -100%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-slide-down-left-md {
  --motion-origin-translate-x: 25%;
  --motion-origin-translate-y: -25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-slide-down-lg {
  --motion-origin-translate-y: -100%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-slide-down-md {
  --motion-origin-translate-y: -25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-slide-down-right-lg {
  --motion-origin-translate-x: -100%;
  --motion-origin-translate-y: -100%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-slide-down-right-md {
  --motion-origin-translate-x: -25%;
  --motion-origin-translate-y: -25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-slide-left-lg {
  --motion-origin-translate-x: 100%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-slide-left-md {
  --motion-origin-translate-x: 25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-slide-right-lg {
  --motion-origin-translate-x: -100%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-slide-right-md {
  --motion-origin-translate-x: -25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-slide-up-left-lg {
  --motion-origin-translate-x: 100%;
  --motion-origin-translate-y: 100%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-slide-up-left-md {
  --motion-origin-translate-x: 25%;
  --motion-origin-translate-y: 25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-slide-up-lg {
  --motion-origin-translate-y: 100%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-slide-up-md {
  --motion-origin-translate-y: 25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-slide-up-right-lg {
  --motion-origin-translate-x: -100%;
  --motion-origin-translate-y: 100%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-slide-up-right-md {
  --motion-origin-translate-x: -25%;
  --motion-origin-translate-y: 25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
@keyframes RomboConfettiPop {

  0% {
    opacity: 0;
    transform: scale(1);
  }

  33% {
    opacity: 1;
    transform: scale(1.15);
  }

  50% {
    transform: scale(0.975);
  }

  65% {
    transform: scale(1.025);
  }

  80% {
    transform: scale(0.99);
  }

  87% {
    transform: scale(1.01);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes topfetti {

  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }

  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }

  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes bottomfetti {

  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%,70% -10%, 70% 0%;
  }

  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }

  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
.motion-preset-float-lg {
  --motion-loop-translate-y: 150%;
  --motion-translate-timing: var(--motion-spring-bouncier);
  --motion-translate-perceptual-duration-multiplier: 2.035;
  --motion-duration: 2000ms;
  --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-float-md {
  --motion-loop-translate-y: 100%;
  --motion-translate-timing: var(--motion-spring-bouncier);
  --motion-translate-perceptual-duration-multiplier: 2.035;
  --motion-duration: 2000ms;
  --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-oscillate-lg {
  --motion-loop-translate-y: 25%;
  --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
  --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-oscillate-md {
  --motion-loop-translate-y: 15%;
  --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
  --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-pulse-lg {
  --motion-loop-scale-x: 1.5;
  --motion-loop-scale-y: 1.5;
  --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
  --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-pulse-md {
  --motion-loop-scale-x: 1.25;
  --motion-loop-scale-y: 1.25;
  --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
  --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-seesaw-lg {
  --motion-loop-rotate: 12deg;
  --motion-rotate-loop-animation: motion-rotate-loop-mirror calc(var(--motion-rotate-duration, var(--motion-duration)) * var(--motion-rotate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-rotate-timing, var(--motion-timing)) var(--motion-rotate-delay, var(--motion-delay)) both var(--motion-rotate-loop-count, var(--motion-loop-count));
  --motion-rotate-timing: var(--motion-spring-bounciest);
  --motion-rotate-perceptual-duration-multiplier: 5.285;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-seesaw-md {
  --motion-loop-rotate: 6deg;
  --motion-rotate-loop-animation: motion-rotate-loop-mirror calc(var(--motion-rotate-duration, var(--motion-duration)) * var(--motion-rotate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-rotate-timing, var(--motion-timing)) var(--motion-rotate-delay, var(--motion-delay)) both var(--motion-rotate-loop-count, var(--motion-loop-count));
  --motion-rotate-timing: var(--motion-spring-bounciest);
  --motion-rotate-perceptual-duration-multiplier: 5.285;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-stretch-lg {
  --motion-loop-scale-x: 75%;
  --motion-loop-scale-y: 125%;
  --motion-scale-timing: var(--motion-spring-bouncier);
  --motion-scale-perceptual-duration-multiplier: 2.035;
  --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-stretch-md {
  --motion-loop-scale-x: 85%;
  --motion-loop-scale-y: 115%;
  --motion-scale-timing: var(--motion-spring-bouncier);
  --motion-scale-perceptual-duration-multiplier: 2.035;
  --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-wobble-lg {
  --motion-loop-translate-x: 25%;
  --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
  --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-preset-wobble-md {
  --motion-loop-translate-x: 15%;
  --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
  --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.pointer-events-none {
  pointer-events: none;
}
.pointer-events-auto {
  pointer-events: auto;
}
.visible {
  visibility: visible;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.inset-0 {
  inset: 0px;
}
.inset-x-0 {
  left: 0px;
  right: 0px;
}
.inset-y-0 {
  top: 0px;
  bottom: 0px;
}
.-top-4 {
  top: -1rem;
}
.bottom-0 {
  bottom: 0px;
}
.bottom-1 {
  bottom: 0.25rem;
}
.bottom-10 {
  bottom: 2.5rem;
}
.bottom-12 {
  bottom: 3rem;
}
.bottom-14 {
  bottom: 3.5rem;
}
.bottom-2 {
  bottom: 0.5rem;
}
.bottom-3 {
  bottom: 0.75rem;
}
.bottom-4 {
  bottom: 1rem;
}
.bottom-5 {
  bottom: 1.25rem;
}
.bottom-6 {
  bottom: 1.5rem;
}
.bottom-7 {
  bottom: 1.75rem;
}
.bottom-8 {
  bottom: 2rem;
}
.bottom-\[20px\] {
  bottom: 20px;
}
.left-0 {
  left: 0px;
}
.left-1 {
  left: 0.25rem;
}
.left-1\/2 {
  left: 50%;
}
.left-10 {
  left: 2.5rem;
}
.left-12 {
  left: 3rem;
}
.left-14 {
  left: 3.5rem;
}
.left-2 {
  left: 0.5rem;
}
.left-3 {
  left: 0.75rem;
}
.left-4 {
  left: 1rem;
}
.left-5 {
  left: 1.25rem;
}
.left-6 {
  left: 1.5rem;
}
.left-7 {
  left: 1.75rem;
}
.left-8 {
  left: 2rem;
}
.left-\[0\] {
  left: 0;
}
.left-\[50\%\] {
  left: 50%;
}
.right-0 {
  right: 0px;
}
.right-1 {
  right: 0.25rem;
}
.right-10 {
  right: 2.5rem;
}
.right-12 {
  right: 3rem;
}
.right-14 {
  right: 3.5rem;
}
.right-2 {
  right: 0.5rem;
}
.right-3 {
  right: 0.75rem;
}
.right-4 {
  right: 1rem;
}
.right-5 {
  right: 1.25rem;
}
.right-6 {
  right: 1.5rem;
}
.right-7 {
  right: 1.75rem;
}
.right-8 {
  right: 2rem;
}
.top-0 {
  top: 0px;
}
.top-1 {
  top: 0.25rem;
}
.top-1\/2 {
  top: 50%;
}
.top-10 {
  top: 2.5rem;
}
.top-12 {
  top: 3rem;
}
.top-14 {
  top: 3.5rem;
}
.top-2 {
  top: 0.5rem;
}
.top-3 {
  top: 0.75rem;
}
.top-4 {
  top: 1rem;
}
.top-5 {
  top: 1.25rem;
}
.top-6 {
  top: 1.5rem;
}
.top-7 {
  top: 1.75rem;
}
.top-8 {
  top: 2rem;
}
.top-\[-16px\] {
  top: -16px;
}
.top-\[0\] {
  top: 0;
}
.top-\[50\%\] {
  top: 50%;
}
.top-full {
  top: 100%;
}
.z-0 {
  z-index: 0;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-30 {
  z-index: 30;
}
.z-40 {
  z-index: 40;
}
.z-50 {
  z-index: 50;
}
.z-\[100\] {
  z-index: 100;
}
.z-\[11111111\] {
  z-index: 11111111;
}
.z-\[111111\] {
  z-index: 111111;
}
.z-\[111112\] {
  z-index: 111112;
}
.z-\[1111\] {
  z-index: 1111;
}
.z-\[11\] {
  z-index: 11;
}
.z-\[8\] {
  z-index: 8;
}
.col-span-1 {
  grid-column: span 1 / span 1;
}
.col-span-10 {
  grid-column: span 10 / span 10;
}
.col-span-2 {
  grid-column: span 2 / span 2;
}
.col-span-3 {
  grid-column: span 3 / span 3;
}
.col-span-4 {
  grid-column: span 4 / span 4;
}
.col-span-5 {
  grid-column: span 5 / span 5;
}
.col-span-6 {
  grid-column: span 6 / span 6;
}
.col-span-7 {
  grid-column: span 7 / span 7;
}
.col-span-8 {
  grid-column: span 8 / span 8;
}
.col-span-9 {
  grid-column: span 9 / span 9;
}
.col-start-1 {
  grid-column-start: 1;
}
.col-start-10 {
  grid-column-start: 10;
}
.col-start-2 {
  grid-column-start: 2;
}
.col-start-3 {
  grid-column-start: 3;
}
.col-start-4 {
  grid-column-start: 4;
}
.col-start-5 {
  grid-column-start: 5;
}
.col-start-6 {
  grid-column-start: 6;
}
.col-start-7 {
  grid-column-start: 7;
}
.col-start-8 {
  grid-column-start: 8;
}
.col-start-9 {
  grid-column-start: 9;
}
.col-end-1 {
  grid-column-end: 1;
}
.col-end-10 {
  grid-column-end: 10;
}
.col-end-2 {
  grid-column-end: 2;
}
.col-end-3 {
  grid-column-end: 3;
}
.col-end-4 {
  grid-column-end: 4;
}
.col-end-5 {
  grid-column-end: 5;
}
.col-end-6 {
  grid-column-end: 6;
}
.col-end-7 {
  grid-column-end: 7;
}
.col-end-8 {
  grid-column-end: 8;
}
.col-end-9 {
  grid-column-end: 9;
}
.row-span-1 {
  grid-row: span 1 / span 1;
}
.row-span-10 {
  grid-row: span 10 / span 10;
}
.row-span-2 {
  grid-row: span 2 / span 2;
}
.row-span-3 {
  grid-row: span 3 / span 3;
}
.row-span-4 {
  grid-row: span 4 / span 4;
}
.row-span-5 {
  grid-row: span 5 / span 5;
}
.row-span-6 {
  grid-row: span 6 / span 6;
}
.row-span-7 {
  grid-row: span 7 / span 7;
}
.row-span-8 {
  grid-row: span 8 / span 8;
}
.row-span-9 {
  grid-row: span 9 / span 9;
}
.row-start-1 {
  grid-row-start: 1;
}
.row-start-10 {
  grid-row-start: 10;
}
.row-start-2 {
  grid-row-start: 2;
}
.row-start-3 {
  grid-row-start: 3;
}
.row-start-4 {
  grid-row-start: 4;
}
.row-start-5 {
  grid-row-start: 5;
}
.row-start-6 {
  grid-row-start: 6;
}
.row-start-7 {
  grid-row-start: 7;
}
.row-start-8 {
  grid-row-start: 8;
}
.row-start-9 {
  grid-row-start: 9;
}
.row-end-1 {
  grid-row-end: 1;
}
.row-end-10 {
  grid-row-end: 10;
}
.row-end-2 {
  grid-row-end: 2;
}
.row-end-3 {
  grid-row-end: 3;
}
.row-end-4 {
  grid-row-end: 4;
}
.row-end-5 {
  grid-row-end: 5;
}
.row-end-6 {
  grid-row-end: 6;
}
.row-end-7 {
  grid-row-end: 7;
}
.row-end-8 {
  grid-row-end: 8;
}
.row-end-9 {
  grid-row-end: 9;
}
.m-0 {
  margin: 0px;
}
.m-1 {
  margin: 0.25rem;
}
.m-10 {
  margin: 2.5rem;
}
.m-11 {
  margin: 2.75rem;
}
.m-12 {
  margin: 3rem;
}
.m-14 {
  margin: 3.5rem;
}
.m-16 {
  margin: 4rem;
}
.m-2 {
  margin: 0.5rem;
}
.m-20 {
  margin: 5rem;
}
.m-24 {
  margin: 6rem;
}
.m-28 {
  margin: 7rem;
}
.m-3 {
  margin: 0.75rem;
}
.m-32 {
  margin: 8rem;
}
.m-36 {
  margin: 9rem;
}
.m-4 {
  margin: 1rem;
}
.m-40 {
  margin: 10rem;
}
.m-44 {
  margin: 11rem;
}
.m-48 {
  margin: 12rem;
}
.m-5 {
  margin: 1.25rem;
}
.m-52 {
  margin: 13rem;
}
.m-56 {
  margin: 14rem;
}
.m-6 {
  margin: 1.5rem;
}
.m-60 {
  margin: 15rem;
}
.m-64 {
  margin: 16rem;
}
.m-7 {
  margin: 1.75rem;
}
.m-72 {
  margin: 18rem;
}
.m-8 {
  margin: 2rem;
}
.m-80 {
  margin: 20rem;
}
.m-9 {
  margin: 2.25rem;
}
.m-96 {
  margin: 24rem;
}
.-mx-1 {
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}
.mx-0 {
  margin-left: 0px;
  margin-right: 0px;
}
.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.mx-10 {
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}
.mx-11 {
  margin-left: 2.75rem;
  margin-right: 2.75rem;
}
.mx-12 {
  margin-left: 3rem;
  margin-right: 3rem;
}
.mx-14 {
  margin-left: 3.5rem;
  margin-right: 3.5rem;
}
.mx-16 {
  margin-left: 4rem;
  margin-right: 4rem;
}
.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.mx-20 {
  margin-left: 5rem;
  margin-right: 5rem;
}
.mx-24 {
  margin-left: 6rem;
  margin-right: 6rem;
}
.mx-28 {
  margin-left: 7rem;
  margin-right: 7rem;
}
.mx-3 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}
.mx-32 {
  margin-left: 8rem;
  margin-right: 8rem;
}
.mx-36 {
  margin-left: 9rem;
  margin-right: 9rem;
}
.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}
.mx-40 {
  margin-left: 10rem;
  margin-right: 10rem;
}
.mx-44 {
  margin-left: 11rem;
  margin-right: 11rem;
}
.mx-48 {
  margin-left: 12rem;
  margin-right: 12rem;
}
.mx-5 {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}
.mx-52 {
  margin-left: 13rem;
  margin-right: 13rem;
}
.mx-56 {
  margin-left: 14rem;
  margin-right: 14rem;
}
.mx-6 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.mx-60 {
  margin-left: 15rem;
  margin-right: 15rem;
}
.mx-64 {
  margin-left: 16rem;
  margin-right: 16rem;
}
.mx-7 {
  margin-left: 1.75rem;
  margin-right: 1.75rem;
}
.mx-72 {
  margin-left: 18rem;
  margin-right: 18rem;
}
.mx-8 {
  margin-left: 2rem;
  margin-right: 2rem;
}
.mx-80 {
  margin-left: 20rem;
  margin-right: 20rem;
}
.mx-9 {
  margin-left: 2.25rem;
  margin-right: 2.25rem;
}
.mx-96 {
  margin-left: 24rem;
  margin-right: 24rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-0 {
  margin-top: 0px;
  margin-bottom: 0px;
}
.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.my-10 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.my-11 {
  margin-top: 2.75rem;
  margin-bottom: 2.75rem;
}
.my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.my-14 {
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}
.my-16 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-20 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.my-24 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}
.my-28 {
  margin-top: 7rem;
  margin-bottom: 7rem;
}
.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.my-32 {
  margin-top: 8rem;
  margin-bottom: 8rem;
}
.my-36 {
  margin-top: 9rem;
  margin-bottom: 9rem;
}
.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-40 {
  margin-top: 10rem;
  margin-bottom: 10rem;
}
.my-44 {
  margin-top: 11rem;
  margin-bottom: 11rem;
}
.my-48 {
  margin-top: 12rem;
  margin-bottom: 12rem;
}
.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.my-52 {
  margin-top: 13rem;
  margin-bottom: 13rem;
}
.my-56 {
  margin-top: 14rem;
  margin-bottom: 14rem;
}
.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.my-60 {
  margin-top: 15rem;
  margin-bottom: 15rem;
}
.my-64 {
  margin-top: 16rem;
  margin-bottom: 16rem;
}
.my-7 {
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}
.my-72 {
  margin-top: 18rem;
  margin-bottom: 18rem;
}
.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.my-80 {
  margin-top: 20rem;
  margin-bottom: 20rem;
}
.my-9 {
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
}
.my-96 {
  margin-top: 24rem;
  margin-bottom: 24rem;
}
.mb-0 {
  margin-bottom: 0px;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-11 {
  margin-bottom: 2.75rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-14 {
  margin-bottom: 3.5rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-20 {
  margin-bottom: 5rem;
}
.mb-24 {
  margin-bottom: 6rem;
}
.mb-28 {
  margin-bottom: 7rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-32 {
  margin-bottom: 8rem;
}
.mb-36 {
  margin-bottom: 9rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-40 {
  margin-bottom: 10rem;
}
.mb-44 {
  margin-bottom: 11rem;
}
.mb-48 {
  margin-bottom: 12rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-52 {
  margin-bottom: 13rem;
}
.mb-56 {
  margin-bottom: 14rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-60 {
  margin-bottom: 15rem;
}
.mb-64 {
  margin-bottom: 16rem;
}
.mb-7 {
  margin-bottom: 1.75rem;
}
.mb-72 {
  margin-bottom: 18rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-80 {
  margin-bottom: 20rem;
}
.mb-9 {
  margin-bottom: 2.25rem;
}
.mb-96 {
  margin-bottom: 24rem;
}
.ml-0 {
  margin-left: 0px;
}
.ml-1 {
  margin-left: 0.25rem;
}
.ml-10 {
  margin-left: 2.5rem;
}
.ml-11 {
  margin-left: 2.75rem;
}
.ml-12 {
  margin-left: 3rem;
}
.ml-14 {
  margin-left: 3.5rem;
}
.ml-16 {
  margin-left: 4rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-20 {
  margin-left: 5rem;
}
.ml-24 {
  margin-left: 6rem;
}
.ml-28 {
  margin-left: 7rem;
}
.ml-3 {
  margin-left: 0.75rem;
}
.ml-32 {
  margin-left: 8rem;
}
.ml-36 {
  margin-left: 9rem;
}
.ml-4 {
  margin-left: 1rem;
}
.ml-40 {
  margin-left: 10rem;
}
.ml-44 {
  margin-left: 11rem;
}
.ml-48 {
  margin-left: 12rem;
}
.ml-5 {
  margin-left: 1.25rem;
}
.ml-52 {
  margin-left: 13rem;
}
.ml-56 {
  margin-left: 14rem;
}
.ml-6 {
  margin-left: 1.5rem;
}
.ml-60 {
  margin-left: 15rem;
}
.ml-64 {
  margin-left: 16rem;
}
.ml-7 {
  margin-left: 1.75rem;
}
.ml-72 {
  margin-left: 18rem;
}
.ml-8 {
  margin-left: 2rem;
}
.ml-80 {
  margin-left: 20rem;
}
.ml-9 {
  margin-left: 2.25rem;
}
.ml-96 {
  margin-left: 24rem;
}
.ml-auto {
  margin-left: auto;
}
.mr-0 {
  margin-right: 0px;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mr-10 {
  margin-right: 2.5rem;
}
.mr-11 {
  margin-right: 2.75rem;
}
.mr-12 {
  margin-right: 3rem;
}
.mr-14 {
  margin-right: 3.5rem;
}
.mr-16 {
  margin-right: 4rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mr-20 {
  margin-right: 5rem;
}
.mr-24 {
  margin-right: 6rem;
}
.mr-28 {
  margin-right: 7rem;
}
.mr-3 {
  margin-right: 0.75rem;
}
.mr-32 {
  margin-right: 8rem;
}
.mr-36 {
  margin-right: 9rem;
}
.mr-4 {
  margin-right: 1rem;
}
.mr-40 {
  margin-right: 10rem;
}
.mr-44 {
  margin-right: 11rem;
}
.mr-48 {
  margin-right: 12rem;
}
.mr-5 {
  margin-right: 1.25rem;
}
.mr-52 {
  margin-right: 13rem;
}
.mr-56 {
  margin-right: 14rem;
}
.mr-6 {
  margin-right: 1.5rem;
}
.mr-60 {
  margin-right: 15rem;
}
.mr-64 {
  margin-right: 16rem;
}
.mr-7 {
  margin-right: 1.75rem;
}
.mr-72 {
  margin-right: 18rem;
}
.mr-8 {
  margin-right: 2rem;
}
.mr-80 {
  margin-right: 20rem;
}
.mr-9 {
  margin-right: 2.25rem;
}
.mr-96 {
  margin-right: 24rem;
}
.mt-0 {
  margin-top: 0px;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-11 {
  margin-top: 2.75rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-14 {
  margin-top: 3.5rem;
}
.mt-16 {
  margin-top: 4rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-20 {
  margin-top: 5rem;
}
.mt-24 {
  margin-top: 6rem;
}
.mt-28 {
  margin-top: 7rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-32 {
  margin-top: 8rem;
}
.mt-36 {
  margin-top: 9rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-40 {
  margin-top: 10rem;
}
.mt-44 {
  margin-top: 11rem;
}
.mt-48 {
  margin-top: 12rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-52 {
  margin-top: 13rem;
}
.mt-56 {
  margin-top: 14rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-60 {
  margin-top: 15rem;
}
.mt-64 {
  margin-top: 16rem;
}
.mt-7 {
  margin-top: 1.75rem;
}
.mt-72 {
  margin-top: 18rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-80 {
  margin-top: 20rem;
}
.mt-9 {
  margin-top: 2.25rem;
}
.mt-96 {
  margin-top: 24rem;
}
.mt-\[100px\] {
  margin-top: 100px;
}
.mt-auto {
  margin-top: auto;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.inline-table {
  display: inline-table;
}
.grid {
  display: grid;
}
.inline-grid {
  display: inline-grid;
}
.hidden {
  display: none;
}
.aspect-square {
  aspect-ratio: 1 / 1;
}
.h-0 {
  height: 0px;
}
.h-0\.5 {
  height: 0.125rem;
}
.h-1 {
  height: 0.25rem;
}
.h-1\.5 {
  height: 0.375rem;
}
.h-1\/2 {
  height: 50%;
}
.h-1\/3 {
  height: 33.333333%;
}
.h-1\/4 {
  height: 25%;
}
.h-1\/5 {
  height: 20%;
}
.h-1\/6 {
  height: 16.666667%;
}
.h-10 {
  height: 2.5rem;
}
.h-11 {
  height: 2.75rem;
}
.h-12 {
  height: 3rem;
}
.h-14 {
  height: 3.5rem;
}
.h-16 {
  height: 4rem;
}
.h-2 {
  height: 0.5rem;
}
.h-2\.5 {
  height: 0.625rem;
}
.h-2\/3 {
  height: 66.666667%;
}
.h-2\/4 {
  height: 50%;
}
.h-2\/5 {
  height: 40%;
}
.h-2\/6 {
  height: 33.333333%;
}
.h-20 {
  height: 5rem;
}
.h-24 {
  height: 6rem;
}
.h-28 {
  height: 7rem;
}
.h-3 {
  height: 0.75rem;
}
.h-3\.5 {
  height: 0.875rem;
}
.h-3\/4 {
  height: 75%;
}
.h-3\/5 {
  height: 60%;
}
.h-3\/6 {
  height: 50%;
}
.h-32 {
  height: 8rem;
}
.h-36 {
  height: 9rem;
}
.h-4 {
  height: 1rem;
}
.h-4\/5 {
  height: 80%;
}
.h-4\/6 {
  height: 66.666667%;
}
.h-40 {
  height: 10rem;
}
.h-44 {
  height: 11rem;
}
.h-48 {
  height: 12rem;
}
.h-5 {
  height: 1.25rem;
}
.h-5\/6 {
  height: 83.333333%;
}
.h-52 {
  height: 13rem;
}
.h-56 {
  height: 14rem;
}
.h-6 {
  height: 1.5rem;
}
.h-60 {
  height: 15rem;
}
.h-64 {
  height: 16rem;
}
.h-7 {
  height: 1.75rem;
}
.h-72 {
  height: 18rem;
}
.h-8 {
  height: 2rem;
}
.h-80 {
  height: 20rem;
}
.h-9 {
  height: 2.25rem;
}
.h-96 {
  height: 24rem;
}
.h-\[--cell-size\] {
  height: var(--cell-size);
}
.h-\[100dvh\] {
  height: 100dvh;
}
.h-\[10px\] {
  height: 10px;
}
.h-\[120px\] {
  height: 120px;
}
.h-\[140px\] {
  height: 140px;
}
.h-\[15px\] {
  height: 15px;
}
.h-\[1px\] {
  height: 1px;
}
.h-\[200px\] {
  height: 200px;
}
.h-\[20px\] {
  height: 20px;
}
.h-\[22px\] {
  height: 22px;
}
.h-\[24px\] {
  height: 24px;
}
.h-\[2px\] {
  height: 2px;
}
.h-\[30px\] {
  height: 30px;
}
.h-\[36px\] {
  height: 36px;
}
.h-\[400px\] {
  height: 400px;
}
.h-\[40px\] {
  height: 40px;
}
.h-\[4px\] {
  height: 4px;
}
.h-\[50px\] {
  height: 50px;
}
.h-\[5px\] {
  height: 5px;
}
.h-\[60px\] {
  height: 60px;
}
.h-\[6px\] {
  height: 6px;
}
.h-\[70px\] {
  height: 70px;
}
.h-\[80vh\] {
  height: 80vh;
}
.h-\[88px\] {
  height: 88px;
}
.h-\[calc\(100\%-16px\)\] {
  height: calc(100% - 16px);
}
.h-\[calc\(100\%-8px\)\] {
  height: calc(100% - 8px);
}
.h-\[calc\(100dvh-50px-16px\)\] {
  height: calc(100dvh - 50px - 16px);
}
.h-\[calc\(100vh-50px-16px\)\] {
  height: calc(100vh - 50px - 16px);
}
.h-\[fit-content\] {
  height: -moz-fit-content;
  height: fit-content;
}
.h-\[max-content\] {
  height: -moz-max-content;
  height: max-content;
}
.h-\[min-content\] {
  height: -moz-min-content;
  height: min-content;
}
.h-\[var\(--h\)\] {
  height: var(--h);
}
.h-\[var\(--h-base-base\)\] {
  height: var(--h-base-base);
}
.h-\[var\(--radix-select-trigger-height\)\] {
  height: var(--radix-select-trigger-height);
}
.h-auto {
  height: auto;
}
.h-dvh {
  height: 100dvh;
}
.h-fit {
  height: -moz-fit-content;
  height: fit-content;
}
.h-full {
  height: 100%;
}
.h-lvh {
  height: 100lvh;
}
.h-max {
  height: -moz-max-content;
  height: max-content;
}
.h-min {
  height: -moz-min-content;
  height: min-content;
}
.h-px {
  height: 1px;
}
.h-screen {
  height: 100vh;
}
.h-svh {
  height: 100svh;
}
.max-h-60 {
  max-height: 15rem;
}
.max-h-\[--radix-select-content-available-height\] {
  max-height: var(--radix-select-content-available-height);
}
.max-h-\[100px\] {
  max-height: 100px;
}
.max-h-\[120px\] {
  max-height: 120px;
}
.max-h-\[200px\] {
  max-height: 200px;
}
.max-h-\[220px\] {
  max-height: 220px;
}
.max-h-\[300px\] {
  max-height: 300px;
}
.max-h-\[320px\] {
  max-height: 320px;
}
.max-h-\[35px\] {
  max-height: 35px;
}
.max-h-\[35vh\] {
  max-height: 35vh;
}
.max-h-\[40px\] {
  max-height: 40px;
}
.max-h-\[48px\] {
  max-height: 48px;
}
.max-h-\[500px\] {
  max-height: 500px;
}
.max-h-\[50px\] {
  max-height: 50px;
}
.max-h-\[600px\] {
  max-height: 600px;
}
.max-h-\[60px\] {
  max-height: 60px;
}
.max-h-\[700px\] {
  max-height: 700px;
}
.max-h-\[70vh\] {
  max-height: 70vh;
}
.max-h-\[calc\(80vh-100px-60px\)\] {
  max-height: calc(80vh - 100px - 60px);
}
.max-h-\[var\(--max-h\)\] {
  max-height: var(--max-h);
}
.max-h-\[var\(--radix-dropdown-menu-content-available-height\)\] {
  max-height: var(--radix-dropdown-menu-content-available-height);
}
.max-h-full {
  max-height: 100%;
}
.max-h-none {
  max-height: none;
}
.max-h-screen {
  max-height: 100vh;
}
.min-h-8 {
  min-height: 2rem;
}
.min-h-\[100dvh\] {
  min-height: 100dvh;
}
.min-h-\[100px\] {
  min-height: 100px;
}
.min-h-\[10px\] {
  min-height: 10px;
}
.min-h-\[120px\] {
  min-height: 120px;
}
.min-h-\[15px\] {
  min-height: 15px;
}
.min-h-\[16px\] {
  min-height: 16px;
}
.min-h-\[200px\] {
  min-height: 200px;
}
.min-h-\[20px\] {
  min-height: 20px;
}
.min-h-\[220px\] {
  min-height: 220px;
}
.min-h-\[22px\] {
  min-height: 22px;
}
.min-h-\[24px\] {
  min-height: 24px;
}
.min-h-\[250px\] {
  min-height: 250px;
}
.min-h-\[25px\] {
  min-height: 25px;
}
.min-h-\[2px\] {
  min-height: 2px;
}
.min-h-\[300px\] {
  min-height: 300px;
}
.min-h-\[30px\] {
  min-height: 30px;
}
.min-h-\[35px\] {
  min-height: 35px;
}
.min-h-\[400px\] {
  min-height: 400px;
}
.min-h-\[40px\] {
  min-height: 40px;
}
.min-h-\[48px\] {
  min-height: 48px;
}
.min-h-\[4px\] {
  min-height: 4px;
}
.min-h-\[50px\] {
  min-height: 50px;
}
.min-h-\[60px\] {
  min-height: 60px;
}
.min-h-\[6px\] {
  min-height: 6px;
}
.min-h-\[70px\] {
  min-height: 70px;
}
.min-h-\[80px\] {
  min-height: 80px;
}
.min-h-\[calc\(100vh-80px\)\] {
  min-height: calc(100vh - 80px);
}
.min-h-\[var\(--min-h\)\] {
  min-height: var(--min-h);
}
.min-h-full {
  min-height: 100%;
}
.min-h-screen {
  min-height: 100vh;
}
.w-1\/2 {
  width: 50%;
}
.w-1\/3 {
  width: 33.333333%;
}
.w-1\/4 {
  width: 25%;
}
.w-1\/5 {
  width: 20%;
}
.w-1\/6 {
  width: 16.666667%;
}
.w-11 {
  width: 2.75rem;
}
.w-12 {
  width: 3rem;
}
.w-14 {
  width: 3.5rem;
}
.w-16 {
  width: 4rem;
}
.w-2 {
  width: 0.5rem;
}
.w-2\.5 {
  width: 0.625rem;
}
.w-2\/3 {
  width: 66.666667%;
}
.w-3 {
  width: 0.75rem;
}
.w-3\.5 {
  width: 0.875rem;
}
.w-3\/4 {
  width: 75%;
}
.w-4 {
  width: 1rem;
}
.w-5 {
  width: 1.25rem;
}
.w-52 {
  width: 13rem;
}
.w-56 {
  width: 14rem;
}
.w-6 {
  width: 1.5rem;
}
.w-64 {
  width: 16rem;
}
.w-7 {
  width: 1.75rem;
}
.w-72 {
  width: 18rem;
}
.w-8 {
  width: 2rem;
}
.w-80 {
  width: 20rem;
}
.w-\[100\%\] {
  width: 100%;
}
.w-\[100px\] {
  width: 100px;
}
.w-\[100vw\] {
  width: 100vw;
}
.w-\[120px\] {
  width: 120px;
}
.w-\[140px\] {
  width: 140px;
}
.w-\[15px\] {
  width: 15px;
}
.w-\[180px\] {
  width: 180px;
}
.w-\[1px\] {
  width: 1px;
}
.w-\[20px\] {
  width: 20px;
}
.w-\[220px\] {
  width: 220px;
}
.w-\[24px\] {
  width: 24px;
}
.w-\[250px\] {
  width: 250px;
}
.w-\[270px\] {
  width: 270px;
}
.w-\[2px\] {
  width: 2px;
}
.w-\[300px\] {
  width: 300px;
}
.w-\[30px\] {
  width: 30px;
}
.w-\[36px\] {
  width: 36px;
}
.w-\[400px\] {
  width: 400px;
}
.w-\[40px\] {
  width: 40px;
}
.w-\[4px\] {
  width: 4px;
}
.w-\[50px\] {
  width: 50px;
}
.w-\[60px\] {
  width: 60px;
}
.w-\[6px\] {
  width: 6px;
}
.w-\[70px\] {
  width: 70px;
}
.w-\[75\%\] {
  width: 75%;
}
.w-\[90\%\] {
  width: 90%;
}
.w-\[\] {
  width: ;
}
.w-\[calc\(100\%-16px\)\] {
  width: calc(100% - 16px);
}
.w-\[calc\(100\%-32px\)\] {
  width: calc(100% - 32px);
}
.w-\[calc\(100\%-8px\)\] {
  width: calc(100% - 8px);
}
.w-\[fit-content\] {
  width: -moz-fit-content;
  width: fit-content;
}
.w-\[max-content\] {
  width: -moz-max-content;
  width: max-content;
}
.w-\[min-content\] {
  width: -moz-min-content;
  width: min-content;
}
.w-\[var\(--w\)\] {
  width: var(--w);
}
.w-\[var\(--w-base-base\)\] {
  width: var(--w-base-base);
}
.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}
.w-full {
  width: 100%;
}
.w-screen {
  width: 100vw;
}
.min-w-0 {
  min-width: 0px;
}
.min-w-10 {
  min-width: 2.5rem;
}
.min-w-11 {
  min-width: 2.75rem;
}
.min-w-6 {
  min-width: 1.5rem;
}
.min-w-8 {
  min-width: 2rem;
}
.min-w-9 {
  min-width: 2.25rem;
}
.min-w-\[100px\] {
  min-width: 100px;
}
.min-w-\[10px\] {
  min-width: 10px;
}
.min-w-\[120px\] {
  min-width: 120px;
}
.min-w-\[15px\] {
  min-width: 15px;
}
.min-w-\[16px\] {
  min-width: 16px;
}
.min-w-\[200px\] {
  min-width: 200px;
}
.min-w-\[20px\] {
  min-width: 20px;
}
.min-w-\[220px\] {
  min-width: 220px;
}
.min-w-\[22px\] {
  min-width: 22px;
}
.min-w-\[24px\] {
  min-width: 24px;
}
.min-w-\[25px\] {
  min-width: 25px;
}
.min-w-\[2px\] {
  min-width: 2px;
}
.min-w-\[30\%\] {
  min-width: 30%;
}
.min-w-\[300px\] {
  min-width: 300px;
}
.min-w-\[30px\] {
  min-width: 30px;
}
.min-w-\[30x\] {
  min-width: 30x;
}
.min-w-\[35px\] {
  min-width: 35px;
}
.min-w-\[40px\] {
  min-width: 40px;
}
.min-w-\[48px\] {
  min-width: 48px;
}
.min-w-\[4px\] {
  min-width: 4px;
}
.min-w-\[50px\] {
  min-width: 50px;
}
.min-w-\[55px\] {
  min-width: 55px;
}
.min-w-\[60px\] {
  min-width: 60px;
}
.min-w-\[70px\] {
  min-width: 70px;
}
.min-w-\[80px\] {
  min-width: 80px;
}
.min-w-\[8rem\] {
  min-width: 8rem;
}
.min-w-\[var\(--min-w\)\] {
  min-width: var(--min-w);
}
.min-w-\[var\(--radix-select-trigger-width\)\] {
  min-width: var(--radix-select-trigger-width);
}
.min-w-fit {
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.min-w-full {
  min-width: 100%;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-7xl {
  max-width: 80rem;
}
.max-w-\[100px\] {
  max-width: 100px;
}
.max-w-\[120px\] {
  max-width: 120px;
}
.max-w-\[200px\] {
  max-width: 200px;
}
.max-w-\[30\%\] {
  max-width: 30%;
}
.max-w-\[35px\] {
  max-width: 35px;
}
.max-w-\[380px\] {
  max-width: 380px;
}
.max-w-\[400px\] {
  max-width: 400px;
}
.max-w-\[40px\] {
  max-width: 40px;
}
.max-w-\[48px\] {
  max-width: 48px;
}
.max-w-\[50px\] {
  max-width: 50px;
}
.max-w-\[55px\] {
  max-width: 55px;
}
.max-w-\[600px\] {
  max-width: 600px;
}
.max-w-\[60px\] {
  max-width: 60px;
}
.max-w-\[740px\] {
  max-width: 740px;
}
.max-w-\[80\%\] {
  max-width: 80%;
}
.max-w-\[80px\] {
  max-width: 80px;
}
.max-w-\[85\%\] {
  max-width: 85%;
}
.max-w-\[var\(--max-w\)\] {
  max-width: var(--max-w);
}
.max-w-full {
  max-width: 100%;
}
.max-w-lg {
  max-width: 32rem;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-none {
  max-width: none;
}
.max-w-screen-lg {
  max-width: 1024px;
}
.max-w-screen-md {
  max-width: 768px;
}
.max-w-sm {
  max-width: 24rem;
}
.max-w-xs {
  max-width: 20rem;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-\[var\(--f\)\] {
  flex: var(--f);
}
.flex-none {
  flex: none;
}
.flex-shrink {
  flex-shrink: 1;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.flex-shrink-\[var\(--fs\)\] {
  flex-shrink: var(--fs);
}
.shrink {
  flex-shrink: 1;
}
.shrink-0 {
  flex-shrink: 0;
}
.flex-grow {
  flex-grow: 1;
}
.flex-grow-0 {
  flex-grow: 0;
}
.flex-grow-\[var\(--fg\)\] {
  flex-grow: var(--fg);
}
.grow {
  flex-grow: 1;
}
.grow-0 {
  flex-grow: 0;
}
.basis-full {
  flex-basis: 100%;
}
.origin-\[--radix-dropdown-menu-content-transform-origin\] {
  transform-origin: var(--radix-dropdown-menu-content-transform-origin);
}
.origin-\[--radix-popover-content-transform-origin\] {
  transform-origin: var(--radix-popover-content-transform-origin);
}
.origin-\[--radix-select-content-transform-origin\] {
  transform-origin: var(--radix-select-content-transform-origin);
}
.origin-top-left {
  transform-origin: top left;
}
.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-x-3 {
  --tw-translate-x: -0.75rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-x-\[100\%\] {
  --tw-translate-x: -100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-x-\[60\%\] {
  --tw-translate-x: -60%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-x-\[80\%\] {
  --tw-translate-x: -80%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-3 {
  --tw-translate-x: 0.75rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[-50\%\] {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-0 {
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-1\/2 {
  --tw-translate-y: 50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-3 {
  --tw-translate-y: 0.75rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-\[-50\%\] {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-\[var\(--sa-y\)\] {
  --tw-translate-y: var(--sa-y);
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-0 {
  --tw-rotate: 0deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-180 {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-45 {
  --tw-rotate: 45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-90 {
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-0 {
  --tw-scale-x: 0;
  --tw-scale-y: 0;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-100 {
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-105 {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-110 {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-125 {
  --tw-scale-x: 1.25;
  --tw-scale-y: 1.25;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-150 {
  --tw-scale-x: 1.5;
  --tw-scale-y: 1.5;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-95 {
  --tw-scale-x: .95;
  --tw-scale-y: .95;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-\[0\.3\] {
  --tw-scale-x: 0.3;
  --tw-scale-y: 0.3;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-\[0\.7\] {
  --tw-scale-x: 0.7;
  --tw-scale-y: 0.7;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-\[1\] {
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes fadeInUp {

  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-\[fadeInUp_0\.5s_forwards\] {
  animation: fadeInUp 0.5s forwards;
}
@keyframes bounceIn {

  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate-bounce-in {
  animation: bounceIn 0.6s ease-in-out forwards;
}
@keyframes fadeInUp {

  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-in-out;
}
@keyframes fadeScale {

  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.animate-fade-scale {
  animation: fadeScale 1s ease-in-out forwards;
}
@keyframes float {

  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}
.animate-float {
  animation: float 3s ease-in-out infinite;
}
@keyframes rotateIn {

  0% {
    transform: rotate(-45deg);
    opacity: 0;
  }

  100% {
    transform: rotate(0);
    opacity: 1;
  }
}
.animate-rotate-in {
  animation: rotateIn 0.8s ease-in-out forwards;
}
@keyframes scrollHorizontal {

  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}
.animate-scrollHorizontal {
  animation: scrollHorizontal 20s linear infinite;
}
@keyframes shimmer {

  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}
.animate-shimmer {
  animation: shimmer 2s linear infinite;
}
@keyframes slideInLeft {

  0% {
    opacity: 0;
    transform: translateX(-40px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.animate-slide-in-left {
  animation: slideInLeft 0.8s ease-in-out forwards;
}
@keyframes typing {

  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}
.animate-typing {
  animation: typing 2s steps(40, end) forwards;
}
@keyframes zoomIn {

  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate-zoom-in {
  animation: zoomIn 0.8s ease-in-out forwards;
}
@keyframes zoomOut {

  0% {
    transform: scale(1.2);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate-zoom-out {
  animation: zoomOut 0.8s ease-in-out forwards;
}
.cursor-default {
  cursor: default;
}
.cursor-move {
  cursor: move;
}
.cursor-pointer {
  cursor: pointer;
}
.touch-none {
  touch-action: none;
}
.touch-pan-y {
  --tw-pan-y: pan-y;
  touch-action: var(--tw-pan-x) var(--tw-pan-y) var(--tw-pinch-zoom);
}
.select-none {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.resize-none {
  resize: none;
}
.resize {
  resize: both;
}
.snap-mandatory {
  --tw-scroll-snap-strictness: mandatory;
}
.columns-lg {
  -moz-columns: 32rem;
       columns: 32rem;
}
.columns-md {
  -moz-columns: 28rem;
       columns: 28rem;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}
.grid-cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}
.grid-cols-12 {
  grid-template-columns: repeat(12, 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-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}
.grid-rows-1 {
  grid-template-rows: repeat(1, minmax(0, 1fr));
}
.grid-rows-10 {
  grid-template-rows: repeat(10, minmax(0, 1fr));
}
.grid-rows-2 {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}
.grid-rows-3 {
  grid-template-rows: repeat(3, minmax(0, 1fr));
}
.grid-rows-4 {
  grid-template-rows: repeat(4, minmax(0, 1fr));
}
.grid-rows-5 {
  grid-template-rows: repeat(5, minmax(0, 1fr));
}
.grid-rows-6 {
  grid-template-rows: repeat(6, minmax(0, 1fr));
}
.grid-rows-7 {
  grid-template-rows: repeat(7, minmax(0, 1fr));
}
.grid-rows-8 {
  grid-template-rows: repeat(8, minmax(0, 1fr));
}
.grid-rows-9 {
  grid-template-rows: repeat(9, minmax(0, 1fr));
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.flex-col-reverse {
  flex-direction: column-reverse;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.items-stretch {
  align-items: stretch;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.justify-stretch {
  justify-content: stretch;
}
.gap-0 {
  gap: 0px;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-1\.5 {
  gap: 0.375rem;
}
.gap-10 {
  gap: 2.5rem;
}
.gap-11 {
  gap: 2.75rem;
}
.gap-12 {
  gap: 3rem;
}
.gap-16 {
  gap: 4rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-20 {
  gap: 5rem;
}
.gap-24 {
  gap: 6rem;
}
.gap-28 {
  gap: 7rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-32 {
  gap: 8rem;
}
.gap-36 {
  gap: 9rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-40 {
  gap: 10rem;
}
.gap-44 {
  gap: 11rem;
}
.gap-48 {
  gap: 12rem;
}
.gap-5 {
  gap: 1.25rem;
}
.gap-52 {
  gap: 13rem;
}
.gap-56 {
  gap: 14rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-60 {
  gap: 15rem;
}
.gap-64 {
  gap: 16rem;
}
.gap-7 {
  gap: 1.75rem;
}
.gap-72 {
  gap: 18rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-9 {
  gap: 2.25rem;
}
.gap-\[18px\] {
  gap: 18px;
}
.gap-\[var\(--fg\)\] {
  gap: var(--fg);
}
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.375rem * var(--tw-space-y-reverse));
}
.space-y-12 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(3rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.self-start {
  align-self: flex-start;
}
.self-end {
  align-self: flex-end;
}
.self-center {
  align-self: center;
}
.overflow-auto {
  overflow: auto;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-clip {
  overflow: clip;
}
.overflow-visible {
  overflow: visible;
}
.overflow-scroll {
  overflow: scroll;
}
.overflow-x-auto {
  overflow-x: auto;
}
.overflow-y-auto {
  overflow-y: auto;
}
.overflow-x-hidden {
  overflow-x: hidden;
}
.overflow-y-hidden {
  overflow-y: hidden;
}
.overscroll-contain {
  overscroll-behavior: contain;
}
.overscroll-none {
  overscroll-behavior: none;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-ellipsis {
  text-overflow: ellipsis;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.whitespace-pre-line {
  white-space: pre-line;
}
.break-words {
  overflow-wrap: break-word;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-3xl {
  border-radius: 1.5rem;
}
.rounded-\[0\.1rem\] {
  border-radius: 0.1rem;
}
.rounded-\[0\.25rem\] {
  border-radius: 0.25rem;
}
.rounded-\[0\.2rem\] {
  border-radius: 0.2rem;
}
.rounded-\[0\.3rem\] {
  border-radius: 0.3rem;
}
.rounded-\[0\.4rem\] {
  border-radius: 0.4rem;
}
.rounded-\[0\.5rem\] {
  border-radius: 0.5rem;
}
.rounded-\[19px\] {
  border-radius: 19px;
}
.rounded-\[1rem\] {
  border-radius: 1rem;
}
.rounded-\[22px\] {
  border-radius: 22px;
}
.rounded-\[25px\] {
  border-radius: 25px;
}
.rounded-\[28px\] {
  border-radius: 28px;
}
.rounded-\[2px\] {
  border-radius: 2px;
}
.rounded-\[inherit\] {
  border-radius: inherit;
}
.rounded-\[var\(--br\)\] {
  border-radius: var(--br);
}
.rounded-\[var\(--r\)\] {
  border-radius: var(--r);
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: var(--radius);
}
.rounded-md {
  border-radius: calc(var(--radius) - 2px);
}
.rounded-none {
  border-radius: 0px;
}
.rounded-sm {
  border-radius: calc(var(--radius) - 4px);
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-b {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.rounded-b-2xl {
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
.rounded-b-\[var\(--brb\)\] {
  border-bottom-right-radius: var(--brb);
  border-bottom-left-radius: var(--brb);
}
.rounded-b-\[var\(--rb\)\] {
  border-bottom-right-radius: var(--rb);
  border-bottom-left-radius: var(--rb);
}
.rounded-b-full {
  border-bottom-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
}
.rounded-b-lg {
  border-bottom-right-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}
.rounded-b-md {
  border-bottom-right-radius: calc(var(--radius) - 2px);
  border-bottom-left-radius: calc(var(--radius) - 2px);
}
.rounded-b-none {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.rounded-b-sm {
  border-bottom-right-radius: calc(var(--radius) - 4px);
  border-bottom-left-radius: calc(var(--radius) - 4px);
}
.rounded-b-xl {
  border-bottom-right-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
}
.rounded-e-lg {
  border-start-end-radius: var(--radius);
  border-end-end-radius: var(--radius);
}
.rounded-e-md {
  border-start-end-radius: calc(var(--radius) - 2px);
  border-end-end-radius: calc(var(--radius) - 2px);
}
.rounded-l {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.rounded-l-2xl {
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
.rounded-l-\[var\(--brl\)\] {
  border-top-left-radius: var(--brl);
  border-bottom-left-radius: var(--brl);
}
.rounded-l-\[var\(--rl\)\] {
  border-top-left-radius: var(--rl);
  border-bottom-left-radius: var(--rl);
}
.rounded-l-full {
  border-top-left-radius: 9999px;
  border-bottom-left-radius: 9999px;
}
.rounded-l-lg {
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}
.rounded-l-md {
  border-top-left-radius: calc(var(--radius) - 2px);
  border-bottom-left-radius: calc(var(--radius) - 2px);
}
.rounded-l-none {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
.rounded-l-sm {
  border-top-left-radius: calc(var(--radius) - 4px);
  border-bottom-left-radius: calc(var(--radius) - 4px);
}
.rounded-l-xl {
  border-top-left-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
}
.rounded-r {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.rounded-r-2xl {
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
.rounded-r-\[var\(--brr\)\] {
  border-top-right-radius: var(--brr);
  border-bottom-right-radius: var(--brr);
}
.rounded-r-\[var\(--rr\)\] {
  border-top-right-radius: var(--rr);
  border-bottom-right-radius: var(--rr);
}
.rounded-r-full {
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
}
.rounded-r-lg {
  border-top-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}
.rounded-r-md {
  border-top-right-radius: calc(var(--radius) - 2px);
  border-bottom-right-radius: calc(var(--radius) - 2px);
}
.rounded-r-none {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.rounded-r-sm {
  border-top-right-radius: calc(var(--radius) - 4px);
  border-bottom-right-radius: calc(var(--radius) - 4px);
}
.rounded-r-xl {
  border-top-right-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}
.rounded-s-lg {
  border-start-start-radius: var(--radius);
  border-end-start-radius: var(--radius);
}
.rounded-s-md {
  border-start-start-radius: calc(var(--radius) - 2px);
  border-end-start-radius: calc(var(--radius) - 2px);
}
.rounded-t {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.rounded-t-2xl {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.rounded-t-3xl {
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
}
.rounded-t-\[10px\] {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.rounded-t-\[var\(--brt\)\] {
  border-top-left-radius: var(--brt);
  border-top-right-radius: var(--brt);
}
.rounded-t-\[var\(--rt\)\] {
  border-top-left-radius: var(--rt);
  border-top-right-radius: var(--rt);
}
.rounded-t-full {
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
}
.rounded-t-lg {
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}
.rounded-t-md {
  border-top-left-radius: calc(var(--radius) - 2px);
  border-top-right-radius: calc(var(--radius) - 2px);
}
.rounded-t-none {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.rounded-t-sm {
  border-top-left-radius: calc(var(--radius) - 4px);
  border-top-right-radius: calc(var(--radius) - 4px);
}
.rounded-t-xl {
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}
.rounded-bl {
  border-bottom-left-radius: 0.25rem;
}
.rounded-bl-2xl {
  border-bottom-left-radius: 1rem;
}
.rounded-bl-\[var\(--bl\)\] {
  border-bottom-left-radius: var(--bl);
}
.rounded-bl-\[var\(--brbl\)\] {
  border-bottom-left-radius: var(--brbl);
}
.rounded-bl-full {
  border-bottom-left-radius: 9999px;
}
.rounded-bl-lg {
  border-bottom-left-radius: var(--radius);
}
.rounded-bl-md {
  border-bottom-left-radius: calc(var(--radius) - 2px);
}
.rounded-bl-none {
  border-bottom-left-radius: 0px;
}
.rounded-bl-sm {
  border-bottom-left-radius: calc(var(--radius) - 4px);
}
.rounded-bl-xl {
  border-bottom-left-radius: 0.75rem;
}
.rounded-br {
  border-bottom-right-radius: 0.25rem;
}
.rounded-br-2xl {
  border-bottom-right-radius: 1rem;
}
.rounded-br-\[var\(--br\)\] {
  border-bottom-right-radius: var(--br);
}
.rounded-br-\[var\(--brbr\)\] {
  border-bottom-right-radius: var(--brbr);
}
.rounded-br-full {
  border-bottom-right-radius: 9999px;
}
.rounded-br-lg {
  border-bottom-right-radius: var(--radius);
}
.rounded-br-md {
  border-bottom-right-radius: calc(var(--radius) - 2px);
}
.rounded-br-none {
  border-bottom-right-radius: 0px;
}
.rounded-br-sm {
  border-bottom-right-radius: calc(var(--radius) - 4px);
}
.rounded-br-xl {
  border-bottom-right-radius: 0.75rem;
}
.rounded-ee-lg {
  border-end-end-radius: var(--radius);
}
.rounded-ee-md {
  border-end-end-radius: calc(var(--radius) - 2px);
}
.rounded-es-lg {
  border-end-start-radius: var(--radius);
}
.rounded-es-md {
  border-end-start-radius: calc(var(--radius) - 2px);
}
.rounded-se-lg {
  border-start-end-radius: var(--radius);
}
.rounded-se-md {
  border-start-end-radius: calc(var(--radius) - 2px);
}
.rounded-ss-lg {
  border-start-start-radius: var(--radius);
}
.rounded-ss-md {
  border-start-start-radius: calc(var(--radius) - 2px);
}
.rounded-tl {
  border-top-left-radius: 0.25rem;
}
.rounded-tl-2xl {
  border-top-left-radius: 1rem;
}
.rounded-tl-\[var\(--brtl\)\] {
  border-top-left-radius: var(--brtl);
}
.rounded-tl-\[var\(--tl\)\] {
  border-top-left-radius: var(--tl);
}
.rounded-tl-full {
  border-top-left-radius: 9999px;
}
.rounded-tl-lg {
  border-top-left-radius: var(--radius);
}
.rounded-tl-md {
  border-top-left-radius: calc(var(--radius) - 2px);
}
.rounded-tl-none {
  border-top-left-radius: 0px;
}
.rounded-tl-sm {
  border-top-left-radius: calc(var(--radius) - 4px);
}
.rounded-tl-xl {
  border-top-left-radius: 0.75rem;
}
.rounded-tr {
  border-top-right-radius: 0.25rem;
}
.rounded-tr-2xl {
  border-top-right-radius: 1rem;
}
.rounded-tr-\[var\(--brtr\)\] {
  border-top-right-radius: var(--brtr);
}
.rounded-tr-\[var\(--tr\)\] {
  border-top-right-radius: var(--tr);
}
.rounded-tr-full {
  border-top-right-radius: 9999px;
}
.rounded-tr-lg {
  border-top-right-radius: var(--radius);
}
.rounded-tr-md {
  border-top-right-radius: calc(var(--radius) - 2px);
}
.rounded-tr-none {
  border-top-right-radius: 0px;
}
.rounded-tr-sm {
  border-top-right-radius: calc(var(--radius) - 4px);
}
.rounded-tr-xl {
  border-top-right-radius: 0.75rem;
}
.border {
  border-width: 1px;
}
.border-0 {
  border-width: 0px;
}
.border-2 {
  border-width: 2px;
}
.border-4 {
  border-width: 4px;
}
.border-8 {
  border-width: 8px;
}
.border-\[2\.5px\] {
  border-width: 2.5px;
}
.border-\[3px\] {
  border-width: 3px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-b-2 {
  border-bottom-width: 2px;
}
.border-l {
  border-left-width: 1px;
}
.border-l-2 {
  border-left-width: 2px;
}
.border-r {
  border-right-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.border-solid {
  border-style: solid;
}
.border-dashed {
  border-style: dashed;
}
.border-dotted {
  border-style: dotted;
}
.border-double {
  border-style: double;
}
.border-none {
  border-style: none;
}
.border-\[\#7A8CFF\] {
  --tw-border-opacity: 1;
  border-color: rgb(122 140 255 / var(--tw-border-opacity, 1));
}
.border-\[color\:var\(--bc\)\] {
  border-color: var(--bc);
}
.border-\[transparent\] {
  border-color: transparent;
}
.border-\[var\(--b\)\] {
  border-color: var(--b);
}
.border-\[var\(--border\)\] {
  border-color: var(--border);
}
.border-\[var\(--border-\$\{bp\}-\$\{state\}\)\] {
  border-color: var(--border-${bp}-${state});
}
.border-\[var\(--bw\)\] {
  border-color: var(--bw);
}
.border-accent {
  border-color: var(--accent);
}
.border-amber-100 {
  --tw-border-opacity: 1;
  border-color: rgb(254 243 199 / var(--tw-border-opacity, 1));
}
.border-amber-200 {
  --tw-border-opacity: 1;
  border-color: rgb(253 230 138 / var(--tw-border-opacity, 1));
}
.border-amber-300 {
  --tw-border-opacity: 1;
  border-color: rgb(252 211 77 / var(--tw-border-opacity, 1));
}
.border-amber-400 {
  --tw-border-opacity: 1;
  border-color: rgb(251 191 36 / var(--tw-border-opacity, 1));
}
.border-amber-50 {
  --tw-border-opacity: 1;
  border-color: rgb(255 251 235 / var(--tw-border-opacity, 1));
}
.border-amber-500 {
  --tw-border-opacity: 1;
  border-color: rgb(245 158 11 / var(--tw-border-opacity, 1));
}
.border-amber-600 {
  --tw-border-opacity: 1;
  border-color: rgb(217 119 6 / var(--tw-border-opacity, 1));
}
.border-amber-700 {
  --tw-border-opacity: 1;
  border-color: rgb(180 83 9 / var(--tw-border-opacity, 1));
}
.border-amber-800 {
  --tw-border-opacity: 1;
  border-color: rgb(146 64 14 / var(--tw-border-opacity, 1));
}
.border-amber-900 {
  --tw-border-opacity: 1;
  border-color: rgb(120 53 15 / var(--tw-border-opacity, 1));
}
.border-amber-950 {
  --tw-border-opacity: 1;
  border-color: rgb(69 26 3 / var(--tw-border-opacity, 1));
}
.border-black {
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
}
.border-blue-100 {
  --tw-border-opacity: 1;
  border-color: rgb(219 234 254 / var(--tw-border-opacity, 1));
}
.border-blue-200 {
  --tw-border-opacity: 1;
  border-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
}
.border-blue-300 {
  --tw-border-opacity: 1;
  border-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
}
.border-blue-400 {
  --tw-border-opacity: 1;
  border-color: rgb(96 165 250 / var(--tw-border-opacity, 1));
}
.border-blue-50 {
  --tw-border-opacity: 1;
  border-color: rgb(239 246 255 / var(--tw-border-opacity, 1));
}
.border-blue-500 {
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
}
.border-blue-600 {
  --tw-border-opacity: 1;
  border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}
.border-blue-700 {
  --tw-border-opacity: 1;
  border-color: rgb(29 78 216 / var(--tw-border-opacity, 1));
}
.border-blue-800 {
  --tw-border-opacity: 1;
  border-color: rgb(30 64 175 / var(--tw-border-opacity, 1));
}
.border-blue-900 {
  --tw-border-opacity: 1;
  border-color: rgb(30 58 138 / var(--tw-border-opacity, 1));
}
.border-blue-950 {
  --tw-border-opacity: 1;
  border-color: rgb(23 37 84 / var(--tw-border-opacity, 1));
}
.border-border {
  border-color: var(--border);
}
.border-cyan-100 {
  --tw-border-opacity: 1;
  border-color: rgb(207 250 254 / var(--tw-border-opacity, 1));
}
.border-cyan-200 {
  --tw-border-opacity: 1;
  border-color: rgb(165 243 252 / var(--tw-border-opacity, 1));
}
.border-cyan-300 {
  --tw-border-opacity: 1;
  border-color: rgb(103 232 249 / var(--tw-border-opacity, 1));
}
.border-cyan-400 {
  --tw-border-opacity: 1;
  border-color: rgb(34 211 238 / var(--tw-border-opacity, 1));
}
.border-cyan-50 {
  --tw-border-opacity: 1;
  border-color: rgb(236 254 255 / var(--tw-border-opacity, 1));
}
.border-cyan-500 {
  --tw-border-opacity: 1;
  border-color: rgb(6 182 212 / var(--tw-border-opacity, 1));
}
.border-cyan-600 {
  --tw-border-opacity: 1;
  border-color: rgb(8 145 178 / var(--tw-border-opacity, 1));
}
.border-cyan-700 {
  --tw-border-opacity: 1;
  border-color: rgb(14 116 144 / var(--tw-border-opacity, 1));
}
.border-cyan-800 {
  --tw-border-opacity: 1;
  border-color: rgb(21 94 117 / var(--tw-border-opacity, 1));
}
.border-cyan-900 {
  --tw-border-opacity: 1;
  border-color: rgb(22 78 99 / var(--tw-border-opacity, 1));
}
.border-cyan-950 {
  --tw-border-opacity: 1;
  border-color: rgb(8 51 68 / var(--tw-border-opacity, 1));
}
.border-destructive {
  border-color: var(--destructive);
}
.border-emerald-100 {
  --tw-border-opacity: 1;
  border-color: rgb(209 250 229 / var(--tw-border-opacity, 1));
}
.border-emerald-200 {
  --tw-border-opacity: 1;
  border-color: rgb(167 243 208 / var(--tw-border-opacity, 1));
}
.border-emerald-300 {
  --tw-border-opacity: 1;
  border-color: rgb(110 231 183 / var(--tw-border-opacity, 1));
}
.border-emerald-400 {
  --tw-border-opacity: 1;
  border-color: rgb(52 211 153 / var(--tw-border-opacity, 1));
}
.border-emerald-50 {
  --tw-border-opacity: 1;
  border-color: rgb(236 253 245 / var(--tw-border-opacity, 1));
}
.border-emerald-500 {
  --tw-border-opacity: 1;
  border-color: rgb(16 185 129 / var(--tw-border-opacity, 1));
}
.border-emerald-600 {
  --tw-border-opacity: 1;
  border-color: rgb(5 150 105 / var(--tw-border-opacity, 1));
}
.border-emerald-700 {
  --tw-border-opacity: 1;
  border-color: rgb(4 120 87 / var(--tw-border-opacity, 1));
}
.border-emerald-800 {
  --tw-border-opacity: 1;
  border-color: rgb(6 95 70 / var(--tw-border-opacity, 1));
}
.border-emerald-900 {
  --tw-border-opacity: 1;
  border-color: rgb(6 78 59 / var(--tw-border-opacity, 1));
}
.border-emerald-950 {
  --tw-border-opacity: 1;
  border-color: rgb(2 44 34 / var(--tw-border-opacity, 1));
}
.border-fuchsia-100 {
  --tw-border-opacity: 1;
  border-color: rgb(250 232 255 / var(--tw-border-opacity, 1));
}
.border-fuchsia-200 {
  --tw-border-opacity: 1;
  border-color: rgb(245 208 254 / var(--tw-border-opacity, 1));
}
.border-fuchsia-300 {
  --tw-border-opacity: 1;
  border-color: rgb(240 171 252 / var(--tw-border-opacity, 1));
}
.border-fuchsia-400 {
  --tw-border-opacity: 1;
  border-color: rgb(232 121 249 / var(--tw-border-opacity, 1));
}
.border-fuchsia-50 {
  --tw-border-opacity: 1;
  border-color: rgb(253 244 255 / var(--tw-border-opacity, 1));
}
.border-fuchsia-500 {
  --tw-border-opacity: 1;
  border-color: rgb(217 70 239 / var(--tw-border-opacity, 1));
}
.border-fuchsia-600 {
  --tw-border-opacity: 1;
  border-color: rgb(192 38 211 / var(--tw-border-opacity, 1));
}
.border-fuchsia-700 {
  --tw-border-opacity: 1;
  border-color: rgb(162 28 175 / var(--tw-border-opacity, 1));
}
.border-fuchsia-800 {
  --tw-border-opacity: 1;
  border-color: rgb(134 25 143 / var(--tw-border-opacity, 1));
}
.border-fuchsia-900 {
  --tw-border-opacity: 1;
  border-color: rgb(112 26 117 / var(--tw-border-opacity, 1));
}
.border-fuchsia-950 {
  --tw-border-opacity: 1;
  border-color: rgb(74 4 78 / var(--tw-border-opacity, 1));
}
.border-gray-100 {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}
.border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.border-gray-400 {
  --tw-border-opacity: 1;
  border-color: rgb(156 163 175 / var(--tw-border-opacity, 1));
}
.border-gray-50 {
  --tw-border-opacity: 1;
  border-color: rgb(249 250 251 / var(--tw-border-opacity, 1));
}
.border-gray-500 {
  --tw-border-opacity: 1;
  border-color: rgb(107 114 128 / var(--tw-border-opacity, 1));
}
.border-gray-600 {
  --tw-border-opacity: 1;
  border-color: rgb(75 85 99 / var(--tw-border-opacity, 1));
}
.border-gray-700 {
  --tw-border-opacity: 1;
  border-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
}
.border-gray-800 {
  --tw-border-opacity: 1;
  border-color: rgb(31 41 55 / var(--tw-border-opacity, 1));
}
.border-gray-900 {
  --tw-border-opacity: 1;
  border-color: rgb(17 24 39 / var(--tw-border-opacity, 1));
}
.border-gray-950 {
  --tw-border-opacity: 1;
  border-color: rgb(3 7 18 / var(--tw-border-opacity, 1));
}
.border-green-100 {
  --tw-border-opacity: 1;
  border-color: rgb(220 252 231 / var(--tw-border-opacity, 1));
}
.border-green-200 {
  --tw-border-opacity: 1;
  border-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
}
.border-green-300 {
  --tw-border-opacity: 1;
  border-color: rgb(134 239 172 / var(--tw-border-opacity, 1));
}
.border-green-400 {
  --tw-border-opacity: 1;
  border-color: rgb(74 222 128 / var(--tw-border-opacity, 1));
}
.border-green-50 {
  --tw-border-opacity: 1;
  border-color: rgb(240 253 244 / var(--tw-border-opacity, 1));
}
.border-green-500 {
  --tw-border-opacity: 1;
  border-color: rgb(34 197 94 / var(--tw-border-opacity, 1));
}
.border-green-600 {
  --tw-border-opacity: 1;
  border-color: rgb(22 163 74 / var(--tw-border-opacity, 1));
}
.border-green-700 {
  --tw-border-opacity: 1;
  border-color: rgb(21 128 61 / var(--tw-border-opacity, 1));
}
.border-green-800 {
  --tw-border-opacity: 1;
  border-color: rgb(22 101 52 / var(--tw-border-opacity, 1));
}
.border-green-900 {
  --tw-border-opacity: 1;
  border-color: rgb(20 83 45 / var(--tw-border-opacity, 1));
}
.border-green-950 {
  --tw-border-opacity: 1;
  border-color: rgb(5 46 22 / var(--tw-border-opacity, 1));
}
.border-indigo-100 {
  --tw-border-opacity: 1;
  border-color: rgb(224 231 255 / var(--tw-border-opacity, 1));
}
.border-indigo-200 {
  --tw-border-opacity: 1;
  border-color: rgb(199 210 254 / var(--tw-border-opacity, 1));
}
.border-indigo-300 {
  --tw-border-opacity: 1;
  border-color: rgb(165 180 252 / var(--tw-border-opacity, 1));
}
.border-indigo-400 {
  --tw-border-opacity: 1;
  border-color: rgb(129 140 248 / var(--tw-border-opacity, 1));
}
.border-indigo-50 {
  --tw-border-opacity: 1;
  border-color: rgb(238 242 255 / var(--tw-border-opacity, 1));
}
.border-indigo-500 {
  --tw-border-opacity: 1;
  border-color: rgb(99 102 241 / var(--tw-border-opacity, 1));
}
.border-indigo-600 {
  --tw-border-opacity: 1;
  border-color: rgb(79 70 229 / var(--tw-border-opacity, 1));
}
.border-indigo-700 {
  --tw-border-opacity: 1;
  border-color: rgb(67 56 202 / var(--tw-border-opacity, 1));
}
.border-indigo-800 {
  --tw-border-opacity: 1;
  border-color: rgb(55 48 163 / var(--tw-border-opacity, 1));
}
.border-indigo-900 {
  --tw-border-opacity: 1;
  border-color: rgb(49 46 129 / var(--tw-border-opacity, 1));
}
.border-indigo-950 {
  --tw-border-opacity: 1;
  border-color: rgb(30 27 75 / var(--tw-border-opacity, 1));
}
.border-input {
  border-color: var(--input);
}
.border-lime-100 {
  --tw-border-opacity: 1;
  border-color: rgb(236 252 203 / var(--tw-border-opacity, 1));
}
.border-lime-200 {
  --tw-border-opacity: 1;
  border-color: rgb(217 249 157 / var(--tw-border-opacity, 1));
}
.border-lime-300 {
  --tw-border-opacity: 1;
  border-color: rgb(190 242 100 / var(--tw-border-opacity, 1));
}
.border-lime-400 {
  --tw-border-opacity: 1;
  border-color: rgb(163 230 53 / var(--tw-border-opacity, 1));
}
.border-lime-50 {
  --tw-border-opacity: 1;
  border-color: rgb(247 254 231 / var(--tw-border-opacity, 1));
}
.border-lime-500 {
  --tw-border-opacity: 1;
  border-color: rgb(132 204 22 / var(--tw-border-opacity, 1));
}
.border-lime-600 {
  --tw-border-opacity: 1;
  border-color: rgb(101 163 13 / var(--tw-border-opacity, 1));
}
.border-lime-700 {
  --tw-border-opacity: 1;
  border-color: rgb(77 124 15 / var(--tw-border-opacity, 1));
}
.border-lime-800 {
  --tw-border-opacity: 1;
  border-color: rgb(63 98 18 / var(--tw-border-opacity, 1));
}
.border-lime-900 {
  --tw-border-opacity: 1;
  border-color: rgb(54 83 20 / var(--tw-border-opacity, 1));
}
.border-lime-950 {
  --tw-border-opacity: 1;
  border-color: rgb(26 46 5 / var(--tw-border-opacity, 1));
}
.border-neutral-100 {
  --tw-border-opacity: 1;
  border-color: rgb(245 245 245 / var(--tw-border-opacity, 1));
}
.border-neutral-200 {
  --tw-border-opacity: 1;
  border-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
}
.border-neutral-300 {
  --tw-border-opacity: 1;
  border-color: rgb(212 212 212 / var(--tw-border-opacity, 1));
}
.border-neutral-400 {
  --tw-border-opacity: 1;
  border-color: rgb(163 163 163 / var(--tw-border-opacity, 1));
}
.border-neutral-50 {
  --tw-border-opacity: 1;
  border-color: rgb(250 250 250 / var(--tw-border-opacity, 1));
}
.border-neutral-500 {
  --tw-border-opacity: 1;
  border-color: rgb(115 115 115 / var(--tw-border-opacity, 1));
}
.border-neutral-600 {
  --tw-border-opacity: 1;
  border-color: rgb(82 82 82 / var(--tw-border-opacity, 1));
}
.border-neutral-700 {
  --tw-border-opacity: 1;
  border-color: rgb(64 64 64 / var(--tw-border-opacity, 1));
}
.border-neutral-800 {
  --tw-border-opacity: 1;
  border-color: rgb(38 38 38 / var(--tw-border-opacity, 1));
}
.border-neutral-900 {
  --tw-border-opacity: 1;
  border-color: rgb(23 23 23 / var(--tw-border-opacity, 1));
}
.border-neutral-950 {
  --tw-border-opacity: 1;
  border-color: rgb(10 10 10 / var(--tw-border-opacity, 1));
}
.border-orange-100 {
  --tw-border-opacity: 1;
  border-color: rgb(255 237 213 / var(--tw-border-opacity, 1));
}
.border-orange-200 {
  --tw-border-opacity: 1;
  border-color: rgb(254 215 170 / var(--tw-border-opacity, 1));
}
.border-orange-300 {
  --tw-border-opacity: 1;
  border-color: rgb(253 186 116 / var(--tw-border-opacity, 1));
}
.border-orange-400 {
  --tw-border-opacity: 1;
  border-color: rgb(251 146 60 / var(--tw-border-opacity, 1));
}
.border-orange-50 {
  --tw-border-opacity: 1;
  border-color: rgb(255 247 237 / var(--tw-border-opacity, 1));
}
.border-orange-500 {
  --tw-border-opacity: 1;
  border-color: rgb(249 115 22 / var(--tw-border-opacity, 1));
}
.border-orange-600 {
  --tw-border-opacity: 1;
  border-color: rgb(234 88 12 / var(--tw-border-opacity, 1));
}
.border-orange-700 {
  --tw-border-opacity: 1;
  border-color: rgb(194 65 12 / var(--tw-border-opacity, 1));
}
.border-orange-800 {
  --tw-border-opacity: 1;
  border-color: rgb(154 52 18 / var(--tw-border-opacity, 1));
}
.border-orange-900 {
  --tw-border-opacity: 1;
  border-color: rgb(124 45 18 / var(--tw-border-opacity, 1));
}
.border-orange-950 {
  --tw-border-opacity: 1;
  border-color: rgb(67 20 7 / var(--tw-border-opacity, 1));
}
.border-pink-100 {
  --tw-border-opacity: 1;
  border-color: rgb(252 231 243 / var(--tw-border-opacity, 1));
}
.border-pink-200 {
  --tw-border-opacity: 1;
  border-color: rgb(251 207 232 / var(--tw-border-opacity, 1));
}
.border-pink-300 {
  --tw-border-opacity: 1;
  border-color: rgb(249 168 212 / var(--tw-border-opacity, 1));
}
.border-pink-400 {
  --tw-border-opacity: 1;
  border-color: rgb(244 114 182 / var(--tw-border-opacity, 1));
}
.border-pink-50 {
  --tw-border-opacity: 1;
  border-color: rgb(253 242 248 / var(--tw-border-opacity, 1));
}
.border-pink-500 {
  --tw-border-opacity: 1;
  border-color: rgb(236 72 153 / var(--tw-border-opacity, 1));
}
.border-pink-600 {
  --tw-border-opacity: 1;
  border-color: rgb(219 39 119 / var(--tw-border-opacity, 1));
}
.border-pink-700 {
  --tw-border-opacity: 1;
  border-color: rgb(190 24 93 / var(--tw-border-opacity, 1));
}
.border-pink-800 {
  --tw-border-opacity: 1;
  border-color: rgb(157 23 77 / var(--tw-border-opacity, 1));
}
.border-pink-900 {
  --tw-border-opacity: 1;
  border-color: rgb(131 24 67 / var(--tw-border-opacity, 1));
}
.border-pink-950 {
  --tw-border-opacity: 1;
  border-color: rgb(80 7 36 / var(--tw-border-opacity, 1));
}
.border-primary {
  border-color: var(--primary);
}
.border-purple-100 {
  --tw-border-opacity: 1;
  border-color: rgb(243 232 255 / var(--tw-border-opacity, 1));
}
.border-purple-200 {
  --tw-border-opacity: 1;
  border-color: rgb(233 213 255 / var(--tw-border-opacity, 1));
}
.border-purple-300 {
  --tw-border-opacity: 1;
  border-color: rgb(216 180 254 / var(--tw-border-opacity, 1));
}
.border-purple-400 {
  --tw-border-opacity: 1;
  border-color: rgb(192 132 252 / var(--tw-border-opacity, 1));
}
.border-purple-50 {
  --tw-border-opacity: 1;
  border-color: rgb(250 245 255 / var(--tw-border-opacity, 1));
}
.border-purple-500 {
  --tw-border-opacity: 1;
  border-color: rgb(168 85 247 / var(--tw-border-opacity, 1));
}
.border-purple-600 {
  --tw-border-opacity: 1;
  border-color: rgb(147 51 234 / var(--tw-border-opacity, 1));
}
.border-purple-700 {
  --tw-border-opacity: 1;
  border-color: rgb(126 34 206 / var(--tw-border-opacity, 1));
}
.border-purple-800 {
  --tw-border-opacity: 1;
  border-color: rgb(107 33 168 / var(--tw-border-opacity, 1));
}
.border-purple-900 {
  --tw-border-opacity: 1;
  border-color: rgb(88 28 135 / var(--tw-border-opacity, 1));
}
.border-purple-950 {
  --tw-border-opacity: 1;
  border-color: rgb(59 7 100 / var(--tw-border-opacity, 1));
}
.border-red-100 {
  --tw-border-opacity: 1;
  border-color: rgb(254 226 226 / var(--tw-border-opacity, 1));
}
.border-red-200 {
  --tw-border-opacity: 1;
  border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}
.border-red-300 {
  --tw-border-opacity: 1;
  border-color: rgb(252 165 165 / var(--tw-border-opacity, 1));
}
.border-red-400 {
  --tw-border-opacity: 1;
  border-color: rgb(248 113 113 / var(--tw-border-opacity, 1));
}
.border-red-50 {
  --tw-border-opacity: 1;
  border-color: rgb(254 242 242 / var(--tw-border-opacity, 1));
}
.border-red-500 {
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}
.border-red-600 {
  --tw-border-opacity: 1;
  border-color: rgb(220 38 38 / var(--tw-border-opacity, 1));
}
.border-red-700 {
  --tw-border-opacity: 1;
  border-color: rgb(185 28 28 / var(--tw-border-opacity, 1));
}
.border-red-800 {
  --tw-border-opacity: 1;
  border-color: rgb(153 27 27 / var(--tw-border-opacity, 1));
}
.border-red-900 {
  --tw-border-opacity: 1;
  border-color: rgb(127 29 29 / var(--tw-border-opacity, 1));
}
.border-red-950 {
  --tw-border-opacity: 1;
  border-color: rgb(69 10 10 / var(--tw-border-opacity, 1));
}
.border-rose-100 {
  --tw-border-opacity: 1;
  border-color: rgb(255 228 230 / var(--tw-border-opacity, 1));
}
.border-rose-200 {
  --tw-border-opacity: 1;
  border-color: rgb(254 205 211 / var(--tw-border-opacity, 1));
}
.border-rose-300 {
  --tw-border-opacity: 1;
  border-color: rgb(253 164 175 / var(--tw-border-opacity, 1));
}
.border-rose-400 {
  --tw-border-opacity: 1;
  border-color: rgb(251 113 133 / var(--tw-border-opacity, 1));
}
.border-rose-50 {
  --tw-border-opacity: 1;
  border-color: rgb(255 241 242 / var(--tw-border-opacity, 1));
}
.border-rose-500 {
  --tw-border-opacity: 1;
  border-color: rgb(244 63 94 / var(--tw-border-opacity, 1));
}
.border-rose-600 {
  --tw-border-opacity: 1;
  border-color: rgb(225 29 72 / var(--tw-border-opacity, 1));
}
.border-rose-700 {
  --tw-border-opacity: 1;
  border-color: rgb(190 18 60 / var(--tw-border-opacity, 1));
}
.border-rose-800 {
  --tw-border-opacity: 1;
  border-color: rgb(159 18 57 / var(--tw-border-opacity, 1));
}
.border-rose-900 {
  --tw-border-opacity: 1;
  border-color: rgb(136 19 55 / var(--tw-border-opacity, 1));
}
.border-rose-950 {
  --tw-border-opacity: 1;
  border-color: rgb(76 5 25 / var(--tw-border-opacity, 1));
}
.border-sky-100 {
  --tw-border-opacity: 1;
  border-color: rgb(224 242 254 / var(--tw-border-opacity, 1));
}
.border-sky-200 {
  --tw-border-opacity: 1;
  border-color: rgb(186 230 253 / var(--tw-border-opacity, 1));
}
.border-sky-300 {
  --tw-border-opacity: 1;
  border-color: rgb(125 211 252 / var(--tw-border-opacity, 1));
}
.border-sky-400 {
  --tw-border-opacity: 1;
  border-color: rgb(56 189 248 / var(--tw-border-opacity, 1));
}
.border-sky-50 {
  --tw-border-opacity: 1;
  border-color: rgb(240 249 255 / var(--tw-border-opacity, 1));
}
.border-sky-500 {
  --tw-border-opacity: 1;
  border-color: rgb(14 165 233 / var(--tw-border-opacity, 1));
}
.border-sky-600 {
  --tw-border-opacity: 1;
  border-color: rgb(2 132 199 / var(--tw-border-opacity, 1));
}
.border-sky-700 {
  --tw-border-opacity: 1;
  border-color: rgb(3 105 161 / var(--tw-border-opacity, 1));
}
.border-sky-800 {
  --tw-border-opacity: 1;
  border-color: rgb(7 89 133 / var(--tw-border-opacity, 1));
}
.border-sky-900 {
  --tw-border-opacity: 1;
  border-color: rgb(12 74 110 / var(--tw-border-opacity, 1));
}
.border-sky-950 {
  --tw-border-opacity: 1;
  border-color: rgb(8 47 73 / var(--tw-border-opacity, 1));
}
.border-slate-100 {
  --tw-border-opacity: 1;
  border-color: rgb(241 245 249 / var(--tw-border-opacity, 1));
}
.border-slate-200 {
  --tw-border-opacity: 1;
  border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
}
.border-slate-300 {
  --tw-border-opacity: 1;
  border-color: rgb(203 213 225 / var(--tw-border-opacity, 1));
}
.border-slate-400 {
  --tw-border-opacity: 1;
  border-color: rgb(148 163 184 / var(--tw-border-opacity, 1));
}
.border-slate-50 {
  --tw-border-opacity: 1;
  border-color: rgb(248 250 252 / var(--tw-border-opacity, 1));
}
.border-slate-500 {
  --tw-border-opacity: 1;
  border-color: rgb(100 116 139 / var(--tw-border-opacity, 1));
}
.border-slate-600 {
  --tw-border-opacity: 1;
  border-color: rgb(71 85 105 / var(--tw-border-opacity, 1));
}
.border-slate-700 {
  --tw-border-opacity: 1;
  border-color: rgb(51 65 85 / var(--tw-border-opacity, 1));
}
.border-slate-800 {
  --tw-border-opacity: 1;
  border-color: rgb(30 41 59 / var(--tw-border-opacity, 1));
}
.border-slate-900 {
  --tw-border-opacity: 1;
  border-color: rgb(15 23 42 / var(--tw-border-opacity, 1));
}
.border-slate-950 {
  --tw-border-opacity: 1;
  border-color: rgb(2 6 23 / var(--tw-border-opacity, 1));
}
.border-stone-100 {
  --tw-border-opacity: 1;
  border-color: rgb(245 245 244 / var(--tw-border-opacity, 1));
}
.border-stone-200 {
  --tw-border-opacity: 1;
  border-color: rgb(231 229 228 / var(--tw-border-opacity, 1));
}
.border-stone-300 {
  --tw-border-opacity: 1;
  border-color: rgb(214 211 209 / var(--tw-border-opacity, 1));
}
.border-stone-400 {
  --tw-border-opacity: 1;
  border-color: rgb(168 162 158 / var(--tw-border-opacity, 1));
}
.border-stone-50 {
  --tw-border-opacity: 1;
  border-color: rgb(250 250 249 / var(--tw-border-opacity, 1));
}
.border-stone-500 {
  --tw-border-opacity: 1;
  border-color: rgb(120 113 108 / var(--tw-border-opacity, 1));
}
.border-stone-600 {
  --tw-border-opacity: 1;
  border-color: rgb(87 83 78 / var(--tw-border-opacity, 1));
}
.border-stone-700 {
  --tw-border-opacity: 1;
  border-color: rgb(68 64 60 / var(--tw-border-opacity, 1));
}
.border-stone-800 {
  --tw-border-opacity: 1;
  border-color: rgb(41 37 36 / var(--tw-border-opacity, 1));
}
.border-stone-900 {
  --tw-border-opacity: 1;
  border-color: rgb(28 25 23 / var(--tw-border-opacity, 1));
}
.border-stone-950 {
  --tw-border-opacity: 1;
  border-color: rgb(12 10 9 / var(--tw-border-opacity, 1));
}
.border-teal-100 {
  --tw-border-opacity: 1;
  border-color: rgb(204 251 241 / var(--tw-border-opacity, 1));
}
.border-teal-200 {
  --tw-border-opacity: 1;
  border-color: rgb(153 246 228 / var(--tw-border-opacity, 1));
}
.border-teal-300 {
  --tw-border-opacity: 1;
  border-color: rgb(94 234 212 / var(--tw-border-opacity, 1));
}
.border-teal-400 {
  --tw-border-opacity: 1;
  border-color: rgb(45 212 191 / var(--tw-border-opacity, 1));
}
.border-teal-50 {
  --tw-border-opacity: 1;
  border-color: rgb(240 253 250 / var(--tw-border-opacity, 1));
}
.border-teal-500 {
  --tw-border-opacity: 1;
  border-color: rgb(20 184 166 / var(--tw-border-opacity, 1));
}
.border-teal-600 {
  --tw-border-opacity: 1;
  border-color: rgb(13 148 136 / var(--tw-border-opacity, 1));
}
.border-teal-700 {
  --tw-border-opacity: 1;
  border-color: rgb(15 118 110 / var(--tw-border-opacity, 1));
}
.border-teal-800 {
  --tw-border-opacity: 1;
  border-color: rgb(17 94 89 / var(--tw-border-opacity, 1));
}
.border-teal-900 {
  --tw-border-opacity: 1;
  border-color: rgb(19 78 74 / var(--tw-border-opacity, 1));
}
.border-teal-950 {
  --tw-border-opacity: 1;
  border-color: rgb(4 47 46 / var(--tw-border-opacity, 1));
}
.border-transparent {
  border-color: transparent;
}
.border-violet-100 {
  --tw-border-opacity: 1;
  border-color: rgb(237 233 254 / var(--tw-border-opacity, 1));
}
.border-violet-200 {
  --tw-border-opacity: 1;
  border-color: rgb(221 214 254 / var(--tw-border-opacity, 1));
}
.border-violet-300 {
  --tw-border-opacity: 1;
  border-color: rgb(196 181 253 / var(--tw-border-opacity, 1));
}
.border-violet-400 {
  --tw-border-opacity: 1;
  border-color: rgb(167 139 250 / var(--tw-border-opacity, 1));
}
.border-violet-50 {
  --tw-border-opacity: 1;
  border-color: rgb(245 243 255 / var(--tw-border-opacity, 1));
}
.border-violet-500 {
  --tw-border-opacity: 1;
  border-color: rgb(139 92 246 / var(--tw-border-opacity, 1));
}
.border-violet-600 {
  --tw-border-opacity: 1;
  border-color: rgb(124 58 237 / var(--tw-border-opacity, 1));
}
.border-violet-700 {
  --tw-border-opacity: 1;
  border-color: rgb(109 40 217 / var(--tw-border-opacity, 1));
}
.border-violet-800 {
  --tw-border-opacity: 1;
  border-color: rgb(91 33 182 / var(--tw-border-opacity, 1));
}
.border-violet-900 {
  --tw-border-opacity: 1;
  border-color: rgb(76 29 149 / var(--tw-border-opacity, 1));
}
.border-violet-950 {
  --tw-border-opacity: 1;
  border-color: rgb(46 16 101 / var(--tw-border-opacity, 1));
}
.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.border-white\/30 {
  border-color: rgb(255 255 255 / 0.3);
}
.border-yellow-100 {
  --tw-border-opacity: 1;
  border-color: rgb(254 249 195 / var(--tw-border-opacity, 1));
}
.border-yellow-200 {
  --tw-border-opacity: 1;
  border-color: rgb(254 240 138 / var(--tw-border-opacity, 1));
}
.border-yellow-300 {
  --tw-border-opacity: 1;
  border-color: rgb(253 224 71 / var(--tw-border-opacity, 1));
}
.border-yellow-400 {
  --tw-border-opacity: 1;
  border-color: rgb(250 204 21 / var(--tw-border-opacity, 1));
}
.border-yellow-50 {
  --tw-border-opacity: 1;
  border-color: rgb(254 252 232 / var(--tw-border-opacity, 1));
}
.border-yellow-500 {
  --tw-border-opacity: 1;
  border-color: rgb(234 179 8 / var(--tw-border-opacity, 1));
}
.border-yellow-600 {
  --tw-border-opacity: 1;
  border-color: rgb(202 138 4 / var(--tw-border-opacity, 1));
}
.border-yellow-700 {
  --tw-border-opacity: 1;
  border-color: rgb(161 98 7 / var(--tw-border-opacity, 1));
}
.border-yellow-800 {
  --tw-border-opacity: 1;
  border-color: rgb(133 77 14 / var(--tw-border-opacity, 1));
}
.border-yellow-900 {
  --tw-border-opacity: 1;
  border-color: rgb(113 63 18 / var(--tw-border-opacity, 1));
}
.border-yellow-950 {
  --tw-border-opacity: 1;
  border-color: rgb(66 32 6 / var(--tw-border-opacity, 1));
}
.border-zinc-100 {
  --tw-border-opacity: 1;
  border-color: rgb(244 244 245 / var(--tw-border-opacity, 1));
}
.border-zinc-200 {
  --tw-border-opacity: 1;
  border-color: rgb(228 228 231 / var(--tw-border-opacity, 1));
}
.border-zinc-300 {
  --tw-border-opacity: 1;
  border-color: rgb(212 212 216 / var(--tw-border-opacity, 1));
}
.border-zinc-400 {
  --tw-border-opacity: 1;
  border-color: rgb(161 161 170 / var(--tw-border-opacity, 1));
}
.border-zinc-50 {
  --tw-border-opacity: 1;
  border-color: rgb(250 250 250 / var(--tw-border-opacity, 1));
}
.border-zinc-500 {
  --tw-border-opacity: 1;
  border-color: rgb(113 113 122 / var(--tw-border-opacity, 1));
}
.border-zinc-600 {
  --tw-border-opacity: 1;
  border-color: rgb(82 82 91 / var(--tw-border-opacity, 1));
}
.border-zinc-700 {
  --tw-border-opacity: 1;
  border-color: rgb(63 63 70 / var(--tw-border-opacity, 1));
}
.border-zinc-800 {
  --tw-border-opacity: 1;
  border-color: rgb(39 39 42 / var(--tw-border-opacity, 1));
}
.border-zinc-900 {
  --tw-border-opacity: 1;
  border-color: rgb(24 24 27 / var(--tw-border-opacity, 1));
}
.border-zinc-950 {
  --tw-border-opacity: 1;
  border-color: rgb(9 9 11 / var(--tw-border-opacity, 1));
}
.border-l-transparent {
  border-left-color: transparent;
}
.border-t-gray-500 {
  --tw-border-opacity: 1;
  border-top-color: rgb(107 114 128 / var(--tw-border-opacity, 1));
}
.border-t-transparent {
  border-top-color: transparent;
}
.bg-\[\#ebf0fa\] {
  --tw-bg-opacity: 1;
  background-color: rgb(235 240 250 / var(--tw-bg-opacity, 1));
}
.bg-\[\#eef2fa\] {
  --tw-bg-opacity: 1;
  background-color: rgb(238 242 250 / var(--tw-bg-opacity, 1));
}
.bg-\[\#eefafc\] {
  --tw-bg-opacity: 1;
  background-color: rgb(238 250 252 / var(--tw-bg-opacity, 1));
}
.bg-\[\#f4f7fe\] {
  --tw-bg-opacity: 1;
  background-color: rgb(244 247 254 / var(--tw-bg-opacity, 1));
}
.bg-\[\#ffffff\] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-\[rgba\(0\2c 0\2c 0\2c 0\.01\)\] {
  background-color: rgba(0,0,0,0.01);
}
.bg-\[rgba\(250\2c 252\2c 255\2c 0\.95\)\] {
  background-color: rgba(250,252,255,0.95);
}
.bg-\[var\(--bg\)\] {
  background-color: var(--bg);
}
.bg-\[var\(--bg-\$\{bp\}-\$\{state\}\)\] {
  background-color: var(--bg-${bp}-${state});
}
.bg-accent {
  background-color: var(--accent);
}
.bg-amber-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 243 199 / var(--tw-bg-opacity, 1));
}
.bg-amber-100\/10 {
  background-color: rgb(254 243 199 / 0.1);
}
.bg-amber-100\/20 {
  background-color: rgb(254 243 199 / 0.2);
}
.bg-amber-100\/30 {
  background-color: rgb(254 243 199 / 0.3);
}
.bg-amber-100\/40 {
  background-color: rgb(254 243 199 / 0.4);
}
.bg-amber-100\/5 {
  background-color: rgb(254 243 199 / 0.05);
}
.bg-amber-100\/50 {
  background-color: rgb(254 243 199 / 0.5);
}
.bg-amber-100\/60 {
  background-color: rgb(254 243 199 / 0.6);
}
.bg-amber-100\/70 {
  background-color: rgb(254 243 199 / 0.7);
}
.bg-amber-100\/80 {
  background-color: rgb(254 243 199 / 0.8);
}
.bg-amber-100\/90 {
  background-color: rgb(254 243 199 / 0.9);
}
.bg-amber-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(253 230 138 / var(--tw-bg-opacity, 1));
}
.bg-amber-200\/10 {
  background-color: rgb(253 230 138 / 0.1);
}
.bg-amber-200\/20 {
  background-color: rgb(253 230 138 / 0.2);
}
.bg-amber-200\/30 {
  background-color: rgb(253 230 138 / 0.3);
}
.bg-amber-200\/40 {
  background-color: rgb(253 230 138 / 0.4);
}
.bg-amber-200\/5 {
  background-color: rgb(253 230 138 / 0.05);
}
.bg-amber-200\/50 {
  background-color: rgb(253 230 138 / 0.5);
}
.bg-amber-200\/60 {
  background-color: rgb(253 230 138 / 0.6);
}
.bg-amber-200\/70 {
  background-color: rgb(253 230 138 / 0.7);
}
.bg-amber-200\/80 {
  background-color: rgb(253 230 138 / 0.8);
}
.bg-amber-200\/90 {
  background-color: rgb(253 230 138 / 0.9);
}
.bg-amber-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(252 211 77 / var(--tw-bg-opacity, 1));
}
.bg-amber-300\/10 {
  background-color: rgb(252 211 77 / 0.1);
}
.bg-amber-300\/20 {
  background-color: rgb(252 211 77 / 0.2);
}
.bg-amber-300\/30 {
  background-color: rgb(252 211 77 / 0.3);
}
.bg-amber-300\/40 {
  background-color: rgb(252 211 77 / 0.4);
}
.bg-amber-300\/5 {
  background-color: rgb(252 211 77 / 0.05);
}
.bg-amber-300\/50 {
  background-color: rgb(252 211 77 / 0.5);
}
.bg-amber-300\/60 {
  background-color: rgb(252 211 77 / 0.6);
}
.bg-amber-300\/70 {
  background-color: rgb(252 211 77 / 0.7);
}
.bg-amber-300\/80 {
  background-color: rgb(252 211 77 / 0.8);
}
.bg-amber-300\/90 {
  background-color: rgb(252 211 77 / 0.9);
}
.bg-amber-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(251 191 36 / var(--tw-bg-opacity, 1));
}
.bg-amber-400\/10 {
  background-color: rgb(251 191 36 / 0.1);
}
.bg-amber-400\/20 {
  background-color: rgb(251 191 36 / 0.2);
}
.bg-amber-400\/30 {
  background-color: rgb(251 191 36 / 0.3);
}
.bg-amber-400\/40 {
  background-color: rgb(251 191 36 / 0.4);
}
.bg-amber-400\/5 {
  background-color: rgb(251 191 36 / 0.05);
}
.bg-amber-400\/50 {
  background-color: rgb(251 191 36 / 0.5);
}
.bg-amber-400\/60 {
  background-color: rgb(251 191 36 / 0.6);
}
.bg-amber-400\/70 {
  background-color: rgb(251 191 36 / 0.7);
}
.bg-amber-400\/80 {
  background-color: rgb(251 191 36 / 0.8);
}
.bg-amber-400\/90 {
  background-color: rgb(251 191 36 / 0.9);
}
.bg-amber-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 251 235 / var(--tw-bg-opacity, 1));
}
.bg-amber-50\/10 {
  background-color: rgb(255 251 235 / 0.1);
}
.bg-amber-50\/20 {
  background-color: rgb(255 251 235 / 0.2);
}
.bg-amber-50\/30 {
  background-color: rgb(255 251 235 / 0.3);
}
.bg-amber-50\/40 {
  background-color: rgb(255 251 235 / 0.4);
}
.bg-amber-50\/5 {
  background-color: rgb(255 251 235 / 0.05);
}
.bg-amber-50\/50 {
  background-color: rgb(255 251 235 / 0.5);
}
.bg-amber-50\/60 {
  background-color: rgb(255 251 235 / 0.6);
}
.bg-amber-50\/70 {
  background-color: rgb(255 251 235 / 0.7);
}
.bg-amber-50\/80 {
  background-color: rgb(255 251 235 / 0.8);
}
.bg-amber-50\/90 {
  background-color: rgb(255 251 235 / 0.9);
}
.bg-amber-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(245 158 11 / var(--tw-bg-opacity, 1));
}
.bg-amber-500\/10 {
  background-color: rgb(245 158 11 / 0.1);
}
.bg-amber-500\/20 {
  background-color: rgb(245 158 11 / 0.2);
}
.bg-amber-500\/30 {
  background-color: rgb(245 158 11 / 0.3);
}
.bg-amber-500\/40 {
  background-color: rgb(245 158 11 / 0.4);
}
.bg-amber-500\/5 {
  background-color: rgb(245 158 11 / 0.05);
}
.bg-amber-500\/50 {
  background-color: rgb(245 158 11 / 0.5);
}
.bg-amber-500\/60 {
  background-color: rgb(245 158 11 / 0.6);
}
.bg-amber-500\/70 {
  background-color: rgb(245 158 11 / 0.7);
}
.bg-amber-500\/80 {
  background-color: rgb(245 158 11 / 0.8);
}
.bg-amber-500\/90 {
  background-color: rgb(245 158 11 / 0.9);
}
.bg-amber-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(217 119 6 / var(--tw-bg-opacity, 1));
}
.bg-amber-600\/10 {
  background-color: rgb(217 119 6 / 0.1);
}
.bg-amber-600\/20 {
  background-color: rgb(217 119 6 / 0.2);
}
.bg-amber-600\/30 {
  background-color: rgb(217 119 6 / 0.3);
}
.bg-amber-600\/40 {
  background-color: rgb(217 119 6 / 0.4);
}
.bg-amber-600\/5 {
  background-color: rgb(217 119 6 / 0.05);
}
.bg-amber-600\/50 {
  background-color: rgb(217 119 6 / 0.5);
}
.bg-amber-600\/60 {
  background-color: rgb(217 119 6 / 0.6);
}
.bg-amber-600\/70 {
  background-color: rgb(217 119 6 / 0.7);
}
.bg-amber-600\/80 {
  background-color: rgb(217 119 6 / 0.8);
}
.bg-amber-600\/90 {
  background-color: rgb(217 119 6 / 0.9);
}
.bg-amber-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(180 83 9 / var(--tw-bg-opacity, 1));
}
.bg-amber-700\/10 {
  background-color: rgb(180 83 9 / 0.1);
}
.bg-amber-700\/20 {
  background-color: rgb(180 83 9 / 0.2);
}
.bg-amber-700\/30 {
  background-color: rgb(180 83 9 / 0.3);
}
.bg-amber-700\/40 {
  background-color: rgb(180 83 9 / 0.4);
}
.bg-amber-700\/5 {
  background-color: rgb(180 83 9 / 0.05);
}
.bg-amber-700\/50 {
  background-color: rgb(180 83 9 / 0.5);
}
.bg-amber-700\/60 {
  background-color: rgb(180 83 9 / 0.6);
}
.bg-amber-700\/70 {
  background-color: rgb(180 83 9 / 0.7);
}
.bg-amber-700\/80 {
  background-color: rgb(180 83 9 / 0.8);
}
.bg-amber-700\/90 {
  background-color: rgb(180 83 9 / 0.9);
}
.bg-amber-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(146 64 14 / var(--tw-bg-opacity, 1));
}
.bg-amber-800\/10 {
  background-color: rgb(146 64 14 / 0.1);
}
.bg-amber-800\/20 {
  background-color: rgb(146 64 14 / 0.2);
}
.bg-amber-800\/30 {
  background-color: rgb(146 64 14 / 0.3);
}
.bg-amber-800\/40 {
  background-color: rgb(146 64 14 / 0.4);
}
.bg-amber-800\/5 {
  background-color: rgb(146 64 14 / 0.05);
}
.bg-amber-800\/50 {
  background-color: rgb(146 64 14 / 0.5);
}
.bg-amber-800\/60 {
  background-color: rgb(146 64 14 / 0.6);
}
.bg-amber-800\/70 {
  background-color: rgb(146 64 14 / 0.7);
}
.bg-amber-800\/80 {
  background-color: rgb(146 64 14 / 0.8);
}
.bg-amber-800\/90 {
  background-color: rgb(146 64 14 / 0.9);
}
.bg-amber-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(120 53 15 / var(--tw-bg-opacity, 1));
}
.bg-amber-900\/10 {
  background-color: rgb(120 53 15 / 0.1);
}
.bg-amber-900\/20 {
  background-color: rgb(120 53 15 / 0.2);
}
.bg-amber-900\/30 {
  background-color: rgb(120 53 15 / 0.3);
}
.bg-amber-900\/40 {
  background-color: rgb(120 53 15 / 0.4);
}
.bg-amber-900\/5 {
  background-color: rgb(120 53 15 / 0.05);
}
.bg-amber-900\/50 {
  background-color: rgb(120 53 15 / 0.5);
}
.bg-amber-900\/60 {
  background-color: rgb(120 53 15 / 0.6);
}
.bg-amber-900\/70 {
  background-color: rgb(120 53 15 / 0.7);
}
.bg-amber-900\/80 {
  background-color: rgb(120 53 15 / 0.8);
}
.bg-amber-900\/90 {
  background-color: rgb(120 53 15 / 0.9);
}
.bg-amber-950 {
  --tw-bg-opacity: 1;
  background-color: rgb(69 26 3 / var(--tw-bg-opacity, 1));
}
.bg-amber-950\/10 {
  background-color: rgb(69 26 3 / 0.1);
}
.bg-amber-950\/20 {
  background-color: rgb(69 26 3 / 0.2);
}
.bg-amber-950\/30 {
  background-color: rgb(69 26 3 / 0.3);
}
.bg-amber-950\/40 {
  background-color: rgb(69 26 3 / 0.4);
}
.bg-amber-950\/5 {
  background-color: rgb(69 26 3 / 0.05);
}
.bg-amber-950\/50 {
  background-color: rgb(69 26 3 / 0.5);
}
.bg-amber-950\/60 {
  background-color: rgb(69 26 3 / 0.6);
}
.bg-amber-950\/70 {
  background-color: rgb(69 26 3 / 0.7);
}
.bg-amber-950\/80 {
  background-color: rgb(69 26 3 / 0.8);
}
.bg-amber-950\/90 {
  background-color: rgb(69 26 3 / 0.9);
}
.bg-background {
  background-color: var(--background);
}
.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
.bg-black\/10 {
  background-color: rgb(0 0 0 / 0.1);
}
.bg-black\/30 {
  background-color: rgb(0 0 0 / 0.3);
}
.bg-black\/50 {
  background-color: rgb(0 0 0 / 0.5);
}
.bg-black\/80 {
  background-color: rgb(0 0 0 / 0.8);
}
.bg-blue-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
}
.bg-blue-100\/10 {
  background-color: rgb(219 234 254 / 0.1);
}
.bg-blue-100\/20 {
  background-color: rgb(219 234 254 / 0.2);
}
.bg-blue-100\/30 {
  background-color: rgb(219 234 254 / 0.3);
}
.bg-blue-100\/40 {
  background-color: rgb(219 234 254 / 0.4);
}
.bg-blue-100\/5 {
  background-color: rgb(219 234 254 / 0.05);
}
.bg-blue-100\/50 {
  background-color: rgb(219 234 254 / 0.5);
}
.bg-blue-100\/60 {
  background-color: rgb(219 234 254 / 0.6);
}
.bg-blue-100\/70 {
  background-color: rgb(219 234 254 / 0.7);
}
.bg-blue-100\/80 {
  background-color: rgb(219 234 254 / 0.8);
}
.bg-blue-100\/90 {
  background-color: rgb(219 234 254 / 0.9);
}
.bg-blue-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(191 219 254 / var(--tw-bg-opacity, 1));
}
.bg-blue-200\/10 {
  background-color: rgb(191 219 254 / 0.1);
}
.bg-blue-200\/20 {
  background-color: rgb(191 219 254 / 0.2);
}
.bg-blue-200\/30 {
  background-color: rgb(191 219 254 / 0.3);
}
.bg-blue-200\/40 {
  background-color: rgb(191 219 254 / 0.4);
}
.bg-blue-200\/5 {
  background-color: rgb(191 219 254 / 0.05);
}
.bg-blue-200\/50 {
  background-color: rgb(191 219 254 / 0.5);
}
.bg-blue-200\/60 {
  background-color: rgb(191 219 254 / 0.6);
}
.bg-blue-200\/70 {
  background-color: rgb(191 219 254 / 0.7);
}
.bg-blue-200\/80 {
  background-color: rgb(191 219 254 / 0.8);
}
.bg-blue-200\/90 {
  background-color: rgb(191 219 254 / 0.9);
}
.bg-blue-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(147 197 253 / var(--tw-bg-opacity, 1));
}
.bg-blue-300\/10 {
  background-color: rgb(147 197 253 / 0.1);
}
.bg-blue-300\/20 {
  background-color: rgb(147 197 253 / 0.2);
}
.bg-blue-300\/30 {
  background-color: rgb(147 197 253 / 0.3);
}
.bg-blue-300\/40 {
  background-color: rgb(147 197 253 / 0.4);
}
.bg-blue-300\/5 {
  background-color: rgb(147 197 253 / 0.05);
}
.bg-blue-300\/50 {
  background-color: rgb(147 197 253 / 0.5);
}
.bg-blue-300\/60 {
  background-color: rgb(147 197 253 / 0.6);
}
.bg-blue-300\/70 {
  background-color: rgb(147 197 253 / 0.7);
}
.bg-blue-300\/80 {
  background-color: rgb(147 197 253 / 0.8);
}
.bg-blue-300\/90 {
  background-color: rgb(147 197 253 / 0.9);
}
.bg-blue-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(96 165 250 / var(--tw-bg-opacity, 1));
}
.bg-blue-400\/10 {
  background-color: rgb(96 165 250 / 0.1);
}
.bg-blue-400\/20 {
  background-color: rgb(96 165 250 / 0.2);
}
.bg-blue-400\/30 {
  background-color: rgb(96 165 250 / 0.3);
}
.bg-blue-400\/40 {
  background-color: rgb(96 165 250 / 0.4);
}
.bg-blue-400\/5 {
  background-color: rgb(96 165 250 / 0.05);
}
.bg-blue-400\/50 {
  background-color: rgb(96 165 250 / 0.5);
}
.bg-blue-400\/60 {
  background-color: rgb(96 165 250 / 0.6);
}
.bg-blue-400\/70 {
  background-color: rgb(96 165 250 / 0.7);
}
.bg-blue-400\/80 {
  background-color: rgb(96 165 250 / 0.8);
}
.bg-blue-400\/90 {
  background-color: rgb(96 165 250 / 0.9);
}
.bg-blue-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}
.bg-blue-50\/10 {
  background-color: rgb(239 246 255 / 0.1);
}
.bg-blue-50\/20 {
  background-color: rgb(239 246 255 / 0.2);
}
.bg-blue-50\/30 {
  background-color: rgb(239 246 255 / 0.3);
}
.bg-blue-50\/40 {
  background-color: rgb(239 246 255 / 0.4);
}
.bg-blue-50\/5 {
  background-color: rgb(239 246 255 / 0.05);
}
.bg-blue-50\/50 {
  background-color: rgb(239 246 255 / 0.5);
}
.bg-blue-50\/60 {
  background-color: rgb(239 246 255 / 0.6);
}
.bg-blue-50\/70 {
  background-color: rgb(239 246 255 / 0.7);
}
.bg-blue-50\/80 {
  background-color: rgb(239 246 255 / 0.8);
}
.bg-blue-50\/90 {
  background-color: rgb(239 246 255 / 0.9);
}
.bg-blue-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
}
.bg-blue-500\/10 {
  background-color: rgb(59 130 246 / 0.1);
}
.bg-blue-500\/20 {
  background-color: rgb(59 130 246 / 0.2);
}
.bg-blue-500\/30 {
  background-color: rgb(59 130 246 / 0.3);
}
.bg-blue-500\/40 {
  background-color: rgb(59 130 246 / 0.4);
}
.bg-blue-500\/5 {
  background-color: rgb(59 130 246 / 0.05);
}
.bg-blue-500\/50 {
  background-color: rgb(59 130 246 / 0.5);
}
.bg-blue-500\/60 {
  background-color: rgb(59 130 246 / 0.6);
}
.bg-blue-500\/70 {
  background-color: rgb(59 130 246 / 0.7);
}
.bg-blue-500\/80 {
  background-color: rgb(59 130 246 / 0.8);
}
.bg-blue-500\/90 {
  background-color: rgb(59 130 246 / 0.9);
}
.bg-blue-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
.bg-blue-600\/10 {
  background-color: rgb(37 99 235 / 0.1);
}
.bg-blue-600\/20 {
  background-color: rgb(37 99 235 / 0.2);
}
.bg-blue-600\/30 {
  background-color: rgb(37 99 235 / 0.3);
}
.bg-blue-600\/40 {
  background-color: rgb(37 99 235 / 0.4);
}
.bg-blue-600\/5 {
  background-color: rgb(37 99 235 / 0.05);
}
.bg-blue-600\/50 {
  background-color: rgb(37 99 235 / 0.5);
}
.bg-blue-600\/60 {
  background-color: rgb(37 99 235 / 0.6);
}
.bg-blue-600\/70 {
  background-color: rgb(37 99 235 / 0.7);
}
.bg-blue-600\/80 {
  background-color: rgb(37 99 235 / 0.8);
}
.bg-blue-600\/90 {
  background-color: rgb(37 99 235 / 0.9);
}
.bg-blue-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
}
.bg-blue-700\/10 {
  background-color: rgb(29 78 216 / 0.1);
}
.bg-blue-700\/20 {
  background-color: rgb(29 78 216 / 0.2);
}
.bg-blue-700\/30 {
  background-color: rgb(29 78 216 / 0.3);
}
.bg-blue-700\/40 {
  background-color: rgb(29 78 216 / 0.4);
}
.bg-blue-700\/5 {
  background-color: rgb(29 78 216 / 0.05);
}
.bg-blue-700\/50 {
  background-color: rgb(29 78 216 / 0.5);
}
.bg-blue-700\/60 {
  background-color: rgb(29 78 216 / 0.6);
}
.bg-blue-700\/70 {
  background-color: rgb(29 78 216 / 0.7);
}
.bg-blue-700\/80 {
  background-color: rgb(29 78 216 / 0.8);
}
.bg-blue-700\/90 {
  background-color: rgb(29 78 216 / 0.9);
}
.bg-blue-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(30 64 175 / var(--tw-bg-opacity, 1));
}
.bg-blue-800\/10 {
  background-color: rgb(30 64 175 / 0.1);
}
.bg-blue-800\/20 {
  background-color: rgb(30 64 175 / 0.2);
}
.bg-blue-800\/30 {
  background-color: rgb(30 64 175 / 0.3);
}
.bg-blue-800\/40 {
  background-color: rgb(30 64 175 / 0.4);
}
.bg-blue-800\/5 {
  background-color: rgb(30 64 175 / 0.05);
}
.bg-blue-800\/50 {
  background-color: rgb(30 64 175 / 0.5);
}
.bg-blue-800\/60 {
  background-color: rgb(30 64 175 / 0.6);
}
.bg-blue-800\/70 {
  background-color: rgb(30 64 175 / 0.7);
}
.bg-blue-800\/80 {
  background-color: rgb(30 64 175 / 0.8);
}
.bg-blue-800\/90 {
  background-color: rgb(30 64 175 / 0.9);
}
.bg-blue-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(30 58 138 / var(--tw-bg-opacity, 1));
}
.bg-blue-900\/10 {
  background-color: rgb(30 58 138 / 0.1);
}
.bg-blue-900\/20 {
  background-color: rgb(30 58 138 / 0.2);
}
.bg-blue-900\/30 {
  background-color: rgb(30 58 138 / 0.3);
}
.bg-blue-900\/40 {
  background-color: rgb(30 58 138 / 0.4);
}
.bg-blue-900\/5 {
  background-color: rgb(30 58 138 / 0.05);
}
.bg-blue-900\/50 {
  background-color: rgb(30 58 138 / 0.5);
}
.bg-blue-900\/60 {
  background-color: rgb(30 58 138 / 0.6);
}
.bg-blue-900\/70 {
  background-color: rgb(30 58 138 / 0.7);
}
.bg-blue-900\/80 {
  background-color: rgb(30 58 138 / 0.8);
}
.bg-blue-900\/90 {
  background-color: rgb(30 58 138 / 0.9);
}
.bg-blue-950 {
  --tw-bg-opacity: 1;
  background-color: rgb(23 37 84 / var(--tw-bg-opacity, 1));
}
.bg-blue-950\/10 {
  background-color: rgb(23 37 84 / 0.1);
}
.bg-blue-950\/20 {
  background-color: rgb(23 37 84 / 0.2);
}
.bg-blue-950\/30 {
  background-color: rgb(23 37 84 / 0.3);
}
.bg-blue-950\/40 {
  background-color: rgb(23 37 84 / 0.4);
}
.bg-blue-950\/5 {
  background-color: rgb(23 37 84 / 0.05);
}
.bg-blue-950\/50 {
  background-color: rgb(23 37 84 / 0.5);
}
.bg-blue-950\/60 {
  background-color: rgb(23 37 84 / 0.6);
}
.bg-blue-950\/70 {
  background-color: rgb(23 37 84 / 0.7);
}
.bg-blue-950\/80 {
  background-color: rgb(23 37 84 / 0.8);
}
.bg-blue-950\/90 {
  background-color: rgb(23 37 84 / 0.9);
}
.bg-border {
  background-color: var(--border);
}
.bg-cyan-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(207 250 254 / var(--tw-bg-opacity, 1));
}
.bg-cyan-100\/10 {
  background-color: rgb(207 250 254 / 0.1);
}
.bg-cyan-100\/20 {
  background-color: rgb(207 250 254 / 0.2);
}
.bg-cyan-100\/30 {
  background-color: rgb(207 250 254 / 0.3);
}
.bg-cyan-100\/40 {
  background-color: rgb(207 250 254 / 0.4);
}
.bg-cyan-100\/5 {
  background-color: rgb(207 250 254 / 0.05);
}
.bg-cyan-100\/50 {
  background-color: rgb(207 250 254 / 0.5);
}
.bg-cyan-100\/60 {
  background-color: rgb(207 250 254 / 0.6);
}
.bg-cyan-100\/70 {
  background-color: rgb(207 250 254 / 0.7);
}
.bg-cyan-100\/80 {
  background-color: rgb(207 250 254 / 0.8);
}
.bg-cyan-100\/90 {
  background-color: rgb(207 250 254 / 0.9);
}
.bg-cyan-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(165 243 252 / var(--tw-bg-opacity, 1));
}
.bg-cyan-200\/10 {
  background-color: rgb(165 243 252 / 0.1);
}
.bg-cyan-200\/20 {
  background-color: rgb(165 243 252 / 0.2);
}
.bg-cyan-200\/30 {
  background-color: rgb(165 243 252 / 0.3);
}
.bg-cyan-200\/40 {
  background-color: rgb(165 243 252 / 0.4);
}
.bg-cyan-200\/5 {
  background-color: rgb(165 243 252 / 0.05);
}
.bg-cyan-200\/50 {
  background-color: rgb(165 243 252 / 0.5);
}
.bg-cyan-200\/60 {
  background-color: rgb(165 243 252 / 0.6);
}
.bg-cyan-200\/70 {
  background-color: rgb(165 243 252 / 0.7);
}
.bg-cyan-200\/80 {
  background-color: rgb(165 243 252 / 0.8);
}
.bg-cyan-200\/90 {
  background-color: rgb(165 243 252 / 0.9);
}
.bg-cyan-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(103 232 249 / var(--tw-bg-opacity, 1));
}
.bg-cyan-300\/10 {
  background-color: rgb(103 232 249 / 0.1);
}
.bg-cyan-300\/20 {
  background-color: rgb(103 232 249 / 0.2);
}
.bg-cyan-300\/30 {
  background-color: rgb(103 232 249 / 0.3);
}
.bg-cyan-300\/40 {
  background-color: rgb(103 232 249 / 0.4);
}
.bg-cyan-300\/5 {
  background-color: rgb(103 232 249 / 0.05);
}
.bg-cyan-300\/50 {
  background-color: rgb(103 232 249 / 0.5);
}
.bg-cyan-300\/60 {
  background-color: rgb(103 232 249 / 0.6);
}
.bg-cyan-300\/70 {
  background-color: rgb(103 232 249 / 0.7);
}
.bg-cyan-300\/80 {
  background-color: rgb(103 232 249 / 0.8);
}
.bg-cyan-300\/90 {
  background-color: rgb(103 232 249 / 0.9);
}
.bg-cyan-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(34 211 238 / var(--tw-bg-opacity, 1));
}
.bg-cyan-400\/10 {
  background-color: rgb(34 211 238 / 0.1);
}
.bg-cyan-400\/20 {
  background-color: rgb(34 211 238 / 0.2);
}
.bg-cyan-400\/30 {
  background-color: rgb(34 211 238 / 0.3);
}
.bg-cyan-400\/40 {
  background-color: rgb(34 211 238 / 0.4);
}
.bg-cyan-400\/5 {
  background-color: rgb(34 211 238 / 0.05);
}
.bg-cyan-400\/50 {
  background-color: rgb(34 211 238 / 0.5);
}
.bg-cyan-400\/60 {
  background-color: rgb(34 211 238 / 0.6);
}
.bg-cyan-400\/70 {
  background-color: rgb(34 211 238 / 0.7);
}
.bg-cyan-400\/80 {
  background-color: rgb(34 211 238 / 0.8);
}
.bg-cyan-400\/90 {
  background-color: rgb(34 211 238 / 0.9);
}
.bg-cyan-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(236 254 255 / var(--tw-bg-opacity, 1));
}
.bg-cyan-50\/10 {
  background-color: rgb(236 254 255 / 0.1);
}
.bg-cyan-50\/20 {
  background-color: rgb(236 254 255 / 0.2);
}
.bg-cyan-50\/30 {
  background-color: rgb(236 254 255 / 0.3);
}
.bg-cyan-50\/40 {
  background-color: rgb(236 254 255 / 0.4);
}
.bg-cyan-50\/5 {
  background-color: rgb(236 254 255 / 0.05);
}
.bg-cyan-50\/50 {
  background-color: rgb(236 254 255 / 0.5);
}
.bg-cyan-50\/60 {
  background-color: rgb(236 254 255 / 0.6);
}
.bg-cyan-50\/70 {
  background-color: rgb(236 254 255 / 0.7);
}
.bg-cyan-50\/80 {
  background-color: rgb(236 254 255 / 0.8);
}
.bg-cyan-50\/90 {
  background-color: rgb(236 254 255 / 0.9);
}
.bg-cyan-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(6 182 212 / var(--tw-bg-opacity, 1));
}
.bg-cyan-500\/10 {
  background-color: rgb(6 182 212 / 0.1);
}
.bg-cyan-500\/20 {
  background-color: rgb(6 182 212 / 0.2);
}
.bg-cyan-500\/30 {
  background-color: rgb(6 182 212 / 0.3);
}
.bg-cyan-500\/40 {
  background-color: rgb(6 182 212 / 0.4);
}
.bg-cyan-500\/5 {
  background-color: rgb(6 182 212 / 0.05);
}
.bg-cyan-500\/50 {
  background-color: rgb(6 182 212 / 0.5);
}
.bg-cyan-500\/60 {
  background-color: rgb(6 182 212 / 0.6);
}
.bg-cyan-500\/70 {
  background-color: rgb(6 182 212 / 0.7);
}
.bg-cyan-500\/80 {
  background-color: rgb(6 182 212 / 0.8);
}
.bg-cyan-500\/90 {
  background-color: rgb(6 182 212 / 0.9);
}
.bg-cyan-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(8 145 178 / var(--tw-bg-opacity, 1));
}
.bg-cyan-600\/10 {
  background-color: rgb(8 145 178 / 0.1);
}
.bg-cyan-600\/20 {
  background-color: rgb(8 145 178 / 0.2);
}
.bg-cyan-600\/30 {
  background-color: rgb(8 145 178 / 0.3);
}
.bg-cyan-600\/40 {
  background-color: rgb(8 145 178 / 0.4);
}
.bg-cyan-600\/5 {
  background-color: rgb(8 145 178 / 0.05);
}
.bg-cyan-600\/50 {
  background-color: rgb(8 145 178 / 0.5);
}
.bg-cyan-600\/60 {
  background-color: rgb(8 145 178 / 0.6);
}
.bg-cyan-600\/70 {
  background-color: rgb(8 145 178 / 0.7);
}
.bg-cyan-600\/80 {
  background-color: rgb(8 145 178 / 0.8);
}
.bg-cyan-600\/90 {
  background-color: rgb(8 145 178 / 0.9);
}
.bg-cyan-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(14 116 144 / var(--tw-bg-opacity, 1));
}
.bg-cyan-700\/10 {
  background-color: rgb(14 116 144 / 0.1);
}
.bg-cyan-700\/20 {
  background-color: rgb(14 116 144 / 0.2);
}
.bg-cyan-700\/30 {
  background-color: rgb(14 116 144 / 0.3);
}
.bg-cyan-700\/40 {
  background-color: rgb(14 116 144 / 0.4);
}
.bg-cyan-700\/5 {
  background-color: rgb(14 116 144 / 0.05);
}
.bg-cyan-700\/50 {
  background-color: rgb(14 116 144 / 0.5);
}
.bg-cyan-700\/60 {
  background-color: rgb(14 116 144 / 0.6);
}
.bg-cyan-700\/70 {
  background-color: rgb(14 116 144 / 0.7);
}
.bg-cyan-700\/80 {
  background-color: rgb(14 116 144 / 0.8);
}
.bg-cyan-700\/90 {
  background-color: rgb(14 116 144 / 0.9);
}
.bg-cyan-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(21 94 117 / var(--tw-bg-opacity, 1));
}
.bg-cyan-800\/10 {
  background-color: rgb(21 94 117 / 0.1);
}
.bg-cyan-800\/20 {
  background-color: rgb(21 94 117 / 0.2);
}
.bg-cyan-800\/30 {
  background-color: rgb(21 94 117 / 0.3);
}
.bg-cyan-800\/40 {
  background-color: rgb(21 94 117 / 0.4);
}
.bg-cyan-800\/5 {
  background-color: rgb(21 94 117 / 0.05);
}
.bg-cyan-800\/50 {
  background-color: rgb(21 94 117 / 0.5);
}
.bg-cyan-800\/60 {
  background-color: rgb(21 94 117 / 0.6);
}
.bg-cyan-800\/70 {
  background-color: rgb(21 94 117 / 0.7);
}
.bg-cyan-800\/80 {
  background-color: rgb(21 94 117 / 0.8);
}
.bg-cyan-800\/90 {
  background-color: rgb(21 94 117 / 0.9);
}
.bg-cyan-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(22 78 99 / var(--tw-bg-opacity, 1));
}
.bg-cyan-900\/10 {
  background-color: rgb(22 78 99 / 0.1);
}
.bg-cyan-900\/20 {
  background-color: rgb(22 78 99 / 0.2);
}
.bg-cyan-900\/30 {
  background-color: rgb(22 78 99 / 0.3);
}
.bg-cyan-900\/40 {
  background-color: rgb(22 78 99 / 0.4);
}
.bg-cyan-900\/5 {
  background-color: rgb(22 78 99 / 0.05);
}
.bg-cyan-900\/50 {
  background-color: rgb(22 78 99 / 0.5);
}
.bg-cyan-900\/60 {
  background-color: rgb(22 78 99 / 0.6);
}
.bg-cyan-900\/70 {
  background-color: rgb(22 78 99 / 0.7);
}
.bg-cyan-900\/80 {
  background-color: rgb(22 78 99 / 0.8);
}
.bg-cyan-900\/90 {
  background-color: rgb(22 78 99 / 0.9);
}
.bg-cyan-950 {
  --tw-bg-opacity: 1;
  background-color: rgb(8 51 68 / var(--tw-bg-opacity, 1));
}
.bg-cyan-950\/10 {
  background-color: rgb(8 51 68 / 0.1);
}
.bg-cyan-950\/20 {
  background-color: rgb(8 51 68 / 0.2);
}
.bg-cyan-950\/30 {
  background-color: rgb(8 51 68 / 0.3);
}
.bg-cyan-950\/40 {
  background-color: rgb(8 51 68 / 0.4);
}
.bg-cyan-950\/5 {
  background-color: rgb(8 51 68 / 0.05);
}
.bg-cyan-950\/50 {
  background-color: rgb(8 51 68 / 0.5);
}
.bg-cyan-950\/60 {
  background-color: rgb(8 51 68 / 0.6);
}
.bg-cyan-950\/70 {
  background-color: rgb(8 51 68 / 0.7);
}
.bg-cyan-950\/80 {
  background-color: rgb(8 51 68 / 0.8);
}
.bg-cyan-950\/90 {
  background-color: rgb(8 51 68 / 0.9);
}
.bg-destructive {
  background-color: var(--destructive);
}
.bg-emerald-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(209 250 229 / var(--tw-bg-opacity, 1));
}
.bg-emerald-100\/10 {
  background-color: rgb(209 250 229 / 0.1);
}
.bg-emerald-100\/20 {
  background-color: rgb(209 250 229 / 0.2);
}
.bg-emerald-100\/30 {
  background-color: rgb(209 250 229 / 0.3);
}
.bg-emerald-100\/40 {
  background-color: rgb(209 250 229 / 0.4);
}
.bg-emerald-100\/5 {
  background-color: rgb(209 250 229 / 0.05);
}
.bg-emerald-100\/50 {
  background-color: rgb(209 250 229 / 0.5);
}
.bg-emerald-100\/60 {
  background-color: rgb(209 250 229 / 0.6);
}
.bg-emerald-100\/70 {
  background-color: rgb(209 250 229 / 0.7);
}
.bg-emerald-100\/80 {
  background-color: rgb(209 250 229 / 0.8);
}
.bg-emerald-100\/90 {
  background-color: rgb(209 250 229 / 0.9);
}
.bg-emerald-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(167 243 208 / var(--tw-bg-opacity, 1));
}
.bg-emerald-200\/10 {
  background-color: rgb(167 243 208 / 0.1);
}
.bg-emerald-200\/20 {
  background-color: rgb(167 243 208 / 0.2);
}
.bg-emerald-200\/30 {
  background-color: rgb(167 243 208 / 0.3);
}
.bg-emerald-200\/40 {
  background-color: rgb(167 243 208 / 0.4);
}
.bg-emerald-200\/5 {
  background-color: rgb(167 243 208 / 0.05);
}
.bg-emerald-200\/50 {
  background-color: rgb(167 243 208 / 0.5);
}
.bg-emerald-200\/60 {
  background-color: rgb(167 243 208 / 0.6);
}
.bg-emerald-200\/70 {
  background-color: rgb(167 243 208 / 0.7);
}
.bg-emerald-200\/80 {
  background-color: rgb(167 243 208 / 0.8);
}
.bg-emerald-200\/90 {
  background-color: rgb(167 243 208 / 0.9);
}
.bg-emerald-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(110 231 183 / var(--tw-bg-opacity, 1));
}
.bg-emerald-300\/10 {
  background-color: rgb(110 231 183 / 0.1);
}
.bg-emerald-300\/20 {
  background-color: rgb(110 231 183 / 0.2);
}
.bg-emerald-300\/30 {
  background-color: rgb(110 231 183 / 0.3);
}
.bg-emerald-300\/40 {
  background-color: rgb(110 231 183 / 0.4);
}
.bg-emerald-300\/5 {
  background-color: rgb(110 231 183 / 0.05);
}
.bg-emerald-300\/50 {
  background-color: rgb(110 231 183 / 0.5);
}
.bg-emerald-300\/60 {
  background-color: rgb(110 231 183 / 0.6);
}
.bg-emerald-300\/70 {
  background-color: rgb(110 231 183 / 0.7);
}
.bg-emerald-300\/80 {
  background-color: rgb(110 231 183 / 0.8);
}
.bg-emerald-300\/90 {
  background-color: rgb(110 231 183 / 0.9);
}
.bg-emerald-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(52 211 153 / var(--tw-bg-opacity, 1));
}
.bg-emerald-400\/10 {
  background-color: rgb(52 211 153 / 0.1);
}
.bg-emerald-400\/20 {
  background-color: rgb(52 211 153 / 0.2);
}
.bg-emerald-400\/30 {
  background-color: rgb(52 211 153 / 0.3);
}
.bg-emerald-400\/40 {
  background-color: rgb(52 211 153 / 0.4);
}
.bg-emerald-400\/5 {
  background-color: rgb(52 211 153 / 0.05);
}
.bg-emerald-400\/50 {
  background-color: rgb(52 211 153 / 0.5);
}
.bg-emerald-400\/60 {
  background-color: rgb(52 211 153 / 0.6);
}
.bg-emerald-400\/70 {
  background-color: rgb(52 211 153 / 0.7);
}
.bg-emerald-400\/80 {
  background-color: rgb(52 211 153 / 0.8);
}
.bg-emerald-400\/90 {
  background-color: rgb(52 211 153 / 0.9);
}
.bg-emerald-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(236 253 245 / var(--tw-bg-opacity, 1));
}
.bg-emerald-50\/10 {
  background-color: rgb(236 253 245 / 0.1);
}
.bg-emerald-50\/20 {
  background-color: rgb(236 253 245 / 0.2);
}
.bg-emerald-50\/30 {
  background-color: rgb(236 253 245 / 0.3);
}
.bg-emerald-50\/40 {
  background-color: rgb(236 253 245 / 0.4);
}
.bg-emerald-50\/5 {
  background-color: rgb(236 253 245 / 0.05);
}
.bg-emerald-50\/50 {
  background-color: rgb(236 253 245 / 0.5);
}
.bg-emerald-50\/60 {
  background-color: rgb(236 253 245 / 0.6);
}
.bg-emerald-50\/70 {
  background-color: rgb(236 253 245 / 0.7);
}
.bg-emerald-50\/80 {
  background-color: rgb(236 253 245 / 0.8);
}
.bg-emerald-50\/90 {
  background-color: rgb(236 253 245 / 0.9);
}
.bg-emerald-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(16 185 129 / var(--tw-bg-opacity, 1));
}
.bg-emerald-500\/10 {
  background-color: rgb(16 185 129 / 0.1);
}
.bg-emerald-500\/20 {
  background-color: rgb(16 185 129 / 0.2);
}
.bg-emerald-500\/30 {
  background-color: rgb(16 185 129 / 0.3);
}
.bg-emerald-500\/40 {
  background-color: rgb(16 185 129 / 0.4);
}
.bg-emerald-500\/5 {
  background-color: rgb(16 185 129 / 0.05);
}
.bg-emerald-500\/50 {
  background-color: rgb(16 185 129 / 0.5);
}
.bg-emerald-500\/60 {
  background-color: rgb(16 185 129 / 0.6);
}
.bg-emerald-500\/70 {
  background-color: rgb(16 185 129 / 0.7);
}
.bg-emerald-500\/80 {
  background-color: rgb(16 185 129 / 0.8);
}
.bg-emerald-500\/90 {
  background-color: rgb(16 185 129 / 0.9);
}
.bg-emerald-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(5 150 105 / var(--tw-bg-opacity, 1));
}
.bg-emerald-600\/10 {
  background-color: rgb(5 150 105 / 0.1);
}
.bg-emerald-600\/20 {
  background-color: rgb(5 150 105 / 0.2);
}
.bg-emerald-600\/30 {
  background-color: rgb(5 150 105 / 0.3);
}
.bg-emerald-600\/40 {
  background-color: rgb(5 150 105 / 0.4);
}
.bg-emerald-600\/5 {
  background-color: rgb(5 150 105 / 0.05);
}
.bg-emerald-600\/50 {
  background-color: rgb(5 150 105 / 0.5);
}
.bg-emerald-600\/60 {
  background-color: rgb(5 150 105 / 0.6);
}
.bg-emerald-600\/70 {
  background-color: rgb(5 150 105 / 0.7);
}
.bg-emerald-600\/80 {
  background-color: rgb(5 150 105 / 0.8);
}
.bg-emerald-600\/90 {
  background-color: rgb(5 150 105 / 0.9);
}
.bg-emerald-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(4 120 87 / var(--tw-bg-opacity, 1));
}
.bg-emerald-700\/10 {
  background-color: rgb(4 120 87 / 0.1);
}
.bg-emerald-700\/20 {
  background-color: rgb(4 120 87 / 0.2);
}
.bg-emerald-700\/30 {
  background-color: rgb(4 120 87 / 0.3);
}
.bg-emerald-700\/40 {
  background-color: rgb(4 120 87 / 0.4);
}
.bg-emerald-700\/5 {
  background-color: rgb(4 120 87 / 0.05);
}
.bg-emerald-700\/50 {
  background-color: rgb(4 120 87 / 0.5);
}
.bg-emerald-700\/60 {
  background-color: rgb(4 120 87 / 0.6);
}
.bg-emerald-700\/70 {
  background-color: rgb(4 120 87 / 0.7);
}
.bg-emerald-700\/80 {
  background-color: rgb(4 120 87 / 0.8);
}
.bg-emerald-700\/90 {
  background-color: rgb(4 120 87 / 0.9);
}
.bg-emerald-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(6 95 70 / var(--tw-bg-opacity, 1));
}
.bg-emerald-800\/10 {
  background-color: rgb(6 95 70 / 0.1);
}
.bg-emerald-800\/20 {
  background-color: rgb(6 95 70 / 0.2);
}
.bg-emerald-800\/30 {
  background-color: rgb(6 95 70 / 0.3);
}
.bg-emerald-800\/40 {
  background-color: rgb(6 95 70 / 0.4);
}
.bg-emerald-800\/5 {
  background-color: rgb(6 95 70 / 0.05);
}
.bg-emerald-800\/50 {
  background-color: rgb(6 95 70 / 0.5);
}
.bg-emerald-800\/60 {
  background-color: rgb(6 95 70 / 0.6);
}
.bg-emerald-800\/70 {
  background-color: rgb(6 95 70 / 0.7);
}
.bg-emerald-800\/80 {
  background-color: rgb(6 95 70 / 0.8);
}
.bg-emerald-800\/90 {
  background-color: rgb(6 95 70 / 0.9);
}
.bg-emerald-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(6 78 59 / var(--tw-bg-opacity, 1));
}
.bg-emerald-900\/10 {
  background-color: rgb(6 78 59 / 0.1);
}
.bg-emerald-900\/20 {
  background-color: rgb(6 78 59 / 0.2);
}
.bg-emerald-900\/30 {
  background-color: rgb(6 78 59 / 0.3);
}
.bg-emerald-900\/40 {
  background-color: rgb(6 78 59 / 0.4);
}
.bg-emerald-900\/5 {
  background-color: rgb(6 78 59 / 0.05);
}
.bg-emerald-900\/50 {
  background-color: rgb(6 78 59 / 0.5);
}
.bg-emerald-900\/60 {
  background-color: rgb(6 78 59 / 0.6);
}
.bg-emerald-900\/70 {
  background-color: rgb(6 78 59 / 0.7);
}
.bg-emerald-900\/80 {
  background-color: rgb(6 78 59 / 0.8);
}
.bg-emerald-900\/90 {
  background-color: rgb(6 78 59 / 0.9);
}
.bg-emerald-950 {
  --tw-bg-opacity: 1;
  background-color: rgb(2 44 34 / var(--tw-bg-opacity, 1));
}
.bg-emerald-950\/10 {
  background-color: rgb(2 44 34 / 0.1);
}
.bg-emerald-950\/20 {
  background-color: rgb(2 44 34 / 0.2);
}
.bg-emerald-950\/30 {
  background-color: rgb(2 44 34 / 0.3);
}
.bg-emerald-950\/40 {
  background-color: rgb(2 44 34 / 0.4);
}
.bg-emerald-950\/5 {
  background-color: rgb(2 44 34 / 0.05);
}
.bg-emerald-950\/50 {
  background-color: rgb(2 44 34 / 0.5);
}
.bg-emerald-950\/60 {
  background-color: rgb(2 44 34 / 0.6);
}
.bg-emerald-950\/70 {
  background-color: rgb(2 44 34 / 0.7);
}
.bg-emerald-950\/80 {
  background-color: rgb(2 44 34 / 0.8);
}
.bg-emerald-950\/90 {
  background-color: rgb(2 44 34 / 0.9);
}
.bg-fuchsia-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(250 232 255 / var(--tw-bg-opacity, 1));
}
.bg-fuchsia-100\/10 {
  background-color: rgb(250 232 255 / 0.1);
}
.bg-fuchsia-100\/20 {
  background-color: rgb(250 232 255 / 0.2);
}
.bg-fuchsia-100\/30 {
  background-color: rgb(250 232 255 / 0.3);
}
.bg-fuchsia-100\/40 {
  background-color: rgb(250 232 255 / 0.4);
}
.bg-fuchsia-100\/5 {
  background-color: rgb(250 232 255 / 0.05);
}
.bg-fuchsia-100\/50 {
  background-color: rgb(250 232 255 / 0.5);
}
.bg-fuchsia-100\/60 {
  background-color: rgb(250 232 255 / 0.6);
}
.bg-fuchsia-100\/70 {
  background-color: rgb(250 232 255 / 0.7);
}
.bg-fuchsia-100\/80 {
  background-color: rgb(250 232 255 / 0.8);
}
.bg-fuchsia-100\/90 {
  background-color: rgb(250 232 255 / 0.9);
}
.bg-fuchsia-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(245 208 254 / var(--tw-bg-opacity, 1));
}
.bg-fuchsia-200\/10 {
  background-color: rgb(245 208 254 / 0.1);
}
.bg-fuchsia-200\/20 {
  background-color: rgb(245 208 254 / 0.2);
}
.bg-fuchsia-200\/30 {
  background-color: rgb(245 208 254 / 0.3);
}
.bg-fuchsia-200\/40 {
  background-color: rgb(245 208 254 / 0.4);
}
.bg-fuchsia-200\/5 {
  background-color: rgb(245 208 254 / 0.05);
}
.bg-fuchsia-200\/50 {
  background-color: rgb(245 208 254 / 0.5);
}
.bg-fuchsia-200\/60 {
  background-color: rgb(245 208 254 / 0.6);
}
.bg-fuchsia-200\/70 {
  background-color: rgb(245 208 254 / 0.7);
}
.bg-fuchsia-200\/80 {
  background-color: rgb(245 208 254 / 0.8);
}
.bg-fuchsia-200\/90 {
  background-color: rgb(245 208 254 / 0.9);
}
.bg-fuchsia-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(240 171 252 / var(--tw-bg-opacity, 1));
}
.bg-fuchsia-300\/10 {
  background-color: rgb(240 171 252 / 0.1);
}
.bg-fuchsia-300\/20 {
  background-color: rgb(240 171 252 / 0.2);
}
.bg-fuchsia-300\/30 {
  background-color: rgb(240 171 252 / 0.3);
}
.bg-fuchsia-300\/40 {
  background-color: rgb(240 171 252 / 0.4);
}
.bg-fuchsia-300\/5 {
  background-color: rgb(240 171 252 / 0.05);
}
.bg-fuchsia-300\/50 {
  background-color: rgb(240 171 252 / 0.5);
}
.bg-fuchsia-300\/60 {
  background-color: rgb(240 171 252 / 0.6);
}
.bg-fuchsia-300\/70 {
  background-color: rgb(240 171 252 / 0.7);
}
.bg-fuchsia-300\/80 {
  background-color: rgb(240 171 252 / 0.8);
}
.bg-fuchsia-300\/90 {
  background-color: rgb(240 171 252 / 0.9);
}
.bg-fuchsia-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(232 121 249 / var(--tw-bg-opacity, 1));
}
.bg-fuchsia-400\/10 {
  background-color: rgb(232 121 249 / 0.1);
}
.bg-fuchsia-400\/20 {
  background-color: rgb(232 121 249 / 0.2);
}
.bg-fuchsia-400\/30 {
  background-color: rgb(232 121 249 / 0.3);
}
.bg-fuchsia-400\/40 {
  background-color: rgb(232 121 249 / 0.4);
}
.bg-fuchsia-400\/5 {
  background-color: rgb(232 121 249 / 0.05);
}
.bg-fuchsia-400\/50 {
  background-color: rgb(232 121 249 / 0.5);
}
.bg-fuchsia-400\/60 {
  background-color: rgb(232 121 249 / 0.6);
}
.bg-fuchsia-400\/70 {
  background-color: rgb(232 121 249 / 0.7);
}
.bg-fuchsia-400\/80 {
  background-color: rgb(232 121 249 / 0.8);
}
.bg-fuchsia-400\/90 {
  background-color: rgb(232 121 249 / 0.9);
}
.bg-fuchsia-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(253 244 255 / var(--tw-bg-opacity, 1));
}
.bg-fuchsia-50\/10 {
  background-color: rgb(253 244 255 / 0.1);
}
.bg-fuchsia-50\/20 {
  background-color: rgb(253 244 255 / 0.2);
}
.bg-fuchsia-50\/30 {
  background-color: rgb(253 244 255 / 0.3);
}
.bg-fuchsia-50\/40 {
  background-color: rgb(253 244 255 / 0.4);
}
.bg-fuchsia-50\/5 {
  background-color: rgb(253 244 255 / 0.05);
}
.bg-fuchsia-50\/50 {
  background-color: rgb(253 244 255 / 0.5);
}
.bg-fuchsia-50\/60 {
  background-color: rgb(253 244 255 / 0.6);
}
.bg-fuchsia-50\/70 {
  background-color: rgb(253 244 255 / 0.7);
}
.bg-fuchsia-50\/80 {
  background-color: rgb(253 244 255 / 0.8);
}
.bg-fuchsia-50\/90 {
  background-color: rgb(253 244 255 / 0.9);
}
.bg-fuchsia-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(217 70 239 / var(--tw-bg-opacity, 1));
}
.bg-fuchsia-500\/10 {
  background-color: rgb(217 70 239 / 0.1);
}
.bg-fuchsia-500\/20 {
  background-color: rgb(217 70 239 / 0.2);
}
.bg-fuchsia-500\/30 {
  background-color: rgb(217 70 239 / 0.3);
}
.bg-fuchsia-500\/40 {
  background-color: rgb(217 70 239 / 0.4);
}
.bg-fuchsia-500\/5 {
  background-color: rgb(217 70 239 / 0.05);
}
.bg-fuchsia-500\/50 {
  background-color: rgb(217 70 239 / 0.5);
}
.bg-fuchsia-500\/60 {
  background-color: rgb(217 70 239 / 0.6);
}
.bg-fuchsia-500\/70 {
  background-color: rgb(217 70 239 / 0.7);
}
.bg-fuchsia-500\/80 {
  background-color: rgb(217 70 239 / 0.8);
}
.bg-fuchsia-500\/90 {
  background-color: rgb(217 70 239 / 0.9);
}
.bg-fuchsia-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(192 38 211 / var(--tw-bg-opacity, 1));
}
.bg-fuchsia-600\/10 {
  background-color: rgb(192 38 211 / 0.1);
}
.bg-fuchsia-600\/20 {
  background-color: rgb(192 38 211 / 0.2);
}
.bg-fuchsia-600\/30 {
  background-color: rgb(192 38 211 / 0.3);
}
.bg-fuchsia-600\/40 {
  background-color: rgb(192 38 211 / 0.4);
}
.bg-fuchsia-600\/5 {
  background-color: rgb(192 38 211 / 0.05);
}
.bg-fuchsia-600\/50 {
  background-color: rgb(192 38 211 / 0.5);
}
.bg-fuchsia-600\/60 {
  background-color: rgb(192 38 211 / 0.6);
}
.bg-fuchsia-600\/70 {
  background-color: rgb(192 38 211 / 0.7);
}
.bg-fuchsia-600\/80 {
  background-color: rgb(192 38 211 / 0.8);
}
.bg-fuchsia-600\/90 {
  background-color: rgb(192 38 211 / 0.9);
}
.bg-fuchsia-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(162 28 175 / var(--tw-bg-opacity, 1));
}
.bg-fuchsia-700\/10 {
  background-color: rgb(162 28 175 / 0.1);
}
.bg-fuchsia-700\/20 {
  background-color: rgb(162 28 175 / 0.2);
}
.bg-fuchsia-700\/30 {
  background-color: rgb(162 28 175 / 0.3);
}
.bg-fuchsia-700\/40 {
  background-color: rgb(162 28 175 / 0.4);
}
.bg-fuchsia-700\/5 {
  background-color: rgb(162 28 175 / 0.05);
}
.bg-fuchsia-700\/50 {
  background-color: rgb(162 28 175 / 0.5);
}
.bg-fuchsia-700\/60 {
  background-color: rgb(162 28 175 / 0.6);
}
.bg-fuchsia-700\/70 {
  background-color: rgb(162 28 175 / 0.7);
}
.bg-fuchsia-700\/80 {
  background-color: rgb(162 28 175 / 0.8);
}
.bg-fuchsia-700\/90 {
  background-color: rgb(162 28 175 / 0.9);
}
.bg-fuchsia-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(134 25 143 / var(--tw-bg-opacity, 1));
}
.bg-fuchsia-800\/10 {
  background-color: rgb(134 25 143 / 0.1);
}
.bg-fuchsia-800\/20 {
  background-color: rgb(134 25 143 / 0.2);
}
.bg-fuchsia-800\/30 {
  background-color: rgb(134 25 143 / 0.3);
}
.bg-fuchsia-800\/40 {
  background-color: rgb(134 25 143 / 0.4);
}
.bg-fuchsia-800\/5 {
  background-color: rgb(134 25 143 / 0.05);
}
.bg-fuchsia-800\/50 {
  background-color: rgb(134 25 143 / 0.5);
}
.bg-fuchsia-800\/60 {
  background-color: rgb(134 25 143 / 0.6);
}
.bg-fuchsia-800\/70 {
  background-color: rgb(134 25 143 / 0.7);
}
.bg-fuchsia-800\/80 {
  background-color: rgb(134 25 143 / 0.8);
}
.bg-fuchsia-800\/90 {
  background-color: rgb(134 25 143 / 0.9);
}
.bg-fuchsia-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(112 26 117 / var(--tw-bg-opacity, 1));
}
.bg-fuchsia-900\/10 {
  background-color: rgb(112 26 117 / 0.1);
}
.bg-fuchsia-900\/20 {
  background-color: rgb(112 26 117 / 0.2);
}
.bg-fuchsia-900\/30 {
  background-color: rgb(112 26 117 / 0.3);
}
.bg-fuchsia-900\/40 {
  background-color: rgb(112 26 117 / 0.4);
}
.bg-fuchsia-900\/5 {
  background-color: rgb(112 26 117 / 0.05);
}
.bg-fuchsia-900\/50 {
  background-color: rgb(112 26 117 / 0.5);
}
.bg-fuchsia-900\/60 {
  background-color: rgb(112 26 117 / 0.6);
}
.bg-fuchsia-900\/70 {
  background-color: rgb(112 26 117 / 0.7);
}
.bg-fuchsia-900\/80 {
  background-color: rgb(112 26 117 / 0.8);
}
.bg-fuchsia-900\/90 {
  background-color: rgb(112 26 117 / 0.9);
}
.bg-fuchsia-950 {
  --tw-bg-opacity: 1;
  background-color: rgb(74 4 78 / var(--tw-bg-opacity, 1));
}
.bg-fuchsia-950\/10 {
  background-color: rgb(74 4 78 / 0.1);
}
.bg-fuchsia-950\/20 {
  background-color: rgb(74 4 78 / 0.2);
}
.bg-fuchsia-950\/30 {
  background-color: rgb(74 4 78 / 0.3);
}
.bg-fuchsia-950\/40 {
  background-color: rgb(74 4 78 / 0.4);
}
.bg-fuchsia-950\/5 {
  background-color: rgb(74 4 78 / 0.05);
}
.bg-fuchsia-950\/50 {
  background-color: rgb(74 4 78 / 0.5);
}
.bg-fuchsia-950\/60 {
  background-color: rgb(74 4 78 / 0.6);
}
.bg-fuchsia-950\/70 {
  background-color: rgb(74 4 78 / 0.7);
}
.bg-fuchsia-950\/80 {
  background-color: rgb(74 4 78 / 0.8);
}
.bg-fuchsia-950\/90 {
  background-color: rgb(74 4 78 / 0.9);
}
.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.bg-gray-100\/10 {
  background-color: rgb(243 244 246 / 0.1);
}
.bg-gray-100\/20 {
  background-color: rgb(243 244 246 / 0.2);
}
.bg-gray-100\/30 {
  background-color: rgb(243 244 246 / 0.3);
}
.bg-gray-100\/40 {
  background-color: rgb(243 244 246 / 0.4);
}
.bg-gray-100\/5 {
  background-color: rgb(243 244 246 / 0.05);
}
.bg-gray-100\/50 {
  background-color: rgb(243 244 246 / 0.5);
}
.bg-gray-100\/60 {
  background-color: rgb(243 244 246 / 0.6);
}
.bg-gray-100\/70 {
  background-color: rgb(243 244 246 / 0.7);
}
.bg-gray-100\/80 {
  background-color: rgb(243 244 246 / 0.8);
}
.bg-gray-100\/90 {
  background-color: rgb(243 244 246 / 0.9);
}
.bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.bg-gray-200\/10 {
  background-color: rgb(229 231 235 / 0.1);
}
.bg-gray-200\/20 {
  background-color: rgb(229 231 235 / 0.2);
}
.bg-gray-200\/30 {
  background-color: rgb(229 231 235 / 0.3);
}
.bg-gray-200\/40 {
  background-color: rgb(229 231 235 / 0.4);
}
.bg-gray-200\/5 {
  background-color: rgb(229 231 235 / 0.05);
}
.bg-gray-200\/50 {
  background-color: rgb(229 231 235 / 0.5);
}
.bg-gray-200\/60 {
  background-color: rgb(229 231 235 / 0.6);
}
.bg-gray-200\/70 {
  background-color: rgb(229 231 235 / 0.7);
}
.bg-gray-200\/80 {
  background-color: rgb(229 231 235 / 0.8);
}
.bg-gray-200\/90 {
  background-color: rgb(229 231 235 / 0.9);
}
.bg-gray-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
}
.bg-gray-300\/10 {
  background-color: rgb(209 213 219 / 0.1);
}
.bg-gray-300\/20 {
  background-color: rgb(209 213 219 / 0.2);
}
.bg-gray-300\/30 {
  background-color: rgb(209 213 219 / 0.3);
}
.bg-gray-300\/40 {
  background-color: rgb(209 213 219 / 0.4);
}
.bg-gray-300\/5 {
  background-color: rgb(209 213 219 / 0.05);
}
.bg-gray-300\/50 {
  background-color: rgb(209 213 219 / 0.5);
}
.bg-gray-300\/60 {
  background-color: rgb(209 213 219 / 0.6);
}
.bg-gray-300\/70 {
  background-color: rgb(209 213 219 / 0.7);
}
.bg-gray-300\/80 {
  background-color: rgb(209 213 219 / 0.8);
}
.bg-gray-300\/90 {
  background-color: rgb(209 213 219 / 0.9);
}
.bg-gray-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(156 163 175 / var(--tw-bg-opacity, 1));
}
.bg-gray-400\/10 {
  background-color: rgb(156 163 175 / 0.1);
}
.bg-gray-400\/20 {
  background-color: rgb(156 163 175 / 0.2);
}
.bg-gray-400\/30 {
  background-color: rgb(156 163 175 / 0.3);
}
.bg-gray-400\/40 {
  background-color: rgb(156 163 175 / 0.4);
}
.bg-gray-400\/5 {
  background-color: rgb(156 163 175 / 0.05);
}
.bg-gray-400\/50 {
  background-color: rgb(156 163 175 / 0.5);
}
.bg-gray-400\/60 {
  background-color: rgb(156 163 175 / 0.6);
}
.bg-gray-400\/70 {
  background-color: rgb(156 163 175 / 0.7);
}
.bg-gray-400\/80 {
  background-color: rgb(156 163 175 / 0.8);
}
.bg-gray-400\/90 {
  background-color: rgb(156 163 175 / 0.9);
}
.bg-gray-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.bg-gray-50\/10 {
  background-color: rgb(249 250 251 / 0.1);
}
.bg-gray-50\/20 {
  background-color: rgb(249 250 251 / 0.2);
}
.bg-gray-50\/30 {
  background-color: rgb(249 250 251 / 0.3);
}
.bg-gray-50\/40 {
  background-color: rgb(249 250 251 / 0.4);
}
.bg-gray-50\/5 {
  background-color: rgb(249 250 251 / 0.05);
}
.bg-gray-50\/50 {
  background-color: rgb(249 250 251 / 0.5);
}
.bg-gray-50\/60 {
  background-color: rgb(249 250 251 / 0.6);
}
.bg-gray-50\/70 {
  background-color: rgb(249 250 251 / 0.7);
}
.bg-gray-50\/80 {
  background-color: rgb(249 250 251 / 0.8);
}
.bg-gray-50\/90 {
  background-color: rgb(249 250 251 / 0.9);
}
.bg-gray-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(107 114 128 / var(--tw-bg-opacity, 1));
}
.bg-gray-500\/10 {
  background-color: rgb(107 114 128 / 0.1);
}
.bg-gray-500\/20 {
  background-color: rgb(107 114 128 / 0.2);
}
.bg-gray-500\/30 {
  background-color: rgb(107 114 128 / 0.3);
}
.bg-gray-500\/40 {
  background-color: rgb(107 114 128 / 0.4);
}
.bg-gray-500\/5 {
  background-color: rgb(107 114 128 / 0.05);
}
.bg-gray-500\/50 {
  background-color: rgb(107 114 128 / 0.5);
}
.bg-gray-500\/60 {
  background-color: rgb(107 114 128 / 0.6);
}
.bg-gray-500\/70 {
  background-color: rgb(107 114 128 / 0.7);
}
.bg-gray-500\/80 {
  background-color: rgb(107 114 128 / 0.8);
}
.bg-gray-500\/90 {
  background-color: rgb(107 114 128 / 0.9);
}
.bg-gray-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1));
}
.bg-gray-600\/10 {
  background-color: rgb(75 85 99 / 0.1);
}
.bg-gray-600\/20 {
  background-color: rgb(75 85 99 / 0.2);
}
.bg-gray-600\/30 {
  background-color: rgb(75 85 99 / 0.3);
}
.bg-gray-600\/40 {
  background-color: rgb(75 85 99 / 0.4);
}
.bg-gray-600\/5 {
  background-color: rgb(75 85 99 / 0.05);
}
.bg-gray-600\/50 {
  background-color: rgb(75 85 99 / 0.5);
}
.bg-gray-600\/60 {
  background-color: rgb(75 85 99 / 0.6);
}
.bg-gray-600\/70 {
  background-color: rgb(75 85 99 / 0.7);
}
.bg-gray-600\/80 {
  background-color: rgb(75 85 99 / 0.8);
}
.bg-gray-600\/90 {
  background-color: rgb(75 85 99 / 0.9);
}
.bg-gray-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}
.bg-gray-700\/10 {
  background-color: rgb(55 65 81 / 0.1);
}
.bg-gray-700\/20 {
  background-color: rgb(55 65 81 / 0.2);
}
.bg-gray-700\/30 {
  background-color: rgb(55 65 81 / 0.3);
}
.bg-gray-700\/40 {
  background-color: rgb(55 65 81 / 0.4);
}
.bg-gray-700\/5 {
  background-color: rgb(55 65 81 / 0.05);
}
.bg-gray-700\/50 {
  background-color: rgb(55 65 81 / 0.5);
}
.bg-gray-700\/60 {
  background-color: rgb(55 65 81 / 0.6);
}
.bg-gray-700\/70 {
  background-color: rgb(55 65 81 / 0.7);
}
.bg-gray-700\/80 {
  background-color: rgb(55 65 81 / 0.8);
}
.bg-gray-700\/90 {
  background-color: rgb(55 65 81 / 0.9);
}
.bg-gray-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}
.bg-gray-800\/10 {
  background-color: rgb(31 41 55 / 0.1);
}
.bg-gray-800\/20 {
  background-color: rgb(31 41 55 / 0.2);
}
.bg-gray-800\/30 {
  background-color: rgb(31 41 55 / 0.3);
}
.bg-gray-800\/40 {
  background-color: rgb(31 41 55 / 0.4);
}
.bg-gray-800\/5 {
  background-color: rgb(31 41 55 / 0.05);
}
.bg-gray-800\/50 {
  background-color: rgb(31 41 55 / 0.5);
}
.bg-gray-800\/60 {
  background-color: rgb(31 41 55 / 0.6);
}
.bg-gray-800\/70 {
  background-color: rgb(31 41 55 / 0.7);
}
.bg-gray-800\/80 {
  background-color: rgb(31 41 55 / 0.8);
}
.bg-gray-800\/90 {
  background-color: rgb(31 41 55 / 0.9);
}
.bg-gray-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}
.bg-gray-900\/10 {
  background-color: rgb(17 24 39 / 0.1);
}
.bg-gray-900\/20 {
  background-color: rgb(17 24 39 / 0.2);
}
.bg-gray-900\/30 {
  background-color: rgb(17 24 39 / 0.3);
}
.bg-gray-900\/40 {
  background-color: rgb(17 24 39 / 0.4);
}
.bg-gray-900\/5 {
  background-color: rgb(17 24 39 / 0.05);
}
.bg-gray-900\/50 {
  background-color: rgb(17 24 39 / 0.5);
}
.bg-gray-900\/60 {
  background-color: rgb(17 24 39 / 0.6);
}
.bg-gray-900\/70 {
  background-color: rgb(17 24 39 / 0.7);
}
.bg-gray-900\/80 {
  background-color: rgb(17 24 39 / 0.8);
}
.bg-gray-900\/90 {
  background-color: rgb(17 24 39 / 0.9);
}
.bg-gray-950 {
  --tw-bg-opacity: 1;
  background-color: rgb(3 7 18 / var(--tw-bg-opacity, 1));
}
.bg-gray-950\/10 {
  background-color: rgb(3 7 18 / 0.1);
}
.bg-gray-950\/20 {
  background-color: rgb(3 7 18 / 0.2);
}
.bg-gray-950\/30 {
  background-color: rgb(3 7 18 / 0.3);
}
.bg-gray-950\/40 {
  background-color: rgb(3 7 18 / 0.4);
}
.bg-gray-950\/5 {
  background-color: rgb(3 7 18 / 0.05);
}
.bg-gray-950\/50 {
  background-color: rgb(3 7 18 / 0.5);
}
.bg-gray-950\/60 {
  background-color: rgb(3 7 18 / 0.6);
}
.bg-gray-950\/70 {
  background-color: rgb(3 7 18 / 0.7);
}
.bg-gray-950\/80 {
  background-color: rgb(3 7 18 / 0.8);
}
.bg-gray-950\/90 {
  background-color: rgb(3 7 18 / 0.9);
}
.bg-green-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
}
.bg-green-100\/10 {
  background-color: rgb(220 252 231 / 0.1);
}
.bg-green-100\/20 {
  background-color: rgb(220 252 231 / 0.2);
}
.bg-green-100\/30 {
  background-color: rgb(220 252 231 / 0.3);
}
.bg-green-100\/40 {
  background-color: rgb(220 252 231 / 0.4);
}
.bg-green-100\/5 {
  background-color: rgb(220 252 231 / 0.05);
}
.bg-green-100\/50 {
  background-color: rgb(220 252 231 / 0.5);
}
.bg-green-100\/60 {
  background-color: rgb(220 252 231 / 0.6);
}
.bg-green-100\/70 {
  background-color: rgb(220 252 231 / 0.7);
}
.bg-green-100\/80 {
  background-color: rgb(220 252 231 / 0.8);
}
.bg-green-100\/90 {
  background-color: rgb(220 252 231 / 0.9);
}
.bg-green-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(187 247 208 / var(--tw-bg-opacity, 1));
}
.bg-green-200\/10 {
  background-color: rgb(187 247 208 / 0.1);
}
.bg-green-200\/20 {
  background-color: rgb(187 247 208 / 0.2);
}
.bg-green-200\/30 {
  background-color: rgb(187 247 208 / 0.3);
}
.bg-green-200\/40 {
  background-color: rgb(187 247 208 / 0.4);
}
.bg-green-200\/5 {
  background-color: rgb(187 247 208 / 0.05);
}
.bg-green-200\/50 {
  background-color: rgb(187 247 208 / 0.5);
}
.bg-green-200\/60 {
  background-color: rgb(187 247 208 / 0.6);
}
.bg-green-200\/70 {
  background-color: rgb(187 247 208 / 0.7);
}
.bg-green-200\/80 {
  background-color: rgb(187 247 208 / 0.8);
}
.bg-green-200\/90 {
  background-color: rgb(187 247 208 / 0.9);
}
.bg-green-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(134 239 172 / var(--tw-bg-opacity, 1));
}
.bg-green-300\/10 {
  background-color: rgb(134 239 172 / 0.1);
}
.bg-green-300\/20 {
  background-color: rgb(134 239 172 / 0.2);
}
.bg-green-300\/30 {
  background-color: rgb(134 239 172 / 0.3);
}
.bg-green-300\/40 {
  background-color: rgb(134 239 172 / 0.4);
}
.bg-green-300\/5 {
  background-color: rgb(134 239 172 / 0.05);
}
.bg-green-300\/50 {
  background-color: rgb(134 239 172 / 0.5);
}
.bg-green-300\/60 {
  background-color: rgb(134 239 172 / 0.6);
}
.bg-green-300\/70 {
  background-color: rgb(134 239 172 / 0.7);
}
.bg-green-300\/80 {
  background-color: rgb(134 239 172 / 0.8);
}
.bg-green-300\/90 {
  background-color: rgb(134 239 172 / 0.9);
}
.bg-green-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(74 222 128 / var(--tw-bg-opacity, 1));
}
.bg-green-400\/10 {
  background-color: rgb(74 222 128 / 0.1);
}
.bg-green-400\/20 {
  background-color: rgb(74 222 128 / 0.2);
}
.bg-green-400\/30 {
  background-color: rgb(74 222 128 / 0.3);
}
.bg-green-400\/40 {
  background-color: rgb(74 222 128 / 0.4);
}
.bg-green-400\/5 {
  background-color: rgb(74 222 128 / 0.05);
}
.bg-green-400\/50 {
  background-color: rgb(74 222 128 / 0.5);
}
.bg-green-400\/60 {
  background-color: rgb(74 222 128 / 0.6);
}
.bg-green-400\/70 {
  background-color: rgb(74 222 128 / 0.7);
}
.bg-green-400\/80 {
  background-color: rgb(74 222 128 / 0.8);
}
.bg-green-400\/90 {
  background-color: rgb(74 222 128 / 0.9);
}
.bg-green-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
}
.bg-green-50\/10 {
  background-color: rgb(240 253 244 / 0.1);
}
.bg-green-50\/20 {
  background-color: rgb(240 253 244 / 0.2);
}
.bg-green-50\/30 {
  background-color: rgb(240 253 244 / 0.3);
}
.bg-green-50\/40 {
  background-color: rgb(240 253 244 / 0.4);
}
.bg-green-50\/5 {
  background-color: rgb(240 253 244 / 0.05);
}
.bg-green-50\/50 {
  background-color: rgb(240 253 244 / 0.5);
}
.bg-green-50\/60 {
  background-color: rgb(240 253 244 / 0.6);
}
.bg-green-50\/70 {
  background-color: rgb(240 253 244 / 0.7);
}
.bg-green-50\/80 {
  background-color: rgb(240 253 244 / 0.8);
}
.bg-green-50\/90 {
  background-color: rgb(240 253 244 / 0.9);
}
.bg-green-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
}
.bg-green-500\/10 {
  background-color: rgb(34 197 94 / 0.1);
}
.bg-green-500\/20 {
  background-color: rgb(34 197 94 / 0.2);
}
.bg-green-500\/30 {
  background-color: rgb(34 197 94 / 0.3);
}
.bg-green-500\/40 {
  background-color: rgb(34 197 94 / 0.4);
}
.bg-green-500\/5 {
  background-color: rgb(34 197 94 / 0.05);
}
.bg-green-500\/50 {
  background-color: rgb(34 197 94 / 0.5);
}
.bg-green-500\/60 {
  background-color: rgb(34 197 94 / 0.6);
}
.bg-green-500\/70 {
  background-color: rgb(34 197 94 / 0.7);
}
.bg-green-500\/80 {
  background-color: rgb(34 197 94 / 0.8);
}
.bg-green-500\/90 {
  background-color: rgb(34 197 94 / 0.9);
}
.bg-green-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
}
.bg-green-600\/10 {
  background-color: rgb(22 163 74 / 0.1);
}
.bg-green-600\/20 {
  background-color: rgb(22 163 74 / 0.2);
}
.bg-green-600\/30 {
  background-color: rgb(22 163 74 / 0.3);
}
.bg-green-600\/40 {
  background-color: rgb(22 163 74 / 0.4);
}
.bg-green-600\/5 {
  background-color: rgb(22 163 74 / 0.05);
}
.bg-green-600\/50 {
  background-color: rgb(22 163 74 / 0.5);
}
.bg-green-600\/60 {
  background-color: rgb(22 163 74 / 0.6);
}
.bg-green-600\/70 {
  background-color: rgb(22 163 74 / 0.7);
}
.bg-green-600\/80 {
  background-color: rgb(22 163 74 / 0.8);
}
.bg-green-600\/90 {
  background-color: rgb(22 163 74 / 0.9);
}
.bg-green-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(21 128 61 / var(--tw-bg-opacity, 1));
}
.bg-green-700\/10 {
  background-color: rgb(21 128 61 / 0.1);
}
.bg-green-700\/20 {
  background-color: rgb(21 128 61 / 0.2);
}
.bg-green-700\/30 {
  background-color: rgb(21 128 61 / 0.3);
}
.bg-green-700\/40 {
  background-color: rgb(21 128 61 / 0.4);
}
.bg-green-700\/5 {
  background-color: rgb(21 128 61 / 0.05);
}
.bg-green-700\/50 {
  background-color: rgb(21 128 61 / 0.5);
}
.bg-green-700\/60 {
  background-color: rgb(21 128 61 / 0.6);
}
.bg-green-700\/70 {
  background-color: rgb(21 128 61 / 0.7);
}
.bg-green-700\/80 {
  background-color: rgb(21 128 61 / 0.8);
}
.bg-green-700\/90 {
  background-color: rgb(21 128 61 / 0.9);
}
.bg-green-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(22 101 52 / var(--tw-bg-opacity, 1));
}
.bg-green-800\/10 {
  background-color: rgb(22 101 52 / 0.1);
}
.bg-green-800\/20 {
  background-color: rgb(22 101 52 / 0.2);
}
.bg-green-800\/30 {
  background-color: rgb(22 101 52 / 0.3);
}
.bg-green-800\/40 {
  background-color: rgb(22 101 52 / 0.4);
}
.bg-green-800\/5 {
  background-color: rgb(22 101 52 / 0.05);
}
.bg-green-800\/50 {
  background-color: rgb(22 101 52 / 0.5);
}
.bg-green-800\/60 {
  background-color: rgb(22 101 52 / 0.6);
}
.bg-green-800\/70 {
  background-color: rgb(22 101 52 / 0.7);
}
.bg-green-800\/80 {
  background-color: rgb(22 101 52 / 0.8);
}
.bg-green-800\/90 {
  background-color: rgb(22 101 52 / 0.9);
}
.bg-green-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(20 83 45 / var(--tw-bg-opacity, 1));
}
.bg-green-900\/10 {
  background-color: rgb(20 83 45 / 0.1);
}
.bg-green-900\/20 {
  background-color: rgb(20 83 45 / 0.2);
}
.bg-green-900\/30 {
  background-color: rgb(20 83 45 / 0.3);
}
.bg-green-900\/40 {
  background-color: rgb(20 83 45 / 0.4);
}
.bg-green-900\/5 {
  background-color: rgb(20 83 45 / 0.05);
}
.bg-green-900\/50 {
  background-color: rgb(20 83 45 / 0.5);
}
.bg-green-900\/60 {
  background-color: rgb(20 83 45 / 0.6);
}
.bg-green-900\/70 {
  background-color: rgb(20 83 45 / 0.7);
}
.bg-green-900\/80 {
  background-color: rgb(20 83 45 / 0.8);
}
.bg-green-900\/90 {
  background-color: rgb(20 83 45 / 0.9);
}
.bg-green-950 {
  --tw-bg-opacity: 1;
  background-color: rgb(5 46 22 / var(--tw-bg-opacity, 1));
}
.bg-green-950\/10 {
  background-color: rgb(5 46 22 / 0.1);
}
.bg-green-950\/20 {
  background-color: rgb(5 46 22 / 0.2);
}
.bg-green-950\/30 {
  background-color: rgb(5 46 22 / 0.3);
}
.bg-green-950\/40 {
  background-color: rgb(5 46 22 / 0.4);
}
.bg-green-950\/5 {
  background-color: rgb(5 46 22 / 0.05);
}
.bg-green-950\/50 {
  background-color: rgb(5 46 22 / 0.5);
}
.bg-green-950\/60 {
  background-color: rgb(5 46 22 / 0.6);
}
.bg-green-950\/70 {
  background-color: rgb(5 46 22 / 0.7);
}
.bg-green-950\/80 {
  background-color: rgb(5 46 22 / 0.8);
}
.bg-green-950\/90 {
  background-color: rgb(5 46 22 / 0.9);
}
.bg-indigo-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(224 231 255 / var(--tw-bg-opacity, 1));
}
.bg-indigo-100\/10 {
  background-color: rgb(224 231 255 / 0.1);
}
.bg-indigo-100\/20 {
  background-color: rgb(224 231 255 / 0.2);
}
.bg-indigo-100\/30 {
  background-color: rgb(224 231 255 / 0.3);
}
.bg-indigo-100\/40 {
  background-color: rgb(224 231 255 / 0.4);
}
.bg-indigo-100\/5 {
  background-color: rgb(224 231 255 / 0.05);
}
.bg-indigo-100\/50 {
  background-color: rgb(224 231 255 / 0.5);
}
.bg-indigo-100\/60 {
  background-color: rgb(224 231 255 / 0.6);
}
.bg-indigo-100\/70 {
  background-color: rgb(224 231 255 / 0.7);
}
.bg-indigo-100\/80 {
  background-color: rgb(224 231 255 / 0.8);
}
.bg-indigo-100\/90 {
  background-color: rgb(224 231 255 / 0.9);
}
.bg-indigo-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(199 210 254 / var(--tw-bg-opacity, 1));
}
.bg-indigo-200\/10 {
  background-color: rgb(199 210 254 / 0.1);
}
.bg-indigo-200\/20 {
  background-color: rgb(199 210 254 / 0.2);
}
.bg-indigo-200\/30 {
  background-color: rgb(199 210 254 / 0.3);
}
.bg-indigo-200\/40 {
  background-color: rgb(199 210 254 / 0.4);
}
.bg-indigo-200\/5 {
  background-color: rgb(199 210 254 / 0.05);
}
.bg-indigo-200\/50 {
  background-color: rgb(199 210 254 / 0.5);
}
.bg-indigo-200\/60 {
  background-color: rgb(199 210 254 / 0.6);
}
.bg-indigo-200\/70 {
  background-color: rgb(199 210 254 / 0.7);
}
.bg-indigo-200\/80 {
  background-color: rgb(199 210 254 / 0.8);
}
.bg-indigo-200\/90 {
  background-color: rgb(199 210 254 / 0.9);
}
.bg-indigo-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(165 180 252 / var(--tw-bg-opacity, 1));
}
.bg-indigo-300\/10 {
  background-color: rgb(165 180 252 / 0.1);
}
.bg-indigo-300\/20 {
  background-color: rgb(165 180 252 / 0.2);
}
.bg-indigo-300\/30 {
  background-color: rgb(165 180 252 / 0.3);
}
.bg-indigo-300\/40 {
  background-color: rgb(165 180 252 / 0.4);
}
.bg-indigo-300\/5 {
  background-color: rgb(165 180 252 / 0.05);
}
.bg-indigo-300\/50 {
  background-color: rgb(165 180 252 / 0.5);
}
.bg-indigo-300\/60 {
  background-color: rgb(165 180 252 / 0.6);
}
.bg-indigo-300\/70 {
  background-color: rgb(165 180 252 / 0.7);
}
.bg-indigo-300\/80 {
  background-color: rgb(165 180 252 / 0.8);
}
.bg-indigo-300\/90 {
  background-color: rgb(165 180 252 / 0.9);
}
.bg-indigo-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(129 140 248 / var(--tw-bg-opacity, 1));
}
.bg-indigo-400\/10 {
  background-color: rgb(129 140 248 / 0.1);
}
.bg-indigo-400\/20 {
  background-color: rgb(129 140 248 / 0.2);
}
.bg-indigo-400\/30 {
  background-color: rgb(129 140 248 / 0.3);
}
.bg-indigo-400\/40 {
  background-color: rgb(129 140 248 / 0.4);
}
.bg-indigo-400\/5 {
  background-color: rgb(129 140 248 / 0.05);
}
.bg-indigo-400\/50 {
  background-color: rgb(129 140 248 / 0.5);
}
.bg-indigo-400\/60 {
  background-color: rgb(129 140 248 / 0.6);
}
.bg-indigo-400\/70 {
  background-color: rgb(129 140 248 / 0.7);
}
.bg-indigo-400\/80 {
  background-color: rgb(129 140 248 / 0.8);
}
.bg-indigo-400\/90 {
  background-color: rgb(129 140 248 / 0.9);
}
.bg-indigo-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(238 242 255 / var(--tw-bg-opacity, 1));
}
.bg-indigo-50\/10 {
  background-color: rgb(238 242 255 / 0.1);
}
.bg-indigo-50\/20 {
  background-color: rgb(238 242 255 / 0.2);
}
.bg-indigo-50\/30 {
  background-color: rgb(238 242 255 / 0.3);
}
.bg-indigo-50\/40 {
  background-color: rgb(238 242 255 / 0.4);
}
.bg-indigo-50\/5 {
  background-color: rgb(238 242 255 / 0.05);
}
.bg-indigo-50\/50 {
  background-color: rgb(238 242 255 / 0.5);
}
.bg-indigo-50\/60 {
  background-color: rgb(238 242 255 / 0.6);
}
.bg-indigo-50\/70 {
  background-color: rgb(238 242 255 / 0.7);
}
.bg-indigo-50\/80 {
  background-color: rgb(238 242 255 / 0.8);
}
.bg-indigo-50\/90 {
  background-color: rgb(238 242 255 / 0.9);
}
.bg-indigo-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(99 102 241 / var(--tw-bg-opacity, 1));
}
.bg-indigo-500\/10 {
  background-color: rgb(99 102 241 / 0.1);
}
.bg-indigo-500\/20 {
  background-color: rgb(99 102 241 / 0.2);
}
.bg-indigo-500\/30 {
  background-color: rgb(99 102 241 / 0.3);
}
.bg-indigo-500\/40 {
  background-color: rgb(99 102 241 / 0.4);
}
.bg-indigo-500\/5 {
  background-color: rgb(99 102 241 / 0.05);
}
.bg-indigo-500\/50 {
  background-color: rgb(99 102 241 / 0.5);
}
.bg-indigo-500\/60 {
  background-color: rgb(99 102 241 / 0.6);
}
.bg-indigo-500\/70 {
  background-color: rgb(99 102 241 / 0.7);
}
.bg-indigo-500\/80 {
  background-color: rgb(99 102 241 / 0.8);
}
.bg-indigo-500\/90 {
  background-color: rgb(99 102 241 / 0.9);
}
.bg-indigo-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(79 70 229 / var(--tw-bg-opacity, 1));
}
.bg-indigo-600\/10 {
  background-color: rgb(79 70 229 / 0.1);
}
.bg-indigo-600\/20 {
  background-color: rgb(79 70 229 / 0.2);
}
.bg-indigo-600\/30 {
  background-color: rgb(79 70 229 / 0.3);
}
.bg-indigo-600\/40 {
  background-color: rgb(79 70 229 / 0.4);
}
.bg-indigo-600\/5 {
  background-color: rgb(79 70 229 / 0.05);
}
.bg-indigo-600\/50 {
  background-color: rgb(79 70 229 / 0.5);
}
.bg-indigo-600\/60 {
  background-color: rgb(79 70 229 / 0.6);
}
.bg-indigo-600\/70 {
  background-color: rgb(79 70 229 / 0.7);
}
.bg-indigo-600\/80 {
  background-color: rgb(79 70 229 / 0.8);
}
.bg-indigo-600\/90 {
  background-color: rgb(79 70 229 / 0.9);
}
.bg-indigo-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(67 56 202 / var(--tw-bg-opacity, 1));
}
.bg-indigo-700\/10 {
  background-color: rgb(67 56 202 / 0.1);
}
.bg-indigo-700\/20 {
  background-color: rgb(67 56 202 / 0.2);
}
.bg-indigo-700\/30 {
  background-color: rgb(67 56 202 / 0.3);
}
.bg-indigo-700\/40 {
  background-color: rgb(67 56 202 / 0.4);
}
.bg-indigo-700\/5 {
  background-color: rgb(67 56 202 / 0.05);
}
.bg-indigo-700\/50 {
  background-color: rgb(67 56 202 / 0.5);
}
.bg-indigo-700\/60 {
  background-color: rgb(67 56 202 / 0.6);
}
.bg-indigo-700\/70 {
  background-color: rgb(67 56 202 / 0.7);
}
.bg-indigo-700\/80 {
  background-color: rgb(67 56 202 / 0.8);
}
.bg-indigo-700\/90 {
  background-color: rgb(67 56 202 / 0.9);
}
.bg-indigo-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(55 48 163 / var(--tw-bg-opacity, 1));
}
.bg-indigo-800\/10 {
  background-color: rgb(55 48 163 / 0.1);
}
.bg-indigo-800\/20 {
  background-color: rgb(55 48 163 / 0.2);
}
.bg-indigo-800\/30 {
  background-color: rgb(55 48 163 / 0.3);
}
.bg-indigo-800\/40 {
  background-color: rgb(55 48 163 / 0.4);
}
.bg-indigo-800\/5 {
  background-color: rgb(55 48 163 / 0.05);
}
.bg-indigo-800\/50 {
  background-color: rgb(55 48 163 / 0.5);
}
.bg-indigo-800\/60 {
  background-color: rgb(55 48 163 / 0.6);
}
.bg-indigo-800\/70 {
  background-color: rgb(55 48 163 / 0.7);
}
.bg-indigo-800\/80 {
  background-color: rgb(55 48 163 / 0.8);
}
.bg-indigo-800\/90 {
  background-color: rgb(55 48 163 / 0.9);
}
.bg-indigo-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(49 46 129 / var(--tw-bg-opacity, 1));
}
.bg-indigo-900\/10 {
  background-color: rgb(49 46 129 / 0.1);
}
.bg-indigo-900\/20 {
  background-color: rgb(49 46 129 / 0.2);
}
.bg-indigo-900\/30 {
  background-color: rgb(49 46 129 / 0.3);
}
.bg-indigo-900\/40 {
  background-color: rgb(49 46 129 / 0.4);
}
.bg-indigo-900\/5 {
  background-color: rgb(49 46 129 / 0.05);
}
.bg-indigo-900\/50 {
  background-color: rgb(49 46 129 / 0.5);
}
.bg-indigo-900\/60 {
  background-color: rgb(49 46 129 / 0.6);
}
.bg-indigo-900\/70 {
  background-color: rgb(49 46 129 / 0.7);
}
.bg-indigo-900\/80 {
  background-color: rgb(49 46 129 / 0.8);
}
.bg-indigo-900\/90 {
  background-color: rgb(49 46 129 / 0.9);
}
.bg-indigo-950 {
  --tw-bg-opacity: 1;
  background-color: rgb(30 27 75 / var(--tw-bg-opacity, 1));
}
.bg-indigo-950\/10 {
  background-color: rgb(30 27 75 / 0.1);
}
.bg-indigo-950\/20 {
  background-color: rgb(30 27 75 / 0.2);
}
.bg-indigo-950\/30 {
  background-color: rgb(30 27 75 / 0.3);
}
.bg-indigo-950\/40 {
  background-color: rgb(30 27 75 / 0.4);
}
.bg-indigo-950\/5 {
  background-color: rgb(30 27 75 / 0.05);
}
.bg-indigo-950\/50 {
  background-color: rgb(30 27 75 / 0.5);
}
.bg-indigo-950\/60 {
  background-color: rgb(30 27 75 / 0.6);
}
.bg-indigo-950\/70 {
  background-color: rgb(30 27 75 / 0.7);
}
.bg-indigo-950\/80 {
  background-color: rgb(30 27 75 / 0.8);
}
.bg-indigo-950\/90 {
  background-color: rgb(30 27 75 / 0.9);
}
.bg-lime-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(236 252 203 / var(--tw-bg-opacity, 1));
}
.bg-lime-100\/10 {
  background-color: rgb(236 252 203 / 0.1);
}
.bg-lime-100\/20 {
  background-color: rgb(236 252 203 / 0.2);
}
.bg-lime-100\/30 {
  background-color: rgb(236 252 203 / 0.3);
}
.bg-lime-100\/40 {
  background-color: rgb(236 252 203 / 0.4);
}
.bg-lime-100\/5 {
  background-color: rgb(236 252 203 / 0.05);
}
.bg-lime-100\/50 {
  background-color: rgb(236 252 203 / 0.5);
}
.bg-lime-100\/60 {
  background-color: rgb(236 252 203 / 0.6);
}
.bg-lime-100\/70 {
  background-color: rgb(236 252 203 / 0.7);
}
.bg-lime-100\/80 {
  background-color: rgb(236 252 203 / 0.8);
}
.bg-lime-100\/90 {
  background-color: rgb(236 252 203 / 0.9);
}
.bg-lime-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(217 249 157 / var(--tw-bg-opacity, 1));
}
.bg-lime-200\/10 {
  background-color: rgb(217 249 157 / 0.1);
}
.bg-lime-200\/20 {
  background-color: rgb(217 249 157 / 0.2);
}
.bg-lime-200\/30 {
  background-color: rgb(217 249 157 / 0.3);
}
.bg-lime-200\/40 {
  background-color: rgb(217 249 157 / 0.4);
}
.bg-lime-200\/5 {
  background-color: rgb(217 249 157 / 0.05);
}
.bg-lime-200\/50 {
  background-color: rgb(217 249 157 / 0.5);
}
.bg-lime-200\/60 {
  background-color: rgb(217 249 157 / 0.6);
}
.bg-lime-200\/70 {
  background-color: rgb(217 249 157 / 0.7);
}
.bg-lime-200\/80 {
  background-color: rgb(217 249 157 / 0.8);
}
.bg-lime-200\/90 {
  background-color: rgb(217 249 157 / 0.9);
}
.bg-lime-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(190 242 100 / var(--tw-bg-opacity, 1));
}
.bg-lime-300\/10 {
  background-color: rgb(190 242 100 / 0.1);
}
.bg-lime-300\/20 {
  background-color: rgb(190 242 100 / 0.2);
}
.bg-lime-300\/30 {
  background-color: rgb(190 242 100 / 0.3);
}
.bg-lime-300\/40 {
  background-color: rgb(190 242 100 / 0.4);
}
.bg-lime-300\/5 {
  background-color: rgb(190 242 100 / 0.05);
}
.bg-lime-300\/50 {
  background-color: rgb(190 242 100 / 0.5);
}
.bg-lime-300\/60 {
  background-color: rgb(190 242 100 / 0.6);
}
.bg-lime-300\/70 {
  background-color: rgb(190 242 100 / 0.7);
}
.bg-lime-300\/80 {
  background-color: rgb(190 242 100 / 0.8);
}
.bg-lime-300\/90 {
  background-color: rgb(190 242 100 / 0.9);
}
.bg-lime-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(163 230 53 / var(--tw-bg-opacity, 1));
}
.bg-lime-400\/10 {
  background-color: rgb(163 230 53 / 0.1);
}
.bg-lime-400\/20 {
  background-color: rgb(163 230 53 / 0.2);
}
.bg-lime-400\/30 {
  background-color: rgb(163 230 53 / 0.3);
}
.bg-lime-400\/40 {
  background-color: rgb(163 230 53 / 0.4);
}
.bg-lime-400\/5 {
  background-color: rgb(163 230 53 / 0.05);
}
.bg-lime-400\/50 {
  background-color: rgb(163 230 53 / 0.5);
}
.bg-lime-400\/60 {
  background-color: rgb(163 230 53 / 0.6);
}
.bg-lime-400\/70 {
  background-color: rgb(163 230 53 / 0.7);
}
.bg-lime-400\/80 {
  background-color: rgb(163 230 53 / 0.8);
}
.bg-lime-400\/90 {
  background-color: rgb(163 230 53 / 0.9);
}
.bg-lime-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(247 254 231 / var(--tw-bg-opacity, 1));
}
.bg-lime-50\/10 {
  background-color: rgb(247 254 231 / 0.1);
}
.bg-lime-50\/20 {
  background-color: rgb(247 254 231 / 0.2);
}
.bg-lime-50\/30 {
  background-color: rgb(247 254 231 / 0.3);
}
.bg-lime-50\/40 {
  background-color: rgb(247 254 231 / 0.4);
}
.bg-lime-50\/5 {
  background-color: rgb(247 254 231 / 0.05);
}
.bg-lime-50\/50 {
  background-color: rgb(247 254 231 / 0.5);
}
.bg-lime-50\/60 {
  background-color: rgb(247 254 231 / 0.6);
}
.bg-lime-50\/70 {
  background-color: rgb(247 254 231 / 0.7);
}
.bg-lime-50\/80 {
  background-color: rgb(247 254 231 / 0.8);
}
.bg-lime-50\/90 {
  background-color: rgb(247 254 231 / 0.9);
}
.bg-lime-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(132 204 22 / var(--tw-bg-opacity, 1));
}
.bg-lime-500\/10 {
  background-color: rgb(132 204 22 / 0.1);
}
.bg-lime-500\/20 {
  background-color: rgb(132 204 22 / 0.2);
}
.bg-lime-500\/30 {
  background-color: rgb(132 204 22 / 0.3);
}
.bg-lime-500\/40 {
  background-color: rgb(132 204 22 / 0.4);
}
.bg-lime-500\/5 {
  background-color: rgb(132 204 22 / 0.05);
}
.bg-lime-500\/50 {
  background-color: rgb(132 204 22 / 0.5);
}
.bg-lime-500\/60 {
  background-color: rgb(132 204 22 / 0.6);
}
.bg-lime-500\/70 {
  background-color: rgb(132 204 22 / 0.7);
}
.bg-lime-500\/80 {
  background-color: rgb(132 204 22 / 0.8);
}
.bg-lime-500\/90 {
  background-color: rgb(132 204 22 / 0.9);
}
.bg-lime-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(101 163 13 / var(--tw-bg-opacity, 1));
}
.bg-lime-600\/10 {
  background-color: rgb(101 163 13 / 0.1);
}
.bg-lime-600\/20 {
  background-color: rgb(101 163 13 / 0.2);
}
.bg-lime-600\/30 {
  background-color: rgb(101 163 13 / 0.3);
}
.bg-lime-600\/40 {
  background-color: rgb(101 163 13 / 0.4);
}
.bg-lime-600\/5 {
  background-color: rgb(101 163 13 / 0.05);
}
.bg-lime-600\/50 {
  background-color: rgb(101 163 13 / 0.5);
}
.bg-lime-600\/60 {
  background-color: rgb(101 163 13 / 0.6);
}
.bg-lime-600\/70 {
  background-color: rgb(101 163 13 / 0.7);
}
.bg-lime-600\/80 {
  background-color: rgb(101 163 13 / 0.8);
}
.bg-lime-600\/90 {
  background-color: rgb(101 163 13 / 0.9);
}
.bg-lime-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(77 124 15 / var(--tw-bg-opacity, 1));
}
.bg-lime-700\/10 {
  background-color: rgb(77 124 15 / 0.1);
}
.bg-lime-700\/20 {
  background-color: rgb(77 124 15 / 0.2);
}
.bg-lime-700\/30 {
  background-color: rgb(77 124 15 / 0.3);
}
.bg-lime-700\/40 {
  background-color: rgb(77 124 15 / 0.4);
}
.bg-lime-700\/5 {
  background-color: rgb(77 124 15 / 0.05);
}
.bg-lime-700\/50 {
  background-color: rgb(77 124 15 / 0.5);
}
.bg-lime-700\/60 {
  background-color: rgb(77 124 15 / 0.6);
}
.bg-lime-700\/70 {
  background-color: rgb(77 124 15 / 0.7);
}
.bg-lime-700\/80 {
  background-color: rgb(77 124 15 / 0.8);
}
.bg-lime-700\/90 {
  background-color: rgb(77 124 15 / 0.9);
}
.bg-lime-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(63 98 18 / var(--tw-bg-opacity, 1));
}
.bg-lime-800\/10 {
  background-color: rgb(63 98 18 / 0.1);
}
.bg-lime-800\/20 {
  background-color: rgb(63 98 18 / 0.2);
}
.bg-lime-800\/30 {
  background-color: rgb(63 98 18 / 0.3);
}
.bg-lime-800\/40 {
  background-color: rgb(63 98 18 / 0.4);
}
.bg-lime-800\/5 {
  background-color: rgb(63 98 18 / 0.05);
}
.bg-lime-800\/50 {
  background-color: rgb(63 98 18 / 0.5);
}
.bg-lime-800\/60 {
  background-color: rgb(63 98 18 / 0.6);
}
.bg-lime-800\/70 {
  background-color: rgb(63 98 18 / 0.7);
}
.bg-lime-800\/80 {
  background-color: rgb(63 98 18 / 0.8);
}
.bg-lime-800\/90 {
  background-color: rgb(63 98 18 / 0.9);
}
.bg-lime-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(54 83 20 / var(--tw-bg-opacity, 1));
}
.bg-lime-900\/10 {
  background-color: rgb(54 83 20 / 0.1);
}
.bg-lime-900\/20 {
  background-color: rgb(54 83 20 / 0.2);
}
.bg-lime-900\/30 {
  background-color: rgb(54 83 20 / 0.3);
}
.bg-lime-900\/40 {
  background-color: rgb(54 83 20 / 0.4);
}
.bg-lime-900\/5 {
  background-color: rgb(54 83 20 / 0.05);
}
.bg-lime-900\/50 {
  background-color: rgb(54 83 20 / 0.5);
}
.bg-lime-900\/60 {
  background-color: rgb(54 83 20 / 0.6);
}
.bg-lime-900\/70 {
  background-color: rgb(54 83 20 / 0.7);
}
.bg-lime-900\/80 {
  background-color: rgb(54 83 20 / 0.8);
}
.bg-lime-900\/90 {
  background-color: rgb(54 83 20 / 0.9);
}
.bg-lime-950 {
  --tw-bg-opacity: 1;
  background-color: rgb(26 46 5 / var(--tw-bg-opacity, 1));
}
.bg-lime-950\/10 {
  background-color: rgb(26 46 5 / 0.1);
}
.bg-lime-950\/20 {
  background-color: rgb(26 46 5 / 0.2);
}
.bg-lime-950\/30 {
  background-color: rgb(26 46 5 / 0.3);
}
.bg-lime-950\/40 {
  background-color: rgb(26 46 5 / 0.4);
}
.bg-lime-950\/5 {
  background-color: rgb(26 46 5 / 0.05);
}
.bg-lime-950\/50 {
  background-color: rgb(26 46 5 / 0.5);
}
.bg-lime-950\/60 {
  background-color: rgb(26 46 5 / 0.6);
}
.bg-lime-950\/70 {
  background-color: rgb(26 46 5 / 0.7);
}
.bg-lime-950\/80 {
  background-color: rgb(26 46 5 / 0.8);
}
.bg-lime-950\/90 {
  background-color: rgb(26 46 5 / 0.9);
}
.bg-neutral-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 245 / var(--tw-bg-opacity, 1));
}
.bg-neutral-100\/10 {
  background-color: rgb(245 245 245 / 0.1);
}
.bg-neutral-100\/20 {
  background-color: rgb(245 245 245 / 0.2);
}
.bg-neutral-100\/30 {
  background-color: rgb(245 245 245 / 0.3);
}
.bg-neutral-100\/40 {
  background-color: rgb(245 245 245 / 0.4);
}
.bg-neutral-100\/5 {
  background-color: rgb(245 245 245 / 0.05);
}
.bg-neutral-100\/50 {
  background-color: rgb(245 245 245 / 0.5);
}
.bg-neutral-100\/60 {
  background-color: rgb(245 245 245 / 0.6);
}
.bg-neutral-100\/70 {
  background-color: rgb(245 245 245 / 0.7);
}
.bg-neutral-100\/80 {
  background-color: rgb(245 245 245 / 0.8);
}
.bg-neutral-100\/90 {
  background-color: rgb(245 245 245 / 0.9);
}
.bg-neutral-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(229 229 229 / var(--tw-bg-opacity, 1));
}
.bg-neutral-200\/10 {
  background-color: rgb(229 229 229 / 0.1);
}
.bg-neutral-200\/20 {
  background-color: rgb(229 229 229 / 0.2);
}
.bg-neutral-200\/30 {
  background-color: rgb(229 229 229 / 0.3);
}
.bg-neutral-200\/40 {
  background-color: rgb(229 229 229 / 0.4);
}
.bg-neutral-200\/5 {
  background-color: rgb(229 229 229 / 0.05);
}
.bg-neutral-200\/50 {
  background-color: rgb(229 229 229 / 0.5);
}
.bg-neutral-200\/60 {
  background-color: rgb(229 229 229 / 0.6);
}
.bg-neutral-200\/70 {
  background-color: rgb(229 229 229 / 0.7);
}
.bg-neutral-200\/80 {
  background-color: rgb(229 229 229 / 0.8);
}
.bg-neutral-200\/90 {
  background-color: rgb(229 229 229 / 0.9);
}
.bg-neutral-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(212 212 212 / var(--tw-bg-opacity, 1));
}
.bg-neutral-300\/10 {
  background-color: rgb(212 212 212 / 0.1);
}
.bg-neutral-300\/20 {
  background-color: rgb(212 212 212 / 0.2);
}
.bg-neutral-300\/30 {
  background-color: rgb(212 212 212 / 0.3);
}
.bg-neutral-300\/40 {
  background-color: rgb(212 212 212 / 0.4);
}
.bg-neutral-300\/5 {
  background-color: rgb(212 212 212 / 0.05);
}
.bg-neutral-300\/50 {
  background-color: rgb(212 212 212 / 0.5);
}
.bg-neutral-300\/60 {
  background-color: rgb(212 212 212 / 0.6);
}
.bg-neutral-300\/70 {
  background-color: rgb(212 212 212 / 0.7);
}
.bg-neutral-300\/80 {
  background-color: rgb(212 212 212 / 0.8);
}
.bg-neutral-300\/90 {
  background-color: rgb(212 212 212 / 0.9);
}
.bg-neutral-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(163 163 163 / var(--tw-bg-opacity, 1));
}
.bg-neutral-400\/10 {
  background-color: rgb(163 163 163 / 0.1);
}
.bg-neutral-400\/20 {
  background-color: rgb(163 163 163 / 0.2);
}
.bg-neutral-400\/30 {
  background-color: rgb(163 163 163 / 0.3);
}
.bg-neutral-400\/40 {
  background-color: rgb(163 163 163 / 0.4);
}
.bg-neutral-400\/5 {
  background-color: rgb(163 163 163 / 0.05);
}
.bg-neutral-400\/50 {
  background-color: rgb(163 163 163 / 0.5);
}
.bg-neutral-400\/60 {
  background-color: rgb(163 163 163 / 0.6);
}
.bg-neutral-400\/70 {
  background-color: rgb(163 163 163 / 0.7);
}
.bg-neutral-400\/80 {
  background-color: rgb(163 163 163 / 0.8);
}
.bg-neutral-400\/90 {
  background-color: rgb(163 163 163 / 0.9);
}
.bg-neutral-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
}
.bg-neutral-50\/10 {
  background-color: rgb(250 250 250 / 0.1);
}
.bg-neutral-50\/20 {
  background-color: rgb(250 250 250 / 0.2);
}
.bg-neutral-50\/30 {
  background-color: rgb(250 250 250 / 0.3);
}
.bg-neutral-50\/40 {
  background-color: rgb(250 250 250 / 0.4);
}
.bg-neutral-50\/5 {
  background-color: rgb(250 250 250 / 0.05);
}
.bg-neutral-50\/50 {
  background-color: rgb(250 250 250 / 0.5);
}
.bg-neutral-50\/60 {
  background-color: rgb(250 250 250 / 0.6);
}
.bg-neutral-50\/70 {
  background-color: rgb(250 250 250 / 0.7);
}
.bg-neutral-50\/80 {
  background-color: rgb(250 250 250 / 0.8);
}
.bg-neutral-50\/90 {
  background-color: rgb(250 250 250 / 0.9);
}
.bg-neutral-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(115 115 115 / var(--tw-bg-opacity, 1));
}
.bg-neutral-500\/10 {
  background-color: rgb(115 115 115 / 0.1);
}
.bg-neutral-500\/20 {
  background-color: rgb(115 115 115 / 0.2);
}
.bg-neutral-500\/30 {
  background-color: rgb(115 115 115 / 0.3);
}
.bg-neutral-500\/40 {
  background-color: rgb(115 115 115 / 0.4);
}
.bg-neutral-500\/5 {
  background-color: rgb(115 115 115 / 0.05);
}
.bg-neutral-500\/50 {
  background-color: rgb(115 115 115 / 0.5);
}
.bg-neutral-500\/60 {
  background-color: rgb(115 115 115 / 0.6);
}
.bg-neutral-500\/70 {
  background-color: rgb(115 115 115 / 0.7);
}
.bg-neutral-500\/80 {
  background-color: rgb(115 115 115 / 0.8);
}
.bg-neutral-500\/90 {
  background-color: rgb(115 115 115 / 0.9);
}
.bg-neutral-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(82 82 82 / var(--tw-bg-opacity, 1));
}
.bg-neutral-600\/10 {
  background-color: rgb(82 82 82 / 0.1);
}
.bg-neutral-600\/20 {
  background-color: rgb(82 82 82 / 0.2);
}
.bg-neutral-600\/30 {
  background-color: rgb(82 82 82 / 0.3);
}
.bg-neutral-600\/40 {
  background-color: rgb(82 82 82 / 0.4);
}
.bg-neutral-600\/5 {
  background-color: rgb(82 82 82 / 0.05);
}
.bg-neutral-600\/50 {
  background-color: rgb(82 82 82 / 0.5);
}
.bg-neutral-600\/60 {
  background-color: rgb(82 82 82 / 0.6);
}
.bg-neutral-600\/70 {
  background-color: rgb(82 82 82 / 0.7);
}
.bg-neutral-600\/80 {
  background-color: rgb(82 82 82 / 0.8);
}
.bg-neutral-600\/90 {
  background-color: rgb(82 82 82 / 0.9);
}
.bg-neutral-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(64 64 64 / var(--tw-bg-opacity, 1));
}
.bg-neutral-700\/10 {
  background-color: rgb(64 64 64 / 0.1);
}
.bg-neutral-700\/20 {
  background-color: rgb(64 64 64 / 0.2);
}
.bg-neutral-700\/30 {
  background-color: rgb(64 64 64 / 0.3);
}
.bg-neutral-700\/40 {
  background-color: rgb(64 64 64 / 0.4);
}
.bg-neutral-700\/5 {
  background-color: rgb(64 64 64 / 0.05);
}
.bg-neutral-700\/50 {
  background-color: rgb(64 64 64 / 0.5);
}
.bg-neutral-700\/60 {
  background-color: rgb(64 64 64 / 0.6);
}
.bg-neutral-700\/70 {
  background-color: rgb(64 64 64 / 0.7);
}
.bg-neutral-700\/80 {
  background-color: rgb(64 64 64 / 0.8);
}
.bg-neutral-700\/90 {
  background-color: rgb(64 64 64 / 0.9);
}
.bg-neutral-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(38 38 38 / var(--tw-bg-opacity, 1));
}
.bg-neutral-800\/10 {
  background-color: rgb(38 38 38 / 0.1);
}
.bg-neutral-800\/20 {
  background-color: rgb(38 38 38 / 0.2);
}
.bg-neutral-800\/30 {
  background-color: rgb(38 38 38 / 0.3);
}
.bg-neutral-800\/40 {
  background-color: rgb(38 38 38 / 0.4);
}
.bg-neutral-800\/5 {
  background-color: rgb(38 38 38 / 0.05);
}
.bg-neutral-800\/50 {
  background-color: rgb(38 38 38 / 0.5);
}
.bg-neutral-800\/60 {
  background-color: rgb(38 38 38 / 0.6);
}
.bg-neutral-800\/70 {
  background-color: rgb(38 38 38 / 0.7);
}
.bg-neutral-800\/80 {
  background-color: rgb(38 38 38 / 0.8);
}
.bg-neutral-800\/90 {
  background-color: rgb(38 38 38 / 0.9);
}
.bg-neutral-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(23 23 23 / var(--tw-bg-opacity, 1));
}
.bg-neutral-900\/10 {
  background-color: rgb(23 23 23 / 0.1);
}
.bg-neutral-900\/20 {
  background-color: rgb(23 23 23 / 0.2);
}
.bg-neutral-900\/30 {
  background-color: rgb(23 23 23 / 0.3);
}
.bg-neutral-900\/40 {
  background-color: rgb(23 23 23 / 0.4);
}
.bg-neutral-900\/5 {
  background-color: rgb(23 23 23 / 0.05);
}
.bg-neutral-900\/50 {
  background-color: rgb(23 23 23 / 0.5);
}
.bg-neutral-900\/60 {
  background-color: rgb(23 23 23 / 0.6);
}
.bg-neutral-900\/70 {
  background-color: rgb(23 23 23 / 0.7);
}
.bg-neutral-900\/80 {
  background-color: rgb(23 23 23 / 0.8);
}
.bg-neutral-900\/90 {
  background-color: rgb(23 23 23 / 0.9);
}
.bg-neutral-950 {
  --tw-bg-opacity: 1;
  background-color: rgb(10 10 10 / var(--tw-bg-opacity, 1));
}
.bg-neutral-950\/10 {
  background-color: rgb(10 10 10 / 0.1);
}
.bg-neutral-950\/20 {
  background-color: rgb(10 10 10 / 0.2);
}
.bg-neutral-950\/30 {
  background-color: rgb(10 10 10 / 0.3);
}
.bg-neutral-950\/40 {
  background-color: rgb(10 10 10 / 0.4);
}
.bg-neutral-950\/5 {
  background-color: rgb(10 10 10 / 0.05);
}
.bg-neutral-950\/50 {
  background-color: rgb(10 10 10 / 0.5);
}
.bg-neutral-950\/60 {
  background-color: rgb(10 10 10 / 0.6);
}
.bg-neutral-950\/70 {
  background-color: rgb(10 10 10 / 0.7);
}
.bg-neutral-950\/80 {
  background-color: rgb(10 10 10 / 0.8);
}
.bg-neutral-950\/90 {
  background-color: rgb(10 10 10 / 0.9);
}
.bg-orange-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 237 213 / var(--tw-bg-opacity, 1));
}
.bg-orange-100\/10 {
  background-color: rgb(255 237 213 / 0.1);
}
.bg-orange-100\/20 {
  background-color: rgb(255 237 213 / 0.2);
}
.bg-orange-100\/30 {
  background-color: rgb(255 237 213 / 0.3);
}
.bg-orange-100\/40 {
  background-color: rgb(255 237 213 / 0.4);
}
.bg-orange-100\/5 {
  background-color: rgb(255 237 213 / 0.05);
}
.bg-orange-100\/50 {
  background-color: rgb(255 237 213 / 0.5);
}
.bg-orange-100\/60 {
  background-color: rgb(255 237 213 / 0.6);
}
.bg-orange-100\/70 {
  background-color: rgb(255 237 213 / 0.7);
}
.bg-orange-100\/80 {
  background-color: rgb(255 237 213 / 0.8);
}
.bg-orange-100\/90 {
  background-color: rgb(255 237 213 / 0.9);
}
.bg-orange-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 215 170 / var(--tw-bg-opacity, 1));
}
.bg-orange-200\/10 {
  background-color: rgb(254 215 170 / 0.1);
}
.bg-orange-200\/20 {
  background-color: rgb(254 215 170 / 0.2);
}
.bg-orange-200\/30 {
  background-color: rgb(254 215 170 / 0.3);
}
.bg-orange-200\/40 {
  background-color: rgb(254 215 170 / 0.4);
}
.bg-orange-200\/5 {
  background-color: rgb(254 215 170 / 0.05);
}
.bg-orange-200\/50 {
  background-color: rgb(254 215 170 / 0.5);
}
.bg-orange-200\/60 {
  background-color: rgb(254 215 170 / 0.6);
}
.bg-orange-200\/70 {
  background-color: rgb(254 215 170 / 0.7);
}
.bg-orange-200\/80 {
  background-color: rgb(254 215 170 / 0.8);
}
.bg-orange-200\/90 {
  background-color: rgb(254 215 170 / 0.9);
}
.bg-orange-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(253 186 116 / var(--tw-bg-opacity, 1));
}
.bg-orange-300\/10 {
  background-color: rgb(253 186 116 / 0.1);
}
.bg-orange-300\/20 {
  background-color: rgb(253 186 116 / 0.2);
}
.bg-orange-300\/30 {
  background-color: rgb(253 186 116 / 0.3);
}
.bg-orange-300\/40 {
  background-color: rgb(253 186 116 / 0.4);
}
.bg-orange-300\/5 {
  background-color: rgb(253 186 116 / 0.05);
}
.bg-orange-300\/50 {
  background-color: rgb(253 186 116 / 0.5);
}
.bg-orange-300\/60 {
  background-color: rgb(253 186 116 / 0.6);
}
.bg-orange-300\/70 {
  background-color: rgb(253 186 116 / 0.7);
}
.bg-orange-300\/80 {
  background-color: rgb(253 186 116 / 0.8);
}
.bg-orange-300\/90 {
  background-color: rgb(253 186 116 / 0.9);
}
.bg-orange-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(251 146 60 / var(--tw-bg-opacity, 1));
}
.bg-orange-400\/10 {
  background-color: rgb(251 146 60 / 0.1);
}
.bg-orange-400\/20 {
  background-color: rgb(251 146 60 / 0.2);
}
.bg-orange-400\/30 {
  background-color: rgb(251 146 60 / 0.3);
}
.bg-orange-400\/40 {
  background-color: rgb(251 146 60 / 0.4);
}
.bg-orange-400\/5 {
  background-color: rgb(251 146 60 / 0.05);
}
.bg-orange-400\/50 {
  background-color: rgb(251 146 60 / 0.5);
}
.bg-orange-400\/60 {
  background-color: rgb(251 146 60 / 0.6);
}
.bg-orange-400\/70 {
  background-color: rgb(251 146 60 / 0.7);
}
.bg-orange-400\/80 {
  background-color: rgb(251 146 60 / 0.8);
}
.bg-orange-400\/90 {
  background-color: rgb(251 146 60 / 0.9);
}
.bg-orange-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 247 237 / var(--tw-bg-opacity, 1));
}
.bg-orange-50\/10 {
  background-color: rgb(255 247 237 / 0.1);
}
.bg-orange-50\/20 {
  background-color: rgb(255 247 237 / 0.2);
}
.bg-orange-50\/30 {
  background-color: rgb(255 247 237 / 0.3);
}
.bg-orange-50\/40 {
  background-color: rgb(255 247 237 / 0.4);
}
.bg-orange-50\/5 {
  background-color: rgb(255 247 237 / 0.05);
}
.bg-orange-50\/50 {
  background-color: rgb(255 247 237 / 0.5);
}
.bg-orange-50\/60 {
  background-color: rgb(255 247 237 / 0.6);
}
.bg-orange-50\/70 {
  background-color: rgb(255 247 237 / 0.7);
}
.bg-orange-50\/80 {
  background-color: rgb(255 247 237 / 0.8);
}
.bg-orange-50\/90 {
  background-color: rgb(255 247 237 / 0.9);
}
.bg-orange-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
}
.bg-orange-500\/10 {
  background-color: rgb(249 115 22 / 0.1);
}
.bg-orange-500\/20 {
  background-color: rgb(249 115 22 / 0.2);
}
.bg-orange-500\/30 {
  background-color: rgb(249 115 22 / 0.3);
}
.bg-orange-500\/40 {
  background-color: rgb(249 115 22 / 0.4);
}
.bg-orange-500\/5 {
  background-color: rgb(249 115 22 / 0.05);
}
.bg-orange-500\/50 {
  background-color: rgb(249 115 22 / 0.5);
}
.bg-orange-500\/60 {
  background-color: rgb(249 115 22 / 0.6);
}
.bg-orange-500\/70 {
  background-color: rgb(249 115 22 / 0.7);
}
.bg-orange-500\/80 {
  background-color: rgb(249 115 22 / 0.8);
}
.bg-orange-500\/90 {
  background-color: rgb(249 115 22 / 0.9);
}
.bg-orange-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(234 88 12 / var(--tw-bg-opacity, 1));
}
.bg-orange-600\/10 {
  background-color: rgb(234 88 12 / 0.1);
}
.bg-orange-600\/20 {
  background-color: rgb(234 88 12 / 0.2);
}
.bg-orange-600\/30 {
  background-color: rgb(234 88 12 / 0.3);
}
.bg-orange-600\/40 {
  background-color: rgb(234 88 12 / 0.4);
}
.bg-orange-600\/5 {
  background-color: rgb(234 88 12 / 0.05);
}
.bg-orange-600\/50 {
  background-color: rgb(234 88 12 / 0.5);
}
.bg-orange-600\/60 {
  background-color: rgb(234 88 12 / 0.6);
}
.bg-orange-600\/70 {
  background-color: rgb(234 88 12 / 0.7);
}
.bg-orange-600\/80 {
  background-color: rgb(234 88 12 / 0.8);
}
.bg-orange-600\/90 {
  background-color: rgb(234 88 12 / 0.9);
}
.bg-orange-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(194 65 12 / var(--tw-bg-opacity, 1));
}
.bg-orange-700\/10 {
  background-color: rgb(194 65 12 / 0.1);
}
.bg-orange-700\/20 {
  background-color: rgb(194 65 12 / 0.2);
}
.bg-orange-700\/30 {
  background-color: rgb(194 65 12 / 0.3);
}
.bg-orange-700\/40 {
  background-color: rgb(194 65 12 / 0.4);
}
.bg-orange-700\/5 {
  background-color: rgb(194 65 12 / 0.05);
}
.bg-orange-700\/50 {
  background-color: rgb(194 65 12 / 0.5);
}
.bg-orange-700\/60 {
  background-color: rgb(194 65 12 / 0.6);
}
.bg-orange-700\/70 {
  background-color: rgb(194 65 12 / 0.7);
}
.bg-orange-700\/80 {
  background-color: rgb(194 65 12 / 0.8);
}
.bg-orange-700\/90 {
  background-color: rgb(194 65 12 / 0.9);
}
.bg-orange-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(154 52 18 / var(--tw-bg-opacity, 1));
}
.bg-orange-800\/10 {
  background-color: rgb(154 52 18 / 0.1);
}
.bg-orange-800\/20 {
  background-color: rgb(154 52 18 / 0.2);
}
.bg-orange-800\/30 {
  background-color: rgb(154 52 18 / 0.3);
}
.bg-orange-800\/40 {
  background-color: rgb(154 52 18 / 0.4);
}
.bg-orange-800\/5 {
  background-color: rgb(154 52 18 / 0.05);
}
.bg-orange-800\/50 {
  background-color: rgb(154 52 18 / 0.5);
}
.bg-orange-800\/60 {
  background-color: rgb(154 52 18 / 0.6);
}
.bg-orange-800\/70 {
  background-color: rgb(154 52 18 / 0.7);
}
.bg-orange-800\/80 {
  background-color: rgb(154 52 18 / 0.8);
}
.bg-orange-800\/90 {
  background-color: rgb(154 52 18 / 0.9);
}
.bg-orange-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(124 45 18 / var(--tw-bg-opacity, 1));
}
.bg-orange-900\/10 {
  background-color: rgb(124 45 18 / 0.1);
}
.bg-orange-900\/20 {
  background-color: rgb(124 45 18 / 0.2);
}
.bg-orange-900\/30 {
  background-color: rgb(124 45 18 / 0.3);
}
.bg-orange-900\/40 {
  background-color: rgb(124 45 18 / 0.4);
}
.bg-orange-900\/5 {
  background-color: rgb(124 45 18 / 0.05);
}
.bg-orange-900\/50 {
  background-color: rgb(124 45 18 / 0.5);
}
.bg-orange-900\/60 {
  background-color: rgb(124 45 18 / 0.6);
}
.bg-orange-900\/70 {
  background-color: rgb(124 45 18 / 0.7);
}
.bg-orange-900\/80 {
  background-color: rgb(124 45 18 / 0.8);
}
.bg-orange-900\/90 {
  background-color: rgb(124 45 18 / 0.9);
}
.bg-orange-950 {
  --tw-bg-opacity: 1;
  background-color: rgb(67 20 7 / var(--tw-bg-opacity, 1));
}
.bg-orange-950\/10 {
  background-color: rgb(67 20 7 / 0.1);
}
.bg-orange-950\/20 {
  background-color: rgb(67 20 7 / 0.2);
}
.bg-orange-950\/30 {
  background-color: rgb(67 20 7 / 0.3);
}
.bg-orange-950\/40 {
  background-color: rgb(67 20 7 / 0.4);
}
.bg-orange-950\/5 {
  background-color: rgb(67 20 7 / 0.05);
}
.bg-orange-950\/50 {
  background-color: rgb(67 20 7 / 0.5);
}
.bg-orange-950\/60 {
  background-color: rgb(67 20 7 / 0.6);
}
.bg-orange-950\/70 {
  background-color: rgb(67 20 7 / 0.7);
}
.bg-orange-950\/80 {
  background-color: rgb(67 20 7 / 0.8);
}
.bg-orange-950\/90 {
  background-color: rgb(67 20 7 / 0.9);
}
.bg-pink-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(252 231 243 / var(--tw-bg-opacity, 1));
}
.bg-pink-100\/10 {
  background-color: rgb(252 231 243 / 0.1);
}
.bg-pink-100\/20 {
  background-color: rgb(252 231 243 / 0.2);
}
.bg-pink-100\/30 {
  background-color: rgb(252 231 243 / 0.3);
}
.bg-pink-100\/40 {
  background-color: rgb(252 231 243 / 0.4);
}
.bg-pink-100\/5 {
  background-color: rgb(252 231 243 / 0.05);
}
.bg-pink-100\/50 {
  background-color: rgb(252 231 243 / 0.5);
}
.bg-pink-100\/60 {
  background-color: rgb(252 231 243 / 0.6);
}
.bg-pink-100\/70 {
  background-color: rgb(252 231 243 / 0.7);
}
.bg-pink-100\/80 {
  background-color: rgb(252 231 243 / 0.8);
}
.bg-pink-100\/90 {
  background-color: rgb(252 231 243 / 0.9);
}
.bg-pink-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(251 207 232 / var(--tw-bg-opacity, 1));
}
.bg-pink-200\/10 {
  background-color: rgb(251 207 232 / 0.1);
}
.bg-pink-200\/20 {
  background-color: rgb(251 207 232 / 0.2);
}
.bg-pink-200\/30 {
  background-color: rgb(251 207 232 / 0.3);
}
.bg-pink-200\/40 {
  background-color: rgb(251 207 232 / 0.4);
}
.bg-pink-200\/5 {
  background-color: rgb(251 207 232 / 0.05);
}
.bg-pink-200\/50 {
  background-color: rgb(251 207 232 / 0.5);
}
.bg-pink-200\/60 {
  background-color: rgb(251 207 232 / 0.6);
}
.bg-pink-200\/70 {
  background-color: rgb(251 207 232 / 0.7);
}
.bg-pink-200\/80 {
  background-color: rgb(251 207 232 / 0.8);
}
.bg-pink-200\/90 {
  background-color: rgb(251 207 232 / 0.9);
}
.bg-pink-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 168 212 / var(--tw-bg-opacity, 1));
}
.bg-pink-300\/10 {
  background-color: rgb(249 168 212 / 0.1);
}
.bg-pink-300\/20 {
  background-color: rgb(249 168 212 / 0.2);
}
.bg-pink-300\/30 {
  background-color: rgb(249 168 212 / 0.3);
}
.bg-pink-300\/40 {
  background-color: rgb(249 168 212 / 0.4);
}
.bg-pink-300\/5 {
  background-color: rgb(249 168 212 / 0.05);
}
.bg-pink-300\/50 {
  background-color: rgb(249 168 212 / 0.5);
}
.bg-pink-300\/60 {
  background-color: rgb(249 168 212 / 0.6);
}
.bg-pink-300\/70 {
  background-color: rgb(249 168 212 / 0.7);
}
.bg-pink-300\/80 {
  background-color: rgb(249 168 212 / 0.8);
}
.bg-pink-300\/90 {
  background-color: rgb(249 168 212 / 0.9);
}
.bg-pink-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(244 114 182 / var(--tw-bg-opacity, 1));
}
.bg-pink-400\/10 {
  background-color: rgb(244 114 182 / 0.1);
}
.bg-pink-400\/20 {
  background-color: rgb(244 114 182 / 0.2);
}
.bg-pink-400\/30 {
  background-color: rgb(244 114 182 / 0.3);
}
.bg-pink-400\/40 {
  background-color: rgb(244 114 182 / 0.4);
}
.bg-pink-400\/5 {
  background-color: rgb(244 114 182 / 0.05);
}
.bg-pink-400\/50 {
  background-color: rgb(244 114 182 / 0.5);
}
.bg-pink-400\/60 {
  background-color: rgb(244 114 182 / 0.6);
}
.bg-pink-400\/70 {
  background-color: rgb(244 114 182 / 0.7);
}
.bg-pink-400\/80 {
  background-color: rgb(244 114 182 / 0.8);
}
.bg-pink-400\/90 {
  background-color: rgb(244 114 182 / 0.9);
}
.bg-pink-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(253 242 248 / var(--tw-bg-opacity, 1));
}
.bg-pink-50\/10 {
  background-color: rgb(253 242 248 / 0.1);
}
.bg-pink-50\/20 {
  background-color: rgb(253 242 248 / 0.2);
}
.bg-pink-50\/30 {
  background-color: rgb(253 242 248 / 0.3);
}
.bg-pink-50\/40 {
  background-color: rgb(253 242 248 / 0.4);
}
.bg-pink-50\/5 {
  background-color: rgb(253 242 248 / 0.05);
}
.bg-pink-50\/50 {
  background-color: rgb(253 242 248 / 0.5);
}
.bg-pink-50\/60 {
  background-color: rgb(253 242 248 / 0.6);
}
.bg-pink-50\/70 {
  background-color: rgb(253 242 248 / 0.7);
}
.bg-pink-50\/80 {
  background-color: rgb(253 242 248 / 0.8);
}
.bg-pink-50\/90 {
  background-color: rgb(253 242 248 / 0.9);
}
.bg-pink-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(236 72 153 / var(--tw-bg-opacity, 1));
}
.bg-pink-500\/10 {
  background-color: rgb(236 72 153 / 0.1);
}
.bg-pink-500\/20 {
  background-color: rgb(236 72 153 / 0.2);
}
.bg-pink-500\/30 {
  background-color: rgb(236 72 153 / 0.3);
}
.bg-pink-500\/40 {
  background-color: rgb(236 72 153 / 0.4);
}
.bg-pink-500\/5 {
  background-color: rgb(236 72 153 / 0.05);
}
.bg-pink-500\/50 {
  background-color: rgb(236 72 153 / 0.5);
}
.bg-pink-500\/60 {
  background-color: rgb(236 72 153 / 0.6);
}
.bg-pink-500\/70 {
  background-color: rgb(236 72 153 / 0.7);
}
.bg-pink-500\/80 {
  background-color: rgb(236 72 153 / 0.8);
}
.bg-pink-500\/90 {
  background-color: rgb(236 72 153 / 0.9);
}
.bg-pink-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(219 39 119 / var(--tw-bg-opacity, 1));
}
.bg-pink-600\/10 {
  background-color: rgb(219 39 119 / 0.1);
}
.bg-pink-600\/20 {
  background-color: rgb(219 39 119 / 0.2);
}
.bg-pink-600\/30 {
  background-color: rgb(219 39 119 / 0.3);
}
.bg-pink-600\/40 {
  background-color: rgb(219 39 119 / 0.4);
}
.bg-pink-600\/5 {
  background-color: rgb(219 39 119 / 0.05);
}
.bg-pink-600\/50 {
  background-color: rgb(219 39 119 / 0.5);
}
.bg-pink-600\/60 {
  background-color: rgb(219 39 119 / 0.6);
}
.bg-pink-600\/70 {
  background-color: rgb(219 39 119 / 0.7);
}
.bg-pink-600\/80 {
  background-color: rgb(219 39 119 / 0.8);
}
.bg-pink-600\/90 {
  background-color: rgb(219 39 119 / 0.9);
}
.bg-pink-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(190 24 93 / var(--tw-bg-opacity, 1));
}
.bg-pink-700\/10 {
  background-color: rgb(190 24 93 / 0.1);
}
.bg-pink-700\/20 {
  background-color: rgb(190 24 93 / 0.2);
}
.bg-pink-700\/30 {
  background-color: rgb(190 24 93 / 0.3);
}
.bg-pink-700\/40 {
  background-color: rgb(190 24 93 / 0.4);
}
.bg-pink-700\/5 {
  background-color: rgb(190 24 93 / 0.05);
}
.bg-pink-700\/50 {
  background-color: rgb(190 24 93 / 0.5);
}
.bg-pink-700\/60 {
  background-color: rgb(190 24 93 / 0.6);
}
.bg-pink-700\/70 {
  background-color: rgb(190 24 93 / 0.7);
}
.bg-pink-700\/80 {
  background-color: rgb(190 24 93 / 0.8);
}
.bg-pink-700\/90 {
  background-color: rgb(190 24 93 / 0.9);
}
.bg-pink-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(157 23 77 / var(--tw-bg-opacity, 1));
}
.bg-pink-800\/10 {
  background-color: rgb(157 23 77 / 0.1);
}
.bg-pink-800\/20 {
  background-color: rgb(157 23 77 / 0.2);
}
.bg-pink-800\/30 {
  background-color: rgb(157 23 77 / 0.3);
}
.bg-pink-800\/40 {
  background-color: rgb(157 23 77 / 0.4);
}
.bg-pink-800\/5 {
  background-color: rgb(157 23 77 / 0.05);
}
.bg-pink-800\/50 {
  background-color: rgb(157 23 77 / 0.5);
}
.bg-pink-800\/60 {
  background-color: rgb(157 23 77 / 0.6);
}
.bg-pink-800\/70 {
  background-color: rgb(157 23 77 / 0.7);
}
.bg-pink-800\/80 {
  background-color: rgb(157 23 77 / 0.8);
}
.bg-pink-800\/90 {
  background-color: rgb(157 23 77 / 0.9);
}
.bg-pink-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(131 24 67 / var(--tw-bg-opacity, 1));
}
.bg-pink-900\/10 {
  background-color: rgb(131 24 67 / 0.1);
}
.bg-pink-900\/20 {
  background-color: rgb(131 24 67 / 0.2);
}
.bg-pink-900\/30 {
  background-color: rgb(131 24 67 / 0.3);
}
.bg-pink-900\/40 {
  background-color: rgb(131 24 67 / 0.4);
}
.bg-pink-900\/5 {
  background-color: rgb(131 24 67 / 0.05);
}
.bg-pink-900\/50 {
  background-color: rgb(131 24 67 / 0.5);
}
.bg-pink-900\/60 {
  background-color: rgb(131 24 67 / 0.6);
}
.bg-pink-900\/70 {
  background-color: rgb(131 24 67 / 0.7);
}
.bg-pink-900\/80 {
  background-color: rgb(131 24 67 / 0.8);
}
.bg-pink-900\/90 {
  background-color: rgb(131 24 67 / 0.9);
}
.bg-pink-950 {
  --tw-bg-opacity: 1;
  background-color: rgb(80 7 36 / var(--tw-bg-opacity, 1));
}
.bg-pink-950\/10 {
  background-color: rgb(80 7 36 / 0.1);
}
.bg-pink-950\/20 {
  background-color: rgb(80 7 36 / 0.2);
}
.bg-pink-950\/30 {
  background-color: rgb(80 7 36 / 0.3);
}
.bg-pink-950\/40 {
  background-color: rgb(80 7 36 / 0.4);
}
.bg-pink-950\/5 {
  background-color: rgb(80 7 36 / 0.05);
}
.bg-pink-950\/50 {
  background-color: rgb(80 7 36 / 0.5);
}
.bg-pink-950\/60 {
  background-color: rgb(80 7 36 / 0.6);
}
.bg-pink-950\/70 {
  background-color: rgb(80 7 36 / 0.7);
}
.bg-pink-950\/80 {
  background-color: rgb(80 7 36 / 0.8);
}
.bg-pink-950\/90 {
  background-color: rgb(80 7 36 / 0.9);
}
.bg-primary {
  background-color: var(--primary);
}
.bg-purple-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 232 255 / var(--tw-bg-opacity, 1));
}
.bg-purple-100\/10 {
  background-color: rgb(243 232 255 / 0.1);
}
.bg-purple-100\/20 {
  background-color: rgb(243 232 255 / 0.2);
}
.bg-purple-100\/30 {
  background-color: rgb(243 232 255 / 0.3);
}
.bg-purple-100\/40 {
  background-color: rgb(243 232 255 / 0.4);
}
.bg-purple-100\/5 {
  background-color: rgb(243 232 255 / 0.05);
}
.bg-purple-100\/50 {
  background-color: rgb(243 232 255 / 0.5);
}
.bg-purple-100\/60 {
  background-color: rgb(243 232 255 / 0.6);
}
.bg-purple-100\/70 {
  background-color: rgb(243 232 255 / 0.7);
}
.bg-purple-100\/80 {
  background-color: rgb(243 232 255 / 0.8);
}
.bg-purple-100\/90 {
  background-color: rgb(243 232 255 / 0.9);
}
.bg-purple-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(233 213 255 / var(--tw-bg-opacity, 1));
}
.bg-purple-200\/10 {
  background-color: rgb(233 213 255 / 0.1);
}
.bg-purple-200\/20 {
  background-color: rgb(233 213 255 / 0.2);
}
.bg-purple-200\/30 {
  background-color: rgb(233 213 255 / 0.3);
}
.bg-purple-200\/40 {
  background-color: rgb(233 213 255 / 0.4);
}
.bg-purple-200\/5 {
  background-color: rgb(233 213 255 / 0.05);
}
.bg-purple-200\/50 {
  background-color: rgb(233 213 255 / 0.5);
}
.bg-purple-200\/60 {
  background-color: rgb(233 213 255 / 0.6);
}
.bg-purple-200\/70 {
  background-color: rgb(233 213 255 / 0.7);
}
.bg-purple-200\/80 {
  background-color: rgb(233 213 255 / 0.8);
}
.bg-purple-200\/90 {
  background-color: rgb(233 213 255 / 0.9);
}
.bg-purple-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(216 180 254 / var(--tw-bg-opacity, 1));
}
.bg-purple-300\/10 {
  background-color: rgb(216 180 254 / 0.1);
}
.bg-purple-300\/20 {
  background-color: rgb(216 180 254 / 0.2);
}
.bg-purple-300\/30 {
  background-color: rgb(216 180 254 / 0.3);
}
.bg-purple-300\/40 {
  background-color: rgb(216 180 254 / 0.4);
}
.bg-purple-300\/5 {
  background-color: rgb(216 180 254 / 0.05);
}
.bg-purple-300\/50 {
  background-color: rgb(216 180 254 / 0.5);
}
.bg-purple-300\/60 {
  background-color: rgb(216 180 254 / 0.6);
}
.bg-purple-300\/70 {
  background-color: rgb(216 180 254 / 0.7);
}
.bg-purple-300\/80 {
  background-color: rgb(216 180 254 / 0.8);
}
.bg-purple-300\/90 {
  background-color: rgb(216 180 254 / 0.9);
}
.bg-purple-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(192 132 252 / var(--tw-bg-opacity, 1));
}
.bg-purple-400\/10 {
  background-color: rgb(192 132 252 / 0.1);
}
.bg-purple-400\/20 {
  background-color: rgb(192 132 252 / 0.2);
}
.bg-purple-400\/30 {
  background-color: rgb(192 132 252 / 0.3);
}
.bg-purple-400\/40 {
  background-color: rgb(192 132 252 / 0.4);
}
.bg-purple-400\/5 {
  background-color: rgb(192 132 252 / 0.05);
}
.bg-purple-400\/50 {
  background-color: rgb(192 132 252 / 0.5);
}
.bg-purple-400\/60 {
  background-color: rgb(192 132 252 / 0.6);
}
.bg-purple-400\/70 {
  background-color: rgb(192 132 252 / 0.7);
}
.bg-purple-400\/80 {
  background-color: rgb(192 132 252 / 0.8);
}
.bg-purple-400\/90 {
  background-color: rgb(192 132 252 / 0.9);
}
.bg-purple-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(250 245 255 / var(--tw-bg-opacity, 1));
}
.bg-purple-50\/10 {
  background-color: rgb(250 245 255 / 0.1);
}
.bg-purple-50\/20 {
  background-color: rgb(250 245 255 / 0.2);
}
.bg-purple-50\/30 {
  background-color: rgb(250 245 255 / 0.3);
}
.bg-purple-50\/40 {
  background-color: rgb(250 245 255 / 0.4);
}
.bg-purple-50\/5 {
  background-color: rgb(250 245 255 / 0.05);
}
.bg-purple-50\/50 {
  background-color: rgb(250 245 255 / 0.5);
}
.bg-purple-50\/60 {
  background-color: rgb(250 245 255 / 0.6);
}
.bg-purple-50\/70 {
  background-color: rgb(250 245 255 / 0.7);
}
.bg-purple-50\/80 {
  background-color: rgb(250 245 255 / 0.8);
}
.bg-purple-50\/90 {
  background-color: rgb(250 245 255 / 0.9);
}
.bg-purple-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(168 85 247 / var(--tw-bg-opacity, 1));
}
.bg-purple-500\/10 {
  background-color: rgb(168 85 247 / 0.1);
}
.bg-purple-500\/20 {
  background-color: rgb(168 85 247 / 0.2);
}
.bg-purple-500\/30 {
  background-color: rgb(168 85 247 / 0.3);
}
.bg-purple-500\/40 {
  background-color: rgb(168 85 247 / 0.4);
}
.bg-purple-500\/5 {
  background-color: rgb(168 85 247 / 0.05);
}
.bg-purple-500\/50 {
  background-color: rgb(168 85 247 / 0.5);
}
.bg-purple-500\/60 {
  background-color: rgb(168 85 247 / 0.6);
}
.bg-purple-500\/70 {
  background-color: rgb(168 85 247 / 0.7);
}
.bg-purple-500\/80 {
  background-color: rgb(168 85 247 / 0.8);
}
.bg-purple-500\/90 {
  background-color: rgb(168 85 247 / 0.9);
}
.bg-purple-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(147 51 234 / var(--tw-bg-opacity, 1));
}
.bg-purple-600\/10 {
  background-color: rgb(147 51 234 / 0.1);
}
.bg-purple-600\/20 {
  background-color: rgb(147 51 234 / 0.2);
}
.bg-purple-600\/30 {
  background-color: rgb(147 51 234 / 0.3);
}
.bg-purple-600\/40 {
  background-color: rgb(147 51 234 / 0.4);
}
.bg-purple-600\/5 {
  background-color: rgb(147 51 234 / 0.05);
}
.bg-purple-600\/50 {
  background-color: rgb(147 51 234 / 0.5);
}
.bg-purple-600\/60 {
  background-color: rgb(147 51 234 / 0.6);
}
.bg-purple-600\/70 {
  background-color: rgb(147 51 234 / 0.7);
}
.bg-purple-600\/80 {
  background-color: rgb(147 51 234 / 0.8);
}
.bg-purple-600\/90 {
  background-color: rgb(147 51 234 / 0.9);
}
.bg-purple-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(126 34 206 / var(--tw-bg-opacity, 1));
}
.bg-purple-700\/10 {
  background-color: rgb(126 34 206 / 0.1);
}
.bg-purple-700\/20 {
  background-color: rgb(126 34 206 / 0.2);
}
.bg-purple-700\/30 {
  background-color: rgb(126 34 206 / 0.3);
}
.bg-purple-700\/40 {
  background-color: rgb(126 34 206 / 0.4);
}
.bg-purple-700\/5 {
  background-color: rgb(126 34 206 / 0.05);
}
.bg-purple-700\/50 {
  background-color: rgb(126 34 206 / 0.5);
}
.bg-purple-700\/60 {
  background-color: rgb(126 34 206 / 0.6);
}
.bg-purple-700\/70 {
  background-color: rgb(126 34 206 / 0.7);
}
.bg-purple-700\/80 {
  background-color: rgb(126 34 206 / 0.8);
}
.bg-purple-700\/90 {
  background-color: rgb(126 34 206 / 0.9);
}
.bg-purple-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(107 33 168 / var(--tw-bg-opacity, 1));
}
.bg-purple-800\/10 {
  background-color: rgb(107 33 168 / 0.1);
}
.bg-purple-800\/20 {
  background-color: rgb(107 33 168 / 0.2);
}
.bg-purple-800\/30 {
  background-color: rgb(107 33 168 / 0.3);
}
.bg-purple-800\/40 {
  background-color: rgb(107 33 168 / 0.4);
}
.bg-purple-800\/5 {
  background-color: rgb(107 33 168 / 0.05);
}
.bg-purple-800\/50 {
  background-color: rgb(107 33 168 / 0.5);
}
.bg-purple-800\/60 {
  background-color: rgb(107 33 168 / 0.6);
}
.bg-purple-800\/70 {
  background-color: rgb(107 33 168 / 0.7);
}
.bg-purple-800\/80 {
  background-color: rgb(107 33 168 / 0.8);
}
.bg-purple-800\/90 {
  background-color: rgb(107 33 168 / 0.9);
}
.bg-purple-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(88 28 135 / var(--tw-bg-opacity, 1));
}
.bg-purple-900\/10 {
  background-color: rgb(88 28 135 / 0.1);
}
.bg-purple-900\/20 {
  background-color: rgb(88 28 135 / 0.2);
}
.bg-purple-900\/30 {
  background-color: rgb(88 28 135 / 0.3);
}
.bg-purple-900\/40 {
  background-color: rgb(88 28 135 / 0.4);
}
.bg-purple-900\/5 {
  background-color: rgb(88 28 135 / 0.05);
}
.bg-purple-900\/50 {
  background-color: rgb(88 28 135 / 0.5);
}
.bg-purple-900\/60 {
  background-color: rgb(88 28 135 / 0.6);
}
.bg-purple-900\/70 {
  background-color: rgb(88 28 135 / 0.7);
}
.bg-purple-900\/80 {
  background-color: rgb(88 28 135 / 0.8);
}
.bg-purple-900\/90 {
  background-color: rgb(88 28 135 / 0.9);
}
.bg-purple-950 {
  --tw-bg-opacity: 1;
  background-color: rgb(59 7 100 / var(--tw-bg-opacity, 1));
}
.bg-purple-950\/10 {
  background-color: rgb(59 7 100 / 0.1);
}
.bg-purple-950\/20 {
  background-color: rgb(59 7 100 / 0.2);
}
.bg-purple-950\/30 {
  background-color: rgb(59 7 100 / 0.3);
}
.bg-purple-950\/40 {
  background-color: rgb(59 7 100 / 0.4);
}
.bg-purple-950\/5 {
  background-color: rgb(59 7 100 / 0.05);
}
.bg-purple-950\/50 {
  background-color: rgb(59 7 100 / 0.5);
}
.bg-purple-950\/60 {
  background-color: rgb(59 7 100 / 0.6);
}
.bg-purple-950\/70 {
  background-color: rgb(59 7 100 / 0.7);
}
.bg-purple-950\/80 {
  background-color: rgb(59 7 100 / 0.8);
}
.bg-purple-950\/90 {
  background-color: rgb(59 7 100 / 0.9);
}
.bg-red-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}
.bg-red-100\/10 {
  background-color: rgb(254 226 226 / 0.1);
}
.bg-red-100\/20 {
  background-color: rgb(254 226 226 / 0.2);
}
.bg-red-100\/30 {
  background-color: rgb(254 226 226 / 0.3);
}
.bg-red-100\/40 {
  background-color: rgb(254 226 226 / 0.4);
}
.bg-red-100\/5 {
  background-color: rgb(254 226 226 / 0.05);
}
.bg-red-100\/50 {
  background-color: rgb(254 226 226 / 0.5);
}
.bg-red-100\/60 {
  background-color: rgb(254 226 226 / 0.6);
}
.bg-red-100\/70 {
  background-color: rgb(254 226 226 / 0.7);
}
.bg-red-100\/80 {
  background-color: rgb(254 226 226 / 0.8);
}
.bg-red-100\/90 {
  background-color: rgb(254 226 226 / 0.9);
}
.bg-red-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 202 202 / var(--tw-bg-opacity, 1));
}
.bg-red-200\/10 {
  background-color: rgb(254 202 202 / 0.1);
}
.bg-red-200\/20 {
  background-color: rgb(254 202 202 / 0.2);
}
.bg-red-200\/30 {
  background-color: rgb(254 202 202 / 0.3);
}
.bg-red-200\/40 {
  background-color: rgb(254 202 202 / 0.4);
}
.bg-red-200\/5 {
  background-color: rgb(254 202 202 / 0.05);
}
.bg-red-200\/50 {
  background-color: rgb(254 202 202 / 0.5);
}
.bg-red-200\/60 {
  background-color: rgb(254 202 202 / 0.6);
}
.bg-red-200\/70 {
  background-color: rgb(254 202 202 / 0.7);
}
.bg-red-200\/80 {
  background-color: rgb(254 202 202 / 0.8);
}
.bg-red-200\/90 {
  background-color: rgb(254 202 202 / 0.9);
}
.bg-red-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(252 165 165 / var(--tw-bg-opacity, 1));
}
.bg-red-300\/10 {
  background-color: rgb(252 165 165 / 0.1);
}
.bg-red-300\/20 {
  background-color: rgb(252 165 165 / 0.2);
}
.bg-red-300\/30 {
  background-color: rgb(252 165 165 / 0.3);
}
.bg-red-300\/40 {
  background-color: rgb(252 165 165 / 0.4);
}
.bg-red-300\/5 {
  background-color: rgb(252 165 165 / 0.05);
}
.bg-red-300\/50 {
  background-color: rgb(252 165 165 / 0.5);
}
.bg-red-300\/60 {
  background-color: rgb(252 165 165 / 0.6);
}
.bg-red-300\/70 {
  background-color: rgb(252 165 165 / 0.7);
}
.bg-red-300\/80 {
  background-color: rgb(252 165 165 / 0.8);
}
.bg-red-300\/90 {
  background-color: rgb(252 165 165 / 0.9);
}
.bg-red-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(248 113 113 / var(--tw-bg-opacity, 1));
}
.bg-red-400\/10 {
  background-color: rgb(248 113 113 / 0.1);
}
.bg-red-400\/20 {
  background-color: rgb(248 113 113 / 0.2);
}
.bg-red-400\/30 {
  background-color: rgb(248 113 113 / 0.3);
}
.bg-red-400\/40 {
  background-color: rgb(248 113 113 / 0.4);
}
.bg-red-400\/5 {
  background-color: rgb(248 113 113 / 0.05);
}
.bg-red-400\/50 {
  background-color: rgb(248 113 113 / 0.5);
}
.bg-red-400\/60 {
  background-color: rgb(248 113 113 / 0.6);
}
.bg-red-400\/70 {
  background-color: rgb(248 113 113 / 0.7);
}
.bg-red-400\/80 {
  background-color: rgb(248 113 113 / 0.8);
}
.bg-red-400\/90 {
  background-color: rgb(248 113 113 / 0.9);
}
.bg-red-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}
.bg-red-50\/10 {
  background-color: rgb(254 242 242 / 0.1);
}
.bg-red-50\/20 {
  background-color: rgb(254 242 242 / 0.2);
}
.bg-red-50\/30 {
  background-color: rgb(254 242 242 / 0.3);
}
.bg-red-50\/40 {
  background-color: rgb(254 242 242 / 0.4);
}
.bg-red-50\/5 {
  background-color: rgb(254 242 242 / 0.05);
}
.bg-red-50\/50 {
  background-color: rgb(254 242 242 / 0.5);
}
.bg-red-50\/60 {
  background-color: rgb(254 242 242 / 0.6);
}
.bg-red-50\/70 {
  background-color: rgb(254 242 242 / 0.7);
}
.bg-red-50\/80 {
  background-color: rgb(254 242 242 / 0.8);
}
.bg-red-50\/90 {
  background-color: rgb(254 242 242 / 0.9);
}
.bg-red-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}
.bg-red-500\/10 {
  background-color: rgb(239 68 68 / 0.1);
}
.bg-red-500\/20 {
  background-color: rgb(239 68 68 / 0.2);
}
.bg-red-500\/30 {
  background-color: rgb(239 68 68 / 0.3);
}
.bg-red-500\/40 {
  background-color: rgb(239 68 68 / 0.4);
}
.bg-red-500\/5 {
  background-color: rgb(239 68 68 / 0.05);
}
.bg-red-500\/50 {
  background-color: rgb(239 68 68 / 0.5);
}
.bg-red-500\/60 {
  background-color: rgb(239 68 68 / 0.6);
}
.bg-red-500\/70 {
  background-color: rgb(239 68 68 / 0.7);
}
.bg-red-500\/80 {
  background-color: rgb(239 68 68 / 0.8);
}
.bg-red-500\/90 {
  background-color: rgb(239 68 68 / 0.9);
}
.bg-red-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}
.bg-red-600\/10 {
  background-color: rgb(220 38 38 / 0.1);
}
.bg-red-600\/20 {
  background-color: rgb(220 38 38 / 0.2);
}
.bg-red-600\/30 {
  background-color: rgb(220 38 38 / 0.3);
}
.bg-red-600\/40 {
  background-color: rgb(220 38 38 / 0.4);
}
.bg-red-600\/5 {
  background-color: rgb(220 38 38 / 0.05);
}
.bg-red-600\/50 {
  background-color: rgb(220 38 38 / 0.5);
}
.bg-red-600\/60 {
  background-color: rgb(220 38 38 / 0.6);
}
.bg-red-600\/70 {
  background-color: rgb(220 38 38 / 0.7);
}
.bg-red-600\/80 {
  background-color: rgb(220 38 38 / 0.8);
}
.bg-red-600\/90 {
  background-color: rgb(220 38 38 / 0.9);
}
.bg-red-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
}
.bg-red-700\/10 {
  background-color: rgb(185 28 28 / 0.1);
}
.bg-red-700\/20 {
  background-color: rgb(185 28 28 / 0.2);
}
.bg-red-700\/30 {
  background-color: rgb(185 28 28 / 0.3);
}
.bg-red-700\/40 {
  background-color: rgb(185 28 28 / 0.4);
}
.bg-red-700\/5 {
  background-color: rgb(185 28 28 / 0.05);
}
.bg-red-700\/50 {
  background-color: rgb(185 28 28 / 0.5);
}
.bg-red-700\/60 {
  background-color: rgb(185 28 28 / 0.6);
}
.bg-red-700\/70 {
  background-color: rgb(185 28 28 / 0.7);
}
.bg-red-700\/80 {
  background-color: rgb(185 28 28 / 0.8);
}
.bg-red-700\/90 {
  background-color: rgb(185 28 28 / 0.9);
}
.bg-red-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(153 27 27 / var(--tw-bg-opacity, 1));
}
.bg-red-800\/10 {
  background-color: rgb(153 27 27 / 0.1);
}
.bg-red-800\/20 {
  background-color: rgb(153 27 27 / 0.2);
}
.bg-red-800\/30 {
  background-color: rgb(153 27 27 / 0.3);
}
.bg-red-800\/40 {
  background-color: rgb(153 27 27 / 0.4);
}
.bg-red-800\/5 {
  background-color: rgb(153 27 27 / 0.05);
}
.bg-red-800\/50 {
  background-color: rgb(153 27 27 / 0.5);
}
.bg-red-800\/60 {
  background-color: rgb(153 27 27 / 0.6);
}
.bg-red-800\/70 {
  background-color: rgb(153 27 27 / 0.7);
}
.bg-red-800\/80 {
  background-color: rgb(153 27 27 / 0.8);
}
.bg-red-800\/90 {
  background-color: rgb(153 27 27 / 0.9);
}
.bg-red-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(127 29 29 / var(--tw-bg-opacity, 1));
}
.bg-red-900\/10 {
  background-color: rgb(127 29 29 / 0.1);
}
.bg-red-900\/20 {
  background-color: rgb(127 29 29 / 0.2);
}
.bg-red-900\/30 {
  background-color: rgb(127 29 29 / 0.3);
}
.bg-red-900\/40 {
  background-color: rgb(127 29 29 / 0.4);
}
.bg-red-900\/5 {
  background-color: rgb(127 29 29 / 0.05);
}
.bg-red-900\/50 {
  background-color: rgb(127 29 29 / 0.5);
}
.bg-red-900\/60 {
  background-color: rgb(127 29 29 / 0.6);
}
.bg-red-900\/70 {
  background-color: rgb(127 29 29 / 0.7);
}
.bg-red-900\/80 {
  background-color: rgb(127 29 29 / 0.8);
}
.bg-red-900\/90 {
  background-color: rgb(127 29 29 / 0.9);
}
.bg-red-950 {
  --tw-bg-opacity: 1;
  background-color: rgb(69 10 10 / var(--tw-bg-opacity, 1));
}
.bg-red-950\/10 {
  background-color: rgb(69 10 10 / 0.1);
}
.bg-red-950\/20 {
  background-color: rgb(69 10 10 / 0.2);
}
.bg-red-950\/30 {
  background-color: rgb(69 10 10 / 0.3);
}
.bg-red-950\/40 {
  background-color: rgb(69 10 10 / 0.4);
}
.bg-red-950\/5 {
  background-color: rgb(69 10 10 / 0.05);
}
.bg-red-950\/50 {
  background-color: rgb(69 10 10 / 0.5);
}
.bg-red-950\/60 {
  background-color: rgb(69 10 10 / 0.6);
}
.bg-red-950\/70 {
  background-color: rgb(69 10 10 / 0.7);
}
.bg-red-950\/80 {
  background-color: rgb(69 10 10 / 0.8);
}
.bg-red-950\/90 {
  background-color: rgb(69 10 10 / 0.9);
}
.bg-rose-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 228 230 / var(--tw-bg-opacity, 1));
}
.bg-rose-100\/10 {
  background-color: rgb(255 228 230 / 0.1);
}
.bg-rose-100\/20 {
  background-color: rgb(255 228 230 / 0.2);
}
.bg-rose-100\/30 {
  background-color: rgb(255 228 230 / 0.3);
}
.bg-rose-100\/40 {
  background-color: rgb(255 228 230 / 0.4);
}
.bg-rose-100\/5 {
  background-color: rgb(255 228 230 / 0.05);
}
.bg-rose-100\/50 {
  background-color: rgb(255 228 230 / 0.5);
}
.bg-rose-100\/60 {
  background-color: rgb(255 228 230 / 0.6);
}
.bg-rose-100\/70 {
  background-color: rgb(255 228 230 / 0.7);
}
.bg-rose-100\/80 {
  background-color: rgb(255 228 230 / 0.8);
}
.bg-rose-100\/90 {
  background-color: rgb(255 228 230 / 0.9);
}
.bg-rose-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 205 211 / var(--tw-bg-opacity, 1));
}
.bg-rose-200\/10 {
  background-color: rgb(254 205 211 / 0.1);
}
.bg-rose-200\/20 {
  background-color: rgb(254 205 211 / 0.2);
}
.bg-rose-200\/30 {
  background-color: rgb(254 205 211 / 0.3);
}
.bg-rose-200\/40 {
  background-color: rgb(254 205 211 / 0.4);
}
.bg-rose-200\/5 {
  background-color: rgb(254 205 211 / 0.05);
}
.bg-rose-200\/50 {
  background-color: rgb(254 205 211 / 0.5);
}
.bg-rose-200\/60 {
  background-color: rgb(254 205 211 / 0.6);
}
.bg-rose-200\/70 {
  background-color: rgb(254 205 211 / 0.7);
}
.bg-rose-200\/80 {
  background-color: rgb(254 205 211 / 0.8);
}
.bg-rose-200\/90 {
  background-color: rgb(254 205 211 / 0.9);
}
.bg-rose-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(253 164 175 / var(--tw-bg-opacity, 1));
}
.bg-rose-300\/10 {
  background-color: rgb(253 164 175 / 0.1);
}
.bg-rose-300\/20 {
  background-color: rgb(253 164 175 / 0.2);
}
.bg-rose-300\/30 {
  background-color: rgb(253 164 175 / 0.3);
}
.bg-rose-300\/40 {
  background-color: rgb(253 164 175 / 0.4);
}
.bg-rose-300\/5 {
  background-color: rgb(253 164 175 / 0.05);
}
.bg-rose-300\/50 {
  background-color: rgb(253 164 175 / 0.5);
}
.bg-rose-300\/60 {
  background-color: rgb(253 164 175 / 0.6);
}
.bg-rose-300\/70 {
  background-color: rgb(253 164 175 / 0.7);
}
.bg-rose-300\/80 {
  background-color: rgb(253 164 175 / 0.8);
}
.bg-rose-300\/90 {
  background-color: rgb(253 164 175 / 0.9);
}
.bg-rose-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(251 113 133 / var(--tw-bg-opacity, 1));
}
.bg-rose-400\/10 {
  background-color: rgb(251 113 133 / 0.1);
}
.bg-rose-400\/20 {
  background-color: rgb(251 113 133 / 0.2);
}
.bg-rose-400\/30 {
  background-color: rgb(251 113 133 / 0.3);
}
.bg-rose-400\/40 {
  background-color: rgb(251 113 133 / 0.4);
}
.bg-rose-400\/5 {
  background-color: rgb(251 113 133 / 0.05);
}
.bg-rose-400\/50 {
  background-color: rgb(251 113 133 / 0.5);
}
.bg-rose-400\/60 {
  background-color: rgb(251 113 133 / 0.6);
}
.bg-rose-400\/70 {
  background-color: rgb(251 113 133 / 0.7);
}
.bg-rose-400\/80 {
  background-color: rgb(251 113 133 / 0.8);
}
.bg-rose-400\/90 {
  background-color: rgb(251 113 133 / 0.9);
}
.bg-rose-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 241 242 / var(--tw-bg-opacity, 1));
}
.bg-rose-50\/10 {
  background-color: rgb(255 241 242 / 0.1);
}
.bg-rose-50\/20 {
  background-color: rgb(255 241 242 / 0.2);
}
.bg-rose-50\/30 {
  background-color: rgb(255 241 242 / 0.3);
}
.bg-rose-50\/40 {
  background-color: rgb(255 241 242 / 0.4);
}
.bg-rose-50\/5 {
  background-color: rgb(255 241 242 / 0.05);
}
.bg-rose-50\/50 {
  background-color: rgb(255 241 242 / 0.5);
}
.bg-rose-50\/60 {
  background-color: rgb(255 241 242 / 0.6);
}
.bg-rose-50\/70 {
  background-color: rgb(255 241 242 / 0.7);
}
.bg-rose-50\/80 {
  background-color: rgb(255 241 242 / 0.8);
}
.bg-rose-50\/90 {
  background-color: rgb(255 241 242 / 0.9);
}
.bg-rose-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(244 63 94 / var(--tw-bg-opacity, 1));
}
.bg-rose-500\/10 {
  background-color: rgb(244 63 94 / 0.1);
}
.bg-rose-500\/20 {
  background-color: rgb(244 63 94 / 0.2);
}
.bg-rose-500\/30 {
  background-color: rgb(244 63 94 / 0.3);
}
.bg-rose-500\/40 {
  background-color: rgb(244 63 94 / 0.4);
}
.bg-rose-500\/5 {
  background-color: rgb(244 63 94 / 0.05);
}
.bg-rose-500\/50 {
  background-color: rgb(244 63 94 / 0.5);
}
.bg-rose-500\/60 {
  background-color: rgb(244 63 94 / 0.6);
}
.bg-rose-500\/70 {
  background-color: rgb(244 63 94 / 0.7);
}
.bg-rose-500\/80 {
  background-color: rgb(244 63 94 / 0.8);
}
.bg-rose-500\/90 {
  background-color: rgb(244 63 94 / 0.9);
}
.bg-rose-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(225 29 72 / var(--tw-bg-opacity, 1));
}
.bg-rose-600\/10 {
  background-color: rgb(225 29 72 / 0.1);
}
.bg-rose-600\/20 {
  background-color: rgb(225 29 72 / 0.2);
}
.bg-rose-600\/30 {
  background-color: rgb(225 29 72 / 0.3);
}
.bg-rose-600\/40 {
  background-color: rgb(225 29 72 / 0.4);
}
.bg-rose-600\/5 {
  background-color: rgb(225 29 72 / 0.05);
}
.bg-rose-600\/50 {
  background-color: rgb(225 29 72 / 0.5);
}
.bg-rose-600\/60 {
  background-color: rgb(225 29 72 / 0.6);
}
.bg-rose-600\/70 {
  background-color: rgb(225 29 72 / 0.7);
}
.bg-rose-600\/80 {
  background-color: rgb(225 29 72 / 0.8);
}
.bg-rose-600\/90 {
  background-color: rgb(225 29 72 / 0.9);
}
.bg-rose-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(190 18 60 / var(--tw-bg-opacity, 1));
}
.bg-rose-700\/10 {
  background-color: rgb(190 18 60 / 0.1);
}
.bg-rose-700\/20 {
  background-color: rgb(190 18 60 / 0.2);
}
.bg-rose-700\/30 {
  background-color: rgb(190 18 60 / 0.3);
}
.bg-rose-700\/40 {
  background-color: rgb(190 18 60 / 0.4);
}
.bg-rose-700\/5 {
  background-color: rgb(190 18 60 / 0.05);
}
.bg-rose-700\/50 {
  background-color: rgb(190 18 60 / 0.5);
}
.bg-rose-700\/60 {
  background-color: rgb(190 18 60 / 0.6);
}
.bg-rose-700\/70 {
  background-color: rgb(190 18 60 / 0.7);
}
.bg-rose-700\/80 {
  background-color: rgb(190 18 60 / 0.8);
}
.bg-rose-700\/90 {
  background-color: rgb(190 18 60 / 0.9);
}
.bg-rose-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(159 18 57 / var(--tw-bg-opacity, 1));
}
.bg-rose-800\/10 {
  background-color: rgb(159 18 57 / 0.1);
}
.bg-rose-800\/20 {
  background-color: rgb(159 18 57 / 0.2);
}
.bg-rose-800\/30 {
  background-color: rgb(159 18 57 / 0.3);
}
.bg-rose-800\/40 {
  background-color: rgb(159 18 57 / 0.4);
}
.bg-rose-800\/5 {
  background-color: rgb(159 18 57 / 0.05);
}
.bg-rose-800\/50 {
  background-color: rgb(159 18 57 / 0.5);
}
.bg-rose-800\/60 {
  background-color: rgb(159 18 57 / 0.6);
}
.bg-rose-800\/70 {
  background-color: rgb(159 18 57 / 0.7);
}
.bg-rose-800\/80 {
  background-color: rgb(159 18 57 / 0.8);
}
.bg-rose-800\/90 {
  background-color: rgb(159 18 57 / 0.9);
}
.bg-rose-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(136 19 55 / var(--tw-bg-opacity, 1));
}
.bg-rose-900\/10 {
  background-color: rgb(136 19 55 / 0.1);
}
.bg-rose-900\/20 {
  background-color: rgb(136 19 55 / 0.2);
}
.bg-rose-900\/30 {
  background-color: rgb(136 19 55 / 0.3);
}
.bg-rose-900\/40 {
  background-color: rgb(136 19 55 / 0.4);
}
.bg-rose-900\/5 {
  background-color: rgb(136 19 55 / 0.05);
}
.bg-rose-900\/50 {
  background-color: rgb(136 19 55 / 0.5);
}
.bg-rose-900\/60 {
  background-color: rgb(136 19 55 / 0.6);
}
.bg-rose-900\/70 {
  background-color: rgb(136 19 55 / 0.7);
}
.bg-rose-900\/80 {
  background-color: rgb(136 19 55 / 0.8);
}
.bg-rose-900\/90 {
  background-color: rgb(136 19 55 / 0.9);
}
.bg-rose-950 {
  --tw-bg-opacity: 1;
  background-color: rgb(76 5 25 / var(--tw-bg-opacity, 1));
}
.bg-rose-950\/10 {
  background-color: rgb(76 5 25 / 0.1);
}
.bg-rose-950\/20 {
  background-color: rgb(76 5 25 / 0.2);
}
.bg-rose-950\/30 {
  background-color: rgb(76 5 25 / 0.3);
}
.bg-rose-950\/40 {
  background-color: rgb(76 5 25 / 0.4);
}
.bg-rose-950\/5 {
  background-color: rgb(76 5 25 / 0.05);
}
.bg-rose-950\/50 {
  background-color: rgb(76 5 25 / 0.5);
}
.bg-rose-950\/60 {
  background-color: rgb(76 5 25 / 0.6);
}
.bg-rose-950\/70 {
  background-color: rgb(76 5 25 / 0.7);
}
.bg-rose-950\/80 {
  background-color: rgb(76 5 25 / 0.8);
}
.bg-rose-950\/90 {
  background-color: rgb(76 5 25 / 0.9);
}
.bg-secondary {
  background-color: var(--secondary);
}
.bg-sky-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(224 242 254 / var(--tw-bg-opacity, 1));
}
.bg-sky-100\/10 {
  background-color: rgb(224 242 254 / 0.1);
}
.bg-sky-100\/20 {
  background-color: rgb(224 242 254 / 0.2);
}
.bg-sky-100\/30 {
  background-color: rgb(224 242 254 / 0.3);
}
.bg-sky-100\/40 {
  background-color: rgb(224 242 254 / 0.4);
}
.bg-sky-100\/5 {
  background-color: rgb(224 242 254 / 0.05);
}
.bg-sky-100\/50 {
  background-color: rgb(224 242 254 / 0.5);
}
.bg-sky-100\/60 {
  background-color: rgb(224 242 254 / 0.6);
}
.bg-sky-100\/70 {
  background-color: rgb(224 242 254 / 0.7);
}
.bg-sky-100\/80 {
  background-color: rgb(224 242 254 / 0.8);
}
.bg-sky-100\/90 {
  background-color: rgb(224 242 254 / 0.9);
}
.bg-sky-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(186 230 253 / var(--tw-bg-opacity, 1));
}
.bg-sky-200\/10 {
  background-color: rgb(186 230 253 / 0.1);
}
.bg-sky-200\/20 {
  background-color: rgb(186 230 253 / 0.2);
}
.bg-sky-200\/30 {
  background-color: rgb(186 230 253 / 0.3);
}
.bg-sky-200\/40 {
  background-color: rgb(186 230 253 / 0.4);
}
.bg-sky-200\/5 {
  background-color: rgb(186 230 253 / 0.05);
}
.bg-sky-200\/50 {
  background-color: rgb(186 230 253 / 0.5);
}
.bg-sky-200\/60 {
  background-color: rgb(186 230 253 / 0.6);
}
.bg-sky-200\/70 {
  background-color: rgb(186 230 253 / 0.7);
}
.bg-sky-200\/80 {
  background-color: rgb(186 230 253 / 0.8);
}
.bg-sky-200\/90 {
  background-color: rgb(186 230 253 / 0.9);
}
.bg-sky-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(125 211 252 / var(--tw-bg-opacity, 1));
}
.bg-sky-300\/10 {
  background-color: rgb(125 211 252 / 0.1);
}
.bg-sky-300\/20 {
  background-color: rgb(125 211 252 / 0.2);
}
.bg-sky-300\/30 {
  background-color: rgb(125 211 252 / 0.3);
}
.bg-sky-300\/40 {
  background-color: rgb(125 211 252 / 0.4);
}
.bg-sky-300\/5 {
  background-color: rgb(125 211 252 / 0.05);
}
.bg-sky-300\/50 {
  background-color: rgb(125 211 252 / 0.5);
}
.bg-sky-300\/60 {
  background-color: rgb(125 211 252 / 0.6);
}
.bg-sky-300\/70 {
  background-color: rgb(125 211 252 / 0.7);
}
.bg-sky-300\/80 {
  background-color: rgb(125 211 252 / 0.8);
}
.bg-sky-300\/90 {
  background-color: rgb(125 211 252 / 0.9);
}
.bg-sky-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(56 189 248 / var(--tw-bg-opacity, 1));
}
.bg-sky-400\/10 {
  background-color: rgb(56 189 248 / 0.1);
}
.bg-sky-400\/20 {
  background-color: rgb(56 189 248 / 0.2);
}
.bg-sky-400\/30 {
  background-color: rgb(56 189 248 / 0.3);
}
.bg-sky-400\/40 {
  background-color: rgb(56 189 248 / 0.4);
}
.bg-sky-400\/5 {
  background-color: rgb(56 189 248 / 0.05);
}
.bg-sky-400\/50 {
  background-color: rgb(56 189 248 / 0.5);
}
.bg-sky-400\/60 {
  background-color: rgb(56 189 248 / 0.6);
}
.bg-sky-400\/70 {
  background-color: rgb(56 189 248 / 0.7);
}
.bg-sky-400\/80 {
  background-color: rgb(56 189 248 / 0.8);
}
.bg-sky-400\/90 {
  background-color: rgb(56 189 248 / 0.9);
}
.bg-sky-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(240 249 255 / var(--tw-bg-opacity, 1));
}
.bg-sky-50\/10 {
  background-color: rgb(240 249 255 / 0.1);
}
.bg-sky-50\/20 {
  background-color: rgb(240 249 255 / 0.2);
}
.bg-sky-50\/30 {
  background-color: rgb(240 249 255 / 0.3);
}
.bg-sky-50\/40 {
  background-color: rgb(240 249 255 / 0.4);
}
.bg-sky-50\/5 {
  background-color: rgb(240 249 255 / 0.05);
}
.bg-sky-50\/50 {
  background-color: rgb(240 249 255 / 0.5);
}
.bg-sky-50\/60 {
  background-color: rgb(240 249 255 / 0.6);
}
.bg-sky-50\/70 {
  background-color: rgb(240 249 255 / 0.7);
}
.bg-sky-50\/80 {
  background-color: rgb(240 249 255 / 0.8);
}
.bg-sky-50\/90 {
  background-color: rgb(240 249 255 / 0.9);
}
.bg-sky-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(14 165 233 / var(--tw-bg-opacity, 1));
}
.bg-sky-500\/10 {
  background-color: rgb(14 165 233 / 0.1);
}
.bg-sky-500\/20 {
  background-color: rgb(14 165 233 / 0.2);
}
.bg-sky-500\/30 {
  background-color: rgb(14 165 233 / 0.3);
}
.bg-sky-500\/40 {
  background-color: rgb(14 165 233 / 0.4);
}
.bg-sky-500\/5 {
  background-color: rgb(14 165 233 / 0.05);
}
.bg-sky-500\/50 {
  background-color: rgb(14 165 233 / 0.5);
}
.bg-sky-500\/60 {
  background-color: rgb(14 165 233 / 0.6);
}
.bg-sky-500\/70 {
  background-color: rgb(14 165 233 / 0.7);
}
.bg-sky-500\/80 {
  background-color: rgb(14 165 233 / 0.8);
}
.bg-sky-500\/90 {
  background-color: rgb(14 165 233 / 0.9);
}
.bg-sky-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(2 132 199 / var(--tw-bg-opacity, 1));
}
.bg-sky-600\/10 {
  background-color: rgb(2 132 199 / 0.1);
}
.bg-sky-600\/20 {
  background-color: rgb(2 132 199 / 0.2);
}
.bg-sky-600\/30 {
  background-color: rgb(2 132 199 / 0.3);
}
.bg-sky-600\/40 {
  background-color: rgb(2 132 199 / 0.4);
}
.bg-sky-600\/5 {
  background-color: rgb(2 132 199 / 0.05);
}
.bg-sky-600\/50 {
  background-color: rgb(2 132 199 / 0.5);
}
.bg-sky-600\/60 {
  background-color: rgb(2 132 199 / 0.6);
}
.bg-sky-600\/70 {
  background-color: rgb(2 132 199 / 0.7);
}
.bg-sky-600\/80 {
  background-color: rgb(2 132 199 / 0.8);
}
.bg-sky-600\/90 {
  background-color: rgb(2 132 199 / 0.9);
}
.bg-sky-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(3 105 161 / var(--tw-bg-opacity, 1));
}
.bg-sky-700\/10 {
  background-color: rgb(3 105 161 / 0.1);
}
.bg-sky-700\/20 {
  background-color: rgb(3 105 161 / 0.2);
}
.bg-sky-700\/30 {
  background-color: rgb(3 105 161 / 0.3);
}
.bg-sky-700\/40 {
  background-color: rgb(3 105 161 / 0.4);
}
.bg-sky-700\/5 {
  background-color: rgb(3 105 161 / 0.05);
}
.bg-sky-700\/50 {
  background-color: rgb(3 105 161 / 0.5);
}
.bg-sky-700\/60 {
  background-color: rgb(3 105 161 / 0.6);
}
.bg-sky-700\/70 {
  background-color: rgb(3 105 161 / 0.7);
}
.bg-sky-700\/80 {
  background-color: rgb(3 105 161 / 0.8);
}
.bg-sky-700\/90 {
  background-color: rgb(3 105 161 / 0.9);
}
.bg-sky-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(7 89 133 / var(--tw-bg-opacity, 1));
}
.bg-sky-800\/10 {
  background-color: rgb(7 89 133 / 0.1);
}
.bg-sky-800\/20 {
  background-color: rgb(7 89 133 / 0.2);
}
.bg-sky-800\/30 {
  background-color: rgb(7 89 133 / 0.3);
}
.bg-sky-800\/40 {
  background-color: rgb(7 89 133 / 0.4);
}
.bg-sky-800\/5 {
  background-color: rgb(7 89 133 / 0.05);
}
.bg-sky-800\/50 {
  background-color: rgb(7 89 133 / 0.5);
}
.bg-sky-800\/60 {
  background-color: rgb(7 89 133 / 0.6);
}
.bg-sky-800\/70 {
  background-color: rgb(7 89 133 / 0.7);
}
.bg-sky-800\/80 {
  background-color: rgb(7 89 133 / 0.8);
}
.bg-sky-800\/90 {
  background-color: rgb(7 89 133 / 0.9);
}
.bg-sky-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(12 74 110 / var(--tw-bg-opacity, 1));
}
.bg-sky-900\/10 {
  background-color: rgb(12 74 110 / 0.1);
}
.bg-sky-900\/20 {
  background-color: rgb(12 74 110 / 0.2);
}
.bg-sky-900\/30 {
  background-color: rgb(12 74 110 / 0.3);
}
.bg-sky-900\/40 {
  background-color: rgb(12 74 110 / 0.4);
}
.bg-sky-900\/5 {
  background-color: rgb(12 74 110 / 0.05);
}
.bg-sky-900\/50 {
  background-color: rgb(12 74 110 / 0.5);
}
.bg-sky-900\/60 {
  background-color: rgb(12 74 110 / 0.6);
}
.bg-sky-900\/70 {
  background-color: rgb(12 74 110 / 0.7);
}
.bg-sky-900\/80 {
  background-color: rgb(12 74 110 / 0.8);
}
.bg-sky-900\/90 {
  background-color: rgb(12 74 110 / 0.9);
}
.bg-sky-950 {
  --tw-bg-opacity: 1;
  background-color: rgb(8 47 73 / var(--tw-bg-opacity, 1));
}
.bg-sky-950\/10 {
  background-color: rgb(8 47 73 / 0.1);
}
.bg-sky-950\/20 {
  background-color: rgb(8 47 73 / 0.2);
}
.bg-sky-950\/30 {
  background-color: rgb(8 47 73 / 0.3);
}
.bg-sky-950\/40 {
  background-color: rgb(8 47 73 / 0.4);
}
.bg-sky-950\/5 {
  background-color: rgb(8 47 73 / 0.05);
}
.bg-sky-950\/50 {
  background-color: rgb(8 47 73 / 0.5);
}
.bg-sky-950\/60 {
  background-color: rgb(8 47 73 / 0.6);
}
.bg-sky-950\/70 {
  background-color: rgb(8 47 73 / 0.7);
}
.bg-sky-950\/80 {
  background-color: rgb(8 47 73 / 0.8);
}
.bg-sky-950\/90 {
  background-color: rgb(8 47 73 / 0.9);
}
.bg-slate-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
}
.bg-slate-100\/10 {
  background-color: rgb(241 245 249 / 0.1);
}
.bg-slate-100\/20 {
  background-color: rgb(241 245 249 / 0.2);
}
.bg-slate-100\/30 {
  background-color: rgb(241 245 249 / 0.3);
}
.bg-slate-100\/40 {
  background-color: rgb(241 245 249 / 0.4);
}
.bg-slate-100\/5 {
  background-color: rgb(241 245 249 / 0.05);
}
.bg-slate-100\/50 {
  background-color: rgb(241 245 249 / 0.5);
}
.bg-slate-100\/60 {
  background-color: rgb(241 245 249 / 0.6);
}
.bg-slate-100\/70 {
  background-color: rgb(241 245 249 / 0.7);
}
.bg-slate-100\/80 {
  background-color: rgb(241 245 249 / 0.8);
}
.bg-slate-100\/90 {
  background-color: rgb(241 245 249 / 0.9);
}
.bg-slate-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(226 232 240 / var(--tw-bg-opacity, 1));
}
.bg-slate-200\/10 {
  background-color: rgb(226 232 240 / 0.1);
}
.bg-slate-200\/20 {
  background-color: rgb(226 232 240 / 0.2);
}
.bg-slate-200\/30 {
  background-color: rgb(226 232 240 / 0.3);
}
.bg-slate-200\/40 {
  background-color: rgb(226 232 240 / 0.4);
}
.bg-slate-200\/5 {
  background-color: rgb(226 232 240 / 0.05);
}
.bg-slate-200\/50 {
  background-color: rgb(226 232 240 / 0.5);
}
.bg-slate-200\/60 {
  background-color: rgb(226 232 240 / 0.6);
}
.bg-slate-200\/70 {
  background-color: rgb(226 232 240 / 0.7);
}
.bg-slate-200\/80 {
  background-color: rgb(226 232 240 / 0.8);
}
.bg-slate-200\/90 {
  background-color: rgb(226 232 240 / 0.9);
}
.bg-slate-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(203 213 225 / var(--tw-bg-opacity, 1));
}
.bg-slate-300\/10 {
  background-color: rgb(203 213 225 / 0.1);
}
.bg-slate-300\/20 {
  background-color: rgb(203 213 225 / 0.2);
}
.bg-slate-300\/30 {
  background-color: rgb(203 213 225 / 0.3);
}
.bg-slate-300\/40 {
  background-color: rgb(203 213 225 / 0.4);
}
.bg-slate-300\/5 {
  background-color: rgb(203 213 225 / 0.05);
}
.bg-slate-300\/50 {
  background-color: rgb(203 213 225 / 0.5);
}
.bg-slate-300\/60 {
  background-color: rgb(203 213 225 / 0.6);
}
.bg-slate-300\/70 {
  background-color: rgb(203 213 225 / 0.7);
}
.bg-slate-300\/80 {
  background-color: rgb(203 213 225 / 0.8);
}
.bg-slate-300\/90 {
  background-color: rgb(203 213 225 / 0.9);
}
.bg-slate-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(148 163 184 / var(--tw-bg-opacity, 1));
}
.bg-slate-400\/10 {
  background-color: rgb(148 163 184 / 0.1);
}
.bg-slate-400\/20 {
  background-color: rgb(148 163 184 / 0.2);
}
.bg-slate-400\/30 {
  background-color: rgb(148 163 184 / 0.3);
}
.bg-slate-400\/40 {
  background-color: rgb(148 163 184 / 0.4);
}
.bg-slate-400\/5 {
  background-color: rgb(148 163 184 / 0.05);
}
.bg-slate-400\/50 {
  background-color: rgb(148 163 184 / 0.5);
}
.bg-slate-400\/60 {
  background-color: rgb(148 163 184 / 0.6);
}
.bg-slate-400\/70 {
  background-color: rgb(148 163 184 / 0.7);
}
.bg-slate-400\/80 {
  background-color: rgb(148 163 184 / 0.8);
}
.bg-slate-400\/90 {
  background-color: rgb(148 163 184 / 0.9);
}
.bg-slate-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
}
.bg-slate-50\/10 {
  background-color: rgb(248 250 252 / 0.1);
}
.bg-slate-50\/20 {
  background-color: rgb(248 250 252 / 0.2);
}
.bg-slate-50\/30 {
  background-color: rgb(248 250 252 / 0.3);
}
.bg-slate-50\/40 {
  background-color: rgb(248 250 252 / 0.4);
}
.bg-slate-50\/5 {
  background-color: rgb(248 250 252 / 0.05);
}
.bg-slate-50\/50 {
  background-color: rgb(248 250 252 / 0.5);
}
.bg-slate-50\/60 {
  background-color: rgb(248 250 252 / 0.6);
}
.bg-slate-50\/70 {
  background-color: rgb(248 250 252 / 0.7);
}
.bg-slate-50\/80 {
  background-color: rgb(248 250 252 / 0.8);
}
.bg-slate-50\/90 {
  background-color: rgb(248 250 252 / 0.9);
}
.bg-slate-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(100 116 139 / var(--tw-bg-opacity, 1));
}
.bg-slate-500\/10 {
  background-color: rgb(100 116 139 / 0.1);
}
.bg-slate-500\/20 {
  background-color: rgb(100 116 139 / 0.2);
}
.bg-slate-500\/30 {
  background-color: rgb(100 116 139 / 0.3);
}
.bg-slate-500\/40 {
  background-color: rgb(100 116 139 / 0.4);
}
.bg-slate-500\/5 {
  background-color: rgb(100 116 139 / 0.05);
}
.bg-slate-500\/50 {
  background-color: rgb(100 116 139 / 0.5);
}
.bg-slate-500\/60 {
  background-color: rgb(100 116 139 / 0.6);
}
.bg-slate-500\/70 {
  background-color: rgb(100 116 139 / 0.7);
}
.bg-slate-500\/80 {
  background-color: rgb(100 116 139 / 0.8);
}
.bg-slate-500\/90 {
  background-color: rgb(100 116 139 / 0.9);
}
.bg-slate-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(71 85 105 / var(--tw-bg-opacity, 1));
}
.bg-slate-600\/10 {
  background-color: rgb(71 85 105 / 0.1);
}
.bg-slate-600\/20 {
  background-color: rgb(71 85 105 / 0.2);
}
.bg-slate-600\/30 {
  background-color: rgb(71 85 105 / 0.3);
}
.bg-slate-600\/40 {
  background-color: rgb(71 85 105 / 0.4);
}
.bg-slate-600\/5 {
  background-color: rgb(71 85 105 / 0.05);
}
.bg-slate-600\/50 {
  background-color: rgb(71 85 105 / 0.5);
}
.bg-slate-600\/60 {
  background-color: rgb(71 85 105 / 0.6);
}
.bg-slate-600\/70 {
  background-color: rgb(71 85 105 / 0.7);
}
.bg-slate-600\/80 {
  background-color: rgb(71 85 105 / 0.8);
}
.bg-slate-600\/90 {
  background-color: rgb(71 85 105 / 0.9);
}
.bg-slate-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(51 65 85 / var(--tw-bg-opacity, 1));
}
.bg-slate-700\/10 {
  background-color: rgb(51 65 85 / 0.1);
}
.bg-slate-700\/20 {
  background-color: rgb(51 65 85 / 0.2);
}
.bg-slate-700\/30 {
  background-color: rgb(51 65 85 / 0.3);
}
.bg-slate-700\/40 {
  background-color: rgb(51 65 85 / 0.4);
}
.bg-slate-700\/5 {
  background-color: rgb(51 65 85 / 0.05);
}
.bg-slate-700\/50 {
  background-color: rgb(51 65 85 / 0.5);
}
.bg-slate-700\/60 {
  background-color: rgb(51 65 85 / 0.6);
}
.bg-slate-700\/70 {
  background-color: rgb(51 65 85 / 0.7);
}
.bg-slate-700\/80 {
  background-color: rgb(51 65 85 / 0.8);
}
.bg-slate-700\/90 {
  background-color: rgb(51 65 85 / 0.9);
}
.bg-slate-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(30 41 59 / var(--tw-bg-opacity, 1));
}
.bg-slate-800\/10 {
  background-color: rgb(30 41 59 / 0.1);
}
.bg-slate-800\/20 {
  background-color: rgb(30 41 59 / 0.2);
}
.bg-slate-800\/30 {
  background-color: rgb(30 41 59 / 0.3);
}
.bg-slate-800\/40 {
  background-color: rgb(30 41 59 / 0.4);
}
.bg-slate-800\/5 {
  background-color: rgb(30 41 59 / 0.05);
}
.bg-slate-800\/50 {
  background-color: rgb(30 41 59 / 0.5);
}
.bg-slate-800\/60 {
  background-color: rgb(30 41 59 / 0.6);
}
.bg-slate-800\/70 {
  background-color: rgb(30 41 59 / 0.7);
}
.bg-slate-800\/80 {
  background-color: rgb(30 41 59 / 0.8);
}
.bg-slate-800\/90 {
  background-color: rgb(30 41 59 / 0.9);
}
.bg-slate-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(15 23 42 / var(--tw-bg-opacity, 1));
}
.bg-slate-900\/10 {
  background-color: rgb(15 23 42 / 0.1);
}
.bg-slate-900\/20 {
  background-color: rgb(15 23 42 / 0.2);
}
.bg-slate-900\/30 {
  background-color: rgb(15 23 42 / 0.3);
}
.bg-slate-900\/40 {
  background-color: rgb(15 23 42 / 0.4);
}
.bg-slate-900\/5 {
  background-color: rgb(15 23 42 / 0.05);
}
.bg-slate-900\/50 {
  background-color: rgb(15 23 42 / 0.5);
}
.bg-slate-900\/60 {
  background-color: rgb(15 23 42 / 0.6);
}
.bg-slate-900\/70 {
  background-color: rgb(15 23 42 / 0.7);
}
.bg-slate-900\/80 {
  background-color: rgb(15 23 42 / 0.8);
}
.bg-slate-900\/90 {
  background-color: rgb(15 23 42 / 0.9);
}
.bg-slate-950 {
  --tw-bg-opacity: 1;
  background-color: rgb(2 6 23 / var(--tw-bg-opacity, 1));
}
.bg-slate-950\/10 {
  background-color: rgb(2 6 23 / 0.1);
}
.bg-slate-950\/20 {
  background-color: rgb(2 6 23 / 0.2);
}
.bg-slate-950\/30 {
  background-color: rgb(2 6 23 / 0.3);
}
.bg-slate-950\/40 {
  background-color: rgb(2 6 23 / 0.4);
}
.bg-slate-950\/5 {
  background-color: rgb(2 6 23 / 0.05);
}
.bg-slate-950\/50 {
  background-color: rgb(2 6 23 / 0.5);
}
.bg-slate-950\/60 {
  background-color: rgb(2 6 23 / 0.6);
}
.bg-slate-950\/70 {
  background-color: rgb(2 6 23 / 0.7);
}
.bg-slate-950\/80 {
  background-color: rgb(2 6 23 / 0.8);
}
.bg-slate-950\/90 {
  background-color: rgb(2 6 23 / 0.9);
}
.bg-stone-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 244 / var(--tw-bg-opacity, 1));
}
.bg-stone-100\/10 {
  background-color: rgb(245 245 244 / 0.1);
}
.bg-stone-100\/20 {
  background-color: rgb(245 245 244 / 0.2);
}
.bg-stone-100\/30 {
  background-color: rgb(245 245 244 / 0.3);
}
.bg-stone-100\/40 {
  background-color: rgb(245 245 244 / 0.4);
}
.bg-stone-100\/5 {
  background-color: rgb(245 245 244 / 0.05);
}
.bg-stone-100\/50 {
  background-color: rgb(245 245 244 / 0.5);
}
.bg-stone-100\/60 {
  background-color: rgb(245 245 244 / 0.6);
}
.bg-stone-100\/70 {
  background-color: rgb(245 245 244 / 0.7);
}
.bg-stone-100\/80 {
  background-color: rgb(245 245 244 / 0.8);
}
.bg-stone-100\/90 {
  background-color: rgb(245 245 244 / 0.9);
}
.bg-stone-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(231 229 228 / var(--tw-bg-opacity, 1));
}
.bg-stone-200\/10 {
  background-color: rgb(231 229 228 / 0.1);
}
.bg-stone-200\/20 {
  background-color: rgb(231 229 228 / 0.2);
}
.bg-stone-200\/30 {
  background-color: rgb(231 229 228 / 0.3);
}
.bg-stone-200\/40 {
  background-color: rgb(231 229 228 / 0.4);
}
.bg-stone-200\/5 {
  background-color: rgb(231 229 228 / 0.05);
}
.bg-stone-200\/50 {
  background-color: rgb(231 229 228 / 0.5);
}
.bg-stone-200\/60 {
  background-color: rgb(231 229 228 / 0.6);
}
.bg-stone-200\/70 {
  background-color: rgb(231 229 228 / 0.7);
}
.bg-stone-200\/80 {
  background-color: rgb(231 229 228 / 0.8);
}
.bg-stone-200\/90 {
  background-color: rgb(231 229 228 / 0.9);
}
.bg-stone-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(214 211 209 / var(--tw-bg-opacity, 1));
}
.bg-stone-300\/10 {
  background-color: rgb(214 211 209 / 0.1);
}
.bg-stone-300\/20 {
  background-color: rgb(214 211 209 / 0.2);
}
.bg-stone-300\/30 {
  background-color: rgb(214 211 209 / 0.3);
}
.bg-stone-300\/40 {
  background-color: rgb(214 211 209 / 0.4);
}
.bg-stone-300\/5 {
  background-color: rgb(214 211 209 / 0.05);
}
.bg-stone-300\/50 {
  background-color: rgb(214 211 209 / 0.5);
}
.bg-stone-300\/60 {
  background-color: rgb(214 211 209 / 0.6);
}
.bg-stone-300\/70 {
  background-color: rgb(214 211 209 / 0.7);
}
.bg-stone-300\/80 {
  background-color: rgb(214 211 209 / 0.8);
}
.bg-stone-300\/90 {
  background-color: rgb(214 211 209 / 0.9);
}
.bg-stone-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(168 162 158 / var(--tw-bg-opacity, 1));
}
.bg-stone-400\/10 {
  background-color: rgb(168 162 158 / 0.1);
}
.bg-stone-400\/20 {
  background-color: rgb(168 162 158 / 0.2);
}
.bg-stone-400\/30 {
  background-color: rgb(168 162 158 / 0.3);
}
.bg-stone-400\/40 {
  background-color: rgb(168 162 158 / 0.4);
}
.bg-stone-400\/5 {
  background-color: rgb(168 162 158 / 0.05);
}
.bg-stone-400\/50 {
  background-color: rgb(168 162 158 / 0.5);
}
.bg-stone-400\/60 {
  background-color: rgb(168 162 158 / 0.6);
}
.bg-stone-400\/70 {
  background-color: rgb(168 162 158 / 0.7);
}
.bg-stone-400\/80 {
  background-color: rgb(168 162 158 / 0.8);
}
.bg-stone-400\/90 {
  background-color: rgb(168 162 158 / 0.9);
}
.bg-stone-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 249 / var(--tw-bg-opacity, 1));
}
.bg-stone-50\/10 {
  background-color: rgb(250 250 249 / 0.1);
}
.bg-stone-50\/20 {
  background-color: rgb(250 250 249 / 0.2);
}
.bg-stone-50\/30 {
  background-color: rgb(250 250 249 / 0.3);
}
.bg-stone-50\/40 {
  background-color: rgb(250 250 249 / 0.4);
}
.bg-stone-50\/5 {
  background-color: rgb(250 250 249 / 0.05);
}
.bg-stone-50\/50 {
  background-color: rgb(250 250 249 / 0.5);
}
.bg-stone-50\/60 {
  background-color: rgb(250 250 249 / 0.6);
}
.bg-stone-50\/70 {
  background-color: rgb(250 250 249 / 0.7);
}
.bg-stone-50\/80 {
  background-color: rgb(250 250 249 / 0.8);
}
.bg-stone-50\/90 {
  background-color: rgb(250 250 249 / 0.9);
}
.bg-stone-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(120 113 108 / var(--tw-bg-opacity, 1));
}
.bg-stone-500\/10 {
  background-color: rgb(120 113 108 / 0.1);
}
.bg-stone-500\/20 {
  background-color: rgb(120 113 108 / 0.2);
}
.bg-stone-500\/30 {
  background-color: rgb(120 113 108 / 0.3);
}
.bg-stone-500\/40 {
  background-color: rgb(120 113 108 / 0.4);
}
.bg-stone-500\/5 {
  background-color: rgb(120 113 108 / 0.05);
}
.bg-stone-500\/50 {
  background-color: rgb(120 113 108 / 0.5);
}
.bg-stone-500\/60 {
  background-color: rgb(120 113 108 / 0.6);
}
.bg-stone-500\/70 {
  background-color: rgb(120 113 108 / 0.7);
}
.bg-stone-500\/80 {
  background-color: rgb(120 113 108 / 0.8);
}
.bg-stone-500\/90 {
  background-color: rgb(120 113 108 / 0.9);
}
.bg-stone-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(87 83 78 / var(--tw-bg-opacity, 1));
}
.bg-stone-600\/10 {
  background-color: rgb(87 83 78 / 0.1);
}
.bg-stone-600\/20 {
  background-color: rgb(87 83 78 / 0.2);
}
.bg-stone-600\/30 {
  background-color: rgb(87 83 78 / 0.3);
}
.bg-stone-600\/40 {
  background-color: rgb(87 83 78 / 0.4);
}
.bg-stone-600\/5 {
  background-color: rgb(87 83 78 / 0.05);
}
.bg-stone-600\/50 {
  background-color: rgb(87 83 78 / 0.5);
}
.bg-stone-600\/60 {
  background-color: rgb(87 83 78 / 0.6);
}
.bg-stone-600\/70 {
  background-color: rgb(87 83 78 / 0.7);
}
.bg-stone-600\/80 {
  background-color: rgb(87 83 78 / 0.8);
}
.bg-stone-600\/90 {
  background-color: rgb(87 83 78 / 0.9);
}
.bg-stone-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(68 64 60 / var(--tw-bg-opacity, 1));
}
.bg-stone-700\/10 {
  background-color: rgb(68 64 60 / 0.1);
}
.bg-stone-700\/20 {
  background-color: rgb(68 64 60 / 0.2);
}
.bg-stone-700\/30 {
  background-color: rgb(68 64 60 / 0.3);
}
.bg-stone-700\/40 {
  background-color: rgb(68 64 60 / 0.4);
}
.bg-stone-700\/5 {
  background-color: rgb(68 64 60 / 0.05);
}
.bg-stone-700\/50 {
  background-color: rgb(68 64 60 / 0.5);
}
.bg-stone-700\/60 {
  background-color: rgb(68 64 60 / 0.6);
}
.bg-stone-700\/70 {
  background-color: rgb(68 64 60 / 0.7);
}
.bg-stone-700\/80 {
  background-color: rgb(68 64 60 / 0.8);
}
.bg-stone-700\/90 {
  background-color: rgb(68 64 60 / 0.9);
}
.bg-stone-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(41 37 36 / var(--tw-bg-opacity, 1));
}
.bg-stone-800\/10 {
  background-color: rgb(41 37 36 / 0.1);
}
.bg-stone-800\/20 {
  background-color: rgb(41 37 36 / 0.2);
}
.bg-stone-800\/30 {
  background-color: rgb(41 37 36 / 0.3);
}
.bg-stone-800\/40 {
  background-color: rgb(41 37 36 / 0.4);
}
.bg-stone-800\/5 {
  background-color: rgb(41 37 36 / 0.05);
}
.bg-stone-800\/50 {
  background-color: rgb(41 37 36 / 0.5);
}
.bg-stone-800\/60 {
  background-color: rgb(41 37 36 / 0.6);
}
.bg-stone-800\/70 {
  background-color: rgb(41 37 36 / 0.7);
}
.bg-stone-800\/80 {
  background-color: rgb(41 37 36 / 0.8);
}
.bg-stone-800\/90 {
  background-color: rgb(41 37 36 / 0.9);
}
.bg-stone-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(28 25 23 / var(--tw-bg-opacity, 1));
}
.bg-stone-900\/10 {
  background-color: rgb(28 25 23 / 0.1);
}
.bg-stone-900\/20 {
  background-color: rgb(28 25 23 / 0.2);
}
.bg-stone-900\/30 {
  background-color: rgb(28 25 23 / 0.3);
}
.bg-stone-900\/40 {
  background-color: rgb(28 25 23 / 0.4);
}
.bg-stone-900\/5 {
  background-color: rgb(28 25 23 / 0.05);
}
.bg-stone-900\/50 {
  background-color: rgb(28 25 23 / 0.5);
}
.bg-stone-900\/60 {
  background-color: rgb(28 25 23 / 0.6);
}
.bg-stone-900\/70 {
  background-color: rgb(28 25 23 / 0.7);
}
.bg-stone-900\/80 {
  background-color: rgb(28 25 23 / 0.8);
}
.bg-stone-900\/90 {
  background-color: rgb(28 25 23 / 0.9);
}
.bg-stone-950 {
  --tw-bg-opacity: 1;
  background-color: rgb(12 10 9 / var(--tw-bg-opacity, 1));
}
.bg-stone-950\/10 {
  background-color: rgb(12 10 9 / 0.1);
}
.bg-stone-950\/20 {
  background-color: rgb(12 10 9 / 0.2);
}
.bg-stone-950\/30 {
  background-color: rgb(12 10 9 / 0.3);
}
.bg-stone-950\/40 {
  background-color: rgb(12 10 9 / 0.4);
}
.bg-stone-950\/5 {
  background-color: rgb(12 10 9 / 0.05);
}
.bg-stone-950\/50 {
  background-color: rgb(12 10 9 / 0.5);
}
.bg-stone-950\/60 {
  background-color: rgb(12 10 9 / 0.6);
}
.bg-stone-950\/70 {
  background-color: rgb(12 10 9 / 0.7);
}
.bg-stone-950\/80 {
  background-color: rgb(12 10 9 / 0.8);
}
.bg-stone-950\/90 {
  background-color: rgb(12 10 9 / 0.9);
}
.bg-teal-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(204 251 241 / var(--tw-bg-opacity, 1));
}
.bg-teal-100\/10 {
  background-color: rgb(204 251 241 / 0.1);
}
.bg-teal-100\/20 {
  background-color: rgb(204 251 241 / 0.2);
}
.bg-teal-100\/30 {
  background-color: rgb(204 251 241 / 0.3);
}
.bg-teal-100\/40 {
  background-color: rgb(204 251 241 / 0.4);
}
.bg-teal-100\/5 {
  background-color: rgb(204 251 241 / 0.05);
}
.bg-teal-100\/50 {
  background-color: rgb(204 251 241 / 0.5);
}
.bg-teal-100\/60 {
  background-color: rgb(204 251 241 / 0.6);
}
.bg-teal-100\/70 {
  background-color: rgb(204 251 241 / 0.7);
}
.bg-teal-100\/80 {
  background-color: rgb(204 251 241 / 0.8);
}
.bg-teal-100\/90 {
  background-color: rgb(204 251 241 / 0.9);
}
.bg-teal-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(153 246 228 / var(--tw-bg-opacity, 1));
}
.bg-teal-200\/10 {
  background-color: rgb(153 246 228 / 0.1);
}
.bg-teal-200\/20 {
  background-color: rgb(153 246 228 / 0.2);
}
.bg-teal-200\/30 {
  background-color: rgb(153 246 228 / 0.3);
}
.bg-teal-200\/40 {
  background-color: rgb(153 246 228 / 0.4);
}
.bg-teal-200\/5 {
  background-color: rgb(153 246 228 / 0.05);
}
.bg-teal-200\/50 {
  background-color: rgb(153 246 228 / 0.5);
}
.bg-teal-200\/60 {
  background-color: rgb(153 246 228 / 0.6);
}
.bg-teal-200\/70 {
  background-color: rgb(153 246 228 / 0.7);
}
.bg-teal-200\/80 {
  background-color: rgb(153 246 228 / 0.8);
}
.bg-teal-200\/90 {
  background-color: rgb(153 246 228 / 0.9);
}
.bg-teal-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(94 234 212 / var(--tw-bg-opacity, 1));
}
.bg-teal-300\/10 {
  background-color: rgb(94 234 212 / 0.1);
}
.bg-teal-300\/20 {
  background-color: rgb(94 234 212 / 0.2);
}
.bg-teal-300\/30 {
  background-color: rgb(94 234 212 / 0.3);
}
.bg-teal-300\/40 {
  background-color: rgb(94 234 212 / 0.4);
}
.bg-teal-300\/5 {
  background-color: rgb(94 234 212 / 0.05);
}
.bg-teal-300\/50 {
  background-color: rgb(94 234 212 / 0.5);
}
.bg-teal-300\/60 {
  background-color: rgb(94 234 212 / 0.6);
}
.bg-teal-300\/70 {
  background-color: rgb(94 234 212 / 0.7);
}
.bg-teal-300\/80 {
  background-color: rgb(94 234 212 / 0.8);
}
.bg-teal-300\/90 {
  background-color: rgb(94 234 212 / 0.9);
}
.bg-teal-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(45 212 191 / var(--tw-bg-opacity, 1));
}
.bg-teal-400\/10 {
  background-color: rgb(45 212 191 / 0.1);
}
.bg-teal-400\/20 {
  background-color: rgb(45 212 191 / 0.2);
}
.bg-teal-400\/30 {
  background-color: rgb(45 212 191 / 0.3);
}
.bg-teal-400\/40 {
  background-color: rgb(45 212 191 / 0.4);
}
.bg-teal-400\/5 {
  background-color: rgb(45 212 191 / 0.05);
}
.bg-teal-400\/50 {
  background-color: rgb(45 212 191 / 0.5);
}
.bg-teal-400\/60 {
  background-color: rgb(45 212 191 / 0.6);
}
.bg-teal-400\/70 {
  background-color: rgb(45 212 191 / 0.7);
}
.bg-teal-400\/80 {
  background-color: rgb(45 212 191 / 0.8);
}
.bg-teal-400\/90 {
  background-color: rgb(45 212 191 / 0.9);
}
.bg-teal-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 250 / var(--tw-bg-opacity, 1));
}
.bg-teal-50\/10 {
  background-color: rgb(240 253 250 / 0.1);
}
.bg-teal-50\/20 {
  background-color: rgb(240 253 250 / 0.2);
}
.bg-teal-50\/30 {
  background-color: rgb(240 253 250 / 0.3);
}
.bg-teal-50\/40 {
  background-color: rgb(240 253 250 / 0.4);
}
.bg-teal-50\/5 {
  background-color: rgb(240 253 250 / 0.05);
}
.bg-teal-50\/50 {
  background-color: rgb(240 253 250 / 0.5);
}
.bg-teal-50\/60 {
  background-color: rgb(240 253 250 / 0.6);
}
.bg-teal-50\/70 {
  background-color: rgb(240 253 250 / 0.7);
}
.bg-teal-50\/80 {
  background-color: rgb(240 253 250 / 0.8);
}
.bg-teal-50\/90 {
  background-color: rgb(240 253 250 / 0.9);
}
.bg-teal-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(20 184 166 / var(--tw-bg-opacity, 1));
}
.bg-teal-500\/10 {
  background-color: rgb(20 184 166 / 0.1);
}
.bg-teal-500\/20 {
  background-color: rgb(20 184 166 / 0.2);
}
.bg-teal-500\/30 {
  background-color: rgb(20 184 166 / 0.3);
}
.bg-teal-500\/40 {
  background-color: rgb(20 184 166 / 0.4);
}
.bg-teal-500\/5 {
  background-color: rgb(20 184 166 / 0.05);
}
.bg-teal-500\/50 {
  background-color: rgb(20 184 166 / 0.5);
}
.bg-teal-500\/60 {
  background-color: rgb(20 184 166 / 0.6);
}
.bg-teal-500\/70 {
  background-color: rgb(20 184 166 / 0.7);
}
.bg-teal-500\/80 {
  background-color: rgb(20 184 166 / 0.8);
}
.bg-teal-500\/90 {
  background-color: rgb(20 184 166 / 0.9);
}
.bg-teal-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(13 148 136 / var(--tw-bg-opacity, 1));
}
.bg-teal-600\/10 {
  background-color: rgb(13 148 136 / 0.1);
}
.bg-teal-600\/20 {
  background-color: rgb(13 148 136 / 0.2);
}
.bg-teal-600\/30 {
  background-color: rgb(13 148 136 / 0.3);
}
.bg-teal-600\/40 {
  background-color: rgb(13 148 136 / 0.4);
}
.bg-teal-600\/5 {
  background-color: rgb(13 148 136 / 0.05);
}
.bg-teal-600\/50 {
  background-color: rgb(13 148 136 / 0.5);
}
.bg-teal-600\/60 {
  background-color: rgb(13 148 136 / 0.6);
}
.bg-teal-600\/70 {
  background-color: rgb(13 148 136 / 0.7);
}
.bg-teal-600\/80 {
  background-color: rgb(13 148 136 / 0.8);
}
.bg-teal-600\/90 {
  background-color: rgb(13 148 136 / 0.9);
}
.bg-teal-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(15 118 110 / var(--tw-bg-opacity, 1));
}
.bg-teal-700\/10 {
  background-color: rgb(15 118 110 / 0.1);
}
.bg-teal-700\/20 {
  background-color: rgb(15 118 110 / 0.2);
}
.bg-teal-700\/30 {
  background-color: rgb(15 118 110 / 0.3);
}
.bg-teal-700\/40 {
  background-color: rgb(15 118 110 / 0.4);
}
.bg-teal-700\/5 {
  background-color: rgb(15 118 110 / 0.05);
}
.bg-teal-700\/50 {
  background-color: rgb(15 118 110 / 0.5);
}
.bg-teal-700\/60 {
  background-color: rgb(15 118 110 / 0.6);
}
.bg-teal-700\/70 {
  background-color: rgb(15 118 110 / 0.7);
}
.bg-teal-700\/80 {
  background-color: rgb(15 118 110 / 0.8);
}
.bg-teal-700\/90 {
  background-color: rgb(15 118 110 / 0.9);
}
.bg-teal-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(17 94 89 / var(--tw-bg-opacity, 1));
}
.bg-teal-800\/10 {
  background-color: rgb(17 94 89 / 0.1);
}
.bg-teal-800\/20 {
  background-color: rgb(17 94 89 / 0.2);
}
.bg-teal-800\/30 {
  background-color: rgb(17 94 89 / 0.3);
}
.bg-teal-800\/40 {
  background-color: rgb(17 94 89 / 0.4);
}
.bg-teal-800\/5 {
  background-color: rgb(17 94 89 / 0.05);
}
.bg-teal-800\/50 {
  background-color: rgb(17 94 89 / 0.5);
}
.bg-teal-800\/60 {
  background-color: rgb(17 94 89 / 0.6);
}
.bg-teal-800\/70 {
  background-color: rgb(17 94 89 / 0.7);
}
.bg-teal-800\/80 {
  background-color: rgb(17 94 89 / 0.8);
}
.bg-teal-800\/90 {
  background-color: rgb(17 94 89 / 0.9);
}
.bg-teal-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(19 78 74 / var(--tw-bg-opacity, 1));
}
.bg-teal-900\/10 {
  background-color: rgb(19 78 74 / 0.1);
}
.bg-teal-900\/20 {
  background-color: rgb(19 78 74 / 0.2);
}
.bg-teal-900\/30 {
  background-color: rgb(19 78 74 / 0.3);
}
.bg-teal-900\/40 {
  background-color: rgb(19 78 74 / 0.4);
}
.bg-teal-900\/5 {
  background-color: rgb(19 78 74 / 0.05);
}
.bg-teal-900\/50 {
  background-color: rgb(19 78 74 / 0.5);
}
.bg-teal-900\/60 {
  background-color: rgb(19 78 74 / 0.6);
}
.bg-teal-900\/70 {
  background-color: rgb(19 78 74 / 0.7);
}
.bg-teal-900\/80 {
  background-color: rgb(19 78 74 / 0.8);
}
.bg-teal-900\/90 {
  background-color: rgb(19 78 74 / 0.9);
}
.bg-teal-950 {
  --tw-bg-opacity: 1;
  background-color: rgb(4 47 46 / var(--tw-bg-opacity, 1));
}
.bg-teal-950\/10 {
  background-color: rgb(4 47 46 / 0.1);
}
.bg-teal-950\/20 {
  background-color: rgb(4 47 46 / 0.2);
}
.bg-teal-950\/30 {
  background-color: rgb(4 47 46 / 0.3);
}
.bg-teal-950\/40 {
  background-color: rgb(4 47 46 / 0.4);
}
.bg-teal-950\/5 {
  background-color: rgb(4 47 46 / 0.05);
}
.bg-teal-950\/50 {
  background-color: rgb(4 47 46 / 0.5);
}
.bg-teal-950\/60 {
  background-color: rgb(4 47 46 / 0.6);
}
.bg-teal-950\/70 {
  background-color: rgb(4 47 46 / 0.7);
}
.bg-teal-950\/80 {
  background-color: rgb(4 47 46 / 0.8);
}
.bg-teal-950\/90 {
  background-color: rgb(4 47 46 / 0.9);
}
.bg-transparent {
  background-color: transparent;
}
.bg-violet-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(237 233 254 / var(--tw-bg-opacity, 1));
}
.bg-violet-100\/10 {
  background-color: rgb(237 233 254 / 0.1);
}
.bg-violet-100\/20 {
  background-color: rgb(237 233 254 / 0.2);
}
.bg-violet-100\/30 {
  background-color: rgb(237 233 254 / 0.3);
}
.bg-violet-100\/40 {
  background-color: rgb(237 233 254 / 0.4);
}
.bg-violet-100\/5 {
  background-color: rgb(237 233 254 / 0.05);
}
.bg-violet-100\/50 {
  background-color: rgb(237 233 254 / 0.5);
}
.bg-violet-100\/60 {
  background-color: rgb(237 233 254 / 0.6);
}
.bg-violet-100\/70 {
  background-color: rgb(237 233 254 / 0.7);
}
.bg-violet-100\/80 {
  background-color: rgb(237 233 254 / 0.8);
}
.bg-violet-100\/90 {
  background-color: rgb(237 233 254 / 0.9);
}
.bg-violet-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(221 214 254 / var(--tw-bg-opacity, 1));
}
.bg-violet-200\/10 {
  background-color: rgb(221 214 254 / 0.1);
}
.bg-violet-200\/20 {
  background-color: rgb(221 214 254 / 0.2);
}
.bg-violet-200\/30 {
  background-color: rgb(221 214 254 / 0.3);
}
.bg-violet-200\/40 {
  background-color: rgb(221 214 254 / 0.4);
}
.bg-violet-200\/5 {
  background-color: rgb(221 214 254 / 0.05);
}
.bg-violet-200\/50 {
  background-color: rgb(221 214 254 / 0.5);
}
.bg-violet-200\/60 {
  background-color: rgb(221 214 254 / 0.6);
}
.bg-violet-200\/70 {
  background-color: rgb(221 214 254 / 0.7);
}
.bg-violet-200\/80 {
  background-color: rgb(221 214 254 / 0.8);
}
.bg-violet-200\/90 {
  background-color: rgb(221 214 254 / 0.9);
}
.bg-violet-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(196 181 253 / var(--tw-bg-opacity, 1));
}
.bg-violet-300\/10 {
  background-color: rgb(196 181 253 / 0.1);
}
.bg-violet-300\/20 {
  background-color: rgb(196 181 253 / 0.2);
}
.bg-violet-300\/30 {
  background-color: rgb(196 181 253 / 0.3);
}
.bg-violet-300\/40 {
  background-color: rgb(196 181 253 / 0.4);
}
.bg-violet-300\/5 {
  background-color: rgb(196 181 253 / 0.05);
}
.bg-violet-300\/50 {
  background-color: rgb(196 181 253 / 0.5);
}
.bg-violet-300\/60 {
  background-color: rgb(196 181 253 / 0.6);
}
.bg-violet-300\/70 {
  background-color: rgb(196 181 253 / 0.7);
}
.bg-violet-300\/80 {
  background-color: rgb(196 181 253 / 0.8);
}
.bg-violet-300\/90 {
  background-color: rgb(196 181 253 / 0.9);
}
.bg-violet-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(167 139 250 / var(--tw-bg-opacity, 1));
}
.bg-violet-400\/10 {
  background-color: rgb(167 139 250 / 0.1);
}
.bg-violet-400\/20 {
  background-color: rgb(167 139 250 / 0.2);
}
.bg-violet-400\/30 {
  background-color: rgb(167 139 250 / 0.3);
}
.bg-violet-400\/40 {
  background-color: rgb(167 139 250 / 0.4);
}
.bg-violet-400\/5 {
  background-color: rgb(167 139 250 / 0.05);
}
.bg-violet-400\/50 {
  background-color: rgb(167 139 250 / 0.5);
}
.bg-violet-400\/60 {
  background-color: rgb(167 139 250 / 0.6);
}
.bg-violet-400\/70 {
  background-color: rgb(167 139 250 / 0.7);
}
.bg-violet-400\/80 {
  background-color: rgb(167 139 250 / 0.8);
}
.bg-violet-400\/90 {
  background-color: rgb(167 139 250 / 0.9);
}
.bg-violet-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(245 243 255 / var(--tw-bg-opacity, 1));
}
.bg-violet-50\/10 {
  background-color: rgb(245 243 255 / 0.1);
}
.bg-violet-50\/20 {
  background-color: rgb(245 243 255 / 0.2);
}
.bg-violet-50\/30 {
  background-color: rgb(245 243 255 / 0.3);
}
.bg-violet-50\/40 {
  background-color: rgb(245 243 255 / 0.4);
}
.bg-violet-50\/5 {
  background-color: rgb(245 243 255 / 0.05);
}
.bg-violet-50\/50 {
  background-color: rgb(245 243 255 / 0.5);
}
.bg-violet-50\/60 {
  background-color: rgb(245 243 255 / 0.6);
}
.bg-violet-50\/70 {
  background-color: rgb(245 243 255 / 0.7);
}
.bg-violet-50\/80 {
  background-color: rgb(245 243 255 / 0.8);
}
.bg-violet-50\/90 {
  background-color: rgb(245 243 255 / 0.9);
}
.bg-violet-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(139 92 246 / var(--tw-bg-opacity, 1));
}
.bg-violet-500\/10 {
  background-color: rgb(139 92 246 / 0.1);
}
.bg-violet-500\/20 {
  background-color: rgb(139 92 246 / 0.2);
}
.bg-violet-500\/30 {
  background-color: rgb(139 92 246 / 0.3);
}
.bg-violet-500\/40 {
  background-color: rgb(139 92 246 / 0.4);
}
.bg-violet-500\/5 {
  background-color: rgb(139 92 246 / 0.05);
}
.bg-violet-500\/50 {
  background-color: rgb(139 92 246 / 0.5);
}
.bg-violet-500\/60 {
  background-color: rgb(139 92 246 / 0.6);
}
.bg-violet-500\/70 {
  background-color: rgb(139 92 246 / 0.7);
}
.bg-violet-500\/80 {
  background-color: rgb(139 92 246 / 0.8);
}
.bg-violet-500\/90 {
  background-color: rgb(139 92 246 / 0.9);
}
.bg-violet-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(124 58 237 / var(--tw-bg-opacity, 1));
}
.bg-violet-600\/10 {
  background-color: rgb(124 58 237 / 0.1);
}
.bg-violet-600\/20 {
  background-color: rgb(124 58 237 / 0.2);
}
.bg-violet-600\/30 {
  background-color: rgb(124 58 237 / 0.3);
}
.bg-violet-600\/40 {
  background-color: rgb(124 58 237 / 0.4);
}
.bg-violet-600\/5 {
  background-color: rgb(124 58 237 / 0.05);
}
.bg-violet-600\/50 {
  background-color: rgb(124 58 237 / 0.5);
}
.bg-violet-600\/60 {
  background-color: rgb(124 58 237 / 0.6);
}
.bg-violet-600\/70 {
  background-color: rgb(124 58 237 / 0.7);
}
.bg-violet-600\/80 {
  background-color: rgb(124 58 237 / 0.8);
}
.bg-violet-600\/90 {
  background-color: rgb(124 58 237 / 0.9);
}
.bg-violet-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(109 40 217 / var(--tw-bg-opacity, 1));
}
.bg-violet-700\/10 {
  background-color: rgb(109 40 217 / 0.1);
}
.bg-violet-700\/20 {
  background-color: rgb(109 40 217 / 0.2);
}
.bg-violet-700\/30 {
  background-color: rgb(109 40 217 / 0.3);
}
.bg-violet-700\/40 {
  background-color: rgb(109 40 217 / 0.4);
}
.bg-violet-700\/5 {
  background-color: rgb(109 40 217 / 0.05);
}
.bg-violet-700\/50 {
  background-color: rgb(109 40 217 / 0.5);
}
.bg-violet-700\/60 {
  background-color: rgb(109 40 217 / 0.6);
}
.bg-violet-700\/70 {
  background-color: rgb(109 40 217 / 0.7);
}
.bg-violet-700\/80 {
  background-color: rgb(109 40 217 / 0.8);
}
.bg-violet-700\/90 {
  background-color: rgb(109 40 217 / 0.9);
}
.bg-violet-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(91 33 182 / var(--tw-bg-opacity, 1));
}
.bg-violet-800\/10 {
  background-color: rgb(91 33 182 / 0.1);
}
.bg-violet-800\/20 {
  background-color: rgb(91 33 182 / 0.2);
}
.bg-violet-800\/30 {
  background-color: rgb(91 33 182 / 0.3);
}
.bg-violet-800\/40 {
  background-color: rgb(91 33 182 / 0.4);
}
.bg-violet-800\/5 {
  background-color: rgb(91 33 182 / 0.05);
}
.bg-violet-800\/50 {
  background-color: rgb(91 33 182 / 0.5);
}
.bg-violet-800\/60 {
  background-color: rgb(91 33 182 / 0.6);
}
.bg-violet-800\/70 {
  background-color: rgb(91 33 182 / 0.7);
}
.bg-violet-800\/80 {
  background-color: rgb(91 33 182 / 0.8);
}
.bg-violet-800\/90 {
  background-color: rgb(91 33 182 / 0.9);
}
.bg-violet-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(76 29 149 / var(--tw-bg-opacity, 1));
}
.bg-violet-900\/10 {
  background-color: rgb(76 29 149 / 0.1);
}
.bg-violet-900\/20 {
  background-color: rgb(76 29 149 / 0.2);
}
.bg-violet-900\/30 {
  background-color: rgb(76 29 149 / 0.3);
}
.bg-violet-900\/40 {
  background-color: rgb(76 29 149 / 0.4);
}
.bg-violet-900\/5 {
  background-color: rgb(76 29 149 / 0.05);
}
.bg-violet-900\/50 {
  background-color: rgb(76 29 149 / 0.5);
}
.bg-violet-900\/60 {
  background-color: rgb(76 29 149 / 0.6);
}
.bg-violet-900\/70 {
  background-color: rgb(76 29 149 / 0.7);
}
.bg-violet-900\/80 {
  background-color: rgb(76 29 149 / 0.8);
}
.bg-violet-900\/90 {
  background-color: rgb(76 29 149 / 0.9);
}
.bg-violet-950 {
  --tw-bg-opacity: 1;
  background-color: rgb(46 16 101 / var(--tw-bg-opacity, 1));
}
.bg-violet-950\/10 {
  background-color: rgb(46 16 101 / 0.1);
}
.bg-violet-950\/20 {
  background-color: rgb(46 16 101 / 0.2);
}
.bg-violet-950\/30 {
  background-color: rgb(46 16 101 / 0.3);
}
.bg-violet-950\/40 {
  background-color: rgb(46 16 101 / 0.4);
}
.bg-violet-950\/5 {
  background-color: rgb(46 16 101 / 0.05);
}
.bg-violet-950\/50 {
  background-color: rgb(46 16 101 / 0.5);
}
.bg-violet-950\/60 {
  background-color: rgb(46 16 101 / 0.6);
}
.bg-violet-950\/70 {
  background-color: rgb(46 16 101 / 0.7);
}
.bg-violet-950\/80 {
  background-color: rgb(46 16 101 / 0.8);
}
.bg-violet-950\/90 {
  background-color: rgb(46 16 101 / 0.9);
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-white\/0 {
  background-color: rgb(255 255 255 / 0);
}
.bg-white\/10 {
  background-color: rgb(255 255 255 / 0.1);
}
.bg-white\/20 {
  background-color: rgb(255 255 255 / 0.2);
}
.bg-white\/30 {
  background-color: rgb(255 255 255 / 0.3);
}
.bg-white\/50 {
  background-color: rgb(255 255 255 / 0.5);
}
.bg-white\/60 {
  background-color: rgb(255 255 255 / 0.6);
}
.bg-white\/70 {
  background-color: rgb(255 255 255 / 0.7);
}
.bg-white\/75 {
  background-color: rgb(255 255 255 / 0.75);
}
.bg-white\/80 {
  background-color: rgb(255 255 255 / 0.8);
}
.bg-yellow-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1));
}
.bg-yellow-100\/10 {
  background-color: rgb(254 249 195 / 0.1);
}
.bg-yellow-100\/20 {
  background-color: rgb(254 249 195 / 0.2);
}
.bg-yellow-100\/30 {
  background-color: rgb(254 249 195 / 0.3);
}
.bg-yellow-100\/40 {
  background-color: rgb(254 249 195 / 0.4);
}
.bg-yellow-100\/5 {
  background-color: rgb(254 249 195 / 0.05);
}
.bg-yellow-100\/50 {
  background-color: rgb(254 249 195 / 0.5);
}
.bg-yellow-100\/60 {
  background-color: rgb(254 249 195 / 0.6);
}
.bg-yellow-100\/70 {
  background-color: rgb(254 249 195 / 0.7);
}
.bg-yellow-100\/80 {
  background-color: rgb(254 249 195 / 0.8);
}
.bg-yellow-100\/90 {
  background-color: rgb(254 249 195 / 0.9);
}
.bg-yellow-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 240 138 / var(--tw-bg-opacity, 1));
}
.bg-yellow-200\/10 {
  background-color: rgb(254 240 138 / 0.1);
}
.bg-yellow-200\/20 {
  background-color: rgb(254 240 138 / 0.2);
}
.bg-yellow-200\/30 {
  background-color: rgb(254 240 138 / 0.3);
}
.bg-yellow-200\/40 {
  background-color: rgb(254 240 138 / 0.4);
}
.bg-yellow-200\/5 {
  background-color: rgb(254 240 138 / 0.05);
}
.bg-yellow-200\/50 {
  background-color: rgb(254 240 138 / 0.5);
}
.bg-yellow-200\/60 {
  background-color: rgb(254 240 138 / 0.6);
}
.bg-yellow-200\/70 {
  background-color: rgb(254 240 138 / 0.7);
}
.bg-yellow-200\/80 {
  background-color: rgb(254 240 138 / 0.8);
}
.bg-yellow-200\/90 {
  background-color: rgb(254 240 138 / 0.9);
}
.bg-yellow-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(253 224 71 / var(--tw-bg-opacity, 1));
}
.bg-yellow-300\/10 {
  background-color: rgb(253 224 71 / 0.1);
}
.bg-yellow-300\/20 {
  background-color: rgb(253 224 71 / 0.2);
}
.bg-yellow-300\/30 {
  background-color: rgb(253 224 71 / 0.3);
}
.bg-yellow-300\/40 {
  background-color: rgb(253 224 71 / 0.4);
}
.bg-yellow-300\/5 {
  background-color: rgb(253 224 71 / 0.05);
}
.bg-yellow-300\/50 {
  background-color: rgb(253 224 71 / 0.5);
}
.bg-yellow-300\/60 {
  background-color: rgb(253 224 71 / 0.6);
}
.bg-yellow-300\/70 {
  background-color: rgb(253 224 71 / 0.7);
}
.bg-yellow-300\/80 {
  background-color: rgb(253 224 71 / 0.8);
}
.bg-yellow-300\/90 {
  background-color: rgb(253 224 71 / 0.9);
}
.bg-yellow-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(250 204 21 / var(--tw-bg-opacity, 1));
}
.bg-yellow-400\/10 {
  background-color: rgb(250 204 21 / 0.1);
}
.bg-yellow-400\/20 {
  background-color: rgb(250 204 21 / 0.2);
}
.bg-yellow-400\/30 {
  background-color: rgb(250 204 21 / 0.3);
}
.bg-yellow-400\/40 {
  background-color: rgb(250 204 21 / 0.4);
}
.bg-yellow-400\/5 {
  background-color: rgb(250 204 21 / 0.05);
}
.bg-yellow-400\/50 {
  background-color: rgb(250 204 21 / 0.5);
}
.bg-yellow-400\/60 {
  background-color: rgb(250 204 21 / 0.6);
}
.bg-yellow-400\/70 {
  background-color: rgb(250 204 21 / 0.7);
}
.bg-yellow-400\/80 {
  background-color: rgb(250 204 21 / 0.8);
}
.bg-yellow-400\/90 {
  background-color: rgb(250 204 21 / 0.9);
}
.bg-yellow-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1));
}
.bg-yellow-50\/10 {
  background-color: rgb(254 252 232 / 0.1);
}
.bg-yellow-50\/20 {
  background-color: rgb(254 252 232 / 0.2);
}
.bg-yellow-50\/30 {
  background-color: rgb(254 252 232 / 0.3);
}
.bg-yellow-50\/40 {
  background-color: rgb(254 252 232 / 0.4);
}
.bg-yellow-50\/5 {
  background-color: rgb(254 252 232 / 0.05);
}
.bg-yellow-50\/50 {
  background-color: rgb(254 252 232 / 0.5);
}
.bg-yellow-50\/60 {
  background-color: rgb(254 252 232 / 0.6);
}
.bg-yellow-50\/70 {
  background-color: rgb(254 252 232 / 0.7);
}
.bg-yellow-50\/80 {
  background-color: rgb(254 252 232 / 0.8);
}
.bg-yellow-50\/90 {
  background-color: rgb(254 252 232 / 0.9);
}
.bg-yellow-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(234 179 8 / var(--tw-bg-opacity, 1));
}
.bg-yellow-500\/10 {
  background-color: rgb(234 179 8 / 0.1);
}
.bg-yellow-500\/20 {
  background-color: rgb(234 179 8 / 0.2);
}
.bg-yellow-500\/30 {
  background-color: rgb(234 179 8 / 0.3);
}
.bg-yellow-500\/40 {
  background-color: rgb(234 179 8 / 0.4);
}
.bg-yellow-500\/5 {
  background-color: rgb(234 179 8 / 0.05);
}
.bg-yellow-500\/50 {
  background-color: rgb(234 179 8 / 0.5);
}
.bg-yellow-500\/60 {
  background-color: rgb(234 179 8 / 0.6);
}
.bg-yellow-500\/70 {
  background-color: rgb(234 179 8 / 0.7);
}
.bg-yellow-500\/80 {
  background-color: rgb(234 179 8 / 0.8);
}
.bg-yellow-500\/90 {
  background-color: rgb(234 179 8 / 0.9);
}
.bg-yellow-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(202 138 4 / var(--tw-bg-opacity, 1));
}
.bg-yellow-600\/10 {
  background-color: rgb(202 138 4 / 0.1);
}
.bg-yellow-600\/20 {
  background-color: rgb(202 138 4 / 0.2);
}
.bg-yellow-600\/30 {
  background-color: rgb(202 138 4 / 0.3);
}
.bg-yellow-600\/40 {
  background-color: rgb(202 138 4 / 0.4);
}
.bg-yellow-600\/5 {
  background-color: rgb(202 138 4 / 0.05);
}
.bg-yellow-600\/50 {
  background-color: rgb(202 138 4 / 0.5);
}
.bg-yellow-600\/60 {
  background-color: rgb(202 138 4 / 0.6);
}
.bg-yellow-600\/70 {
  background-color: rgb(202 138 4 / 0.7);
}
.bg-yellow-600\/80 {
  background-color: rgb(202 138 4 / 0.8);
}
.bg-yellow-600\/90 {
  background-color: rgb(202 138 4 / 0.9);
}
.bg-yellow-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(161 98 7 / var(--tw-bg-opacity, 1));
}
.bg-yellow-700\/10 {
  background-color: rgb(161 98 7 / 0.1);
}
.bg-yellow-700\/20 {
  background-color: rgb(161 98 7 / 0.2);
}
.bg-yellow-700\/30 {
  background-color: rgb(161 98 7 / 0.3);
}
.bg-yellow-700\/40 {
  background-color: rgb(161 98 7 / 0.4);
}
.bg-yellow-700\/5 {
  background-color: rgb(161 98 7 / 0.05);
}
.bg-yellow-700\/50 {
  background-color: rgb(161 98 7 / 0.5);
}
.bg-yellow-700\/60 {
  background-color: rgb(161 98 7 / 0.6);
}
.bg-yellow-700\/70 {
  background-color: rgb(161 98 7 / 0.7);
}
.bg-yellow-700\/80 {
  background-color: rgb(161 98 7 / 0.8);
}
.bg-yellow-700\/90 {
  background-color: rgb(161 98 7 / 0.9);
}
.bg-yellow-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(133 77 14 / var(--tw-bg-opacity, 1));
}
.bg-yellow-800\/10 {
  background-color: rgb(133 77 14 / 0.1);
}
.bg-yellow-800\/20 {
  background-color: rgb(133 77 14 / 0.2);
}
.bg-yellow-800\/30 {
  background-color: rgb(133 77 14 / 0.3);
}
.bg-yellow-800\/40 {
  background-color: rgb(133 77 14 / 0.4);
}
.bg-yellow-800\/5 {
  background-color: rgb(133 77 14 / 0.05);
}
.bg-yellow-800\/50 {
  background-color: rgb(133 77 14 / 0.5);
}
.bg-yellow-800\/60 {
  background-color: rgb(133 77 14 / 0.6);
}
.bg-yellow-800\/70 {
  background-color: rgb(133 77 14 / 0.7);
}
.bg-yellow-800\/80 {
  background-color: rgb(133 77 14 / 0.8);
}
.bg-yellow-800\/90 {
  background-color: rgb(133 77 14 / 0.9);
}
.bg-yellow-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(113 63 18 / var(--tw-bg-opacity, 1));
}
.bg-yellow-900\/10 {
  background-color: rgb(113 63 18 / 0.1);
}
.bg-yellow-900\/20 {
  background-color: rgb(113 63 18 / 0.2);
}
.bg-yellow-900\/30 {
  background-color: rgb(113 63 18 / 0.3);
}
.bg-yellow-900\/40 {
  background-color: rgb(113 63 18 / 0.4);
}
.bg-yellow-900\/5 {
  background-color: rgb(113 63 18 / 0.05);
}
.bg-yellow-900\/50 {
  background-color: rgb(113 63 18 / 0.5);
}
.bg-yellow-900\/60 {
  background-color: rgb(113 63 18 / 0.6);
}
.bg-yellow-900\/70 {
  background-color: rgb(113 63 18 / 0.7);
}
.bg-yellow-900\/80 {
  background-color: rgb(113 63 18 / 0.8);
}
.bg-yellow-900\/90 {
  background-color: rgb(113 63 18 / 0.9);
}
.bg-yellow-950 {
  --tw-bg-opacity: 1;
  background-color: rgb(66 32 6 / var(--tw-bg-opacity, 1));
}
.bg-yellow-950\/10 {
  background-color: rgb(66 32 6 / 0.1);
}
.bg-yellow-950\/20 {
  background-color: rgb(66 32 6 / 0.2);
}
.bg-yellow-950\/30 {
  background-color: rgb(66 32 6 / 0.3);
}
.bg-yellow-950\/40 {
  background-color: rgb(66 32 6 / 0.4);
}
.bg-yellow-950\/5 {
  background-color: rgb(66 32 6 / 0.05);
}
.bg-yellow-950\/50 {
  background-color: rgb(66 32 6 / 0.5);
}
.bg-yellow-950\/60 {
  background-color: rgb(66 32 6 / 0.6);
}
.bg-yellow-950\/70 {
  background-color: rgb(66 32 6 / 0.7);
}
.bg-yellow-950\/80 {
  background-color: rgb(66 32 6 / 0.8);
}
.bg-yellow-950\/90 {
  background-color: rgb(66 32 6 / 0.9);
}
.bg-zinc-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(244 244 245 / var(--tw-bg-opacity, 1));
}
.bg-zinc-100\/10 {
  background-color: rgb(244 244 245 / 0.1);
}
.bg-zinc-100\/20 {
  background-color: rgb(244 244 245 / 0.2);
}
.bg-zinc-100\/30 {
  background-color: rgb(244 244 245 / 0.3);
}
.bg-zinc-100\/40 {
  background-color: rgb(244 244 245 / 0.4);
}
.bg-zinc-100\/5 {
  background-color: rgb(244 244 245 / 0.05);
}
.bg-zinc-100\/50 {
  background-color: rgb(244 244 245 / 0.5);
}
.bg-zinc-100\/60 {
  background-color: rgb(244 244 245 / 0.6);
}
.bg-zinc-100\/70 {
  background-color: rgb(244 244 245 / 0.7);
}
.bg-zinc-100\/80 {
  background-color: rgb(244 244 245 / 0.8);
}
.bg-zinc-100\/90 {
  background-color: rgb(244 244 245 / 0.9);
}
.bg-zinc-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(228 228 231 / var(--tw-bg-opacity, 1));
}
.bg-zinc-200\/10 {
  background-color: rgb(228 228 231 / 0.1);
}
.bg-zinc-200\/20 {
  background-color: rgb(228 228 231 / 0.2);
}
.bg-zinc-200\/30 {
  background-color: rgb(228 228 231 / 0.3);
}
.bg-zinc-200\/40 {
  background-color: rgb(228 228 231 / 0.4);
}
.bg-zinc-200\/5 {
  background-color: rgb(228 228 231 / 0.05);
}
.bg-zinc-200\/50 {
  background-color: rgb(228 228 231 / 0.5);
}
.bg-zinc-200\/60 {
  background-color: rgb(228 228 231 / 0.6);
}
.bg-zinc-200\/70 {
  background-color: rgb(228 228 231 / 0.7);
}
.bg-zinc-200\/80 {
  background-color: rgb(228 228 231 / 0.8);
}
.bg-zinc-200\/90 {
  background-color: rgb(228 228 231 / 0.9);
}
.bg-zinc-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(212 212 216 / var(--tw-bg-opacity, 1));
}
.bg-zinc-300\/10 {
  background-color: rgb(212 212 216 / 0.1);
}
.bg-zinc-300\/20 {
  background-color: rgb(212 212 216 / 0.2);
}
.bg-zinc-300\/30 {
  background-color: rgb(212 212 216 / 0.3);
}
.bg-zinc-300\/40 {
  background-color: rgb(212 212 216 / 0.4);
}
.bg-zinc-300\/5 {
  background-color: rgb(212 212 216 / 0.05);
}
.bg-zinc-300\/50 {
  background-color: rgb(212 212 216 / 0.5);
}
.bg-zinc-300\/60 {
  background-color: rgb(212 212 216 / 0.6);
}
.bg-zinc-300\/70 {
  background-color: rgb(212 212 216 / 0.7);
}
.bg-zinc-300\/80 {
  background-color: rgb(212 212 216 / 0.8);
}
.bg-zinc-300\/90 {
  background-color: rgb(212 212 216 / 0.9);
}
.bg-zinc-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(161 161 170 / var(--tw-bg-opacity, 1));
}
.bg-zinc-400\/10 {
  background-color: rgb(161 161 170 / 0.1);
}
.bg-zinc-400\/20 {
  background-color: rgb(161 161 170 / 0.2);
}
.bg-zinc-400\/30 {
  background-color: rgb(161 161 170 / 0.3);
}
.bg-zinc-400\/40 {
  background-color: rgb(161 161 170 / 0.4);
}
.bg-zinc-400\/5 {
  background-color: rgb(161 161 170 / 0.05);
}
.bg-zinc-400\/50 {
  background-color: rgb(161 161 170 / 0.5);
}
.bg-zinc-400\/60 {
  background-color: rgb(161 161 170 / 0.6);
}
.bg-zinc-400\/70 {
  background-color: rgb(161 161 170 / 0.7);
}
.bg-zinc-400\/80 {
  background-color: rgb(161 161 170 / 0.8);
}
.bg-zinc-400\/90 {
  background-color: rgb(161 161 170 / 0.9);
}
.bg-zinc-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
}
.bg-zinc-50\/10 {
  background-color: rgb(250 250 250 / 0.1);
}
.bg-zinc-50\/20 {
  background-color: rgb(250 250 250 / 0.2);
}
.bg-zinc-50\/30 {
  background-color: rgb(250 250 250 / 0.3);
}
.bg-zinc-50\/40 {
  background-color: rgb(250 250 250 / 0.4);
}
.bg-zinc-50\/5 {
  background-color: rgb(250 250 250 / 0.05);
}
.bg-zinc-50\/50 {
  background-color: rgb(250 250 250 / 0.5);
}
.bg-zinc-50\/60 {
  background-color: rgb(250 250 250 / 0.6);
}
.bg-zinc-50\/70 {
  background-color: rgb(250 250 250 / 0.7);
}
.bg-zinc-50\/80 {
  background-color: rgb(250 250 250 / 0.8);
}
.bg-zinc-50\/90 {
  background-color: rgb(250 250 250 / 0.9);
}
.bg-zinc-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(113 113 122 / var(--tw-bg-opacity, 1));
}
.bg-zinc-500\/10 {
  background-color: rgb(113 113 122 / 0.1);
}
.bg-zinc-500\/20 {
  background-color: rgb(113 113 122 / 0.2);
}
.bg-zinc-500\/30 {
  background-color: rgb(113 113 122 / 0.3);
}
.bg-zinc-500\/40 {
  background-color: rgb(113 113 122 / 0.4);
}
.bg-zinc-500\/5 {
  background-color: rgb(113 113 122 / 0.05);
}
.bg-zinc-500\/50 {
  background-color: rgb(113 113 122 / 0.5);
}
.bg-zinc-500\/60 {
  background-color: rgb(113 113 122 / 0.6);
}
.bg-zinc-500\/70 {
  background-color: rgb(113 113 122 / 0.7);
}
.bg-zinc-500\/80 {
  background-color: rgb(113 113 122 / 0.8);
}
.bg-zinc-500\/90 {
  background-color: rgb(113 113 122 / 0.9);
}
.bg-zinc-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(82 82 91 / var(--tw-bg-opacity, 1));
}
.bg-zinc-600\/10 {
  background-color: rgb(82 82 91 / 0.1);
}
.bg-zinc-600\/20 {
  background-color: rgb(82 82 91 / 0.2);
}
.bg-zinc-600\/30 {
  background-color: rgb(82 82 91 / 0.3);
}
.bg-zinc-600\/40 {
  background-color: rgb(82 82 91 / 0.4);
}
.bg-zinc-600\/5 {
  background-color: rgb(82 82 91 / 0.05);
}
.bg-zinc-600\/50 {
  background-color: rgb(82 82 91 / 0.5);
}
.bg-zinc-600\/60 {
  background-color: rgb(82 82 91 / 0.6);
}
.bg-zinc-600\/70 {
  background-color: rgb(82 82 91 / 0.7);
}
.bg-zinc-600\/80 {
  background-color: rgb(82 82 91 / 0.8);
}
.bg-zinc-600\/90 {
  background-color: rgb(82 82 91 / 0.9);
}
.bg-zinc-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(63 63 70 / var(--tw-bg-opacity, 1));
}
.bg-zinc-700\/10 {
  background-color: rgb(63 63 70 / 0.1);
}
.bg-zinc-700\/20 {
  background-color: rgb(63 63 70 / 0.2);
}
.bg-zinc-700\/30 {
  background-color: rgb(63 63 70 / 0.3);
}
.bg-zinc-700\/40 {
  background-color: rgb(63 63 70 / 0.4);
}
.bg-zinc-700\/5 {
  background-color: rgb(63 63 70 / 0.05);
}
.bg-zinc-700\/50 {
  background-color: rgb(63 63 70 / 0.5);
}
.bg-zinc-700\/60 {
  background-color: rgb(63 63 70 / 0.6);
}
.bg-zinc-700\/70 {
  background-color: rgb(63 63 70 / 0.7);
}
.bg-zinc-700\/80 {
  background-color: rgb(63 63 70 / 0.8);
}
.bg-zinc-700\/90 {
  background-color: rgb(63 63 70 / 0.9);
}
.bg-zinc-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(39 39 42 / var(--tw-bg-opacity, 1));
}
.bg-zinc-800\/10 {
  background-color: rgb(39 39 42 / 0.1);
}
.bg-zinc-800\/20 {
  background-color: rgb(39 39 42 / 0.2);
}
.bg-zinc-800\/30 {
  background-color: rgb(39 39 42 / 0.3);
}
.bg-zinc-800\/40 {
  background-color: rgb(39 39 42 / 0.4);
}
.bg-zinc-800\/5 {
  background-color: rgb(39 39 42 / 0.05);
}
.bg-zinc-800\/50 {
  background-color: rgb(39 39 42 / 0.5);
}
.bg-zinc-800\/60 {
  background-color: rgb(39 39 42 / 0.6);
}
.bg-zinc-800\/70 {
  background-color: rgb(39 39 42 / 0.7);
}
.bg-zinc-800\/80 {
  background-color: rgb(39 39 42 / 0.8);
}
.bg-zinc-800\/90 {
  background-color: rgb(39 39 42 / 0.9);
}
.bg-zinc-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(24 24 27 / var(--tw-bg-opacity, 1));
}
.bg-zinc-900\/10 {
  background-color: rgb(24 24 27 / 0.1);
}
.bg-zinc-900\/20 {
  background-color: rgb(24 24 27 / 0.2);
}
.bg-zinc-900\/30 {
  background-color: rgb(24 24 27 / 0.3);
}
.bg-zinc-900\/40 {
  background-color: rgb(24 24 27 / 0.4);
}
.bg-zinc-900\/5 {
  background-color: rgb(24 24 27 / 0.05);
}
.bg-zinc-900\/50 {
  background-color: rgb(24 24 27 / 0.5);
}
.bg-zinc-900\/60 {
  background-color: rgb(24 24 27 / 0.6);
}
.bg-zinc-900\/70 {
  background-color: rgb(24 24 27 / 0.7);
}
.bg-zinc-900\/80 {
  background-color: rgb(24 24 27 / 0.8);
}
.bg-zinc-900\/90 {
  background-color: rgb(24 24 27 / 0.9);
}
.bg-zinc-950 {
  --tw-bg-opacity: 1;
  background-color: rgb(9 9 11 / var(--tw-bg-opacity, 1));
}
.bg-zinc-950\/10 {
  background-color: rgb(9 9 11 / 0.1);
}
.bg-zinc-950\/20 {
  background-color: rgb(9 9 11 / 0.2);
}
.bg-zinc-950\/30 {
  background-color: rgb(9 9 11 / 0.3);
}
.bg-zinc-950\/40 {
  background-color: rgb(9 9 11 / 0.4);
}
.bg-zinc-950\/5 {
  background-color: rgb(9 9 11 / 0.05);
}
.bg-zinc-950\/50 {
  background-color: rgb(9 9 11 / 0.5);
}
.bg-zinc-950\/60 {
  background-color: rgb(9 9 11 / 0.6);
}
.bg-zinc-950\/70 {
  background-color: rgb(9 9 11 / 0.7);
}
.bg-zinc-950\/80 {
  background-color: rgb(9 9 11 / 0.8);
}
.bg-zinc-950\/90 {
  background-color: rgb(9 9 11 / 0.9);
}
.bg-opacity-80 {
  --tw-bg-opacity: 0.8;
}
.bg-\[conic-gradient\(red\2c orange\2c yellow\2c green\2c blue\2c indigo\2c violet\2c red\)\] {
  background-image: conic-gradient(red,orange,yellow,green,blue,indigo,violet,red);
}
.bg-\[linear-gradient\(var\(--angle\)\2c var\(--from\)_0\%\2c var\(--from\)_calc\(var\(--center\)-var\(--feather\)\)\2c var\(--to\)_calc\(var\(--center\)\+var\(--feather\)\)\2c var\(--to\)_calc\(100\%-var\(--feather\)\)\2c var\(--to\)_100\%\)\] {
  background-image: linear-gradient(var(--angle),var(--from) 0%,var(--from) calc(var(--center) - var(--feather)),var(--to) calc(var(--center) + var(--feather)),var(--to) calc(100% - var(--feather)),var(--to) 100%);
}
.bg-\[radial-gradient\(circle_at_var\(--cx\)_var\(--cy\)\2c var\(--from\)_0\%\2c var\(--from\)_calc\(var\(--center\)-var\(--feather\)\)\2c var\(--to\)_calc\(var\(--center\)\+var\(--feather\)\)\2c var\(--to\)_100\%\)\] {
  background-image: radial-gradient(circle at var(--cx) var(--cy),var(--from) 0%,var(--from) calc(var(--center) - var(--feather)),var(--to) calc(var(--center) + var(--feather)),var(--to) 100%);
}
.bg-\[url\(\'\$\{bg\.src\.base\.base\}\'\)\] {
  background-image: url('${bg.src.base.base}');
}
.bg-\[url\(\'\$\{bg\.src\}\'\)\] {
  background-image: url('${bg.src}');
}
.bg-\[url\(\'https\:\/\/randomuser\.me\/api\/portraits\/men\/14\.jpg\'\)\] {
  background-image: url('https://randomuser.me/api/portraits/men/14.jpg');
}
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.bg-none {
  background-image: none;
}
.from-\[\#1877F2\] {
  --tw-gradient-from: #1877F2 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(24 119 242 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#7A8CFF\] {
  --tw-gradient-from: #7A8CFF var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(122 140 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-100 {
  --tw-gradient-from: #dbeafe var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(219 234 254 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-500 {
  --tw-gradient-from: #3b82f6 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(59 130 246 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-400 {
  --tw-gradient-from: #c084fc var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(192 132 252 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-red-500 {
  --tw-gradient-from: #ef4444 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(239 68 68 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-purple-50 {
  --tw-gradient-to: rgb(250 245 255 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #faf5ff var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-yellow-500 {
  --tw-gradient-to: rgb(234 179 8 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #eab308 var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.to-\[\#5CA9FB\] {
  --tw-gradient-to: #5CA9FB var(--tw-gradient-to-position);
}
.to-\[\#FFB6EA\] {
  --tw-gradient-to: #FFB6EA var(--tw-gradient-to-position);
}
.to-blue-500 {
  --tw-gradient-to: #3b82f6 var(--tw-gradient-to-position);
}
.to-pink-100 {
  --tw-gradient-to: #fce7f3 var(--tw-gradient-to-position);
}
.to-pink-500 {
  --tw-gradient-to: #ec4899 var(--tw-gradient-to-position);
}
.to-purple-500 {
  --tw-gradient-to: #a855f7 var(--tw-gradient-to-position);
}
.bg-contain {
  background-size: contain;
}
.bg-cover {
  background-size: cover;
}
.bg-clip-border {
  background-clip: border-box;
}
.bg-clip-padding {
  background-clip: padding-box;
}
.bg-clip-text {
  -webkit-background-clip: text;
          background-clip: text;
}
.bg-\[position\:-100px_-100px\] {
  background-position: -100px -100px;
}
.bg-center {
  background-position: center;
}
.bg-no-repeat {
  background-repeat: no-repeat;
}
.fill-current {
  fill: currentColor;
}
.fill-gray-800 {
  fill: #1f2937;
}
.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-0 {
  padding: 0px;
}
.p-1 {
  padding: 0.25rem;
}
.p-10 {
  padding: 2.5rem;
}
.p-11 {
  padding: 2.75rem;
}
.p-12 {
  padding: 3rem;
}
.p-14 {
  padding: 3.5rem;
}
.p-16 {
  padding: 4rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-20 {
  padding: 5rem;
}
.p-24 {
  padding: 6rem;
}
.p-28 {
  padding: 7rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-32 {
  padding: 8rem;
}
.p-36 {
  padding: 9rem;
}
.p-4 {
  padding: 1rem;
}
.p-40 {
  padding: 10rem;
}
.p-44 {
  padding: 11rem;
}
.p-48 {
  padding: 12rem;
}
.p-5 {
  padding: 1.25rem;
}
.p-52 {
  padding: 13rem;
}
.p-56 {
  padding: 14rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-60 {
  padding: 15rem;
}
.p-64 {
  padding: 16rem;
}
.p-7 {
  padding: 1.75rem;
}
.p-72 {
  padding: 18rem;
}
.p-8 {
  padding: 2rem;
}
.p-80 {
  padding: 20rem;
}
.p-9 {
  padding: 2.25rem;
}
.p-96 {
  padding: 24rem;
}
.p-\[1px\] {
  padding: 1px;
}
.p-\[var\(--p\)\] {
  padding: var(--p);
}
.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}
.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.px-11 {
  padding-left: 2.75rem;
  padding-right: 2.75rem;
}
.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}
.px-14 {
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}
.px-16 {
  padding-left: 4rem;
  padding-right: 4rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.px-20 {
  padding-left: 5rem;
  padding-right: 5rem;
}
.px-24 {
  padding-left: 6rem;
  padding-right: 6rem;
}
.px-28 {
  padding-left: 7rem;
  padding-right: 7rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-32 {
  padding-left: 8rem;
  padding-right: 8rem;
}
.px-36 {
  padding-left: 9rem;
  padding-right: 9rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-40 {
  padding-left: 10rem;
  padding-right: 10rem;
}
.px-44 {
  padding-left: 11rem;
  padding-right: 11rem;
}
.px-48 {
  padding-left: 12rem;
  padding-right: 12rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-52 {
  padding-left: 13rem;
  padding-right: 13rem;
}
.px-56 {
  padding-left: 14rem;
  padding-right: 14rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-60 {
  padding-left: 15rem;
  padding-right: 15rem;
}
.px-64 {
  padding-left: 16rem;
  padding-right: 16rem;
}
.px-7 {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}
.px-72 {
  padding-left: 18rem;
  padding-right: 18rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.px-80 {
  padding-left: 20rem;
  padding-right: 20rem;
}
.px-9 {
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}
.px-96 {
  padding-left: 24rem;
  padding-right: 24rem;
}
.px-\[1rem\] {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-\[var\(--px\)\] {
  padding-left: var(--px);
  padding-right: var(--px);
}
.py-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}
.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-11 {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-14 {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.py-28 {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.py-36 {
  padding-top: 9rem;
  padding-bottom: 9rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-40 {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.py-44 {
  padding-top: 11rem;
  padding-bottom: 11rem;
}
.py-48 {
  padding-top: 12rem;
  padding-bottom: 12rem;
}
.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-52 {
  padding-top: 13rem;
  padding-bottom: 13rem;
}
.py-56 {
  padding-top: 14rem;
  padding-bottom: 14rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-60 {
  padding-top: 15rem;
  padding-bottom: 15rem;
}
.py-64 {
  padding-top: 16rem;
  padding-bottom: 16rem;
}
.py-7 {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}
.py-72 {
  padding-top: 18rem;
  padding-bottom: 18rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-80 {
  padding-top: 20rem;
  padding-bottom: 20rem;
}
.py-9 {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}
.py-96 {
  padding-top: 24rem;
  padding-bottom: 24rem;
}
.py-\[0\.25rem\] {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-\[0\.5rem\] {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-\[18px\] {
  padding-top: 18px;
  padding-bottom: 18px;
}
.py-\[var\(--py\)\] {
  padding-top: var(--py);
  padding-bottom: var(--py);
}
.pb-0 {
  padding-bottom: 0px;
}
.pb-1 {
  padding-bottom: 0.25rem;
}
.pb-10 {
  padding-bottom: 2.5rem;
}
.pb-11 {
  padding-bottom: 2.75rem;
}
.pb-12 {
  padding-bottom: 3rem;
}
.pb-14 {
  padding-bottom: 3.5rem;
}
.pb-16 {
  padding-bottom: 4rem;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.pb-20 {
  padding-bottom: 5rem;
}
.pb-24 {
  padding-bottom: 6rem;
}
.pb-28 {
  padding-bottom: 7rem;
}
.pb-3 {
  padding-bottom: 0.75rem;
}
.pb-32 {
  padding-bottom: 8rem;
}
.pb-36 {
  padding-bottom: 9rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pb-40 {
  padding-bottom: 10rem;
}
.pb-44 {
  padding-bottom: 11rem;
}
.pb-48 {
  padding-bottom: 12rem;
}
.pb-5 {
  padding-bottom: 1.25rem;
}
.pb-52 {
  padding-bottom: 13rem;
}
.pb-56 {
  padding-bottom: 14rem;
}
.pb-6 {
  padding-bottom: 1.5rem;
}
.pb-60 {
  padding-bottom: 15rem;
}
.pb-64 {
  padding-bottom: 16rem;
}
.pb-7 {
  padding-bottom: 1.75rem;
}
.pb-72 {
  padding-bottom: 18rem;
}
.pb-8 {
  padding-bottom: 2rem;
}
.pb-80 {
  padding-bottom: 20rem;
}
.pb-9 {
  padding-bottom: 2.25rem;
}
.pb-96 {
  padding-bottom: 24rem;
}
.pb-\[var\(--pb\)\] {
  padding-bottom: var(--pb);
}
.pl-0 {
  padding-left: 0px;
}
.pl-1 {
  padding-left: 0.25rem;
}
.pl-10 {
  padding-left: 2.5rem;
}
.pl-11 {
  padding-left: 2.75rem;
}
.pl-12 {
  padding-left: 3rem;
}
.pl-14 {
  padding-left: 3.5rem;
}
.pl-16 {
  padding-left: 4rem;
}
.pl-2 {
  padding-left: 0.5rem;
}
.pl-20 {
  padding-left: 5rem;
}
.pl-24 {
  padding-left: 6rem;
}
.pl-28 {
  padding-left: 7rem;
}
.pl-3 {
  padding-left: 0.75rem;
}
.pl-32 {
  padding-left: 8rem;
}
.pl-36 {
  padding-left: 9rem;
}
.pl-4 {
  padding-left: 1rem;
}
.pl-40 {
  padding-left: 10rem;
}
.pl-44 {
  padding-left: 11rem;
}
.pl-48 {
  padding-left: 12rem;
}
.pl-5 {
  padding-left: 1.25rem;
}
.pl-52 {
  padding-left: 13rem;
}
.pl-56 {
  padding-left: 14rem;
}
.pl-6 {
  padding-left: 1.5rem;
}
.pl-60 {
  padding-left: 15rem;
}
.pl-64 {
  padding-left: 16rem;
}
.pl-7 {
  padding-left: 1.75rem;
}
.pl-72 {
  padding-left: 18rem;
}
.pl-8 {
  padding-left: 2rem;
}
.pl-80 {
  padding-left: 20rem;
}
.pl-9 {
  padding-left: 2.25rem;
}
.pl-96 {
  padding-left: 24rem;
}
.pl-\[var\(--pl\)\] {
  padding-left: var(--pl);
}
.pr-0 {
  padding-right: 0px;
}
.pr-1 {
  padding-right: 0.25rem;
}
.pr-10 {
  padding-right: 2.5rem;
}
.pr-11 {
  padding-right: 2.75rem;
}
.pr-12 {
  padding-right: 3rem;
}
.pr-14 {
  padding-right: 3.5rem;
}
.pr-16 {
  padding-right: 4rem;
}
.pr-2 {
  padding-right: 0.5rem;
}
.pr-20 {
  padding-right: 5rem;
}
.pr-24 {
  padding-right: 6rem;
}
.pr-28 {
  padding-right: 7rem;
}
.pr-3 {
  padding-right: 0.75rem;
}
.pr-32 {
  padding-right: 8rem;
}
.pr-36 {
  padding-right: 9rem;
}
.pr-4 {
  padding-right: 1rem;
}
.pr-40 {
  padding-right: 10rem;
}
.pr-44 {
  padding-right: 11rem;
}
.pr-48 {
  padding-right: 12rem;
}
.pr-5 {
  padding-right: 1.25rem;
}
.pr-52 {
  padding-right: 13rem;
}
.pr-56 {
  padding-right: 14rem;
}
.pr-6 {
  padding-right: 1.5rem;
}
.pr-60 {
  padding-right: 15rem;
}
.pr-64 {
  padding-right: 16rem;
}
.pr-7 {
  padding-right: 1.75rem;
}
.pr-72 {
  padding-right: 18rem;
}
.pr-8 {
  padding-right: 2rem;
}
.pr-80 {
  padding-right: 20rem;
}
.pr-9 {
  padding-right: 2.25rem;
}
.pr-96 {
  padding-right: 24rem;
}
.pr-\[var\(--pr\)\] {
  padding-right: var(--pr);
}
.pt-0 {
  padding-top: 0px;
}
.pt-1 {
  padding-top: 0.25rem;
}
.pt-10 {
  padding-top: 2.5rem;
}
.pt-11 {
  padding-top: 2.75rem;
}
.pt-12 {
  padding-top: 3rem;
}
.pt-14 {
  padding-top: 3.5rem;
}
.pt-16 {
  padding-top: 4rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pt-20 {
  padding-top: 5rem;
}
.pt-24 {
  padding-top: 6rem;
}
.pt-28 {
  padding-top: 7rem;
}
.pt-3 {
  padding-top: 0.75rem;
}
.pt-32 {
  padding-top: 8rem;
}
.pt-36 {
  padding-top: 9rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-40 {
  padding-top: 10rem;
}
.pt-44 {
  padding-top: 11rem;
}
.pt-48 {
  padding-top: 12rem;
}
.pt-5 {
  padding-top: 1.25rem;
}
.pt-52 {
  padding-top: 13rem;
}
.pt-56 {
  padding-top: 14rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.pt-60 {
  padding-top: 15rem;
}
.pt-64 {
  padding-top: 16rem;
}
.pt-7 {
  padding-top: 1.75rem;
}
.pt-72 {
  padding-top: 18rem;
}
.pt-8 {
  padding-top: 2rem;
}
.pt-80 {
  padding-top: 20rem;
}
.pt-9 {
  padding-top: 2.25rem;
}
.pt-96 {
  padding-top: 24rem;
}
.pt-\[var\(--pt\)\] {
  padding-top: var(--pt);
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}
.font-arial {
  font-family: Arial, Helvetica, sans-serif;
}
.font-assistant {
  font-family: Assistant, sans-serif;
}
.font-dancingscript {
  font-family: Dancing Script, cursive;
}
.font-firacode {
  font-family: Fira Code, monospace;
}
.font-frankRuhlLibre {
  font-family: Frank Ruhl Libre, serif;
}
.font-jetbrains {
  font-family: JetBrains Mono, monospace;
}
.font-lato {
  font-family: Lato, sans-serif;
}
.font-lobster {
  font-family: Lobster, cursive;
}
.font-lobsterTwo {
  font-family: Lobster Two, cursive;
}
.font-lora {
  font-family: Lora, serif;
}
.font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.font-montserrat {
  font-family: Montserrat, sans-serif;
}
.font-opensans {
  font-family: Open Sans, sans-serif;
}
.font-oswald {
  font-family: Oswald, sans-serif;
}
.font-pacifico {
  font-family: Pacifico, cursive;
}
.font-poppins {
  font-family: Poppins, sans-serif;
}
.font-raleway {
  font-family: Raleway, sans-serif;
}
.font-roboto {
  font-family: Roboto, sans-serif;
}
.font-sans {
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.font-serif {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}
.text-2xl {
  font-size: 1.5rem;
}
.text-3xl {
  font-size: 1.875rem;
}
.text-4xl {
  font-size: 2.25rem;
}
.text-5xl {
  font-size: 3rem;
}
.text-6xl {
  font-size: 4rem;
}
.text-7xl {
  font-size: 4.5rem;
  line-height: 1;
}
.text-8xl {
  font-size: 6rem;
  line-height: 1;
}
.text-9xl {
  font-size: 8rem;
  line-height: 1;
}
.text-\[0\.75rem\] {
  font-size: 0.75rem;
}
.text-\[19px\] {
  font-size: 19px;
}
.text-\[48px\] {
  font-size: 48px;
}
.text-base {
  font-size: 1rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-sm {
  font-size: .875rem;
}
.text-xl {
  font-size: 1.25rem;
}
.text-xs {
  font-size: .75rem;
}
.font-\[400\] {
  font-weight: 400;
}
.font-\[700\] {
  font-weight: 700;
}
.font-\[var\(--font-family\)\] {
  font-weight: var(--font-family);
}
.font-\[var\(--font-weight\)\] {
  font-weight: var(--font-weight);
}
.font-black {
  font-weight: 900;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}
.font-light {
  font-weight: 300;
}
.font-medium {
  font-weight: 500;
}
.font-normal {
  font-weight: 400;
}
.font-semibold {
  font-weight: 600;
}
.font-thin {
  font-weight: 100;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.capitalize {
  text-transform: capitalize;
}
.italic {
  font-style: italic;
}
.ordinal {
  --tw-ordinal: ordinal;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
.slashed-zero {
  --tw-slashed-zero: slashed-zero;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
.lining-nums {
  --tw-numeric-figure: lining-nums;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
.oldstyle-nums {
  --tw-numeric-figure: oldstyle-nums;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
.proportional-nums {
  --tw-numeric-spacing: proportional-nums;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
.tabular-nums {
  --tw-numeric-spacing: tabular-nums;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
.diagonal-fractions {
  --tw-numeric-fraction: diagonal-fractions;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
.stacked-fractions {
  --tw-numeric-fraction: stacked-fractions;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
.leading-6 {
  line-height: 1.5rem;
}
.leading-\[1\.05\] {
  line-height: 1.05;
}
.leading-\[1\.4\] {
  line-height: 1.4;
}
.leading-none {
  line-height: 1;
}
.leading-normal {
  line-height: 1.5;
}
.leading-tight {
  line-height: 1.25;
}
.tracking-\[0\.06em\] {
  letter-spacing: 0.06em;
}
.tracking-\[0\.12em\] {
  letter-spacing: 0.12em;
}
.tracking-\[1\.2\] {
  letter-spacing: 1.2;
}
.tracking-normal {
  letter-spacing: 0em;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
.tracking-tighter {
  letter-spacing: -0.05em;
}
.tracking-wide {
  letter-spacing: 0.025em;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.tracking-widest {
  letter-spacing: 0.1em;
}
.text-\[\#1A535C\] {
  --tw-text-opacity: 1;
  color: rgb(26 83 92 / var(--tw-text-opacity, 1));
}
.text-\[\#222966\] {
  --tw-text-opacity: 1;
  color: rgb(34 41 102 / var(--tw-text-opacity, 1));
}
.text-\[\#231e6b\] {
  --tw-text-opacity: 1;
  color: rgb(35 30 107 / var(--tw-text-opacity, 1));
}
.text-\[\#23275b\] {
  --tw-text-opacity: 1;
  color: rgb(35 39 91 / var(--tw-text-opacity, 1));
}
.text-\[\#3f4866\] {
  --tw-text-opacity: 1;
  color: rgb(63 72 102 / var(--tw-text-opacity, 1));
}
.text-\[\#444c66\] {
  --tw-text-opacity: 1;
  color: rgb(68 76 102 / var(--tw-text-opacity, 1));
}
.text-\[\#4ECDC4\] {
  --tw-text-opacity: 1;
  color: rgb(78 205 196 / var(--tw-text-opacity, 1));
}
.text-\[\#505bc8\] {
  --tw-text-opacity: 1;
  color: rgb(80 91 200 / var(--tw-text-opacity, 1));
}
.text-\[\#5871b3\] {
  --tw-text-opacity: 1;
  color: rgb(88 113 179 / var(--tw-text-opacity, 1));
}
.text-\[\#7A8CFF\] {
  --tw-text-opacity: 1;
  color: rgb(122 140 255 / var(--tw-text-opacity, 1));
}
.text-\[\#7a9bff\] {
  --tw-text-opacity: 1;
  color: rgb(122 155 255 / var(--tw-text-opacity, 1));
}
.text-\[\#B07CFF\] {
  --tw-text-opacity: 1;
  color: rgb(176 124 255 / var(--tw-text-opacity, 1));
}
.text-\[\#FF6B6B\] {
  --tw-text-opacity: 1;
  color: rgb(255 107 107 / var(--tw-text-opacity, 1));
}
.text-\[var\(--font-size\)\] {
  color: var(--font-size);
}
.text-\[var\(--text\)\] {
  color: var(--text);
}
.text-\[var\(--text-\$\{bp\}-\$\{state\}\)\] {
  color: var(--text-${bp}-${state});
}
.text-\[var\(--text-align\)\] {
  color: var(--text-align);
}
.text-\[var\(--text-color\)\] {
  color: var(--text-color);
}
.text-\[var\(--text-decoration\)\] {
  color: var(--text-decoration);
}
.text-\[var\(--text-shadow\)\] {
  color: var(--text-shadow);
}
.text-\[var\(--text-transform\)\] {
  color: var(--text-transform);
}
.text-accent {
  color: var(--accent);
}
.text-amber-100 {
  --tw-text-opacity: 1;
  color: rgb(254 243 199 / var(--tw-text-opacity, 1));
}
.text-amber-200 {
  --tw-text-opacity: 1;
  color: rgb(253 230 138 / var(--tw-text-opacity, 1));
}
.text-amber-300 {
  --tw-text-opacity: 1;
  color: rgb(252 211 77 / var(--tw-text-opacity, 1));
}
.text-amber-400 {
  --tw-text-opacity: 1;
  color: rgb(251 191 36 / var(--tw-text-opacity, 1));
}
.text-amber-50 {
  --tw-text-opacity: 1;
  color: rgb(255 251 235 / var(--tw-text-opacity, 1));
}
.text-amber-500 {
  --tw-text-opacity: 1;
  color: rgb(245 158 11 / var(--tw-text-opacity, 1));
}
.text-amber-600 {
  --tw-text-opacity: 1;
  color: rgb(217 119 6 / var(--tw-text-opacity, 1));
}
.text-amber-700 {
  --tw-text-opacity: 1;
  color: rgb(180 83 9 / var(--tw-text-opacity, 1));
}
.text-amber-800 {
  --tw-text-opacity: 1;
  color: rgb(146 64 14 / var(--tw-text-opacity, 1));
}
.text-amber-900 {
  --tw-text-opacity: 1;
  color: rgb(120 53 15 / var(--tw-text-opacity, 1));
}
.text-amber-950 {
  --tw-text-opacity: 1;
  color: rgb(69 26 3 / var(--tw-text-opacity, 1));
}
.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.text-black\/20 {
  color: rgb(0 0 0 / 0.2);
}
.text-black\/40 {
  color: rgb(0 0 0 / 0.4);
}
.text-black\/80 {
  color: rgb(0 0 0 / 0.8);
}
.text-blue-100 {
  --tw-text-opacity: 1;
  color: rgb(219 234 254 / var(--tw-text-opacity, 1));
}
.text-blue-200 {
  --tw-text-opacity: 1;
  color: rgb(191 219 254 / var(--tw-text-opacity, 1));
}
.text-blue-300 {
  --tw-text-opacity: 1;
  color: rgb(147 197 253 / var(--tw-text-opacity, 1));
}
.text-blue-400 {
  --tw-text-opacity: 1;
  color: rgb(96 165 250 / var(--tw-text-opacity, 1));
}
.text-blue-50 {
  --tw-text-opacity: 1;
  color: rgb(239 246 255 / var(--tw-text-opacity, 1));
}
.text-blue-500 {
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / var(--tw-text-opacity, 1));
}
.text-blue-600 {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.text-blue-700 {
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / var(--tw-text-opacity, 1));
}
.text-blue-800 {
  --tw-text-opacity: 1;
  color: rgb(30 64 175 / var(--tw-text-opacity, 1));
}
.text-blue-900 {
  --tw-text-opacity: 1;
  color: rgb(30 58 138 / var(--tw-text-opacity, 1));
}
.text-blue-950 {
  --tw-text-opacity: 1;
  color: rgb(23 37 84 / var(--tw-text-opacity, 1));
}
.text-current {
  color: currentColor;
}
.text-cyan-100 {
  --tw-text-opacity: 1;
  color: rgb(207 250 254 / var(--tw-text-opacity, 1));
}
.text-cyan-200 {
  --tw-text-opacity: 1;
  color: rgb(165 243 252 / var(--tw-text-opacity, 1));
}
.text-cyan-300 {
  --tw-text-opacity: 1;
  color: rgb(103 232 249 / var(--tw-text-opacity, 1));
}
.text-cyan-400 {
  --tw-text-opacity: 1;
  color: rgb(34 211 238 / var(--tw-text-opacity, 1));
}
.text-cyan-50 {
  --tw-text-opacity: 1;
  color: rgb(236 254 255 / var(--tw-text-opacity, 1));
}
.text-cyan-500 {
  --tw-text-opacity: 1;
  color: rgb(6 182 212 / var(--tw-text-opacity, 1));
}
.text-cyan-600 {
  --tw-text-opacity: 1;
  color: rgb(8 145 178 / var(--tw-text-opacity, 1));
}
.text-cyan-700 {
  --tw-text-opacity: 1;
  color: rgb(14 116 144 / var(--tw-text-opacity, 1));
}
.text-cyan-800 {
  --tw-text-opacity: 1;
  color: rgb(21 94 117 / var(--tw-text-opacity, 1));
}
.text-cyan-900 {
  --tw-text-opacity: 1;
  color: rgb(22 78 99 / var(--tw-text-opacity, 1));
}
.text-cyan-950 {
  --tw-text-opacity: 1;
  color: rgb(8 51 68 / var(--tw-text-opacity, 1));
}
.text-destructive {
  color: var(--destructive);
}
.text-destructive-foreground {
  color: var(--destructive-foreground);
}
.text-emerald-100 {
  --tw-text-opacity: 1;
  color: rgb(209 250 229 / var(--tw-text-opacity, 1));
}
.text-emerald-200 {
  --tw-text-opacity: 1;
  color: rgb(167 243 208 / var(--tw-text-opacity, 1));
}
.text-emerald-300 {
  --tw-text-opacity: 1;
  color: rgb(110 231 183 / var(--tw-text-opacity, 1));
}
.text-emerald-400 {
  --tw-text-opacity: 1;
  color: rgb(52 211 153 / var(--tw-text-opacity, 1));
}
.text-emerald-50 {
  --tw-text-opacity: 1;
  color: rgb(236 253 245 / var(--tw-text-opacity, 1));
}
.text-emerald-500 {
  --tw-text-opacity: 1;
  color: rgb(16 185 129 / var(--tw-text-opacity, 1));
}
.text-emerald-600 {
  --tw-text-opacity: 1;
  color: rgb(5 150 105 / var(--tw-text-opacity, 1));
}
.text-emerald-700 {
  --tw-text-opacity: 1;
  color: rgb(4 120 87 / var(--tw-text-opacity, 1));
}
.text-emerald-800 {
  --tw-text-opacity: 1;
  color: rgb(6 95 70 / var(--tw-text-opacity, 1));
}
.text-emerald-900 {
  --tw-text-opacity: 1;
  color: rgb(6 78 59 / var(--tw-text-opacity, 1));
}
.text-emerald-950 {
  --tw-text-opacity: 1;
  color: rgb(2 44 34 / var(--tw-text-opacity, 1));
}
.text-foreground {
  color: var(--foreground);
}
.text-fuchsia-100 {
  --tw-text-opacity: 1;
  color: rgb(250 232 255 / var(--tw-text-opacity, 1));
}
.text-fuchsia-200 {
  --tw-text-opacity: 1;
  color: rgb(245 208 254 / var(--tw-text-opacity, 1));
}
.text-fuchsia-300 {
  --tw-text-opacity: 1;
  color: rgb(240 171 252 / var(--tw-text-opacity, 1));
}
.text-fuchsia-400 {
  --tw-text-opacity: 1;
  color: rgb(232 121 249 / var(--tw-text-opacity, 1));
}
.text-fuchsia-50 {
  --tw-text-opacity: 1;
  color: rgb(253 244 255 / var(--tw-text-opacity, 1));
}
.text-fuchsia-500 {
  --tw-text-opacity: 1;
  color: rgb(217 70 239 / var(--tw-text-opacity, 1));
}
.text-fuchsia-600 {
  --tw-text-opacity: 1;
  color: rgb(192 38 211 / var(--tw-text-opacity, 1));
}
.text-fuchsia-700 {
  --tw-text-opacity: 1;
  color: rgb(162 28 175 / var(--tw-text-opacity, 1));
}
.text-fuchsia-800 {
  --tw-text-opacity: 1;
  color: rgb(134 25 143 / var(--tw-text-opacity, 1));
}
.text-fuchsia-900 {
  --tw-text-opacity: 1;
  color: rgb(112 26 117 / var(--tw-text-opacity, 1));
}
.text-fuchsia-950 {
  --tw-text-opacity: 1;
  color: rgb(74 4 78 / var(--tw-text-opacity, 1));
}
.text-gray-100 {
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / var(--tw-text-opacity, 1));
}
.text-gray-200 {
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity, 1));
}
.text-gray-300 {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}
.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.text-gray-50 {
  --tw-text-opacity: 1;
  color: rgb(249 250 251 / var(--tw-text-opacity, 1));
}
.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.text-gray-800 {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.text-gray-950 {
  --tw-text-opacity: 1;
  color: rgb(3 7 18 / var(--tw-text-opacity, 1));
}
.text-green-100 {
  --tw-text-opacity: 1;
  color: rgb(220 252 231 / var(--tw-text-opacity, 1));
}
.text-green-200 {
  --tw-text-opacity: 1;
  color: rgb(187 247 208 / var(--tw-text-opacity, 1));
}
.text-green-300 {
  --tw-text-opacity: 1;
  color: rgb(134 239 172 / var(--tw-text-opacity, 1));
}
.text-green-400 {
  --tw-text-opacity: 1;
  color: rgb(74 222 128 / var(--tw-text-opacity, 1));
}
.text-green-50 {
  --tw-text-opacity: 1;
  color: rgb(240 253 244 / var(--tw-text-opacity, 1));
}
.text-green-500 {
  --tw-text-opacity: 1;
  color: rgb(34 197 94 / var(--tw-text-opacity, 1));
}
.text-green-600 {
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}
.text-green-700 {
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / var(--tw-text-opacity, 1));
}
.text-green-800 {
  --tw-text-opacity: 1;
  color: rgb(22 101 52 / var(--tw-text-opacity, 1));
}
.text-green-900 {
  --tw-text-opacity: 1;
  color: rgb(20 83 45 / var(--tw-text-opacity, 1));
}
.text-green-950 {
  --tw-text-opacity: 1;
  color: rgb(5 46 22 / var(--tw-text-opacity, 1));
}
.text-indigo-100 {
  --tw-text-opacity: 1;
  color: rgb(224 231 255 / var(--tw-text-opacity, 1));
}
.text-indigo-200 {
  --tw-text-opacity: 1;
  color: rgb(199 210 254 / var(--tw-text-opacity, 1));
}
.text-indigo-300 {
  --tw-text-opacity: 1;
  color: rgb(165 180 252 / var(--tw-text-opacity, 1));
}
.text-indigo-400 {
  --tw-text-opacity: 1;
  color: rgb(129 140 248 / var(--tw-text-opacity, 1));
}
.text-indigo-50 {
  --tw-text-opacity: 1;
  color: rgb(238 242 255 / var(--tw-text-opacity, 1));
}
.text-indigo-500 {
  --tw-text-opacity: 1;
  color: rgb(99 102 241 / var(--tw-text-opacity, 1));
}
.text-indigo-600 {
  --tw-text-opacity: 1;
  color: rgb(79 70 229 / var(--tw-text-opacity, 1));
}
.text-indigo-700 {
  --tw-text-opacity: 1;
  color: rgb(67 56 202 / var(--tw-text-opacity, 1));
}
.text-indigo-800 {
  --tw-text-opacity: 1;
  color: rgb(55 48 163 / var(--tw-text-opacity, 1));
}
.text-indigo-900 {
  --tw-text-opacity: 1;
  color: rgb(49 46 129 / var(--tw-text-opacity, 1));
}
.text-indigo-950 {
  --tw-text-opacity: 1;
  color: rgb(30 27 75 / var(--tw-text-opacity, 1));
}
.text-input {
  color: var(--input);
}
.text-lime-100 {
  --tw-text-opacity: 1;
  color: rgb(236 252 203 / var(--tw-text-opacity, 1));
}
.text-lime-200 {
  --tw-text-opacity: 1;
  color: rgb(217 249 157 / var(--tw-text-opacity, 1));
}
.text-lime-300 {
  --tw-text-opacity: 1;
  color: rgb(190 242 100 / var(--tw-text-opacity, 1));
}
.text-lime-400 {
  --tw-text-opacity: 1;
  color: rgb(163 230 53 / var(--tw-text-opacity, 1));
}
.text-lime-50 {
  --tw-text-opacity: 1;
  color: rgb(247 254 231 / var(--tw-text-opacity, 1));
}
.text-lime-500 {
  --tw-text-opacity: 1;
  color: rgb(132 204 22 / var(--tw-text-opacity, 1));
}
.text-lime-600 {
  --tw-text-opacity: 1;
  color: rgb(101 163 13 / var(--tw-text-opacity, 1));
}
.text-lime-700 {
  --tw-text-opacity: 1;
  color: rgb(77 124 15 / var(--tw-text-opacity, 1));
}
.text-lime-800 {
  --tw-text-opacity: 1;
  color: rgb(63 98 18 / var(--tw-text-opacity, 1));
}
.text-lime-900 {
  --tw-text-opacity: 1;
  color: rgb(54 83 20 / var(--tw-text-opacity, 1));
}
.text-lime-950 {
  --tw-text-opacity: 1;
  color: rgb(26 46 5 / var(--tw-text-opacity, 1));
}
.text-neutral-100 {
  --tw-text-opacity: 1;
  color: rgb(245 245 245 / var(--tw-text-opacity, 1));
}
.text-neutral-200 {
  --tw-text-opacity: 1;
  color: rgb(229 229 229 / var(--tw-text-opacity, 1));
}
.text-neutral-300 {
  --tw-text-opacity: 1;
  color: rgb(212 212 212 / var(--tw-text-opacity, 1));
}
.text-neutral-400 {
  --tw-text-opacity: 1;
  color: rgb(163 163 163 / var(--tw-text-opacity, 1));
}
.text-neutral-50 {
  --tw-text-opacity: 1;
  color: rgb(250 250 250 / var(--tw-text-opacity, 1));
}
.text-neutral-500 {
  --tw-text-opacity: 1;
  color: rgb(115 115 115 / var(--tw-text-opacity, 1));
}
.text-neutral-600 {
  --tw-text-opacity: 1;
  color: rgb(82 82 82 / var(--tw-text-opacity, 1));
}
.text-neutral-700 {
  --tw-text-opacity: 1;
  color: rgb(64 64 64 / var(--tw-text-opacity, 1));
}
.text-neutral-800 {
  --tw-text-opacity: 1;
  color: rgb(38 38 38 / var(--tw-text-opacity, 1));
}
.text-neutral-900 {
  --tw-text-opacity: 1;
  color: rgb(23 23 23 / var(--tw-text-opacity, 1));
}
.text-neutral-950 {
  --tw-text-opacity: 1;
  color: rgb(10 10 10 / var(--tw-text-opacity, 1));
}
.text-orange-100 {
  --tw-text-opacity: 1;
  color: rgb(255 237 213 / var(--tw-text-opacity, 1));
}
.text-orange-200 {
  --tw-text-opacity: 1;
  color: rgb(254 215 170 / var(--tw-text-opacity, 1));
}
.text-orange-300 {
  --tw-text-opacity: 1;
  color: rgb(253 186 116 / var(--tw-text-opacity, 1));
}
.text-orange-400 {
  --tw-text-opacity: 1;
  color: rgb(251 146 60 / var(--tw-text-opacity, 1));
}
.text-orange-50 {
  --tw-text-opacity: 1;
  color: rgb(255 247 237 / var(--tw-text-opacity, 1));
}
.text-orange-500 {
  --tw-text-opacity: 1;
  color: rgb(249 115 22 / var(--tw-text-opacity, 1));
}
.text-orange-600 {
  --tw-text-opacity: 1;
  color: rgb(234 88 12 / var(--tw-text-opacity, 1));
}
.text-orange-700 {
  --tw-text-opacity: 1;
  color: rgb(194 65 12 / var(--tw-text-opacity, 1));
}
.text-orange-800 {
  --tw-text-opacity: 1;
  color: rgb(154 52 18 / var(--tw-text-opacity, 1));
}
.text-orange-900 {
  --tw-text-opacity: 1;
  color: rgb(124 45 18 / var(--tw-text-opacity, 1));
}
.text-orange-950 {
  --tw-text-opacity: 1;
  color: rgb(67 20 7 / var(--tw-text-opacity, 1));
}
.text-pink-100 {
  --tw-text-opacity: 1;
  color: rgb(252 231 243 / var(--tw-text-opacity, 1));
}
.text-pink-200 {
  --tw-text-opacity: 1;
  color: rgb(251 207 232 / var(--tw-text-opacity, 1));
}
.text-pink-300 {
  --tw-text-opacity: 1;
  color: rgb(249 168 212 / var(--tw-text-opacity, 1));
}
.text-pink-400 {
  --tw-text-opacity: 1;
  color: rgb(244 114 182 / var(--tw-text-opacity, 1));
}
.text-pink-50 {
  --tw-text-opacity: 1;
  color: rgb(253 242 248 / var(--tw-text-opacity, 1));
}
.text-pink-500 {
  --tw-text-opacity: 1;
  color: rgb(236 72 153 / var(--tw-text-opacity, 1));
}
.text-pink-600 {
  --tw-text-opacity: 1;
  color: rgb(219 39 119 / var(--tw-text-opacity, 1));
}
.text-pink-700 {
  --tw-text-opacity: 1;
  color: rgb(190 24 93 / var(--tw-text-opacity, 1));
}
.text-pink-800 {
  --tw-text-opacity: 1;
  color: rgb(157 23 77 / var(--tw-text-opacity, 1));
}
.text-pink-900 {
  --tw-text-opacity: 1;
  color: rgb(131 24 67 / var(--tw-text-opacity, 1));
}
.text-pink-950 {
  --tw-text-opacity: 1;
  color: rgb(80 7 36 / var(--tw-text-opacity, 1));
}
.text-primary {
  color: var(--primary);
}
.text-primary-foreground {
  color: var(--primary-foreground);
}
.text-purple-100 {
  --tw-text-opacity: 1;
  color: rgb(243 232 255 / var(--tw-text-opacity, 1));
}
.text-purple-200 {
  --tw-text-opacity: 1;
  color: rgb(233 213 255 / var(--tw-text-opacity, 1));
}
.text-purple-300 {
  --tw-text-opacity: 1;
  color: rgb(216 180 254 / var(--tw-text-opacity, 1));
}
.text-purple-400 {
  --tw-text-opacity: 1;
  color: rgb(192 132 252 / var(--tw-text-opacity, 1));
}
.text-purple-50 {
  --tw-text-opacity: 1;
  color: rgb(250 245 255 / var(--tw-text-opacity, 1));
}
.text-purple-500 {
  --tw-text-opacity: 1;
  color: rgb(168 85 247 / var(--tw-text-opacity, 1));
}
.text-purple-600 {
  --tw-text-opacity: 1;
  color: rgb(147 51 234 / var(--tw-text-opacity, 1));
}
.text-purple-700 {
  --tw-text-opacity: 1;
  color: rgb(126 34 206 / var(--tw-text-opacity, 1));
}
.text-purple-800 {
  --tw-text-opacity: 1;
  color: rgb(107 33 168 / var(--tw-text-opacity, 1));
}
.text-purple-900 {
  --tw-text-opacity: 1;
  color: rgb(88 28 135 / var(--tw-text-opacity, 1));
}
.text-purple-950 {
  --tw-text-opacity: 1;
  color: rgb(59 7 100 / var(--tw-text-opacity, 1));
}
.text-red-100 {
  --tw-text-opacity: 1;
  color: rgb(254 226 226 / var(--tw-text-opacity, 1));
}
.text-red-200 {
  --tw-text-opacity: 1;
  color: rgb(254 202 202 / var(--tw-text-opacity, 1));
}
.text-red-300 {
  --tw-text-opacity: 1;
  color: rgb(252 165 165 / var(--tw-text-opacity, 1));
}
.text-red-400 {
  --tw-text-opacity: 1;
  color: rgb(248 113 113 / var(--tw-text-opacity, 1));
}
.text-red-50 {
  --tw-text-opacity: 1;
  color: rgb(254 242 242 / var(--tw-text-opacity, 1));
}
.text-red-500 {
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.text-red-600 {
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.text-red-700 {
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity, 1));
}
.text-red-800 {
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / var(--tw-text-opacity, 1));
}
.text-red-900 {
  --tw-text-opacity: 1;
  color: rgb(127 29 29 / var(--tw-text-opacity, 1));
}
.text-red-950 {
  --tw-text-opacity: 1;
  color: rgb(69 10 10 / var(--tw-text-opacity, 1));
}
.text-rose-100 {
  --tw-text-opacity: 1;
  color: rgb(255 228 230 / var(--tw-text-opacity, 1));
}
.text-rose-200 {
  --tw-text-opacity: 1;
  color: rgb(254 205 211 / var(--tw-text-opacity, 1));
}
.text-rose-300 {
  --tw-text-opacity: 1;
  color: rgb(253 164 175 / var(--tw-text-opacity, 1));
}
.text-rose-400 {
  --tw-text-opacity: 1;
  color: rgb(251 113 133 / var(--tw-text-opacity, 1));
}
.text-rose-50 {
  --tw-text-opacity: 1;
  color: rgb(255 241 242 / var(--tw-text-opacity, 1));
}
.text-rose-500 {
  --tw-text-opacity: 1;
  color: rgb(244 63 94 / var(--tw-text-opacity, 1));
}
.text-rose-600 {
  --tw-text-opacity: 1;
  color: rgb(225 29 72 / var(--tw-text-opacity, 1));
}
.text-rose-700 {
  --tw-text-opacity: 1;
  color: rgb(190 18 60 / var(--tw-text-opacity, 1));
}
.text-rose-800 {
  --tw-text-opacity: 1;
  color: rgb(159 18 57 / var(--tw-text-opacity, 1));
}
.text-rose-900 {
  --tw-text-opacity: 1;
  color: rgb(136 19 55 / var(--tw-text-opacity, 1));
}
.text-rose-950 {
  --tw-text-opacity: 1;
  color: rgb(76 5 25 / var(--tw-text-opacity, 1));
}
.text-secondary-foreground {
  color: var(--secondary-foreground);
}
.text-sky-100 {
  --tw-text-opacity: 1;
  color: rgb(224 242 254 / var(--tw-text-opacity, 1));
}
.text-sky-200 {
  --tw-text-opacity: 1;
  color: rgb(186 230 253 / var(--tw-text-opacity, 1));
}
.text-sky-300 {
  --tw-text-opacity: 1;
  color: rgb(125 211 252 / var(--tw-text-opacity, 1));
}
.text-sky-400 {
  --tw-text-opacity: 1;
  color: rgb(56 189 248 / var(--tw-text-opacity, 1));
}
.text-sky-50 {
  --tw-text-opacity: 1;
  color: rgb(240 249 255 / var(--tw-text-opacity, 1));
}
.text-sky-500 {
  --tw-text-opacity: 1;
  color: rgb(14 165 233 / var(--tw-text-opacity, 1));
}
.text-sky-600 {
  --tw-text-opacity: 1;
  color: rgb(2 132 199 / var(--tw-text-opacity, 1));
}
.text-sky-700 {
  --tw-text-opacity: 1;
  color: rgb(3 105 161 / var(--tw-text-opacity, 1));
}
.text-sky-800 {
  --tw-text-opacity: 1;
  color: rgb(7 89 133 / var(--tw-text-opacity, 1));
}
.text-sky-900 {
  --tw-text-opacity: 1;
  color: rgb(12 74 110 / var(--tw-text-opacity, 1));
}
.text-sky-950 {
  --tw-text-opacity: 1;
  color: rgb(8 47 73 / var(--tw-text-opacity, 1));
}
.text-slate-100 {
  --tw-text-opacity: 1;
  color: rgb(241 245 249 / var(--tw-text-opacity, 1));
}
.text-slate-200 {
  --tw-text-opacity: 1;
  color: rgb(226 232 240 / var(--tw-text-opacity, 1));
}
.text-slate-300 {
  --tw-text-opacity: 1;
  color: rgb(203 213 225 / var(--tw-text-opacity, 1));
}
.text-slate-400 {
  --tw-text-opacity: 1;
  color: rgb(148 163 184 / var(--tw-text-opacity, 1));
}
.text-slate-50 {
  --tw-text-opacity: 1;
  color: rgb(248 250 252 / var(--tw-text-opacity, 1));
}
.text-slate-500 {
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}
.text-slate-600 {
  --tw-text-opacity: 1;
  color: rgb(71 85 105 / var(--tw-text-opacity, 1));
}
.text-slate-700 {
  --tw-text-opacity: 1;
  color: rgb(51 65 85 / var(--tw-text-opacity, 1));
}
.text-slate-800 {
  --tw-text-opacity: 1;
  color: rgb(30 41 59 / var(--tw-text-opacity, 1));
}
.text-slate-900 {
  --tw-text-opacity: 1;
  color: rgb(15 23 42 / var(--tw-text-opacity, 1));
}
.text-slate-950 {
  --tw-text-opacity: 1;
  color: rgb(2 6 23 / var(--tw-text-opacity, 1));
}
.text-stone-100 {
  --tw-text-opacity: 1;
  color: rgb(245 245 244 / var(--tw-text-opacity, 1));
}
.text-stone-200 {
  --tw-text-opacity: 1;
  color: rgb(231 229 228 / var(--tw-text-opacity, 1));
}
.text-stone-300 {
  --tw-text-opacity: 1;
  color: rgb(214 211 209 / var(--tw-text-opacity, 1));
}
.text-stone-400 {
  --tw-text-opacity: 1;
  color: rgb(168 162 158 / var(--tw-text-opacity, 1));
}
.text-stone-50 {
  --tw-text-opacity: 1;
  color: rgb(250 250 249 / var(--tw-text-opacity, 1));
}
.text-stone-500 {
  --tw-text-opacity: 1;
  color: rgb(120 113 108 / var(--tw-text-opacity, 1));
}
.text-stone-600 {
  --tw-text-opacity: 1;
  color: rgb(87 83 78 / var(--tw-text-opacity, 1));
}
.text-stone-700 {
  --tw-text-opacity: 1;
  color: rgb(68 64 60 / var(--tw-text-opacity, 1));
}
.text-stone-800 {
  --tw-text-opacity: 1;
  color: rgb(41 37 36 / var(--tw-text-opacity, 1));
}
.text-stone-900 {
  --tw-text-opacity: 1;
  color: rgb(28 25 23 / var(--tw-text-opacity, 1));
}
.text-stone-950 {
  --tw-text-opacity: 1;
  color: rgb(12 10 9 / var(--tw-text-opacity, 1));
}
.text-teal-100 {
  --tw-text-opacity: 1;
  color: rgb(204 251 241 / var(--tw-text-opacity, 1));
}
.text-teal-200 {
  --tw-text-opacity: 1;
  color: rgb(153 246 228 / var(--tw-text-opacity, 1));
}
.text-teal-300 {
  --tw-text-opacity: 1;
  color: rgb(94 234 212 / var(--tw-text-opacity, 1));
}
.text-teal-400 {
  --tw-text-opacity: 1;
  color: rgb(45 212 191 / var(--tw-text-opacity, 1));
}
.text-teal-50 {
  --tw-text-opacity: 1;
  color: rgb(240 253 250 / var(--tw-text-opacity, 1));
}
.text-teal-500 {
  --tw-text-opacity: 1;
  color: rgb(20 184 166 / var(--tw-text-opacity, 1));
}
.text-teal-600 {
  --tw-text-opacity: 1;
  color: rgb(13 148 136 / var(--tw-text-opacity, 1));
}
.text-teal-700 {
  --tw-text-opacity: 1;
  color: rgb(15 118 110 / var(--tw-text-opacity, 1));
}
.text-teal-800 {
  --tw-text-opacity: 1;
  color: rgb(17 94 89 / var(--tw-text-opacity, 1));
}
.text-teal-900 {
  --tw-text-opacity: 1;
  color: rgb(19 78 74 / var(--tw-text-opacity, 1));
}
.text-teal-950 {
  --tw-text-opacity: 1;
  color: rgb(4 47 46 / var(--tw-text-opacity, 1));
}
.text-violet-100 {
  --tw-text-opacity: 1;
  color: rgb(237 233 254 / var(--tw-text-opacity, 1));
}
.text-violet-200 {
  --tw-text-opacity: 1;
  color: rgb(221 214 254 / var(--tw-text-opacity, 1));
}
.text-violet-300 {
  --tw-text-opacity: 1;
  color: rgb(196 181 253 / var(--tw-text-opacity, 1));
}
.text-violet-400 {
  --tw-text-opacity: 1;
  color: rgb(167 139 250 / var(--tw-text-opacity, 1));
}
.text-violet-50 {
  --tw-text-opacity: 1;
  color: rgb(245 243 255 / var(--tw-text-opacity, 1));
}
.text-violet-500 {
  --tw-text-opacity: 1;
  color: rgb(139 92 246 / var(--tw-text-opacity, 1));
}
.text-violet-600 {
  --tw-text-opacity: 1;
  color: rgb(124 58 237 / var(--tw-text-opacity, 1));
}
.text-violet-700 {
  --tw-text-opacity: 1;
  color: rgb(109 40 217 / var(--tw-text-opacity, 1));
}
.text-violet-800 {
  --tw-text-opacity: 1;
  color: rgb(91 33 182 / var(--tw-text-opacity, 1));
}
.text-violet-900 {
  --tw-text-opacity: 1;
  color: rgb(76 29 149 / var(--tw-text-opacity, 1));
}
.text-violet-950 {
  --tw-text-opacity: 1;
  color: rgb(46 16 101 / var(--tw-text-opacity, 1));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-yellow-100 {
  --tw-text-opacity: 1;
  color: rgb(254 249 195 / var(--tw-text-opacity, 1));
}
.text-yellow-200 {
  --tw-text-opacity: 1;
  color: rgb(254 240 138 / var(--tw-text-opacity, 1));
}
.text-yellow-300 {
  --tw-text-opacity: 1;
  color: rgb(253 224 71 / var(--tw-text-opacity, 1));
}
.text-yellow-400 {
  --tw-text-opacity: 1;
  color: rgb(250 204 21 / var(--tw-text-opacity, 1));
}
.text-yellow-50 {
  --tw-text-opacity: 1;
  color: rgb(254 252 232 / var(--tw-text-opacity, 1));
}
.text-yellow-500 {
  --tw-text-opacity: 1;
  color: rgb(234 179 8 / var(--tw-text-opacity, 1));
}
.text-yellow-600 {
  --tw-text-opacity: 1;
  color: rgb(202 138 4 / var(--tw-text-opacity, 1));
}
.text-yellow-700 {
  --tw-text-opacity: 1;
  color: rgb(161 98 7 / var(--tw-text-opacity, 1));
}
.text-yellow-800 {
  --tw-text-opacity: 1;
  color: rgb(133 77 14 / var(--tw-text-opacity, 1));
}
.text-yellow-900 {
  --tw-text-opacity: 1;
  color: rgb(113 63 18 / var(--tw-text-opacity, 1));
}
.text-yellow-950 {
  --tw-text-opacity: 1;
  color: rgb(66 32 6 / var(--tw-text-opacity, 1));
}
.text-zinc-100 {
  --tw-text-opacity: 1;
  color: rgb(244 244 245 / var(--tw-text-opacity, 1));
}
.text-zinc-200 {
  --tw-text-opacity: 1;
  color: rgb(228 228 231 / var(--tw-text-opacity, 1));
}
.text-zinc-300 {
  --tw-text-opacity: 1;
  color: rgb(212 212 216 / var(--tw-text-opacity, 1));
}
.text-zinc-400 {
  --tw-text-opacity: 1;
  color: rgb(161 161 170 / var(--tw-text-opacity, 1));
}
.text-zinc-50 {
  --tw-text-opacity: 1;
  color: rgb(250 250 250 / var(--tw-text-opacity, 1));
}
.text-zinc-500 {
  --tw-text-opacity: 1;
  color: rgb(113 113 122 / var(--tw-text-opacity, 1));
}
.text-zinc-600 {
  --tw-text-opacity: 1;
  color: rgb(82 82 91 / var(--tw-text-opacity, 1));
}
.text-zinc-700 {
  --tw-text-opacity: 1;
  color: rgb(63 63 70 / var(--tw-text-opacity, 1));
}
.text-zinc-800 {
  --tw-text-opacity: 1;
  color: rgb(39 39 42 / var(--tw-text-opacity, 1));
}
.text-zinc-900 {
  --tw-text-opacity: 1;
  color: rgb(24 24 27 / var(--tw-text-opacity, 1));
}
.text-zinc-950 {
  --tw-text-opacity: 1;
  color: rgb(9 9 11 / var(--tw-text-opacity, 1));
}
.underline {
  text-decoration-line: underline;
}
.overline {
  text-decoration-line: overline;
}
.line-through {
  text-decoration-line: line-through;
}
.no-underline {
  text-decoration-line: none;
}
.underline-offset-4 {
  text-underline-offset: 4px;
}
.accent-gray-600 {
  accent-color: #4b5563;
}
.opacity-0 {
  opacity: 0;
}
.opacity-10 {
  opacity: 0.1;
}
.opacity-100 {
  opacity: 1;
}
.opacity-20 {
  opacity: 0.2;
}
.opacity-30 {
  opacity: 0.3;
}
.opacity-40 {
  opacity: 0.4;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-60 {
  opacity: 0.6;
}
.opacity-70 {
  opacity: 0.7;
}
.opacity-80 {
  opacity: 0.8;
}
.opacity-90 {
  opacity: 0.9;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-2xl {
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_0_15px_rgba\(255\2c 255\2c 255\2c 0\.4\)\] {
  --tw-shadow: 0 0 15px rgba(255,255,255,0.4);
  --tw-shadow-colored: 0 0 15px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_2px_14px_0_rgba\(108\2c 124\2c 240\2c 0\.11\)\] {
  --tw-shadow: 0 2px 14px 0 rgba(108,124,240,0.11);
  --tw-shadow-colored: 0 2px 14px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_2px_16px_0_rgba\(120\2c 140\2c 220\2c 0\.09\)\] {
  --tw-shadow: 0 2px 16px 0 rgba(120,140,220,0.09);
  --tw-shadow-colored: 0 2px 16px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_2px_16px_0_rgba\(120\2c 140\2c 220\2c 0\.10\)\] {
  --tw-shadow: 0 2px 16px 0 rgba(120,140,220,0.10);
  --tw-shadow-colored: 0 2px 16px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_2px_8px_0_rgba\(6\2c 182\2c 212\2c 0\.06\)\] {
  --tw-shadow: 0 2px 8px 0 rgba(6,182,212,0.06);
  --tw-shadow-colored: 0 2px 8px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_3px_16px_0_rgba\(115\2c 115\2c 180\2c 0\.13\)\] {
  --tw-shadow: 0 3px 16px 0 rgba(115,115,180,0.13);
  --tw-shadow-colored: 0 3px 16px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_4px_24px_0_rgba\(90\2c 120\2c 220\2c 0\.10\)\] {
  --tw-shadow: 0 4px 24px 0 rgba(90,120,220,0.10);
  --tw-shadow-colored: 0 4px 24px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_6px_28px_0_rgba\(98\2c 116\2c 146\2c 0\.09\)\] {
  --tw-shadow: 0 6px 28px 0 rgba(98,116,146,0.09);
  --tw-shadow-colored: 0 6px 28px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_6px_36px_0_rgba\(64\2c 70\2c 150\2c 0\.13\)\] {
  --tw-shadow: 0 6px 36px 0 rgba(64,70,150,0.13);
  --tw-shadow-colored: 0 6px 36px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-inner {
  --tw-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: inset 0 2px 4px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-none {
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-xl {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[rgba\(0\2c 0\2c 0\2c 0\.06\)\] {
  --tw-shadow-color: rgba(0,0,0,0.06);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-\[var\(--shadow\)\] {
  --tw-shadow-color: var(--shadow);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-\[var\(--shadow-\$\{bp\}-\$\{state\}\)\] {
  --tw-shadow-color: var(--shadow-${bp}-${state});
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-100 {
  --tw-shadow-color: #fef3c7;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-100\/10 {
  --tw-shadow-color: rgb(254 243 199 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-100\/20 {
  --tw-shadow-color: rgb(254 243 199 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-100\/30 {
  --tw-shadow-color: rgb(254 243 199 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-100\/40 {
  --tw-shadow-color: rgb(254 243 199 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-100\/5 {
  --tw-shadow-color: rgb(254 243 199 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-100\/50 {
  --tw-shadow-color: rgb(254 243 199 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-100\/60 {
  --tw-shadow-color: rgb(254 243 199 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-100\/70 {
  --tw-shadow-color: rgb(254 243 199 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-100\/80 {
  --tw-shadow-color: rgb(254 243 199 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-100\/90 {
  --tw-shadow-color: rgb(254 243 199 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-200 {
  --tw-shadow-color: #fde68a;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-200\/10 {
  --tw-shadow-color: rgb(253 230 138 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-200\/20 {
  --tw-shadow-color: rgb(253 230 138 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-200\/30 {
  --tw-shadow-color: rgb(253 230 138 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-200\/40 {
  --tw-shadow-color: rgb(253 230 138 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-200\/5 {
  --tw-shadow-color: rgb(253 230 138 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-200\/50 {
  --tw-shadow-color: rgb(253 230 138 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-200\/60 {
  --tw-shadow-color: rgb(253 230 138 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-200\/70 {
  --tw-shadow-color: rgb(253 230 138 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-200\/80 {
  --tw-shadow-color: rgb(253 230 138 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-200\/90 {
  --tw-shadow-color: rgb(253 230 138 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-300 {
  --tw-shadow-color: #fcd34d;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-300\/10 {
  --tw-shadow-color: rgb(252 211 77 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-300\/20 {
  --tw-shadow-color: rgb(252 211 77 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-300\/30 {
  --tw-shadow-color: rgb(252 211 77 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-300\/40 {
  --tw-shadow-color: rgb(252 211 77 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-300\/5 {
  --tw-shadow-color: rgb(252 211 77 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-300\/50 {
  --tw-shadow-color: rgb(252 211 77 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-300\/60 {
  --tw-shadow-color: rgb(252 211 77 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-300\/70 {
  --tw-shadow-color: rgb(252 211 77 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-300\/80 {
  --tw-shadow-color: rgb(252 211 77 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-300\/90 {
  --tw-shadow-color: rgb(252 211 77 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-400 {
  --tw-shadow-color: #fbbf24;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-400\/10 {
  --tw-shadow-color: rgb(251 191 36 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-400\/20 {
  --tw-shadow-color: rgb(251 191 36 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-400\/30 {
  --tw-shadow-color: rgb(251 191 36 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-400\/40 {
  --tw-shadow-color: rgb(251 191 36 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-400\/5 {
  --tw-shadow-color: rgb(251 191 36 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-400\/50 {
  --tw-shadow-color: rgb(251 191 36 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-400\/60 {
  --tw-shadow-color: rgb(251 191 36 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-400\/70 {
  --tw-shadow-color: rgb(251 191 36 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-400\/80 {
  --tw-shadow-color: rgb(251 191 36 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-400\/90 {
  --tw-shadow-color: rgb(251 191 36 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-50 {
  --tw-shadow-color: #fffbeb;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-50\/10 {
  --tw-shadow-color: rgb(255 251 235 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-50\/20 {
  --tw-shadow-color: rgb(255 251 235 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-50\/30 {
  --tw-shadow-color: rgb(255 251 235 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-50\/40 {
  --tw-shadow-color: rgb(255 251 235 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-50\/5 {
  --tw-shadow-color: rgb(255 251 235 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-50\/50 {
  --tw-shadow-color: rgb(255 251 235 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-50\/60 {
  --tw-shadow-color: rgb(255 251 235 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-50\/70 {
  --tw-shadow-color: rgb(255 251 235 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-50\/80 {
  --tw-shadow-color: rgb(255 251 235 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-50\/90 {
  --tw-shadow-color: rgb(255 251 235 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-500 {
  --tw-shadow-color: #f59e0b;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-500\/10 {
  --tw-shadow-color: rgb(245 158 11 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-500\/20 {
  --tw-shadow-color: rgb(245 158 11 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-500\/30 {
  --tw-shadow-color: rgb(245 158 11 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-500\/40 {
  --tw-shadow-color: rgb(245 158 11 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-500\/5 {
  --tw-shadow-color: rgb(245 158 11 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-500\/50 {
  --tw-shadow-color: rgb(245 158 11 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-500\/60 {
  --tw-shadow-color: rgb(245 158 11 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-500\/70 {
  --tw-shadow-color: rgb(245 158 11 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-500\/80 {
  --tw-shadow-color: rgb(245 158 11 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-500\/90 {
  --tw-shadow-color: rgb(245 158 11 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-600 {
  --tw-shadow-color: #d97706;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-600\/10 {
  --tw-shadow-color: rgb(217 119 6 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-600\/20 {
  --tw-shadow-color: rgb(217 119 6 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-600\/30 {
  --tw-shadow-color: rgb(217 119 6 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-600\/40 {
  --tw-shadow-color: rgb(217 119 6 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-600\/5 {
  --tw-shadow-color: rgb(217 119 6 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-600\/50 {
  --tw-shadow-color: rgb(217 119 6 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-600\/60 {
  --tw-shadow-color: rgb(217 119 6 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-600\/70 {
  --tw-shadow-color: rgb(217 119 6 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-600\/80 {
  --tw-shadow-color: rgb(217 119 6 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-600\/90 {
  --tw-shadow-color: rgb(217 119 6 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-700 {
  --tw-shadow-color: #b45309;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-700\/10 {
  --tw-shadow-color: rgb(180 83 9 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-700\/20 {
  --tw-shadow-color: rgb(180 83 9 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-700\/30 {
  --tw-shadow-color: rgb(180 83 9 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-700\/40 {
  --tw-shadow-color: rgb(180 83 9 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-700\/5 {
  --tw-shadow-color: rgb(180 83 9 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-700\/50 {
  --tw-shadow-color: rgb(180 83 9 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-700\/60 {
  --tw-shadow-color: rgb(180 83 9 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-700\/70 {
  --tw-shadow-color: rgb(180 83 9 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-700\/80 {
  --tw-shadow-color: rgb(180 83 9 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-700\/90 {
  --tw-shadow-color: rgb(180 83 9 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-800 {
  --tw-shadow-color: #92400e;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-800\/10 {
  --tw-shadow-color: rgb(146 64 14 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-800\/20 {
  --tw-shadow-color: rgb(146 64 14 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-800\/30 {
  --tw-shadow-color: rgb(146 64 14 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-800\/40 {
  --tw-shadow-color: rgb(146 64 14 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-800\/5 {
  --tw-shadow-color: rgb(146 64 14 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-800\/50 {
  --tw-shadow-color: rgb(146 64 14 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-800\/60 {
  --tw-shadow-color: rgb(146 64 14 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-800\/70 {
  --tw-shadow-color: rgb(146 64 14 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-800\/80 {
  --tw-shadow-color: rgb(146 64 14 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-800\/90 {
  --tw-shadow-color: rgb(146 64 14 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-900 {
  --tw-shadow-color: #78350f;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-900\/10 {
  --tw-shadow-color: rgb(120 53 15 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-900\/20 {
  --tw-shadow-color: rgb(120 53 15 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-900\/30 {
  --tw-shadow-color: rgb(120 53 15 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-900\/40 {
  --tw-shadow-color: rgb(120 53 15 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-900\/5 {
  --tw-shadow-color: rgb(120 53 15 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-900\/50 {
  --tw-shadow-color: rgb(120 53 15 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-900\/60 {
  --tw-shadow-color: rgb(120 53 15 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-900\/70 {
  --tw-shadow-color: rgb(120 53 15 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-900\/80 {
  --tw-shadow-color: rgb(120 53 15 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-900\/90 {
  --tw-shadow-color: rgb(120 53 15 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-950 {
  --tw-shadow-color: #451a03;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-950\/10 {
  --tw-shadow-color: rgb(69 26 3 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-950\/20 {
  --tw-shadow-color: rgb(69 26 3 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-950\/30 {
  --tw-shadow-color: rgb(69 26 3 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-950\/40 {
  --tw-shadow-color: rgb(69 26 3 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-950\/5 {
  --tw-shadow-color: rgb(69 26 3 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-950\/50 {
  --tw-shadow-color: rgb(69 26 3 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-950\/60 {
  --tw-shadow-color: rgb(69 26 3 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-950\/70 {
  --tw-shadow-color: rgb(69 26 3 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-950\/80 {
  --tw-shadow-color: rgb(69 26 3 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-amber-950\/90 {
  --tw-shadow-color: rgb(69 26 3 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-black {
  --tw-shadow-color: #000;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-black\/10 {
  --tw-shadow-color: rgb(0 0 0 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-black\/20 {
  --tw-shadow-color: rgb(0 0 0 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-100 {
  --tw-shadow-color: #dbeafe;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-100\/10 {
  --tw-shadow-color: rgb(219 234 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-100\/20 {
  --tw-shadow-color: rgb(219 234 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-100\/30 {
  --tw-shadow-color: rgb(219 234 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-100\/40 {
  --tw-shadow-color: rgb(219 234 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-100\/5 {
  --tw-shadow-color: rgb(219 234 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-100\/50 {
  --tw-shadow-color: rgb(219 234 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-100\/60 {
  --tw-shadow-color: rgb(219 234 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-100\/70 {
  --tw-shadow-color: rgb(219 234 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-100\/80 {
  --tw-shadow-color: rgb(219 234 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-100\/90 {
  --tw-shadow-color: rgb(219 234 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-200 {
  --tw-shadow-color: #bfdbfe;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-200\/10 {
  --tw-shadow-color: rgb(191 219 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-200\/20 {
  --tw-shadow-color: rgb(191 219 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-200\/30 {
  --tw-shadow-color: rgb(191 219 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-200\/40 {
  --tw-shadow-color: rgb(191 219 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-200\/5 {
  --tw-shadow-color: rgb(191 219 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-200\/50 {
  --tw-shadow-color: rgb(191 219 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-200\/60 {
  --tw-shadow-color: rgb(191 219 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-200\/70 {
  --tw-shadow-color: rgb(191 219 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-200\/80 {
  --tw-shadow-color: rgb(191 219 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-200\/90 {
  --tw-shadow-color: rgb(191 219 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-300 {
  --tw-shadow-color: #93c5fd;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-300\/10 {
  --tw-shadow-color: rgb(147 197 253 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-300\/20 {
  --tw-shadow-color: rgb(147 197 253 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-300\/30 {
  --tw-shadow-color: rgb(147 197 253 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-300\/40 {
  --tw-shadow-color: rgb(147 197 253 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-300\/5 {
  --tw-shadow-color: rgb(147 197 253 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-300\/50 {
  --tw-shadow-color: rgb(147 197 253 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-300\/60 {
  --tw-shadow-color: rgb(147 197 253 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-300\/70 {
  --tw-shadow-color: rgb(147 197 253 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-300\/80 {
  --tw-shadow-color: rgb(147 197 253 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-300\/90 {
  --tw-shadow-color: rgb(147 197 253 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-400 {
  --tw-shadow-color: #60a5fa;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-400\/10 {
  --tw-shadow-color: rgb(96 165 250 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-400\/20 {
  --tw-shadow-color: rgb(96 165 250 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-400\/30 {
  --tw-shadow-color: rgb(96 165 250 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-400\/40 {
  --tw-shadow-color: rgb(96 165 250 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-400\/5 {
  --tw-shadow-color: rgb(96 165 250 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-400\/50 {
  --tw-shadow-color: rgb(96 165 250 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-400\/60 {
  --tw-shadow-color: rgb(96 165 250 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-400\/70 {
  --tw-shadow-color: rgb(96 165 250 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-400\/80 {
  --tw-shadow-color: rgb(96 165 250 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-400\/90 {
  --tw-shadow-color: rgb(96 165 250 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-50 {
  --tw-shadow-color: #eff6ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-50\/10 {
  --tw-shadow-color: rgb(239 246 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-50\/20 {
  --tw-shadow-color: rgb(239 246 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-50\/30 {
  --tw-shadow-color: rgb(239 246 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-50\/40 {
  --tw-shadow-color: rgb(239 246 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-50\/5 {
  --tw-shadow-color: rgb(239 246 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-50\/50 {
  --tw-shadow-color: rgb(239 246 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-50\/60 {
  --tw-shadow-color: rgb(239 246 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-50\/70 {
  --tw-shadow-color: rgb(239 246 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-50\/80 {
  --tw-shadow-color: rgb(239 246 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-50\/90 {
  --tw-shadow-color: rgb(239 246 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-500 {
  --tw-shadow-color: #3b82f6;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-500\/10 {
  --tw-shadow-color: rgb(59 130 246 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-500\/20 {
  --tw-shadow-color: rgb(59 130 246 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-500\/30 {
  --tw-shadow-color: rgb(59 130 246 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-500\/40 {
  --tw-shadow-color: rgb(59 130 246 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-500\/5 {
  --tw-shadow-color: rgb(59 130 246 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-500\/50 {
  --tw-shadow-color: rgb(59 130 246 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-500\/60 {
  --tw-shadow-color: rgb(59 130 246 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-500\/70 {
  --tw-shadow-color: rgb(59 130 246 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-500\/80 {
  --tw-shadow-color: rgb(59 130 246 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-500\/90 {
  --tw-shadow-color: rgb(59 130 246 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-600 {
  --tw-shadow-color: #2563eb;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-600\/10 {
  --tw-shadow-color: rgb(37 99 235 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-600\/20 {
  --tw-shadow-color: rgb(37 99 235 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-600\/30 {
  --tw-shadow-color: rgb(37 99 235 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-600\/40 {
  --tw-shadow-color: rgb(37 99 235 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-600\/5 {
  --tw-shadow-color: rgb(37 99 235 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-600\/50 {
  --tw-shadow-color: rgb(37 99 235 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-600\/60 {
  --tw-shadow-color: rgb(37 99 235 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-600\/70 {
  --tw-shadow-color: rgb(37 99 235 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-600\/80 {
  --tw-shadow-color: rgb(37 99 235 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-600\/90 {
  --tw-shadow-color: rgb(37 99 235 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-700 {
  --tw-shadow-color: #1d4ed8;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-700\/10 {
  --tw-shadow-color: rgb(29 78 216 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-700\/20 {
  --tw-shadow-color: rgb(29 78 216 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-700\/30 {
  --tw-shadow-color: rgb(29 78 216 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-700\/40 {
  --tw-shadow-color: rgb(29 78 216 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-700\/5 {
  --tw-shadow-color: rgb(29 78 216 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-700\/50 {
  --tw-shadow-color: rgb(29 78 216 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-700\/60 {
  --tw-shadow-color: rgb(29 78 216 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-700\/70 {
  --tw-shadow-color: rgb(29 78 216 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-700\/80 {
  --tw-shadow-color: rgb(29 78 216 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-700\/90 {
  --tw-shadow-color: rgb(29 78 216 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-800 {
  --tw-shadow-color: #1e40af;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-800\/10 {
  --tw-shadow-color: rgb(30 64 175 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-800\/20 {
  --tw-shadow-color: rgb(30 64 175 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-800\/30 {
  --tw-shadow-color: rgb(30 64 175 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-800\/40 {
  --tw-shadow-color: rgb(30 64 175 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-800\/5 {
  --tw-shadow-color: rgb(30 64 175 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-800\/50 {
  --tw-shadow-color: rgb(30 64 175 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-800\/60 {
  --tw-shadow-color: rgb(30 64 175 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-800\/70 {
  --tw-shadow-color: rgb(30 64 175 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-800\/80 {
  --tw-shadow-color: rgb(30 64 175 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-800\/90 {
  --tw-shadow-color: rgb(30 64 175 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-900 {
  --tw-shadow-color: #1e3a8a;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-900\/10 {
  --tw-shadow-color: rgb(30 58 138 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-900\/20 {
  --tw-shadow-color: rgb(30 58 138 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-900\/30 {
  --tw-shadow-color: rgb(30 58 138 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-900\/40 {
  --tw-shadow-color: rgb(30 58 138 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-900\/5 {
  --tw-shadow-color: rgb(30 58 138 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-900\/50 {
  --tw-shadow-color: rgb(30 58 138 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-900\/60 {
  --tw-shadow-color: rgb(30 58 138 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-900\/70 {
  --tw-shadow-color: rgb(30 58 138 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-900\/80 {
  --tw-shadow-color: rgb(30 58 138 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-900\/90 {
  --tw-shadow-color: rgb(30 58 138 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-950 {
  --tw-shadow-color: #172554;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-950\/10 {
  --tw-shadow-color: rgb(23 37 84 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-950\/20 {
  --tw-shadow-color: rgb(23 37 84 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-950\/30 {
  --tw-shadow-color: rgb(23 37 84 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-950\/40 {
  --tw-shadow-color: rgb(23 37 84 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-950\/5 {
  --tw-shadow-color: rgb(23 37 84 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-950\/50 {
  --tw-shadow-color: rgb(23 37 84 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-950\/60 {
  --tw-shadow-color: rgb(23 37 84 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-950\/70 {
  --tw-shadow-color: rgb(23 37 84 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-950\/80 {
  --tw-shadow-color: rgb(23 37 84 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-blue-950\/90 {
  --tw-shadow-color: rgb(23 37 84 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-100 {
  --tw-shadow-color: #cffafe;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-100\/10 {
  --tw-shadow-color: rgb(207 250 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-100\/20 {
  --tw-shadow-color: rgb(207 250 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-100\/30 {
  --tw-shadow-color: rgb(207 250 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-100\/40 {
  --tw-shadow-color: rgb(207 250 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-100\/5 {
  --tw-shadow-color: rgb(207 250 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-100\/50 {
  --tw-shadow-color: rgb(207 250 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-100\/60 {
  --tw-shadow-color: rgb(207 250 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-100\/70 {
  --tw-shadow-color: rgb(207 250 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-100\/80 {
  --tw-shadow-color: rgb(207 250 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-100\/90 {
  --tw-shadow-color: rgb(207 250 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-200 {
  --tw-shadow-color: #a5f3fc;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-200\/10 {
  --tw-shadow-color: rgb(165 243 252 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-200\/20 {
  --tw-shadow-color: rgb(165 243 252 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-200\/30 {
  --tw-shadow-color: rgb(165 243 252 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-200\/40 {
  --tw-shadow-color: rgb(165 243 252 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-200\/5 {
  --tw-shadow-color: rgb(165 243 252 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-200\/50 {
  --tw-shadow-color: rgb(165 243 252 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-200\/60 {
  --tw-shadow-color: rgb(165 243 252 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-200\/70 {
  --tw-shadow-color: rgb(165 243 252 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-200\/80 {
  --tw-shadow-color: rgb(165 243 252 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-200\/90 {
  --tw-shadow-color: rgb(165 243 252 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-300 {
  --tw-shadow-color: #67e8f9;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-300\/10 {
  --tw-shadow-color: rgb(103 232 249 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-300\/20 {
  --tw-shadow-color: rgb(103 232 249 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-300\/30 {
  --tw-shadow-color: rgb(103 232 249 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-300\/40 {
  --tw-shadow-color: rgb(103 232 249 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-300\/5 {
  --tw-shadow-color: rgb(103 232 249 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-300\/50 {
  --tw-shadow-color: rgb(103 232 249 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-300\/60 {
  --tw-shadow-color: rgb(103 232 249 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-300\/70 {
  --tw-shadow-color: rgb(103 232 249 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-300\/80 {
  --tw-shadow-color: rgb(103 232 249 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-300\/90 {
  --tw-shadow-color: rgb(103 232 249 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-400 {
  --tw-shadow-color: #22d3ee;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-400\/10 {
  --tw-shadow-color: rgb(34 211 238 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-400\/20 {
  --tw-shadow-color: rgb(34 211 238 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-400\/30 {
  --tw-shadow-color: rgb(34 211 238 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-400\/40 {
  --tw-shadow-color: rgb(34 211 238 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-400\/5 {
  --tw-shadow-color: rgb(34 211 238 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-400\/50 {
  --tw-shadow-color: rgb(34 211 238 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-400\/60 {
  --tw-shadow-color: rgb(34 211 238 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-400\/70 {
  --tw-shadow-color: rgb(34 211 238 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-400\/80 {
  --tw-shadow-color: rgb(34 211 238 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-400\/90 {
  --tw-shadow-color: rgb(34 211 238 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-50 {
  --tw-shadow-color: #ecfeff;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-50\/10 {
  --tw-shadow-color: rgb(236 254 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-50\/20 {
  --tw-shadow-color: rgb(236 254 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-50\/30 {
  --tw-shadow-color: rgb(236 254 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-50\/40 {
  --tw-shadow-color: rgb(236 254 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-50\/5 {
  --tw-shadow-color: rgb(236 254 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-50\/50 {
  --tw-shadow-color: rgb(236 254 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-50\/60 {
  --tw-shadow-color: rgb(236 254 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-50\/70 {
  --tw-shadow-color: rgb(236 254 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-50\/80 {
  --tw-shadow-color: rgb(236 254 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-50\/90 {
  --tw-shadow-color: rgb(236 254 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-500 {
  --tw-shadow-color: #06b6d4;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-500\/10 {
  --tw-shadow-color: rgb(6 182 212 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-500\/20 {
  --tw-shadow-color: rgb(6 182 212 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-500\/30 {
  --tw-shadow-color: rgb(6 182 212 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-500\/40 {
  --tw-shadow-color: rgb(6 182 212 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-500\/5 {
  --tw-shadow-color: rgb(6 182 212 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-500\/50 {
  --tw-shadow-color: rgb(6 182 212 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-500\/60 {
  --tw-shadow-color: rgb(6 182 212 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-500\/70 {
  --tw-shadow-color: rgb(6 182 212 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-500\/80 {
  --tw-shadow-color: rgb(6 182 212 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-500\/90 {
  --tw-shadow-color: rgb(6 182 212 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-600 {
  --tw-shadow-color: #0891b2;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-600\/10 {
  --tw-shadow-color: rgb(8 145 178 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-600\/20 {
  --tw-shadow-color: rgb(8 145 178 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-600\/30 {
  --tw-shadow-color: rgb(8 145 178 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-600\/40 {
  --tw-shadow-color: rgb(8 145 178 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-600\/5 {
  --tw-shadow-color: rgb(8 145 178 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-600\/50 {
  --tw-shadow-color: rgb(8 145 178 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-600\/60 {
  --tw-shadow-color: rgb(8 145 178 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-600\/70 {
  --tw-shadow-color: rgb(8 145 178 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-600\/80 {
  --tw-shadow-color: rgb(8 145 178 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-600\/90 {
  --tw-shadow-color: rgb(8 145 178 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-700 {
  --tw-shadow-color: #0e7490;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-700\/10 {
  --tw-shadow-color: rgb(14 116 144 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-700\/20 {
  --tw-shadow-color: rgb(14 116 144 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-700\/30 {
  --tw-shadow-color: rgb(14 116 144 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-700\/40 {
  --tw-shadow-color: rgb(14 116 144 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-700\/5 {
  --tw-shadow-color: rgb(14 116 144 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-700\/50 {
  --tw-shadow-color: rgb(14 116 144 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-700\/60 {
  --tw-shadow-color: rgb(14 116 144 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-700\/70 {
  --tw-shadow-color: rgb(14 116 144 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-700\/80 {
  --tw-shadow-color: rgb(14 116 144 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-700\/90 {
  --tw-shadow-color: rgb(14 116 144 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-800 {
  --tw-shadow-color: #155e75;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-800\/10 {
  --tw-shadow-color: rgb(21 94 117 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-800\/20 {
  --tw-shadow-color: rgb(21 94 117 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-800\/30 {
  --tw-shadow-color: rgb(21 94 117 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-800\/40 {
  --tw-shadow-color: rgb(21 94 117 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-800\/5 {
  --tw-shadow-color: rgb(21 94 117 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-800\/50 {
  --tw-shadow-color: rgb(21 94 117 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-800\/60 {
  --tw-shadow-color: rgb(21 94 117 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-800\/70 {
  --tw-shadow-color: rgb(21 94 117 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-800\/80 {
  --tw-shadow-color: rgb(21 94 117 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-800\/90 {
  --tw-shadow-color: rgb(21 94 117 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-900 {
  --tw-shadow-color: #164e63;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-900\/10 {
  --tw-shadow-color: rgb(22 78 99 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-900\/20 {
  --tw-shadow-color: rgb(22 78 99 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-900\/30 {
  --tw-shadow-color: rgb(22 78 99 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-900\/40 {
  --tw-shadow-color: rgb(22 78 99 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-900\/5 {
  --tw-shadow-color: rgb(22 78 99 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-900\/50 {
  --tw-shadow-color: rgb(22 78 99 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-900\/60 {
  --tw-shadow-color: rgb(22 78 99 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-900\/70 {
  --tw-shadow-color: rgb(22 78 99 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-900\/80 {
  --tw-shadow-color: rgb(22 78 99 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-900\/90 {
  --tw-shadow-color: rgb(22 78 99 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-950 {
  --tw-shadow-color: #083344;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-950\/10 {
  --tw-shadow-color: rgb(8 51 68 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-950\/20 {
  --tw-shadow-color: rgb(8 51 68 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-950\/30 {
  --tw-shadow-color: rgb(8 51 68 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-950\/40 {
  --tw-shadow-color: rgb(8 51 68 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-950\/5 {
  --tw-shadow-color: rgb(8 51 68 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-950\/50 {
  --tw-shadow-color: rgb(8 51 68 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-950\/60 {
  --tw-shadow-color: rgb(8 51 68 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-950\/70 {
  --tw-shadow-color: rgb(8 51 68 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-950\/80 {
  --tw-shadow-color: rgb(8 51 68 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-950\/90 {
  --tw-shadow-color: rgb(8 51 68 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-100 {
  --tw-shadow-color: #d1fae5;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-100\/10 {
  --tw-shadow-color: rgb(209 250 229 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-100\/20 {
  --tw-shadow-color: rgb(209 250 229 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-100\/30 {
  --tw-shadow-color: rgb(209 250 229 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-100\/40 {
  --tw-shadow-color: rgb(209 250 229 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-100\/5 {
  --tw-shadow-color: rgb(209 250 229 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-100\/50 {
  --tw-shadow-color: rgb(209 250 229 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-100\/60 {
  --tw-shadow-color: rgb(209 250 229 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-100\/70 {
  --tw-shadow-color: rgb(209 250 229 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-100\/80 {
  --tw-shadow-color: rgb(209 250 229 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-100\/90 {
  --tw-shadow-color: rgb(209 250 229 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-200 {
  --tw-shadow-color: #a7f3d0;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-200\/10 {
  --tw-shadow-color: rgb(167 243 208 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-200\/20 {
  --tw-shadow-color: rgb(167 243 208 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-200\/30 {
  --tw-shadow-color: rgb(167 243 208 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-200\/40 {
  --tw-shadow-color: rgb(167 243 208 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-200\/5 {
  --tw-shadow-color: rgb(167 243 208 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-200\/50 {
  --tw-shadow-color: rgb(167 243 208 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-200\/60 {
  --tw-shadow-color: rgb(167 243 208 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-200\/70 {
  --tw-shadow-color: rgb(167 243 208 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-200\/80 {
  --tw-shadow-color: rgb(167 243 208 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-200\/90 {
  --tw-shadow-color: rgb(167 243 208 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-300 {
  --tw-shadow-color: #6ee7b7;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-300\/10 {
  --tw-shadow-color: rgb(110 231 183 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-300\/20 {
  --tw-shadow-color: rgb(110 231 183 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-300\/30 {
  --tw-shadow-color: rgb(110 231 183 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-300\/40 {
  --tw-shadow-color: rgb(110 231 183 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-300\/5 {
  --tw-shadow-color: rgb(110 231 183 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-300\/50 {
  --tw-shadow-color: rgb(110 231 183 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-300\/60 {
  --tw-shadow-color: rgb(110 231 183 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-300\/70 {
  --tw-shadow-color: rgb(110 231 183 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-300\/80 {
  --tw-shadow-color: rgb(110 231 183 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-300\/90 {
  --tw-shadow-color: rgb(110 231 183 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-400 {
  --tw-shadow-color: #34d399;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-400\/10 {
  --tw-shadow-color: rgb(52 211 153 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-400\/20 {
  --tw-shadow-color: rgb(52 211 153 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-400\/30 {
  --tw-shadow-color: rgb(52 211 153 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-400\/40 {
  --tw-shadow-color: rgb(52 211 153 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-400\/5 {
  --tw-shadow-color: rgb(52 211 153 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-400\/50 {
  --tw-shadow-color: rgb(52 211 153 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-400\/60 {
  --tw-shadow-color: rgb(52 211 153 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-400\/70 {
  --tw-shadow-color: rgb(52 211 153 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-400\/80 {
  --tw-shadow-color: rgb(52 211 153 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-400\/90 {
  --tw-shadow-color: rgb(52 211 153 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-50 {
  --tw-shadow-color: #ecfdf5;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-50\/10 {
  --tw-shadow-color: rgb(236 253 245 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-50\/20 {
  --tw-shadow-color: rgb(236 253 245 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-50\/30 {
  --tw-shadow-color: rgb(236 253 245 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-50\/40 {
  --tw-shadow-color: rgb(236 253 245 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-50\/5 {
  --tw-shadow-color: rgb(236 253 245 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-50\/50 {
  --tw-shadow-color: rgb(236 253 245 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-50\/60 {
  --tw-shadow-color: rgb(236 253 245 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-50\/70 {
  --tw-shadow-color: rgb(236 253 245 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-50\/80 {
  --tw-shadow-color: rgb(236 253 245 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-50\/90 {
  --tw-shadow-color: rgb(236 253 245 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-500 {
  --tw-shadow-color: #10b981;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-500\/10 {
  --tw-shadow-color: rgb(16 185 129 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-500\/20 {
  --tw-shadow-color: rgb(16 185 129 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-500\/30 {
  --tw-shadow-color: rgb(16 185 129 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-500\/40 {
  --tw-shadow-color: rgb(16 185 129 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-500\/5 {
  --tw-shadow-color: rgb(16 185 129 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-500\/50 {
  --tw-shadow-color: rgb(16 185 129 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-500\/60 {
  --tw-shadow-color: rgb(16 185 129 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-500\/70 {
  --tw-shadow-color: rgb(16 185 129 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-500\/80 {
  --tw-shadow-color: rgb(16 185 129 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-500\/90 {
  --tw-shadow-color: rgb(16 185 129 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-600 {
  --tw-shadow-color: #059669;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-600\/10 {
  --tw-shadow-color: rgb(5 150 105 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-600\/20 {
  --tw-shadow-color: rgb(5 150 105 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-600\/30 {
  --tw-shadow-color: rgb(5 150 105 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-600\/40 {
  --tw-shadow-color: rgb(5 150 105 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-600\/5 {
  --tw-shadow-color: rgb(5 150 105 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-600\/50 {
  --tw-shadow-color: rgb(5 150 105 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-600\/60 {
  --tw-shadow-color: rgb(5 150 105 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-600\/70 {
  --tw-shadow-color: rgb(5 150 105 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-600\/80 {
  --tw-shadow-color: rgb(5 150 105 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-600\/90 {
  --tw-shadow-color: rgb(5 150 105 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-700 {
  --tw-shadow-color: #047857;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-700\/10 {
  --tw-shadow-color: rgb(4 120 87 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-700\/20 {
  --tw-shadow-color: rgb(4 120 87 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-700\/30 {
  --tw-shadow-color: rgb(4 120 87 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-700\/40 {
  --tw-shadow-color: rgb(4 120 87 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-700\/5 {
  --tw-shadow-color: rgb(4 120 87 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-700\/50 {
  --tw-shadow-color: rgb(4 120 87 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-700\/60 {
  --tw-shadow-color: rgb(4 120 87 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-700\/70 {
  --tw-shadow-color: rgb(4 120 87 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-700\/80 {
  --tw-shadow-color: rgb(4 120 87 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-700\/90 {
  --tw-shadow-color: rgb(4 120 87 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-800 {
  --tw-shadow-color: #065f46;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-800\/10 {
  --tw-shadow-color: rgb(6 95 70 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-800\/20 {
  --tw-shadow-color: rgb(6 95 70 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-800\/30 {
  --tw-shadow-color: rgb(6 95 70 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-800\/40 {
  --tw-shadow-color: rgb(6 95 70 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-800\/5 {
  --tw-shadow-color: rgb(6 95 70 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-800\/50 {
  --tw-shadow-color: rgb(6 95 70 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-800\/60 {
  --tw-shadow-color: rgb(6 95 70 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-800\/70 {
  --tw-shadow-color: rgb(6 95 70 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-800\/80 {
  --tw-shadow-color: rgb(6 95 70 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-800\/90 {
  --tw-shadow-color: rgb(6 95 70 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-900 {
  --tw-shadow-color: #064e3b;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-900\/10 {
  --tw-shadow-color: rgb(6 78 59 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-900\/20 {
  --tw-shadow-color: rgb(6 78 59 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-900\/30 {
  --tw-shadow-color: rgb(6 78 59 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-900\/40 {
  --tw-shadow-color: rgb(6 78 59 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-900\/5 {
  --tw-shadow-color: rgb(6 78 59 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-900\/50 {
  --tw-shadow-color: rgb(6 78 59 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-900\/60 {
  --tw-shadow-color: rgb(6 78 59 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-900\/70 {
  --tw-shadow-color: rgb(6 78 59 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-900\/80 {
  --tw-shadow-color: rgb(6 78 59 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-900\/90 {
  --tw-shadow-color: rgb(6 78 59 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-950 {
  --tw-shadow-color: #022c22;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-950\/10 {
  --tw-shadow-color: rgb(2 44 34 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-950\/20 {
  --tw-shadow-color: rgb(2 44 34 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-950\/30 {
  --tw-shadow-color: rgb(2 44 34 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-950\/40 {
  --tw-shadow-color: rgb(2 44 34 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-950\/5 {
  --tw-shadow-color: rgb(2 44 34 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-950\/50 {
  --tw-shadow-color: rgb(2 44 34 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-950\/60 {
  --tw-shadow-color: rgb(2 44 34 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-950\/70 {
  --tw-shadow-color: rgb(2 44 34 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-950\/80 {
  --tw-shadow-color: rgb(2 44 34 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-950\/90 {
  --tw-shadow-color: rgb(2 44 34 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-100 {
  --tw-shadow-color: #fae8ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-100\/10 {
  --tw-shadow-color: rgb(250 232 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-100\/20 {
  --tw-shadow-color: rgb(250 232 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-100\/30 {
  --tw-shadow-color: rgb(250 232 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-100\/40 {
  --tw-shadow-color: rgb(250 232 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-100\/5 {
  --tw-shadow-color: rgb(250 232 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-100\/50 {
  --tw-shadow-color: rgb(250 232 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-100\/60 {
  --tw-shadow-color: rgb(250 232 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-100\/70 {
  --tw-shadow-color: rgb(250 232 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-100\/80 {
  --tw-shadow-color: rgb(250 232 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-100\/90 {
  --tw-shadow-color: rgb(250 232 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-200 {
  --tw-shadow-color: #f5d0fe;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-200\/10 {
  --tw-shadow-color: rgb(245 208 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-200\/20 {
  --tw-shadow-color: rgb(245 208 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-200\/30 {
  --tw-shadow-color: rgb(245 208 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-200\/40 {
  --tw-shadow-color: rgb(245 208 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-200\/5 {
  --tw-shadow-color: rgb(245 208 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-200\/50 {
  --tw-shadow-color: rgb(245 208 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-200\/60 {
  --tw-shadow-color: rgb(245 208 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-200\/70 {
  --tw-shadow-color: rgb(245 208 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-200\/80 {
  --tw-shadow-color: rgb(245 208 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-200\/90 {
  --tw-shadow-color: rgb(245 208 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-300 {
  --tw-shadow-color: #f0abfc;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-300\/10 {
  --tw-shadow-color: rgb(240 171 252 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-300\/20 {
  --tw-shadow-color: rgb(240 171 252 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-300\/30 {
  --tw-shadow-color: rgb(240 171 252 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-300\/40 {
  --tw-shadow-color: rgb(240 171 252 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-300\/5 {
  --tw-shadow-color: rgb(240 171 252 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-300\/50 {
  --tw-shadow-color: rgb(240 171 252 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-300\/60 {
  --tw-shadow-color: rgb(240 171 252 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-300\/70 {
  --tw-shadow-color: rgb(240 171 252 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-300\/80 {
  --tw-shadow-color: rgb(240 171 252 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-300\/90 {
  --tw-shadow-color: rgb(240 171 252 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-400 {
  --tw-shadow-color: #e879f9;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-400\/10 {
  --tw-shadow-color: rgb(232 121 249 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-400\/20 {
  --tw-shadow-color: rgb(232 121 249 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-400\/30 {
  --tw-shadow-color: rgb(232 121 249 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-400\/40 {
  --tw-shadow-color: rgb(232 121 249 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-400\/5 {
  --tw-shadow-color: rgb(232 121 249 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-400\/50 {
  --tw-shadow-color: rgb(232 121 249 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-400\/60 {
  --tw-shadow-color: rgb(232 121 249 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-400\/70 {
  --tw-shadow-color: rgb(232 121 249 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-400\/80 {
  --tw-shadow-color: rgb(232 121 249 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-400\/90 {
  --tw-shadow-color: rgb(232 121 249 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-50 {
  --tw-shadow-color: #fdf4ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-50\/10 {
  --tw-shadow-color: rgb(253 244 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-50\/20 {
  --tw-shadow-color: rgb(253 244 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-50\/30 {
  --tw-shadow-color: rgb(253 244 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-50\/40 {
  --tw-shadow-color: rgb(253 244 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-50\/5 {
  --tw-shadow-color: rgb(253 244 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-50\/50 {
  --tw-shadow-color: rgb(253 244 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-50\/60 {
  --tw-shadow-color: rgb(253 244 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-50\/70 {
  --tw-shadow-color: rgb(253 244 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-50\/80 {
  --tw-shadow-color: rgb(253 244 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-50\/90 {
  --tw-shadow-color: rgb(253 244 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-500 {
  --tw-shadow-color: #d946ef;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-500\/10 {
  --tw-shadow-color: rgb(217 70 239 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-500\/20 {
  --tw-shadow-color: rgb(217 70 239 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-500\/30 {
  --tw-shadow-color: rgb(217 70 239 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-500\/40 {
  --tw-shadow-color: rgb(217 70 239 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-500\/5 {
  --tw-shadow-color: rgb(217 70 239 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-500\/50 {
  --tw-shadow-color: rgb(217 70 239 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-500\/60 {
  --tw-shadow-color: rgb(217 70 239 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-500\/70 {
  --tw-shadow-color: rgb(217 70 239 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-500\/80 {
  --tw-shadow-color: rgb(217 70 239 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-500\/90 {
  --tw-shadow-color: rgb(217 70 239 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-600 {
  --tw-shadow-color: #c026d3;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-600\/10 {
  --tw-shadow-color: rgb(192 38 211 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-600\/20 {
  --tw-shadow-color: rgb(192 38 211 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-600\/30 {
  --tw-shadow-color: rgb(192 38 211 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-600\/40 {
  --tw-shadow-color: rgb(192 38 211 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-600\/5 {
  --tw-shadow-color: rgb(192 38 211 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-600\/50 {
  --tw-shadow-color: rgb(192 38 211 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-600\/60 {
  --tw-shadow-color: rgb(192 38 211 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-600\/70 {
  --tw-shadow-color: rgb(192 38 211 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-600\/80 {
  --tw-shadow-color: rgb(192 38 211 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-600\/90 {
  --tw-shadow-color: rgb(192 38 211 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-700 {
  --tw-shadow-color: #a21caf;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-700\/10 {
  --tw-shadow-color: rgb(162 28 175 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-700\/20 {
  --tw-shadow-color: rgb(162 28 175 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-700\/30 {
  --tw-shadow-color: rgb(162 28 175 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-700\/40 {
  --tw-shadow-color: rgb(162 28 175 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-700\/5 {
  --tw-shadow-color: rgb(162 28 175 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-700\/50 {
  --tw-shadow-color: rgb(162 28 175 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-700\/60 {
  --tw-shadow-color: rgb(162 28 175 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-700\/70 {
  --tw-shadow-color: rgb(162 28 175 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-700\/80 {
  --tw-shadow-color: rgb(162 28 175 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-700\/90 {
  --tw-shadow-color: rgb(162 28 175 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-800 {
  --tw-shadow-color: #86198f;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-800\/10 {
  --tw-shadow-color: rgb(134 25 143 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-800\/20 {
  --tw-shadow-color: rgb(134 25 143 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-800\/30 {
  --tw-shadow-color: rgb(134 25 143 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-800\/40 {
  --tw-shadow-color: rgb(134 25 143 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-800\/5 {
  --tw-shadow-color: rgb(134 25 143 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-800\/50 {
  --tw-shadow-color: rgb(134 25 143 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-800\/60 {
  --tw-shadow-color: rgb(134 25 143 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-800\/70 {
  --tw-shadow-color: rgb(134 25 143 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-800\/80 {
  --tw-shadow-color: rgb(134 25 143 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-800\/90 {
  --tw-shadow-color: rgb(134 25 143 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-900 {
  --tw-shadow-color: #701a75;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-900\/10 {
  --tw-shadow-color: rgb(112 26 117 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-900\/20 {
  --tw-shadow-color: rgb(112 26 117 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-900\/30 {
  --tw-shadow-color: rgb(112 26 117 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-900\/40 {
  --tw-shadow-color: rgb(112 26 117 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-900\/5 {
  --tw-shadow-color: rgb(112 26 117 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-900\/50 {
  --tw-shadow-color: rgb(112 26 117 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-900\/60 {
  --tw-shadow-color: rgb(112 26 117 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-900\/70 {
  --tw-shadow-color: rgb(112 26 117 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-900\/80 {
  --tw-shadow-color: rgb(112 26 117 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-900\/90 {
  --tw-shadow-color: rgb(112 26 117 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-950 {
  --tw-shadow-color: #4a044e;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-950\/10 {
  --tw-shadow-color: rgb(74 4 78 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-950\/20 {
  --tw-shadow-color: rgb(74 4 78 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-950\/30 {
  --tw-shadow-color: rgb(74 4 78 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-950\/40 {
  --tw-shadow-color: rgb(74 4 78 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-950\/5 {
  --tw-shadow-color: rgb(74 4 78 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-950\/50 {
  --tw-shadow-color: rgb(74 4 78 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-950\/60 {
  --tw-shadow-color: rgb(74 4 78 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-950\/70 {
  --tw-shadow-color: rgb(74 4 78 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-950\/80 {
  --tw-shadow-color: rgb(74 4 78 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-fuchsia-950\/90 {
  --tw-shadow-color: rgb(74 4 78 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-100 {
  --tw-shadow-color: #f3f4f6;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-100\/10 {
  --tw-shadow-color: rgb(243 244 246 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-100\/20 {
  --tw-shadow-color: rgb(243 244 246 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-100\/30 {
  --tw-shadow-color: rgb(243 244 246 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-100\/40 {
  --tw-shadow-color: rgb(243 244 246 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-100\/5 {
  --tw-shadow-color: rgb(243 244 246 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-100\/50 {
  --tw-shadow-color: rgb(243 244 246 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-100\/60 {
  --tw-shadow-color: rgb(243 244 246 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-100\/70 {
  --tw-shadow-color: rgb(243 244 246 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-100\/80 {
  --tw-shadow-color: rgb(243 244 246 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-100\/90 {
  --tw-shadow-color: rgb(243 244 246 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-200 {
  --tw-shadow-color: #e5e7eb;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-200\/10 {
  --tw-shadow-color: rgb(229 231 235 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-200\/20 {
  --tw-shadow-color: rgb(229 231 235 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-200\/30 {
  --tw-shadow-color: rgb(229 231 235 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-200\/40 {
  --tw-shadow-color: rgb(229 231 235 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-200\/5 {
  --tw-shadow-color: rgb(229 231 235 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-200\/50 {
  --tw-shadow-color: rgb(229 231 235 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-200\/60 {
  --tw-shadow-color: rgb(229 231 235 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-200\/70 {
  --tw-shadow-color: rgb(229 231 235 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-200\/80 {
  --tw-shadow-color: rgb(229 231 235 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-200\/90 {
  --tw-shadow-color: rgb(229 231 235 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-300 {
  --tw-shadow-color: #d1d5db;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-300\/10 {
  --tw-shadow-color: rgb(209 213 219 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-300\/20 {
  --tw-shadow-color: rgb(209 213 219 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-300\/30 {
  --tw-shadow-color: rgb(209 213 219 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-300\/40 {
  --tw-shadow-color: rgb(209 213 219 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-300\/5 {
  --tw-shadow-color: rgb(209 213 219 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-300\/50 {
  --tw-shadow-color: rgb(209 213 219 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-300\/60 {
  --tw-shadow-color: rgb(209 213 219 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-300\/70 {
  --tw-shadow-color: rgb(209 213 219 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-300\/80 {
  --tw-shadow-color: rgb(209 213 219 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-300\/90 {
  --tw-shadow-color: rgb(209 213 219 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-400 {
  --tw-shadow-color: #9ca3af;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-400\/10 {
  --tw-shadow-color: rgb(156 163 175 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-400\/20 {
  --tw-shadow-color: rgb(156 163 175 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-400\/30 {
  --tw-shadow-color: rgb(156 163 175 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-400\/40 {
  --tw-shadow-color: rgb(156 163 175 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-400\/5 {
  --tw-shadow-color: rgb(156 163 175 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-400\/50 {
  --tw-shadow-color: rgb(156 163 175 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-400\/60 {
  --tw-shadow-color: rgb(156 163 175 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-400\/70 {
  --tw-shadow-color: rgb(156 163 175 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-400\/80 {
  --tw-shadow-color: rgb(156 163 175 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-400\/90 {
  --tw-shadow-color: rgb(156 163 175 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-50 {
  --tw-shadow-color: #f9fafb;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-50\/10 {
  --tw-shadow-color: rgb(249 250 251 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-50\/20 {
  --tw-shadow-color: rgb(249 250 251 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-50\/30 {
  --tw-shadow-color: rgb(249 250 251 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-50\/40 {
  --tw-shadow-color: rgb(249 250 251 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-50\/5 {
  --tw-shadow-color: rgb(249 250 251 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-50\/50 {
  --tw-shadow-color: rgb(249 250 251 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-50\/60 {
  --tw-shadow-color: rgb(249 250 251 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-50\/70 {
  --tw-shadow-color: rgb(249 250 251 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-50\/80 {
  --tw-shadow-color: rgb(249 250 251 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-50\/90 {
  --tw-shadow-color: rgb(249 250 251 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-500 {
  --tw-shadow-color: #6b7280;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-500\/10 {
  --tw-shadow-color: rgb(107 114 128 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-500\/20 {
  --tw-shadow-color: rgb(107 114 128 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-500\/30 {
  --tw-shadow-color: rgb(107 114 128 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-500\/40 {
  --tw-shadow-color: rgb(107 114 128 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-500\/5 {
  --tw-shadow-color: rgb(107 114 128 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-500\/50 {
  --tw-shadow-color: rgb(107 114 128 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-500\/60 {
  --tw-shadow-color: rgb(107 114 128 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-500\/70 {
  --tw-shadow-color: rgb(107 114 128 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-500\/80 {
  --tw-shadow-color: rgb(107 114 128 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-500\/90 {
  --tw-shadow-color: rgb(107 114 128 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-600 {
  --tw-shadow-color: #4b5563;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-600\/10 {
  --tw-shadow-color: rgb(75 85 99 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-600\/20 {
  --tw-shadow-color: rgb(75 85 99 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-600\/30 {
  --tw-shadow-color: rgb(75 85 99 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-600\/40 {
  --tw-shadow-color: rgb(75 85 99 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-600\/5 {
  --tw-shadow-color: rgb(75 85 99 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-600\/50 {
  --tw-shadow-color: rgb(75 85 99 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-600\/60 {
  --tw-shadow-color: rgb(75 85 99 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-600\/70 {
  --tw-shadow-color: rgb(75 85 99 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-600\/80 {
  --tw-shadow-color: rgb(75 85 99 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-600\/90 {
  --tw-shadow-color: rgb(75 85 99 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-700 {
  --tw-shadow-color: #374151;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-700\/10 {
  --tw-shadow-color: rgb(55 65 81 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-700\/20 {
  --tw-shadow-color: rgb(55 65 81 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-700\/30 {
  --tw-shadow-color: rgb(55 65 81 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-700\/40 {
  --tw-shadow-color: rgb(55 65 81 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-700\/5 {
  --tw-shadow-color: rgb(55 65 81 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-700\/50 {
  --tw-shadow-color: rgb(55 65 81 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-700\/60 {
  --tw-shadow-color: rgb(55 65 81 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-700\/70 {
  --tw-shadow-color: rgb(55 65 81 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-700\/80 {
  --tw-shadow-color: rgb(55 65 81 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-700\/90 {
  --tw-shadow-color: rgb(55 65 81 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-800 {
  --tw-shadow-color: #1f2937;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-800\/10 {
  --tw-shadow-color: rgb(31 41 55 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-800\/20 {
  --tw-shadow-color: rgb(31 41 55 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-800\/30 {
  --tw-shadow-color: rgb(31 41 55 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-800\/40 {
  --tw-shadow-color: rgb(31 41 55 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-800\/5 {
  --tw-shadow-color: rgb(31 41 55 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-800\/50 {
  --tw-shadow-color: rgb(31 41 55 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-800\/60 {
  --tw-shadow-color: rgb(31 41 55 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-800\/70 {
  --tw-shadow-color: rgb(31 41 55 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-800\/80 {
  --tw-shadow-color: rgb(31 41 55 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-800\/90 {
  --tw-shadow-color: rgb(31 41 55 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-900 {
  --tw-shadow-color: #111827;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-900\/10 {
  --tw-shadow-color: rgb(17 24 39 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-900\/20 {
  --tw-shadow-color: rgb(17 24 39 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-900\/30 {
  --tw-shadow-color: rgb(17 24 39 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-900\/40 {
  --tw-shadow-color: rgb(17 24 39 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-900\/5 {
  --tw-shadow-color: rgb(17 24 39 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-900\/50 {
  --tw-shadow-color: rgb(17 24 39 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-900\/60 {
  --tw-shadow-color: rgb(17 24 39 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-900\/70 {
  --tw-shadow-color: rgb(17 24 39 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-900\/80 {
  --tw-shadow-color: rgb(17 24 39 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-900\/90 {
  --tw-shadow-color: rgb(17 24 39 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-950 {
  --tw-shadow-color: #030712;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-950\/10 {
  --tw-shadow-color: rgb(3 7 18 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-950\/20 {
  --tw-shadow-color: rgb(3 7 18 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-950\/30 {
  --tw-shadow-color: rgb(3 7 18 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-950\/40 {
  --tw-shadow-color: rgb(3 7 18 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-950\/5 {
  --tw-shadow-color: rgb(3 7 18 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-950\/50 {
  --tw-shadow-color: rgb(3 7 18 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-950\/60 {
  --tw-shadow-color: rgb(3 7 18 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-950\/70 {
  --tw-shadow-color: rgb(3 7 18 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-950\/80 {
  --tw-shadow-color: rgb(3 7 18 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-950\/90 {
  --tw-shadow-color: rgb(3 7 18 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-100 {
  --tw-shadow-color: #dcfce7;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-100\/10 {
  --tw-shadow-color: rgb(220 252 231 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-100\/20 {
  --tw-shadow-color: rgb(220 252 231 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-100\/30 {
  --tw-shadow-color: rgb(220 252 231 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-100\/40 {
  --tw-shadow-color: rgb(220 252 231 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-100\/5 {
  --tw-shadow-color: rgb(220 252 231 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-100\/50 {
  --tw-shadow-color: rgb(220 252 231 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-100\/60 {
  --tw-shadow-color: rgb(220 252 231 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-100\/70 {
  --tw-shadow-color: rgb(220 252 231 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-100\/80 {
  --tw-shadow-color: rgb(220 252 231 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-100\/90 {
  --tw-shadow-color: rgb(220 252 231 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-200 {
  --tw-shadow-color: #bbf7d0;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-200\/10 {
  --tw-shadow-color: rgb(187 247 208 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-200\/20 {
  --tw-shadow-color: rgb(187 247 208 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-200\/30 {
  --tw-shadow-color: rgb(187 247 208 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-200\/40 {
  --tw-shadow-color: rgb(187 247 208 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-200\/5 {
  --tw-shadow-color: rgb(187 247 208 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-200\/50 {
  --tw-shadow-color: rgb(187 247 208 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-200\/60 {
  --tw-shadow-color: rgb(187 247 208 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-200\/70 {
  --tw-shadow-color: rgb(187 247 208 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-200\/80 {
  --tw-shadow-color: rgb(187 247 208 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-200\/90 {
  --tw-shadow-color: rgb(187 247 208 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-300 {
  --tw-shadow-color: #86efac;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-300\/10 {
  --tw-shadow-color: rgb(134 239 172 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-300\/20 {
  --tw-shadow-color: rgb(134 239 172 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-300\/30 {
  --tw-shadow-color: rgb(134 239 172 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-300\/40 {
  --tw-shadow-color: rgb(134 239 172 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-300\/5 {
  --tw-shadow-color: rgb(134 239 172 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-300\/50 {
  --tw-shadow-color: rgb(134 239 172 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-300\/60 {
  --tw-shadow-color: rgb(134 239 172 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-300\/70 {
  --tw-shadow-color: rgb(134 239 172 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-300\/80 {
  --tw-shadow-color: rgb(134 239 172 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-300\/90 {
  --tw-shadow-color: rgb(134 239 172 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-400 {
  --tw-shadow-color: #4ade80;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-400\/10 {
  --tw-shadow-color: rgb(74 222 128 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-400\/20 {
  --tw-shadow-color: rgb(74 222 128 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-400\/30 {
  --tw-shadow-color: rgb(74 222 128 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-400\/40 {
  --tw-shadow-color: rgb(74 222 128 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-400\/5 {
  --tw-shadow-color: rgb(74 222 128 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-400\/50 {
  --tw-shadow-color: rgb(74 222 128 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-400\/60 {
  --tw-shadow-color: rgb(74 222 128 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-400\/70 {
  --tw-shadow-color: rgb(74 222 128 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-400\/80 {
  --tw-shadow-color: rgb(74 222 128 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-400\/90 {
  --tw-shadow-color: rgb(74 222 128 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-50 {
  --tw-shadow-color: #f0fdf4;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-50\/10 {
  --tw-shadow-color: rgb(240 253 244 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-50\/20 {
  --tw-shadow-color: rgb(240 253 244 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-50\/30 {
  --tw-shadow-color: rgb(240 253 244 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-50\/40 {
  --tw-shadow-color: rgb(240 253 244 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-50\/5 {
  --tw-shadow-color: rgb(240 253 244 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-50\/50 {
  --tw-shadow-color: rgb(240 253 244 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-50\/60 {
  --tw-shadow-color: rgb(240 253 244 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-50\/70 {
  --tw-shadow-color: rgb(240 253 244 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-50\/80 {
  --tw-shadow-color: rgb(240 253 244 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-50\/90 {
  --tw-shadow-color: rgb(240 253 244 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-500 {
  --tw-shadow-color: #22c55e;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-500\/10 {
  --tw-shadow-color: rgb(34 197 94 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-500\/20 {
  --tw-shadow-color: rgb(34 197 94 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-500\/30 {
  --tw-shadow-color: rgb(34 197 94 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-500\/40 {
  --tw-shadow-color: rgb(34 197 94 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-500\/5 {
  --tw-shadow-color: rgb(34 197 94 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-500\/50 {
  --tw-shadow-color: rgb(34 197 94 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-500\/60 {
  --tw-shadow-color: rgb(34 197 94 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-500\/70 {
  --tw-shadow-color: rgb(34 197 94 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-500\/80 {
  --tw-shadow-color: rgb(34 197 94 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-500\/90 {
  --tw-shadow-color: rgb(34 197 94 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-600 {
  --tw-shadow-color: #16a34a;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-600\/10 {
  --tw-shadow-color: rgb(22 163 74 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-600\/20 {
  --tw-shadow-color: rgb(22 163 74 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-600\/30 {
  --tw-shadow-color: rgb(22 163 74 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-600\/40 {
  --tw-shadow-color: rgb(22 163 74 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-600\/5 {
  --tw-shadow-color: rgb(22 163 74 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-600\/50 {
  --tw-shadow-color: rgb(22 163 74 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-600\/60 {
  --tw-shadow-color: rgb(22 163 74 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-600\/70 {
  --tw-shadow-color: rgb(22 163 74 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-600\/80 {
  --tw-shadow-color: rgb(22 163 74 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-600\/90 {
  --tw-shadow-color: rgb(22 163 74 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-700 {
  --tw-shadow-color: #15803d;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-700\/10 {
  --tw-shadow-color: rgb(21 128 61 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-700\/20 {
  --tw-shadow-color: rgb(21 128 61 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-700\/30 {
  --tw-shadow-color: rgb(21 128 61 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-700\/40 {
  --tw-shadow-color: rgb(21 128 61 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-700\/5 {
  --tw-shadow-color: rgb(21 128 61 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-700\/50 {
  --tw-shadow-color: rgb(21 128 61 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-700\/60 {
  --tw-shadow-color: rgb(21 128 61 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-700\/70 {
  --tw-shadow-color: rgb(21 128 61 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-700\/80 {
  --tw-shadow-color: rgb(21 128 61 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-700\/90 {
  --tw-shadow-color: rgb(21 128 61 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-800 {
  --tw-shadow-color: #166534;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-800\/10 {
  --tw-shadow-color: rgb(22 101 52 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-800\/20 {
  --tw-shadow-color: rgb(22 101 52 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-800\/30 {
  --tw-shadow-color: rgb(22 101 52 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-800\/40 {
  --tw-shadow-color: rgb(22 101 52 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-800\/5 {
  --tw-shadow-color: rgb(22 101 52 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-800\/50 {
  --tw-shadow-color: rgb(22 101 52 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-800\/60 {
  --tw-shadow-color: rgb(22 101 52 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-800\/70 {
  --tw-shadow-color: rgb(22 101 52 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-800\/80 {
  --tw-shadow-color: rgb(22 101 52 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-800\/90 {
  --tw-shadow-color: rgb(22 101 52 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-900 {
  --tw-shadow-color: #14532d;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-900\/10 {
  --tw-shadow-color: rgb(20 83 45 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-900\/20 {
  --tw-shadow-color: rgb(20 83 45 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-900\/30 {
  --tw-shadow-color: rgb(20 83 45 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-900\/40 {
  --tw-shadow-color: rgb(20 83 45 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-900\/5 {
  --tw-shadow-color: rgb(20 83 45 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-900\/50 {
  --tw-shadow-color: rgb(20 83 45 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-900\/60 {
  --tw-shadow-color: rgb(20 83 45 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-900\/70 {
  --tw-shadow-color: rgb(20 83 45 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-900\/80 {
  --tw-shadow-color: rgb(20 83 45 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-900\/90 {
  --tw-shadow-color: rgb(20 83 45 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-950 {
  --tw-shadow-color: #052e16;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-950\/10 {
  --tw-shadow-color: rgb(5 46 22 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-950\/20 {
  --tw-shadow-color: rgb(5 46 22 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-950\/30 {
  --tw-shadow-color: rgb(5 46 22 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-950\/40 {
  --tw-shadow-color: rgb(5 46 22 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-950\/5 {
  --tw-shadow-color: rgb(5 46 22 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-950\/50 {
  --tw-shadow-color: rgb(5 46 22 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-950\/60 {
  --tw-shadow-color: rgb(5 46 22 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-950\/70 {
  --tw-shadow-color: rgb(5 46 22 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-950\/80 {
  --tw-shadow-color: rgb(5 46 22 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-green-950\/90 {
  --tw-shadow-color: rgb(5 46 22 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-100 {
  --tw-shadow-color: #e0e7ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-100\/10 {
  --tw-shadow-color: rgb(224 231 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-100\/20 {
  --tw-shadow-color: rgb(224 231 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-100\/30 {
  --tw-shadow-color: rgb(224 231 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-100\/40 {
  --tw-shadow-color: rgb(224 231 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-100\/5 {
  --tw-shadow-color: rgb(224 231 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-100\/50 {
  --tw-shadow-color: rgb(224 231 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-100\/60 {
  --tw-shadow-color: rgb(224 231 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-100\/70 {
  --tw-shadow-color: rgb(224 231 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-100\/80 {
  --tw-shadow-color: rgb(224 231 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-100\/90 {
  --tw-shadow-color: rgb(224 231 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-200 {
  --tw-shadow-color: #c7d2fe;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-200\/10 {
  --tw-shadow-color: rgb(199 210 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-200\/20 {
  --tw-shadow-color: rgb(199 210 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-200\/30 {
  --tw-shadow-color: rgb(199 210 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-200\/40 {
  --tw-shadow-color: rgb(199 210 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-200\/5 {
  --tw-shadow-color: rgb(199 210 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-200\/50 {
  --tw-shadow-color: rgb(199 210 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-200\/60 {
  --tw-shadow-color: rgb(199 210 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-200\/70 {
  --tw-shadow-color: rgb(199 210 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-200\/80 {
  --tw-shadow-color: rgb(199 210 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-200\/90 {
  --tw-shadow-color: rgb(199 210 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-300 {
  --tw-shadow-color: #a5b4fc;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-300\/10 {
  --tw-shadow-color: rgb(165 180 252 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-300\/20 {
  --tw-shadow-color: rgb(165 180 252 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-300\/30 {
  --tw-shadow-color: rgb(165 180 252 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-300\/40 {
  --tw-shadow-color: rgb(165 180 252 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-300\/5 {
  --tw-shadow-color: rgb(165 180 252 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-300\/50 {
  --tw-shadow-color: rgb(165 180 252 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-300\/60 {
  --tw-shadow-color: rgb(165 180 252 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-300\/70 {
  --tw-shadow-color: rgb(165 180 252 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-300\/80 {
  --tw-shadow-color: rgb(165 180 252 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-300\/90 {
  --tw-shadow-color: rgb(165 180 252 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-400 {
  --tw-shadow-color: #818cf8;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-400\/10 {
  --tw-shadow-color: rgb(129 140 248 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-400\/20 {
  --tw-shadow-color: rgb(129 140 248 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-400\/30 {
  --tw-shadow-color: rgb(129 140 248 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-400\/40 {
  --tw-shadow-color: rgb(129 140 248 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-400\/5 {
  --tw-shadow-color: rgb(129 140 248 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-400\/50 {
  --tw-shadow-color: rgb(129 140 248 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-400\/60 {
  --tw-shadow-color: rgb(129 140 248 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-400\/70 {
  --tw-shadow-color: rgb(129 140 248 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-400\/80 {
  --tw-shadow-color: rgb(129 140 248 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-400\/90 {
  --tw-shadow-color: rgb(129 140 248 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-50 {
  --tw-shadow-color: #eef2ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-50\/10 {
  --tw-shadow-color: rgb(238 242 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-50\/20 {
  --tw-shadow-color: rgb(238 242 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-50\/30 {
  --tw-shadow-color: rgb(238 242 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-50\/40 {
  --tw-shadow-color: rgb(238 242 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-50\/5 {
  --tw-shadow-color: rgb(238 242 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-50\/50 {
  --tw-shadow-color: rgb(238 242 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-50\/60 {
  --tw-shadow-color: rgb(238 242 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-50\/70 {
  --tw-shadow-color: rgb(238 242 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-50\/80 {
  --tw-shadow-color: rgb(238 242 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-50\/90 {
  --tw-shadow-color: rgb(238 242 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-500 {
  --tw-shadow-color: #6366f1;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-500\/10 {
  --tw-shadow-color: rgb(99 102 241 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-500\/20 {
  --tw-shadow-color: rgb(99 102 241 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-500\/30 {
  --tw-shadow-color: rgb(99 102 241 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-500\/40 {
  --tw-shadow-color: rgb(99 102 241 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-500\/5 {
  --tw-shadow-color: rgb(99 102 241 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-500\/50 {
  --tw-shadow-color: rgb(99 102 241 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-500\/60 {
  --tw-shadow-color: rgb(99 102 241 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-500\/70 {
  --tw-shadow-color: rgb(99 102 241 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-500\/80 {
  --tw-shadow-color: rgb(99 102 241 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-500\/90 {
  --tw-shadow-color: rgb(99 102 241 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-600 {
  --tw-shadow-color: #4f46e5;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-600\/10 {
  --tw-shadow-color: rgb(79 70 229 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-600\/20 {
  --tw-shadow-color: rgb(79 70 229 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-600\/30 {
  --tw-shadow-color: rgb(79 70 229 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-600\/40 {
  --tw-shadow-color: rgb(79 70 229 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-600\/5 {
  --tw-shadow-color: rgb(79 70 229 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-600\/50 {
  --tw-shadow-color: rgb(79 70 229 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-600\/60 {
  --tw-shadow-color: rgb(79 70 229 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-600\/70 {
  --tw-shadow-color: rgb(79 70 229 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-600\/80 {
  --tw-shadow-color: rgb(79 70 229 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-600\/90 {
  --tw-shadow-color: rgb(79 70 229 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-700 {
  --tw-shadow-color: #4338ca;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-700\/10 {
  --tw-shadow-color: rgb(67 56 202 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-700\/20 {
  --tw-shadow-color: rgb(67 56 202 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-700\/30 {
  --tw-shadow-color: rgb(67 56 202 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-700\/40 {
  --tw-shadow-color: rgb(67 56 202 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-700\/5 {
  --tw-shadow-color: rgb(67 56 202 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-700\/50 {
  --tw-shadow-color: rgb(67 56 202 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-700\/60 {
  --tw-shadow-color: rgb(67 56 202 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-700\/70 {
  --tw-shadow-color: rgb(67 56 202 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-700\/80 {
  --tw-shadow-color: rgb(67 56 202 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-700\/90 {
  --tw-shadow-color: rgb(67 56 202 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-800 {
  --tw-shadow-color: #3730a3;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-800\/10 {
  --tw-shadow-color: rgb(55 48 163 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-800\/20 {
  --tw-shadow-color: rgb(55 48 163 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-800\/30 {
  --tw-shadow-color: rgb(55 48 163 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-800\/40 {
  --tw-shadow-color: rgb(55 48 163 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-800\/5 {
  --tw-shadow-color: rgb(55 48 163 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-800\/50 {
  --tw-shadow-color: rgb(55 48 163 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-800\/60 {
  --tw-shadow-color: rgb(55 48 163 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-800\/70 {
  --tw-shadow-color: rgb(55 48 163 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-800\/80 {
  --tw-shadow-color: rgb(55 48 163 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-800\/90 {
  --tw-shadow-color: rgb(55 48 163 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-900 {
  --tw-shadow-color: #312e81;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-900\/10 {
  --tw-shadow-color: rgb(49 46 129 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-900\/20 {
  --tw-shadow-color: rgb(49 46 129 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-900\/30 {
  --tw-shadow-color: rgb(49 46 129 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-900\/40 {
  --tw-shadow-color: rgb(49 46 129 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-900\/5 {
  --tw-shadow-color: rgb(49 46 129 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-900\/50 {
  --tw-shadow-color: rgb(49 46 129 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-900\/60 {
  --tw-shadow-color: rgb(49 46 129 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-900\/70 {
  --tw-shadow-color: rgb(49 46 129 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-900\/80 {
  --tw-shadow-color: rgb(49 46 129 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-900\/90 {
  --tw-shadow-color: rgb(49 46 129 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-950 {
  --tw-shadow-color: #1e1b4b;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-950\/10 {
  --tw-shadow-color: rgb(30 27 75 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-950\/20 {
  --tw-shadow-color: rgb(30 27 75 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-950\/30 {
  --tw-shadow-color: rgb(30 27 75 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-950\/40 {
  --tw-shadow-color: rgb(30 27 75 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-950\/5 {
  --tw-shadow-color: rgb(30 27 75 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-950\/50 {
  --tw-shadow-color: rgb(30 27 75 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-950\/60 {
  --tw-shadow-color: rgb(30 27 75 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-950\/70 {
  --tw-shadow-color: rgb(30 27 75 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-950\/80 {
  --tw-shadow-color: rgb(30 27 75 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-950\/90 {
  --tw-shadow-color: rgb(30 27 75 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-100 {
  --tw-shadow-color: #ecfccb;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-100\/10 {
  --tw-shadow-color: rgb(236 252 203 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-100\/20 {
  --tw-shadow-color: rgb(236 252 203 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-100\/30 {
  --tw-shadow-color: rgb(236 252 203 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-100\/40 {
  --tw-shadow-color: rgb(236 252 203 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-100\/5 {
  --tw-shadow-color: rgb(236 252 203 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-100\/50 {
  --tw-shadow-color: rgb(236 252 203 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-100\/60 {
  --tw-shadow-color: rgb(236 252 203 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-100\/70 {
  --tw-shadow-color: rgb(236 252 203 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-100\/80 {
  --tw-shadow-color: rgb(236 252 203 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-100\/90 {
  --tw-shadow-color: rgb(236 252 203 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-200 {
  --tw-shadow-color: #d9f99d;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-200\/10 {
  --tw-shadow-color: rgb(217 249 157 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-200\/20 {
  --tw-shadow-color: rgb(217 249 157 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-200\/30 {
  --tw-shadow-color: rgb(217 249 157 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-200\/40 {
  --tw-shadow-color: rgb(217 249 157 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-200\/5 {
  --tw-shadow-color: rgb(217 249 157 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-200\/50 {
  --tw-shadow-color: rgb(217 249 157 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-200\/60 {
  --tw-shadow-color: rgb(217 249 157 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-200\/70 {
  --tw-shadow-color: rgb(217 249 157 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-200\/80 {
  --tw-shadow-color: rgb(217 249 157 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-200\/90 {
  --tw-shadow-color: rgb(217 249 157 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-300 {
  --tw-shadow-color: #bef264;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-300\/10 {
  --tw-shadow-color: rgb(190 242 100 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-300\/20 {
  --tw-shadow-color: rgb(190 242 100 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-300\/30 {
  --tw-shadow-color: rgb(190 242 100 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-300\/40 {
  --tw-shadow-color: rgb(190 242 100 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-300\/5 {
  --tw-shadow-color: rgb(190 242 100 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-300\/50 {
  --tw-shadow-color: rgb(190 242 100 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-300\/60 {
  --tw-shadow-color: rgb(190 242 100 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-300\/70 {
  --tw-shadow-color: rgb(190 242 100 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-300\/80 {
  --tw-shadow-color: rgb(190 242 100 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-300\/90 {
  --tw-shadow-color: rgb(190 242 100 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-400 {
  --tw-shadow-color: #a3e635;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-400\/10 {
  --tw-shadow-color: rgb(163 230 53 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-400\/20 {
  --tw-shadow-color: rgb(163 230 53 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-400\/30 {
  --tw-shadow-color: rgb(163 230 53 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-400\/40 {
  --tw-shadow-color: rgb(163 230 53 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-400\/5 {
  --tw-shadow-color: rgb(163 230 53 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-400\/50 {
  --tw-shadow-color: rgb(163 230 53 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-400\/60 {
  --tw-shadow-color: rgb(163 230 53 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-400\/70 {
  --tw-shadow-color: rgb(163 230 53 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-400\/80 {
  --tw-shadow-color: rgb(163 230 53 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-400\/90 {
  --tw-shadow-color: rgb(163 230 53 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-50 {
  --tw-shadow-color: #f7fee7;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-50\/10 {
  --tw-shadow-color: rgb(247 254 231 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-50\/20 {
  --tw-shadow-color: rgb(247 254 231 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-50\/30 {
  --tw-shadow-color: rgb(247 254 231 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-50\/40 {
  --tw-shadow-color: rgb(247 254 231 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-50\/5 {
  --tw-shadow-color: rgb(247 254 231 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-50\/50 {
  --tw-shadow-color: rgb(247 254 231 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-50\/60 {
  --tw-shadow-color: rgb(247 254 231 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-50\/70 {
  --tw-shadow-color: rgb(247 254 231 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-50\/80 {
  --tw-shadow-color: rgb(247 254 231 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-50\/90 {
  --tw-shadow-color: rgb(247 254 231 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-500 {
  --tw-shadow-color: #84cc16;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-500\/10 {
  --tw-shadow-color: rgb(132 204 22 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-500\/20 {
  --tw-shadow-color: rgb(132 204 22 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-500\/30 {
  --tw-shadow-color: rgb(132 204 22 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-500\/40 {
  --tw-shadow-color: rgb(132 204 22 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-500\/5 {
  --tw-shadow-color: rgb(132 204 22 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-500\/50 {
  --tw-shadow-color: rgb(132 204 22 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-500\/60 {
  --tw-shadow-color: rgb(132 204 22 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-500\/70 {
  --tw-shadow-color: rgb(132 204 22 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-500\/80 {
  --tw-shadow-color: rgb(132 204 22 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-500\/90 {
  --tw-shadow-color: rgb(132 204 22 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-600 {
  --tw-shadow-color: #65a30d;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-600\/10 {
  --tw-shadow-color: rgb(101 163 13 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-600\/20 {
  --tw-shadow-color: rgb(101 163 13 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-600\/30 {
  --tw-shadow-color: rgb(101 163 13 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-600\/40 {
  --tw-shadow-color: rgb(101 163 13 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-600\/5 {
  --tw-shadow-color: rgb(101 163 13 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-600\/50 {
  --tw-shadow-color: rgb(101 163 13 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-600\/60 {
  --tw-shadow-color: rgb(101 163 13 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-600\/70 {
  --tw-shadow-color: rgb(101 163 13 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-600\/80 {
  --tw-shadow-color: rgb(101 163 13 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-600\/90 {
  --tw-shadow-color: rgb(101 163 13 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-700 {
  --tw-shadow-color: #4d7c0f;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-700\/10 {
  --tw-shadow-color: rgb(77 124 15 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-700\/20 {
  --tw-shadow-color: rgb(77 124 15 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-700\/30 {
  --tw-shadow-color: rgb(77 124 15 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-700\/40 {
  --tw-shadow-color: rgb(77 124 15 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-700\/5 {
  --tw-shadow-color: rgb(77 124 15 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-700\/50 {
  --tw-shadow-color: rgb(77 124 15 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-700\/60 {
  --tw-shadow-color: rgb(77 124 15 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-700\/70 {
  --tw-shadow-color: rgb(77 124 15 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-700\/80 {
  --tw-shadow-color: rgb(77 124 15 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-700\/90 {
  --tw-shadow-color: rgb(77 124 15 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-800 {
  --tw-shadow-color: #3f6212;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-800\/10 {
  --tw-shadow-color: rgb(63 98 18 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-800\/20 {
  --tw-shadow-color: rgb(63 98 18 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-800\/30 {
  --tw-shadow-color: rgb(63 98 18 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-800\/40 {
  --tw-shadow-color: rgb(63 98 18 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-800\/5 {
  --tw-shadow-color: rgb(63 98 18 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-800\/50 {
  --tw-shadow-color: rgb(63 98 18 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-800\/60 {
  --tw-shadow-color: rgb(63 98 18 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-800\/70 {
  --tw-shadow-color: rgb(63 98 18 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-800\/80 {
  --tw-shadow-color: rgb(63 98 18 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-800\/90 {
  --tw-shadow-color: rgb(63 98 18 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-900 {
  --tw-shadow-color: #365314;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-900\/10 {
  --tw-shadow-color: rgb(54 83 20 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-900\/20 {
  --tw-shadow-color: rgb(54 83 20 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-900\/30 {
  --tw-shadow-color: rgb(54 83 20 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-900\/40 {
  --tw-shadow-color: rgb(54 83 20 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-900\/5 {
  --tw-shadow-color: rgb(54 83 20 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-900\/50 {
  --tw-shadow-color: rgb(54 83 20 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-900\/60 {
  --tw-shadow-color: rgb(54 83 20 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-900\/70 {
  --tw-shadow-color: rgb(54 83 20 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-900\/80 {
  --tw-shadow-color: rgb(54 83 20 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-900\/90 {
  --tw-shadow-color: rgb(54 83 20 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-950 {
  --tw-shadow-color: #1a2e05;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-950\/10 {
  --tw-shadow-color: rgb(26 46 5 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-950\/20 {
  --tw-shadow-color: rgb(26 46 5 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-950\/30 {
  --tw-shadow-color: rgb(26 46 5 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-950\/40 {
  --tw-shadow-color: rgb(26 46 5 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-950\/5 {
  --tw-shadow-color: rgb(26 46 5 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-950\/50 {
  --tw-shadow-color: rgb(26 46 5 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-950\/60 {
  --tw-shadow-color: rgb(26 46 5 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-950\/70 {
  --tw-shadow-color: rgb(26 46 5 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-950\/80 {
  --tw-shadow-color: rgb(26 46 5 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-lime-950\/90 {
  --tw-shadow-color: rgb(26 46 5 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-100 {
  --tw-shadow-color: #f5f5f5;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-100\/10 {
  --tw-shadow-color: rgb(245 245 245 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-100\/20 {
  --tw-shadow-color: rgb(245 245 245 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-100\/30 {
  --tw-shadow-color: rgb(245 245 245 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-100\/40 {
  --tw-shadow-color: rgb(245 245 245 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-100\/5 {
  --tw-shadow-color: rgb(245 245 245 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-100\/50 {
  --tw-shadow-color: rgb(245 245 245 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-100\/60 {
  --tw-shadow-color: rgb(245 245 245 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-100\/70 {
  --tw-shadow-color: rgb(245 245 245 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-100\/80 {
  --tw-shadow-color: rgb(245 245 245 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-100\/90 {
  --tw-shadow-color: rgb(245 245 245 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-200 {
  --tw-shadow-color: #e5e5e5;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-200\/10 {
  --tw-shadow-color: rgb(229 229 229 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-200\/20 {
  --tw-shadow-color: rgb(229 229 229 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-200\/30 {
  --tw-shadow-color: rgb(229 229 229 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-200\/40 {
  --tw-shadow-color: rgb(229 229 229 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-200\/5 {
  --tw-shadow-color: rgb(229 229 229 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-200\/50 {
  --tw-shadow-color: rgb(229 229 229 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-200\/60 {
  --tw-shadow-color: rgb(229 229 229 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-200\/70 {
  --tw-shadow-color: rgb(229 229 229 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-200\/80 {
  --tw-shadow-color: rgb(229 229 229 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-200\/90 {
  --tw-shadow-color: rgb(229 229 229 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-300 {
  --tw-shadow-color: #d4d4d4;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-300\/10 {
  --tw-shadow-color: rgb(212 212 212 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-300\/20 {
  --tw-shadow-color: rgb(212 212 212 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-300\/30 {
  --tw-shadow-color: rgb(212 212 212 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-300\/40 {
  --tw-shadow-color: rgb(212 212 212 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-300\/5 {
  --tw-shadow-color: rgb(212 212 212 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-300\/50 {
  --tw-shadow-color: rgb(212 212 212 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-300\/60 {
  --tw-shadow-color: rgb(212 212 212 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-300\/70 {
  --tw-shadow-color: rgb(212 212 212 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-300\/80 {
  --tw-shadow-color: rgb(212 212 212 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-300\/90 {
  --tw-shadow-color: rgb(212 212 212 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-400 {
  --tw-shadow-color: #a3a3a3;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-400\/10 {
  --tw-shadow-color: rgb(163 163 163 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-400\/20 {
  --tw-shadow-color: rgb(163 163 163 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-400\/30 {
  --tw-shadow-color: rgb(163 163 163 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-400\/40 {
  --tw-shadow-color: rgb(163 163 163 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-400\/5 {
  --tw-shadow-color: rgb(163 163 163 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-400\/50 {
  --tw-shadow-color: rgb(163 163 163 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-400\/60 {
  --tw-shadow-color: rgb(163 163 163 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-400\/70 {
  --tw-shadow-color: rgb(163 163 163 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-400\/80 {
  --tw-shadow-color: rgb(163 163 163 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-400\/90 {
  --tw-shadow-color: rgb(163 163 163 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-50 {
  --tw-shadow-color: #fafafa;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-50\/10 {
  --tw-shadow-color: rgb(250 250 250 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-50\/20 {
  --tw-shadow-color: rgb(250 250 250 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-50\/30 {
  --tw-shadow-color: rgb(250 250 250 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-50\/40 {
  --tw-shadow-color: rgb(250 250 250 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-50\/5 {
  --tw-shadow-color: rgb(250 250 250 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-50\/50 {
  --tw-shadow-color: rgb(250 250 250 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-50\/60 {
  --tw-shadow-color: rgb(250 250 250 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-50\/70 {
  --tw-shadow-color: rgb(250 250 250 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-50\/80 {
  --tw-shadow-color: rgb(250 250 250 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-50\/90 {
  --tw-shadow-color: rgb(250 250 250 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-500 {
  --tw-shadow-color: #737373;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-500\/10 {
  --tw-shadow-color: rgb(115 115 115 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-500\/20 {
  --tw-shadow-color: rgb(115 115 115 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-500\/30 {
  --tw-shadow-color: rgb(115 115 115 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-500\/40 {
  --tw-shadow-color: rgb(115 115 115 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-500\/5 {
  --tw-shadow-color: rgb(115 115 115 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-500\/50 {
  --tw-shadow-color: rgb(115 115 115 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-500\/60 {
  --tw-shadow-color: rgb(115 115 115 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-500\/70 {
  --tw-shadow-color: rgb(115 115 115 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-500\/80 {
  --tw-shadow-color: rgb(115 115 115 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-500\/90 {
  --tw-shadow-color: rgb(115 115 115 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-600 {
  --tw-shadow-color: #525252;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-600\/10 {
  --tw-shadow-color: rgb(82 82 82 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-600\/20 {
  --tw-shadow-color: rgb(82 82 82 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-600\/30 {
  --tw-shadow-color: rgb(82 82 82 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-600\/40 {
  --tw-shadow-color: rgb(82 82 82 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-600\/5 {
  --tw-shadow-color: rgb(82 82 82 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-600\/50 {
  --tw-shadow-color: rgb(82 82 82 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-600\/60 {
  --tw-shadow-color: rgb(82 82 82 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-600\/70 {
  --tw-shadow-color: rgb(82 82 82 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-600\/80 {
  --tw-shadow-color: rgb(82 82 82 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-600\/90 {
  --tw-shadow-color: rgb(82 82 82 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-700 {
  --tw-shadow-color: #404040;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-700\/10 {
  --tw-shadow-color: rgb(64 64 64 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-700\/20 {
  --tw-shadow-color: rgb(64 64 64 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-700\/30 {
  --tw-shadow-color: rgb(64 64 64 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-700\/40 {
  --tw-shadow-color: rgb(64 64 64 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-700\/5 {
  --tw-shadow-color: rgb(64 64 64 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-700\/50 {
  --tw-shadow-color: rgb(64 64 64 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-700\/60 {
  --tw-shadow-color: rgb(64 64 64 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-700\/70 {
  --tw-shadow-color: rgb(64 64 64 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-700\/80 {
  --tw-shadow-color: rgb(64 64 64 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-700\/90 {
  --tw-shadow-color: rgb(64 64 64 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-800 {
  --tw-shadow-color: #262626;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-800\/10 {
  --tw-shadow-color: rgb(38 38 38 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-800\/20 {
  --tw-shadow-color: rgb(38 38 38 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-800\/30 {
  --tw-shadow-color: rgb(38 38 38 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-800\/40 {
  --tw-shadow-color: rgb(38 38 38 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-800\/5 {
  --tw-shadow-color: rgb(38 38 38 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-800\/50 {
  --tw-shadow-color: rgb(38 38 38 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-800\/60 {
  --tw-shadow-color: rgb(38 38 38 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-800\/70 {
  --tw-shadow-color: rgb(38 38 38 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-800\/80 {
  --tw-shadow-color: rgb(38 38 38 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-800\/90 {
  --tw-shadow-color: rgb(38 38 38 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-900 {
  --tw-shadow-color: #171717;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-900\/10 {
  --tw-shadow-color: rgb(23 23 23 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-900\/20 {
  --tw-shadow-color: rgb(23 23 23 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-900\/30 {
  --tw-shadow-color: rgb(23 23 23 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-900\/40 {
  --tw-shadow-color: rgb(23 23 23 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-900\/5 {
  --tw-shadow-color: rgb(23 23 23 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-900\/50 {
  --tw-shadow-color: rgb(23 23 23 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-900\/60 {
  --tw-shadow-color: rgb(23 23 23 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-900\/70 {
  --tw-shadow-color: rgb(23 23 23 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-900\/80 {
  --tw-shadow-color: rgb(23 23 23 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-900\/90 {
  --tw-shadow-color: rgb(23 23 23 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-950 {
  --tw-shadow-color: #0a0a0a;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-950\/10 {
  --tw-shadow-color: rgb(10 10 10 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-950\/20 {
  --tw-shadow-color: rgb(10 10 10 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-950\/30 {
  --tw-shadow-color: rgb(10 10 10 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-950\/40 {
  --tw-shadow-color: rgb(10 10 10 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-950\/5 {
  --tw-shadow-color: rgb(10 10 10 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-950\/50 {
  --tw-shadow-color: rgb(10 10 10 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-950\/60 {
  --tw-shadow-color: rgb(10 10 10 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-950\/70 {
  --tw-shadow-color: rgb(10 10 10 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-950\/80 {
  --tw-shadow-color: rgb(10 10 10 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-neutral-950\/90 {
  --tw-shadow-color: rgb(10 10 10 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-100 {
  --tw-shadow-color: #ffedd5;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-100\/10 {
  --tw-shadow-color: rgb(255 237 213 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-100\/20 {
  --tw-shadow-color: rgb(255 237 213 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-100\/30 {
  --tw-shadow-color: rgb(255 237 213 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-100\/40 {
  --tw-shadow-color: rgb(255 237 213 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-100\/5 {
  --tw-shadow-color: rgb(255 237 213 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-100\/50 {
  --tw-shadow-color: rgb(255 237 213 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-100\/60 {
  --tw-shadow-color: rgb(255 237 213 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-100\/70 {
  --tw-shadow-color: rgb(255 237 213 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-100\/80 {
  --tw-shadow-color: rgb(255 237 213 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-100\/90 {
  --tw-shadow-color: rgb(255 237 213 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-200 {
  --tw-shadow-color: #fed7aa;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-200\/10 {
  --tw-shadow-color: rgb(254 215 170 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-200\/20 {
  --tw-shadow-color: rgb(254 215 170 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-200\/30 {
  --tw-shadow-color: rgb(254 215 170 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-200\/40 {
  --tw-shadow-color: rgb(254 215 170 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-200\/5 {
  --tw-shadow-color: rgb(254 215 170 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-200\/50 {
  --tw-shadow-color: rgb(254 215 170 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-200\/60 {
  --tw-shadow-color: rgb(254 215 170 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-200\/70 {
  --tw-shadow-color: rgb(254 215 170 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-200\/80 {
  --tw-shadow-color: rgb(254 215 170 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-200\/90 {
  --tw-shadow-color: rgb(254 215 170 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-300 {
  --tw-shadow-color: #fdba74;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-300\/10 {
  --tw-shadow-color: rgb(253 186 116 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-300\/20 {
  --tw-shadow-color: rgb(253 186 116 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-300\/30 {
  --tw-shadow-color: rgb(253 186 116 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-300\/40 {
  --tw-shadow-color: rgb(253 186 116 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-300\/5 {
  --tw-shadow-color: rgb(253 186 116 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-300\/50 {
  --tw-shadow-color: rgb(253 186 116 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-300\/60 {
  --tw-shadow-color: rgb(253 186 116 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-300\/70 {
  --tw-shadow-color: rgb(253 186 116 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-300\/80 {
  --tw-shadow-color: rgb(253 186 116 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-300\/90 {
  --tw-shadow-color: rgb(253 186 116 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-400 {
  --tw-shadow-color: #fb923c;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-400\/10 {
  --tw-shadow-color: rgb(251 146 60 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-400\/20 {
  --tw-shadow-color: rgb(251 146 60 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-400\/30 {
  --tw-shadow-color: rgb(251 146 60 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-400\/40 {
  --tw-shadow-color: rgb(251 146 60 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-400\/5 {
  --tw-shadow-color: rgb(251 146 60 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-400\/50 {
  --tw-shadow-color: rgb(251 146 60 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-400\/60 {
  --tw-shadow-color: rgb(251 146 60 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-400\/70 {
  --tw-shadow-color: rgb(251 146 60 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-400\/80 {
  --tw-shadow-color: rgb(251 146 60 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-400\/90 {
  --tw-shadow-color: rgb(251 146 60 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-50 {
  --tw-shadow-color: #fff7ed;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-50\/10 {
  --tw-shadow-color: rgb(255 247 237 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-50\/20 {
  --tw-shadow-color: rgb(255 247 237 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-50\/30 {
  --tw-shadow-color: rgb(255 247 237 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-50\/40 {
  --tw-shadow-color: rgb(255 247 237 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-50\/5 {
  --tw-shadow-color: rgb(255 247 237 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-50\/50 {
  --tw-shadow-color: rgb(255 247 237 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-50\/60 {
  --tw-shadow-color: rgb(255 247 237 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-50\/70 {
  --tw-shadow-color: rgb(255 247 237 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-50\/80 {
  --tw-shadow-color: rgb(255 247 237 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-50\/90 {
  --tw-shadow-color: rgb(255 247 237 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-500 {
  --tw-shadow-color: #f97316;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-500\/10 {
  --tw-shadow-color: rgb(249 115 22 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-500\/20 {
  --tw-shadow-color: rgb(249 115 22 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-500\/30 {
  --tw-shadow-color: rgb(249 115 22 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-500\/40 {
  --tw-shadow-color: rgb(249 115 22 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-500\/5 {
  --tw-shadow-color: rgb(249 115 22 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-500\/50 {
  --tw-shadow-color: rgb(249 115 22 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-500\/60 {
  --tw-shadow-color: rgb(249 115 22 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-500\/70 {
  --tw-shadow-color: rgb(249 115 22 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-500\/80 {
  --tw-shadow-color: rgb(249 115 22 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-500\/90 {
  --tw-shadow-color: rgb(249 115 22 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-600 {
  --tw-shadow-color: #ea580c;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-600\/10 {
  --tw-shadow-color: rgb(234 88 12 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-600\/20 {
  --tw-shadow-color: rgb(234 88 12 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-600\/30 {
  --tw-shadow-color: rgb(234 88 12 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-600\/40 {
  --tw-shadow-color: rgb(234 88 12 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-600\/5 {
  --tw-shadow-color: rgb(234 88 12 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-600\/50 {
  --tw-shadow-color: rgb(234 88 12 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-600\/60 {
  --tw-shadow-color: rgb(234 88 12 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-600\/70 {
  --tw-shadow-color: rgb(234 88 12 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-600\/80 {
  --tw-shadow-color: rgb(234 88 12 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-600\/90 {
  --tw-shadow-color: rgb(234 88 12 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-700 {
  --tw-shadow-color: #c2410c;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-700\/10 {
  --tw-shadow-color: rgb(194 65 12 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-700\/20 {
  --tw-shadow-color: rgb(194 65 12 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-700\/30 {
  --tw-shadow-color: rgb(194 65 12 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-700\/40 {
  --tw-shadow-color: rgb(194 65 12 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-700\/5 {
  --tw-shadow-color: rgb(194 65 12 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-700\/50 {
  --tw-shadow-color: rgb(194 65 12 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-700\/60 {
  --tw-shadow-color: rgb(194 65 12 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-700\/70 {
  --tw-shadow-color: rgb(194 65 12 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-700\/80 {
  --tw-shadow-color: rgb(194 65 12 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-700\/90 {
  --tw-shadow-color: rgb(194 65 12 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-800 {
  --tw-shadow-color: #9a3412;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-800\/10 {
  --tw-shadow-color: rgb(154 52 18 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-800\/20 {
  --tw-shadow-color: rgb(154 52 18 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-800\/30 {
  --tw-shadow-color: rgb(154 52 18 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-800\/40 {
  --tw-shadow-color: rgb(154 52 18 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-800\/5 {
  --tw-shadow-color: rgb(154 52 18 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-800\/50 {
  --tw-shadow-color: rgb(154 52 18 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-800\/60 {
  --tw-shadow-color: rgb(154 52 18 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-800\/70 {
  --tw-shadow-color: rgb(154 52 18 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-800\/80 {
  --tw-shadow-color: rgb(154 52 18 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-800\/90 {
  --tw-shadow-color: rgb(154 52 18 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-900 {
  --tw-shadow-color: #7c2d12;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-900\/10 {
  --tw-shadow-color: rgb(124 45 18 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-900\/20 {
  --tw-shadow-color: rgb(124 45 18 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-900\/30 {
  --tw-shadow-color: rgb(124 45 18 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-900\/40 {
  --tw-shadow-color: rgb(124 45 18 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-900\/5 {
  --tw-shadow-color: rgb(124 45 18 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-900\/50 {
  --tw-shadow-color: rgb(124 45 18 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-900\/60 {
  --tw-shadow-color: rgb(124 45 18 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-900\/70 {
  --tw-shadow-color: rgb(124 45 18 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-900\/80 {
  --tw-shadow-color: rgb(124 45 18 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-900\/90 {
  --tw-shadow-color: rgb(124 45 18 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-950 {
  --tw-shadow-color: #431407;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-950\/10 {
  --tw-shadow-color: rgb(67 20 7 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-950\/20 {
  --tw-shadow-color: rgb(67 20 7 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-950\/30 {
  --tw-shadow-color: rgb(67 20 7 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-950\/40 {
  --tw-shadow-color: rgb(67 20 7 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-950\/5 {
  --tw-shadow-color: rgb(67 20 7 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-950\/50 {
  --tw-shadow-color: rgb(67 20 7 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-950\/60 {
  --tw-shadow-color: rgb(67 20 7 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-950\/70 {
  --tw-shadow-color: rgb(67 20 7 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-950\/80 {
  --tw-shadow-color: rgb(67 20 7 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orange-950\/90 {
  --tw-shadow-color: rgb(67 20 7 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-100 {
  --tw-shadow-color: #fce7f3;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-100\/10 {
  --tw-shadow-color: rgb(252 231 243 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-100\/20 {
  --tw-shadow-color: rgb(252 231 243 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-100\/30 {
  --tw-shadow-color: rgb(252 231 243 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-100\/40 {
  --tw-shadow-color: rgb(252 231 243 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-100\/5 {
  --tw-shadow-color: rgb(252 231 243 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-100\/50 {
  --tw-shadow-color: rgb(252 231 243 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-100\/60 {
  --tw-shadow-color: rgb(252 231 243 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-100\/70 {
  --tw-shadow-color: rgb(252 231 243 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-100\/80 {
  --tw-shadow-color: rgb(252 231 243 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-100\/90 {
  --tw-shadow-color: rgb(252 231 243 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-200 {
  --tw-shadow-color: #fbcfe8;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-200\/10 {
  --tw-shadow-color: rgb(251 207 232 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-200\/20 {
  --tw-shadow-color: rgb(251 207 232 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-200\/30 {
  --tw-shadow-color: rgb(251 207 232 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-200\/40 {
  --tw-shadow-color: rgb(251 207 232 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-200\/5 {
  --tw-shadow-color: rgb(251 207 232 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-200\/50 {
  --tw-shadow-color: rgb(251 207 232 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-200\/60 {
  --tw-shadow-color: rgb(251 207 232 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-200\/70 {
  --tw-shadow-color: rgb(251 207 232 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-200\/80 {
  --tw-shadow-color: rgb(251 207 232 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-200\/90 {
  --tw-shadow-color: rgb(251 207 232 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-300 {
  --tw-shadow-color: #f9a8d4;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-300\/10 {
  --tw-shadow-color: rgb(249 168 212 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-300\/20 {
  --tw-shadow-color: rgb(249 168 212 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-300\/30 {
  --tw-shadow-color: rgb(249 168 212 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-300\/40 {
  --tw-shadow-color: rgb(249 168 212 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-300\/5 {
  --tw-shadow-color: rgb(249 168 212 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-300\/50 {
  --tw-shadow-color: rgb(249 168 212 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-300\/60 {
  --tw-shadow-color: rgb(249 168 212 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-300\/70 {
  --tw-shadow-color: rgb(249 168 212 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-300\/80 {
  --tw-shadow-color: rgb(249 168 212 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-300\/90 {
  --tw-shadow-color: rgb(249 168 212 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-400 {
  --tw-shadow-color: #f472b6;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-400\/10 {
  --tw-shadow-color: rgb(244 114 182 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-400\/20 {
  --tw-shadow-color: rgb(244 114 182 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-400\/30 {
  --tw-shadow-color: rgb(244 114 182 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-400\/40 {
  --tw-shadow-color: rgb(244 114 182 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-400\/5 {
  --tw-shadow-color: rgb(244 114 182 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-400\/50 {
  --tw-shadow-color: rgb(244 114 182 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-400\/60 {
  --tw-shadow-color: rgb(244 114 182 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-400\/70 {
  --tw-shadow-color: rgb(244 114 182 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-400\/80 {
  --tw-shadow-color: rgb(244 114 182 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-400\/90 {
  --tw-shadow-color: rgb(244 114 182 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-50 {
  --tw-shadow-color: #fdf2f8;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-50\/10 {
  --tw-shadow-color: rgb(253 242 248 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-50\/20 {
  --tw-shadow-color: rgb(253 242 248 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-50\/30 {
  --tw-shadow-color: rgb(253 242 248 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-50\/40 {
  --tw-shadow-color: rgb(253 242 248 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-50\/5 {
  --tw-shadow-color: rgb(253 242 248 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-50\/50 {
  --tw-shadow-color: rgb(253 242 248 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-50\/60 {
  --tw-shadow-color: rgb(253 242 248 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-50\/70 {
  --tw-shadow-color: rgb(253 242 248 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-50\/80 {
  --tw-shadow-color: rgb(253 242 248 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-50\/90 {
  --tw-shadow-color: rgb(253 242 248 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-500 {
  --tw-shadow-color: #ec4899;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-500\/10 {
  --tw-shadow-color: rgb(236 72 153 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-500\/20 {
  --tw-shadow-color: rgb(236 72 153 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-500\/30 {
  --tw-shadow-color: rgb(236 72 153 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-500\/40 {
  --tw-shadow-color: rgb(236 72 153 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-500\/5 {
  --tw-shadow-color: rgb(236 72 153 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-500\/50 {
  --tw-shadow-color: rgb(236 72 153 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-500\/60 {
  --tw-shadow-color: rgb(236 72 153 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-500\/70 {
  --tw-shadow-color: rgb(236 72 153 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-500\/80 {
  --tw-shadow-color: rgb(236 72 153 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-500\/90 {
  --tw-shadow-color: rgb(236 72 153 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-600 {
  --tw-shadow-color: #db2777;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-600\/10 {
  --tw-shadow-color: rgb(219 39 119 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-600\/20 {
  --tw-shadow-color: rgb(219 39 119 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-600\/30 {
  --tw-shadow-color: rgb(219 39 119 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-600\/40 {
  --tw-shadow-color: rgb(219 39 119 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-600\/5 {
  --tw-shadow-color: rgb(219 39 119 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-600\/50 {
  --tw-shadow-color: rgb(219 39 119 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-600\/60 {
  --tw-shadow-color: rgb(219 39 119 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-600\/70 {
  --tw-shadow-color: rgb(219 39 119 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-600\/80 {
  --tw-shadow-color: rgb(219 39 119 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-600\/90 {
  --tw-shadow-color: rgb(219 39 119 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-700 {
  --tw-shadow-color: #be185d;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-700\/10 {
  --tw-shadow-color: rgb(190 24 93 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-700\/20 {
  --tw-shadow-color: rgb(190 24 93 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-700\/30 {
  --tw-shadow-color: rgb(190 24 93 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-700\/40 {
  --tw-shadow-color: rgb(190 24 93 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-700\/5 {
  --tw-shadow-color: rgb(190 24 93 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-700\/50 {
  --tw-shadow-color: rgb(190 24 93 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-700\/60 {
  --tw-shadow-color: rgb(190 24 93 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-700\/70 {
  --tw-shadow-color: rgb(190 24 93 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-700\/80 {
  --tw-shadow-color: rgb(190 24 93 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-700\/90 {
  --tw-shadow-color: rgb(190 24 93 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-800 {
  --tw-shadow-color: #9d174d;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-800\/10 {
  --tw-shadow-color: rgb(157 23 77 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-800\/20 {
  --tw-shadow-color: rgb(157 23 77 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-800\/30 {
  --tw-shadow-color: rgb(157 23 77 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-800\/40 {
  --tw-shadow-color: rgb(157 23 77 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-800\/5 {
  --tw-shadow-color: rgb(157 23 77 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-800\/50 {
  --tw-shadow-color: rgb(157 23 77 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-800\/60 {
  --tw-shadow-color: rgb(157 23 77 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-800\/70 {
  --tw-shadow-color: rgb(157 23 77 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-800\/80 {
  --tw-shadow-color: rgb(157 23 77 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-800\/90 {
  --tw-shadow-color: rgb(157 23 77 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-900 {
  --tw-shadow-color: #831843;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-900\/10 {
  --tw-shadow-color: rgb(131 24 67 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-900\/20 {
  --tw-shadow-color: rgb(131 24 67 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-900\/30 {
  --tw-shadow-color: rgb(131 24 67 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-900\/40 {
  --tw-shadow-color: rgb(131 24 67 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-900\/5 {
  --tw-shadow-color: rgb(131 24 67 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-900\/50 {
  --tw-shadow-color: rgb(131 24 67 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-900\/60 {
  --tw-shadow-color: rgb(131 24 67 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-900\/70 {
  --tw-shadow-color: rgb(131 24 67 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-900\/80 {
  --tw-shadow-color: rgb(131 24 67 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-900\/90 {
  --tw-shadow-color: rgb(131 24 67 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-950 {
  --tw-shadow-color: #500724;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-950\/10 {
  --tw-shadow-color: rgb(80 7 36 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-950\/20 {
  --tw-shadow-color: rgb(80 7 36 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-950\/30 {
  --tw-shadow-color: rgb(80 7 36 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-950\/40 {
  --tw-shadow-color: rgb(80 7 36 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-950\/5 {
  --tw-shadow-color: rgb(80 7 36 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-950\/50 {
  --tw-shadow-color: rgb(80 7 36 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-950\/60 {
  --tw-shadow-color: rgb(80 7 36 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-950\/70 {
  --tw-shadow-color: rgb(80 7 36 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-950\/80 {
  --tw-shadow-color: rgb(80 7 36 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-pink-950\/90 {
  --tw-shadow-color: rgb(80 7 36 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-100 {
  --tw-shadow-color: #f3e8ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-100\/10 {
  --tw-shadow-color: rgb(243 232 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-100\/20 {
  --tw-shadow-color: rgb(243 232 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-100\/30 {
  --tw-shadow-color: rgb(243 232 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-100\/40 {
  --tw-shadow-color: rgb(243 232 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-100\/5 {
  --tw-shadow-color: rgb(243 232 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-100\/50 {
  --tw-shadow-color: rgb(243 232 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-100\/60 {
  --tw-shadow-color: rgb(243 232 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-100\/70 {
  --tw-shadow-color: rgb(243 232 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-100\/80 {
  --tw-shadow-color: rgb(243 232 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-100\/90 {
  --tw-shadow-color: rgb(243 232 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-200 {
  --tw-shadow-color: #e9d5ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-200\/10 {
  --tw-shadow-color: rgb(233 213 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-200\/20 {
  --tw-shadow-color: rgb(233 213 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-200\/30 {
  --tw-shadow-color: rgb(233 213 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-200\/40 {
  --tw-shadow-color: rgb(233 213 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-200\/5 {
  --tw-shadow-color: rgb(233 213 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-200\/50 {
  --tw-shadow-color: rgb(233 213 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-200\/60 {
  --tw-shadow-color: rgb(233 213 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-200\/70 {
  --tw-shadow-color: rgb(233 213 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-200\/80 {
  --tw-shadow-color: rgb(233 213 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-200\/90 {
  --tw-shadow-color: rgb(233 213 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-300 {
  --tw-shadow-color: #d8b4fe;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-300\/10 {
  --tw-shadow-color: rgb(216 180 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-300\/20 {
  --tw-shadow-color: rgb(216 180 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-300\/30 {
  --tw-shadow-color: rgb(216 180 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-300\/40 {
  --tw-shadow-color: rgb(216 180 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-300\/5 {
  --tw-shadow-color: rgb(216 180 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-300\/50 {
  --tw-shadow-color: rgb(216 180 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-300\/60 {
  --tw-shadow-color: rgb(216 180 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-300\/70 {
  --tw-shadow-color: rgb(216 180 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-300\/80 {
  --tw-shadow-color: rgb(216 180 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-300\/90 {
  --tw-shadow-color: rgb(216 180 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-400 {
  --tw-shadow-color: #c084fc;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-400\/10 {
  --tw-shadow-color: rgb(192 132 252 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-400\/20 {
  --tw-shadow-color: rgb(192 132 252 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-400\/30 {
  --tw-shadow-color: rgb(192 132 252 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-400\/40 {
  --tw-shadow-color: rgb(192 132 252 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-400\/5 {
  --tw-shadow-color: rgb(192 132 252 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-400\/50 {
  --tw-shadow-color: rgb(192 132 252 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-400\/60 {
  --tw-shadow-color: rgb(192 132 252 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-400\/70 {
  --tw-shadow-color: rgb(192 132 252 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-400\/80 {
  --tw-shadow-color: rgb(192 132 252 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-400\/90 {
  --tw-shadow-color: rgb(192 132 252 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-50 {
  --tw-shadow-color: #faf5ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-50\/10 {
  --tw-shadow-color: rgb(250 245 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-50\/20 {
  --tw-shadow-color: rgb(250 245 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-50\/30 {
  --tw-shadow-color: rgb(250 245 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-50\/40 {
  --tw-shadow-color: rgb(250 245 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-50\/5 {
  --tw-shadow-color: rgb(250 245 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-50\/50 {
  --tw-shadow-color: rgb(250 245 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-50\/60 {
  --tw-shadow-color: rgb(250 245 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-50\/70 {
  --tw-shadow-color: rgb(250 245 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-50\/80 {
  --tw-shadow-color: rgb(250 245 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-50\/90 {
  --tw-shadow-color: rgb(250 245 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-500 {
  --tw-shadow-color: #a855f7;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-500\/10 {
  --tw-shadow-color: rgb(168 85 247 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-500\/20 {
  --tw-shadow-color: rgb(168 85 247 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-500\/30 {
  --tw-shadow-color: rgb(168 85 247 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-500\/40 {
  --tw-shadow-color: rgb(168 85 247 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-500\/5 {
  --tw-shadow-color: rgb(168 85 247 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-500\/50 {
  --tw-shadow-color: rgb(168 85 247 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-500\/60 {
  --tw-shadow-color: rgb(168 85 247 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-500\/70 {
  --tw-shadow-color: rgb(168 85 247 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-500\/80 {
  --tw-shadow-color: rgb(168 85 247 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-500\/90 {
  --tw-shadow-color: rgb(168 85 247 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-600 {
  --tw-shadow-color: #9333ea;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-600\/10 {
  --tw-shadow-color: rgb(147 51 234 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-600\/20 {
  --tw-shadow-color: rgb(147 51 234 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-600\/30 {
  --tw-shadow-color: rgb(147 51 234 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-600\/40 {
  --tw-shadow-color: rgb(147 51 234 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-600\/5 {
  --tw-shadow-color: rgb(147 51 234 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-600\/50 {
  --tw-shadow-color: rgb(147 51 234 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-600\/60 {
  --tw-shadow-color: rgb(147 51 234 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-600\/70 {
  --tw-shadow-color: rgb(147 51 234 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-600\/80 {
  --tw-shadow-color: rgb(147 51 234 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-600\/90 {
  --tw-shadow-color: rgb(147 51 234 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-700 {
  --tw-shadow-color: #7e22ce;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-700\/10 {
  --tw-shadow-color: rgb(126 34 206 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-700\/20 {
  --tw-shadow-color: rgb(126 34 206 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-700\/30 {
  --tw-shadow-color: rgb(126 34 206 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-700\/40 {
  --tw-shadow-color: rgb(126 34 206 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-700\/5 {
  --tw-shadow-color: rgb(126 34 206 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-700\/50 {
  --tw-shadow-color: rgb(126 34 206 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-700\/60 {
  --tw-shadow-color: rgb(126 34 206 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-700\/70 {
  --tw-shadow-color: rgb(126 34 206 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-700\/80 {
  --tw-shadow-color: rgb(126 34 206 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-700\/90 {
  --tw-shadow-color: rgb(126 34 206 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-800 {
  --tw-shadow-color: #6b21a8;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-800\/10 {
  --tw-shadow-color: rgb(107 33 168 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-800\/20 {
  --tw-shadow-color: rgb(107 33 168 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-800\/30 {
  --tw-shadow-color: rgb(107 33 168 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-800\/40 {
  --tw-shadow-color: rgb(107 33 168 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-800\/5 {
  --tw-shadow-color: rgb(107 33 168 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-800\/50 {
  --tw-shadow-color: rgb(107 33 168 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-800\/60 {
  --tw-shadow-color: rgb(107 33 168 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-800\/70 {
  --tw-shadow-color: rgb(107 33 168 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-800\/80 {
  --tw-shadow-color: rgb(107 33 168 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-800\/90 {
  --tw-shadow-color: rgb(107 33 168 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-900 {
  --tw-shadow-color: #581c87;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-900\/10 {
  --tw-shadow-color: rgb(88 28 135 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-900\/20 {
  --tw-shadow-color: rgb(88 28 135 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-900\/30 {
  --tw-shadow-color: rgb(88 28 135 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-900\/40 {
  --tw-shadow-color: rgb(88 28 135 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-900\/5 {
  --tw-shadow-color: rgb(88 28 135 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-900\/50 {
  --tw-shadow-color: rgb(88 28 135 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-900\/60 {
  --tw-shadow-color: rgb(88 28 135 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-900\/70 {
  --tw-shadow-color: rgb(88 28 135 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-900\/80 {
  --tw-shadow-color: rgb(88 28 135 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-900\/90 {
  --tw-shadow-color: rgb(88 28 135 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-950 {
  --tw-shadow-color: #3b0764;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-950\/10 {
  --tw-shadow-color: rgb(59 7 100 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-950\/20 {
  --tw-shadow-color: rgb(59 7 100 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-950\/30 {
  --tw-shadow-color: rgb(59 7 100 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-950\/40 {
  --tw-shadow-color: rgb(59 7 100 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-950\/5 {
  --tw-shadow-color: rgb(59 7 100 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-950\/50 {
  --tw-shadow-color: rgb(59 7 100 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-950\/60 {
  --tw-shadow-color: rgb(59 7 100 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-950\/70 {
  --tw-shadow-color: rgb(59 7 100 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-950\/80 {
  --tw-shadow-color: rgb(59 7 100 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-950\/90 {
  --tw-shadow-color: rgb(59 7 100 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-100 {
  --tw-shadow-color: #fee2e2;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-100\/10 {
  --tw-shadow-color: rgb(254 226 226 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-100\/20 {
  --tw-shadow-color: rgb(254 226 226 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-100\/30 {
  --tw-shadow-color: rgb(254 226 226 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-100\/40 {
  --tw-shadow-color: rgb(254 226 226 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-100\/5 {
  --tw-shadow-color: rgb(254 226 226 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-100\/50 {
  --tw-shadow-color: rgb(254 226 226 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-100\/60 {
  --tw-shadow-color: rgb(254 226 226 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-100\/70 {
  --tw-shadow-color: rgb(254 226 226 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-100\/80 {
  --tw-shadow-color: rgb(254 226 226 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-100\/90 {
  --tw-shadow-color: rgb(254 226 226 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-200 {
  --tw-shadow-color: #fecaca;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-200\/10 {
  --tw-shadow-color: rgb(254 202 202 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-200\/20 {
  --tw-shadow-color: rgb(254 202 202 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-200\/30 {
  --tw-shadow-color: rgb(254 202 202 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-200\/40 {
  --tw-shadow-color: rgb(254 202 202 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-200\/5 {
  --tw-shadow-color: rgb(254 202 202 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-200\/50 {
  --tw-shadow-color: rgb(254 202 202 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-200\/60 {
  --tw-shadow-color: rgb(254 202 202 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-200\/70 {
  --tw-shadow-color: rgb(254 202 202 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-200\/80 {
  --tw-shadow-color: rgb(254 202 202 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-200\/90 {
  --tw-shadow-color: rgb(254 202 202 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-300 {
  --tw-shadow-color: #fca5a5;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-300\/10 {
  --tw-shadow-color: rgb(252 165 165 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-300\/20 {
  --tw-shadow-color: rgb(252 165 165 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-300\/30 {
  --tw-shadow-color: rgb(252 165 165 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-300\/40 {
  --tw-shadow-color: rgb(252 165 165 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-300\/5 {
  --tw-shadow-color: rgb(252 165 165 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-300\/50 {
  --tw-shadow-color: rgb(252 165 165 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-300\/60 {
  --tw-shadow-color: rgb(252 165 165 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-300\/70 {
  --tw-shadow-color: rgb(252 165 165 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-300\/80 {
  --tw-shadow-color: rgb(252 165 165 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-300\/90 {
  --tw-shadow-color: rgb(252 165 165 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-400 {
  --tw-shadow-color: #f87171;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-400\/10 {
  --tw-shadow-color: rgb(248 113 113 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-400\/20 {
  --tw-shadow-color: rgb(248 113 113 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-400\/30 {
  --tw-shadow-color: rgb(248 113 113 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-400\/40 {
  --tw-shadow-color: rgb(248 113 113 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-400\/5 {
  --tw-shadow-color: rgb(248 113 113 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-400\/50 {
  --tw-shadow-color: rgb(248 113 113 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-400\/60 {
  --tw-shadow-color: rgb(248 113 113 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-400\/70 {
  --tw-shadow-color: rgb(248 113 113 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-400\/80 {
  --tw-shadow-color: rgb(248 113 113 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-400\/90 {
  --tw-shadow-color: rgb(248 113 113 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-50 {
  --tw-shadow-color: #fef2f2;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-50\/10 {
  --tw-shadow-color: rgb(254 242 242 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-50\/20 {
  --tw-shadow-color: rgb(254 242 242 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-50\/30 {
  --tw-shadow-color: rgb(254 242 242 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-50\/40 {
  --tw-shadow-color: rgb(254 242 242 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-50\/5 {
  --tw-shadow-color: rgb(254 242 242 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-50\/50 {
  --tw-shadow-color: rgb(254 242 242 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-50\/60 {
  --tw-shadow-color: rgb(254 242 242 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-50\/70 {
  --tw-shadow-color: rgb(254 242 242 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-50\/80 {
  --tw-shadow-color: rgb(254 242 242 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-50\/90 {
  --tw-shadow-color: rgb(254 242 242 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-500 {
  --tw-shadow-color: #ef4444;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-500\/10 {
  --tw-shadow-color: rgb(239 68 68 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-500\/20 {
  --tw-shadow-color: rgb(239 68 68 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-500\/30 {
  --tw-shadow-color: rgb(239 68 68 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-500\/40 {
  --tw-shadow-color: rgb(239 68 68 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-500\/5 {
  --tw-shadow-color: rgb(239 68 68 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-500\/50 {
  --tw-shadow-color: rgb(239 68 68 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-500\/60 {
  --tw-shadow-color: rgb(239 68 68 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-500\/70 {
  --tw-shadow-color: rgb(239 68 68 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-500\/80 {
  --tw-shadow-color: rgb(239 68 68 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-500\/90 {
  --tw-shadow-color: rgb(239 68 68 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-600 {
  --tw-shadow-color: #dc2626;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-600\/10 {
  --tw-shadow-color: rgb(220 38 38 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-600\/20 {
  --tw-shadow-color: rgb(220 38 38 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-600\/30 {
  --tw-shadow-color: rgb(220 38 38 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-600\/40 {
  --tw-shadow-color: rgb(220 38 38 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-600\/5 {
  --tw-shadow-color: rgb(220 38 38 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-600\/50 {
  --tw-shadow-color: rgb(220 38 38 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-600\/60 {
  --tw-shadow-color: rgb(220 38 38 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-600\/70 {
  --tw-shadow-color: rgb(220 38 38 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-600\/80 {
  --tw-shadow-color: rgb(220 38 38 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-600\/90 {
  --tw-shadow-color: rgb(220 38 38 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-700 {
  --tw-shadow-color: #b91c1c;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-700\/10 {
  --tw-shadow-color: rgb(185 28 28 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-700\/20 {
  --tw-shadow-color: rgb(185 28 28 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-700\/30 {
  --tw-shadow-color: rgb(185 28 28 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-700\/40 {
  --tw-shadow-color: rgb(185 28 28 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-700\/5 {
  --tw-shadow-color: rgb(185 28 28 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-700\/50 {
  --tw-shadow-color: rgb(185 28 28 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-700\/60 {
  --tw-shadow-color: rgb(185 28 28 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-700\/70 {
  --tw-shadow-color: rgb(185 28 28 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-700\/80 {
  --tw-shadow-color: rgb(185 28 28 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-700\/90 {
  --tw-shadow-color: rgb(185 28 28 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-800 {
  --tw-shadow-color: #991b1b;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-800\/10 {
  --tw-shadow-color: rgb(153 27 27 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-800\/20 {
  --tw-shadow-color: rgb(153 27 27 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-800\/30 {
  --tw-shadow-color: rgb(153 27 27 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-800\/40 {
  --tw-shadow-color: rgb(153 27 27 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-800\/5 {
  --tw-shadow-color: rgb(153 27 27 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-800\/50 {
  --tw-shadow-color: rgb(153 27 27 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-800\/60 {
  --tw-shadow-color: rgb(153 27 27 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-800\/70 {
  --tw-shadow-color: rgb(153 27 27 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-800\/80 {
  --tw-shadow-color: rgb(153 27 27 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-800\/90 {
  --tw-shadow-color: rgb(153 27 27 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-900 {
  --tw-shadow-color: #7f1d1d;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-900\/10 {
  --tw-shadow-color: rgb(127 29 29 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-900\/20 {
  --tw-shadow-color: rgb(127 29 29 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-900\/30 {
  --tw-shadow-color: rgb(127 29 29 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-900\/40 {
  --tw-shadow-color: rgb(127 29 29 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-900\/5 {
  --tw-shadow-color: rgb(127 29 29 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-900\/50 {
  --tw-shadow-color: rgb(127 29 29 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-900\/60 {
  --tw-shadow-color: rgb(127 29 29 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-900\/70 {
  --tw-shadow-color: rgb(127 29 29 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-900\/80 {
  --tw-shadow-color: rgb(127 29 29 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-900\/90 {
  --tw-shadow-color: rgb(127 29 29 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-950 {
  --tw-shadow-color: #450a0a;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-950\/10 {
  --tw-shadow-color: rgb(69 10 10 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-950\/20 {
  --tw-shadow-color: rgb(69 10 10 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-950\/30 {
  --tw-shadow-color: rgb(69 10 10 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-950\/40 {
  --tw-shadow-color: rgb(69 10 10 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-950\/5 {
  --tw-shadow-color: rgb(69 10 10 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-950\/50 {
  --tw-shadow-color: rgb(69 10 10 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-950\/60 {
  --tw-shadow-color: rgb(69 10 10 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-950\/70 {
  --tw-shadow-color: rgb(69 10 10 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-950\/80 {
  --tw-shadow-color: rgb(69 10 10 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-950\/90 {
  --tw-shadow-color: rgb(69 10 10 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-100 {
  --tw-shadow-color: #ffe4e6;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-100\/10 {
  --tw-shadow-color: rgb(255 228 230 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-100\/20 {
  --tw-shadow-color: rgb(255 228 230 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-100\/30 {
  --tw-shadow-color: rgb(255 228 230 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-100\/40 {
  --tw-shadow-color: rgb(255 228 230 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-100\/5 {
  --tw-shadow-color: rgb(255 228 230 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-100\/50 {
  --tw-shadow-color: rgb(255 228 230 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-100\/60 {
  --tw-shadow-color: rgb(255 228 230 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-100\/70 {
  --tw-shadow-color: rgb(255 228 230 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-100\/80 {
  --tw-shadow-color: rgb(255 228 230 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-100\/90 {
  --tw-shadow-color: rgb(255 228 230 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-200 {
  --tw-shadow-color: #fecdd3;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-200\/10 {
  --tw-shadow-color: rgb(254 205 211 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-200\/20 {
  --tw-shadow-color: rgb(254 205 211 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-200\/30 {
  --tw-shadow-color: rgb(254 205 211 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-200\/40 {
  --tw-shadow-color: rgb(254 205 211 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-200\/5 {
  --tw-shadow-color: rgb(254 205 211 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-200\/50 {
  --tw-shadow-color: rgb(254 205 211 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-200\/60 {
  --tw-shadow-color: rgb(254 205 211 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-200\/70 {
  --tw-shadow-color: rgb(254 205 211 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-200\/80 {
  --tw-shadow-color: rgb(254 205 211 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-200\/90 {
  --tw-shadow-color: rgb(254 205 211 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-300 {
  --tw-shadow-color: #fda4af;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-300\/10 {
  --tw-shadow-color: rgb(253 164 175 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-300\/20 {
  --tw-shadow-color: rgb(253 164 175 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-300\/30 {
  --tw-shadow-color: rgb(253 164 175 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-300\/40 {
  --tw-shadow-color: rgb(253 164 175 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-300\/5 {
  --tw-shadow-color: rgb(253 164 175 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-300\/50 {
  --tw-shadow-color: rgb(253 164 175 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-300\/60 {
  --tw-shadow-color: rgb(253 164 175 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-300\/70 {
  --tw-shadow-color: rgb(253 164 175 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-300\/80 {
  --tw-shadow-color: rgb(253 164 175 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-300\/90 {
  --tw-shadow-color: rgb(253 164 175 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-400 {
  --tw-shadow-color: #fb7185;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-400\/10 {
  --tw-shadow-color: rgb(251 113 133 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-400\/20 {
  --tw-shadow-color: rgb(251 113 133 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-400\/30 {
  --tw-shadow-color: rgb(251 113 133 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-400\/40 {
  --tw-shadow-color: rgb(251 113 133 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-400\/5 {
  --tw-shadow-color: rgb(251 113 133 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-400\/50 {
  --tw-shadow-color: rgb(251 113 133 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-400\/60 {
  --tw-shadow-color: rgb(251 113 133 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-400\/70 {
  --tw-shadow-color: rgb(251 113 133 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-400\/80 {
  --tw-shadow-color: rgb(251 113 133 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-400\/90 {
  --tw-shadow-color: rgb(251 113 133 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-50 {
  --tw-shadow-color: #fff1f2;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-50\/10 {
  --tw-shadow-color: rgb(255 241 242 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-50\/20 {
  --tw-shadow-color: rgb(255 241 242 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-50\/30 {
  --tw-shadow-color: rgb(255 241 242 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-50\/40 {
  --tw-shadow-color: rgb(255 241 242 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-50\/5 {
  --tw-shadow-color: rgb(255 241 242 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-50\/50 {
  --tw-shadow-color: rgb(255 241 242 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-50\/60 {
  --tw-shadow-color: rgb(255 241 242 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-50\/70 {
  --tw-shadow-color: rgb(255 241 242 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-50\/80 {
  --tw-shadow-color: rgb(255 241 242 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-50\/90 {
  --tw-shadow-color: rgb(255 241 242 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-500 {
  --tw-shadow-color: #f43f5e;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-500\/10 {
  --tw-shadow-color: rgb(244 63 94 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-500\/20 {
  --tw-shadow-color: rgb(244 63 94 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-500\/30 {
  --tw-shadow-color: rgb(244 63 94 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-500\/40 {
  --tw-shadow-color: rgb(244 63 94 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-500\/5 {
  --tw-shadow-color: rgb(244 63 94 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-500\/50 {
  --tw-shadow-color: rgb(244 63 94 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-500\/60 {
  --tw-shadow-color: rgb(244 63 94 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-500\/70 {
  --tw-shadow-color: rgb(244 63 94 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-500\/80 {
  --tw-shadow-color: rgb(244 63 94 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-500\/90 {
  --tw-shadow-color: rgb(244 63 94 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-600 {
  --tw-shadow-color: #e11d48;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-600\/10 {
  --tw-shadow-color: rgb(225 29 72 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-600\/20 {
  --tw-shadow-color: rgb(225 29 72 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-600\/30 {
  --tw-shadow-color: rgb(225 29 72 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-600\/40 {
  --tw-shadow-color: rgb(225 29 72 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-600\/5 {
  --tw-shadow-color: rgb(225 29 72 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-600\/50 {
  --tw-shadow-color: rgb(225 29 72 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-600\/60 {
  --tw-shadow-color: rgb(225 29 72 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-600\/70 {
  --tw-shadow-color: rgb(225 29 72 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-600\/80 {
  --tw-shadow-color: rgb(225 29 72 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-600\/90 {
  --tw-shadow-color: rgb(225 29 72 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-700 {
  --tw-shadow-color: #be123c;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-700\/10 {
  --tw-shadow-color: rgb(190 18 60 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-700\/20 {
  --tw-shadow-color: rgb(190 18 60 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-700\/30 {
  --tw-shadow-color: rgb(190 18 60 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-700\/40 {
  --tw-shadow-color: rgb(190 18 60 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-700\/5 {
  --tw-shadow-color: rgb(190 18 60 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-700\/50 {
  --tw-shadow-color: rgb(190 18 60 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-700\/60 {
  --tw-shadow-color: rgb(190 18 60 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-700\/70 {
  --tw-shadow-color: rgb(190 18 60 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-700\/80 {
  --tw-shadow-color: rgb(190 18 60 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-700\/90 {
  --tw-shadow-color: rgb(190 18 60 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-800 {
  --tw-shadow-color: #9f1239;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-800\/10 {
  --tw-shadow-color: rgb(159 18 57 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-800\/20 {
  --tw-shadow-color: rgb(159 18 57 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-800\/30 {
  --tw-shadow-color: rgb(159 18 57 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-800\/40 {
  --tw-shadow-color: rgb(159 18 57 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-800\/5 {
  --tw-shadow-color: rgb(159 18 57 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-800\/50 {
  --tw-shadow-color: rgb(159 18 57 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-800\/60 {
  --tw-shadow-color: rgb(159 18 57 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-800\/70 {
  --tw-shadow-color: rgb(159 18 57 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-800\/80 {
  --tw-shadow-color: rgb(159 18 57 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-800\/90 {
  --tw-shadow-color: rgb(159 18 57 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-900 {
  --tw-shadow-color: #881337;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-900\/10 {
  --tw-shadow-color: rgb(136 19 55 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-900\/20 {
  --tw-shadow-color: rgb(136 19 55 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-900\/30 {
  --tw-shadow-color: rgb(136 19 55 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-900\/40 {
  --tw-shadow-color: rgb(136 19 55 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-900\/5 {
  --tw-shadow-color: rgb(136 19 55 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-900\/50 {
  --tw-shadow-color: rgb(136 19 55 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-900\/60 {
  --tw-shadow-color: rgb(136 19 55 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-900\/70 {
  --tw-shadow-color: rgb(136 19 55 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-900\/80 {
  --tw-shadow-color: rgb(136 19 55 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-900\/90 {
  --tw-shadow-color: rgb(136 19 55 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-950 {
  --tw-shadow-color: #4c0519;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-950\/10 {
  --tw-shadow-color: rgb(76 5 25 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-950\/20 {
  --tw-shadow-color: rgb(76 5 25 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-950\/30 {
  --tw-shadow-color: rgb(76 5 25 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-950\/40 {
  --tw-shadow-color: rgb(76 5 25 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-950\/5 {
  --tw-shadow-color: rgb(76 5 25 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-950\/50 {
  --tw-shadow-color: rgb(76 5 25 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-950\/60 {
  --tw-shadow-color: rgb(76 5 25 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-950\/70 {
  --tw-shadow-color: rgb(76 5 25 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-950\/80 {
  --tw-shadow-color: rgb(76 5 25 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-rose-950\/90 {
  --tw-shadow-color: rgb(76 5 25 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-100 {
  --tw-shadow-color: #e0f2fe;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-100\/10 {
  --tw-shadow-color: rgb(224 242 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-100\/20 {
  --tw-shadow-color: rgb(224 242 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-100\/30 {
  --tw-shadow-color: rgb(224 242 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-100\/40 {
  --tw-shadow-color: rgb(224 242 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-100\/5 {
  --tw-shadow-color: rgb(224 242 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-100\/50 {
  --tw-shadow-color: rgb(224 242 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-100\/60 {
  --tw-shadow-color: rgb(224 242 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-100\/70 {
  --tw-shadow-color: rgb(224 242 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-100\/80 {
  --tw-shadow-color: rgb(224 242 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-100\/90 {
  --tw-shadow-color: rgb(224 242 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-200 {
  --tw-shadow-color: #bae6fd;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-200\/10 {
  --tw-shadow-color: rgb(186 230 253 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-200\/20 {
  --tw-shadow-color: rgb(186 230 253 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-200\/30 {
  --tw-shadow-color: rgb(186 230 253 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-200\/40 {
  --tw-shadow-color: rgb(186 230 253 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-200\/5 {
  --tw-shadow-color: rgb(186 230 253 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-200\/50 {
  --tw-shadow-color: rgb(186 230 253 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-200\/60 {
  --tw-shadow-color: rgb(186 230 253 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-200\/70 {
  --tw-shadow-color: rgb(186 230 253 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-200\/80 {
  --tw-shadow-color: rgb(186 230 253 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-200\/90 {
  --tw-shadow-color: rgb(186 230 253 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-300 {
  --tw-shadow-color: #7dd3fc;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-300\/10 {
  --tw-shadow-color: rgb(125 211 252 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-300\/20 {
  --tw-shadow-color: rgb(125 211 252 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-300\/30 {
  --tw-shadow-color: rgb(125 211 252 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-300\/40 {
  --tw-shadow-color: rgb(125 211 252 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-300\/5 {
  --tw-shadow-color: rgb(125 211 252 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-300\/50 {
  --tw-shadow-color: rgb(125 211 252 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-300\/60 {
  --tw-shadow-color: rgb(125 211 252 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-300\/70 {
  --tw-shadow-color: rgb(125 211 252 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-300\/80 {
  --tw-shadow-color: rgb(125 211 252 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-300\/90 {
  --tw-shadow-color: rgb(125 211 252 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-400 {
  --tw-shadow-color: #38bdf8;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-400\/10 {
  --tw-shadow-color: rgb(56 189 248 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-400\/20 {
  --tw-shadow-color: rgb(56 189 248 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-400\/30 {
  --tw-shadow-color: rgb(56 189 248 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-400\/40 {
  --tw-shadow-color: rgb(56 189 248 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-400\/5 {
  --tw-shadow-color: rgb(56 189 248 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-400\/50 {
  --tw-shadow-color: rgb(56 189 248 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-400\/60 {
  --tw-shadow-color: rgb(56 189 248 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-400\/70 {
  --tw-shadow-color: rgb(56 189 248 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-400\/80 {
  --tw-shadow-color: rgb(56 189 248 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-400\/90 {
  --tw-shadow-color: rgb(56 189 248 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-50 {
  --tw-shadow-color: #f0f9ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-50\/10 {
  --tw-shadow-color: rgb(240 249 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-50\/20 {
  --tw-shadow-color: rgb(240 249 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-50\/30 {
  --tw-shadow-color: rgb(240 249 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-50\/40 {
  --tw-shadow-color: rgb(240 249 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-50\/5 {
  --tw-shadow-color: rgb(240 249 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-50\/50 {
  --tw-shadow-color: rgb(240 249 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-50\/60 {
  --tw-shadow-color: rgb(240 249 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-50\/70 {
  --tw-shadow-color: rgb(240 249 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-50\/80 {
  --tw-shadow-color: rgb(240 249 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-50\/90 {
  --tw-shadow-color: rgb(240 249 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-500 {
  --tw-shadow-color: #0ea5e9;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-500\/10 {
  --tw-shadow-color: rgb(14 165 233 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-500\/20 {
  --tw-shadow-color: rgb(14 165 233 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-500\/30 {
  --tw-shadow-color: rgb(14 165 233 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-500\/40 {
  --tw-shadow-color: rgb(14 165 233 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-500\/5 {
  --tw-shadow-color: rgb(14 165 233 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-500\/50 {
  --tw-shadow-color: rgb(14 165 233 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-500\/60 {
  --tw-shadow-color: rgb(14 165 233 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-500\/70 {
  --tw-shadow-color: rgb(14 165 233 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-500\/80 {
  --tw-shadow-color: rgb(14 165 233 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-500\/90 {
  --tw-shadow-color: rgb(14 165 233 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-600 {
  --tw-shadow-color: #0284c7;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-600\/10 {
  --tw-shadow-color: rgb(2 132 199 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-600\/20 {
  --tw-shadow-color: rgb(2 132 199 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-600\/30 {
  --tw-shadow-color: rgb(2 132 199 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-600\/40 {
  --tw-shadow-color: rgb(2 132 199 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-600\/5 {
  --tw-shadow-color: rgb(2 132 199 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-600\/50 {
  --tw-shadow-color: rgb(2 132 199 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-600\/60 {
  --tw-shadow-color: rgb(2 132 199 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-600\/70 {
  --tw-shadow-color: rgb(2 132 199 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-600\/80 {
  --tw-shadow-color: rgb(2 132 199 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-600\/90 {
  --tw-shadow-color: rgb(2 132 199 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-700 {
  --tw-shadow-color: #0369a1;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-700\/10 {
  --tw-shadow-color: rgb(3 105 161 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-700\/20 {
  --tw-shadow-color: rgb(3 105 161 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-700\/30 {
  --tw-shadow-color: rgb(3 105 161 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-700\/40 {
  --tw-shadow-color: rgb(3 105 161 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-700\/5 {
  --tw-shadow-color: rgb(3 105 161 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-700\/50 {
  --tw-shadow-color: rgb(3 105 161 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-700\/60 {
  --tw-shadow-color: rgb(3 105 161 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-700\/70 {
  --tw-shadow-color: rgb(3 105 161 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-700\/80 {
  --tw-shadow-color: rgb(3 105 161 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-700\/90 {
  --tw-shadow-color: rgb(3 105 161 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-800 {
  --tw-shadow-color: #075985;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-800\/10 {
  --tw-shadow-color: rgb(7 89 133 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-800\/20 {
  --tw-shadow-color: rgb(7 89 133 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-800\/30 {
  --tw-shadow-color: rgb(7 89 133 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-800\/40 {
  --tw-shadow-color: rgb(7 89 133 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-800\/5 {
  --tw-shadow-color: rgb(7 89 133 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-800\/50 {
  --tw-shadow-color: rgb(7 89 133 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-800\/60 {
  --tw-shadow-color: rgb(7 89 133 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-800\/70 {
  --tw-shadow-color: rgb(7 89 133 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-800\/80 {
  --tw-shadow-color: rgb(7 89 133 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-800\/90 {
  --tw-shadow-color: rgb(7 89 133 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-900 {
  --tw-shadow-color: #0c4a6e;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-900\/10 {
  --tw-shadow-color: rgb(12 74 110 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-900\/20 {
  --tw-shadow-color: rgb(12 74 110 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-900\/30 {
  --tw-shadow-color: rgb(12 74 110 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-900\/40 {
  --tw-shadow-color: rgb(12 74 110 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-900\/5 {
  --tw-shadow-color: rgb(12 74 110 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-900\/50 {
  --tw-shadow-color: rgb(12 74 110 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-900\/60 {
  --tw-shadow-color: rgb(12 74 110 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-900\/70 {
  --tw-shadow-color: rgb(12 74 110 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-900\/80 {
  --tw-shadow-color: rgb(12 74 110 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-900\/90 {
  --tw-shadow-color: rgb(12 74 110 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-950 {
  --tw-shadow-color: #082f49;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-950\/10 {
  --tw-shadow-color: rgb(8 47 73 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-950\/20 {
  --tw-shadow-color: rgb(8 47 73 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-950\/30 {
  --tw-shadow-color: rgb(8 47 73 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-950\/40 {
  --tw-shadow-color: rgb(8 47 73 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-950\/5 {
  --tw-shadow-color: rgb(8 47 73 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-950\/50 {
  --tw-shadow-color: rgb(8 47 73 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-950\/60 {
  --tw-shadow-color: rgb(8 47 73 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-950\/70 {
  --tw-shadow-color: rgb(8 47 73 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-950\/80 {
  --tw-shadow-color: rgb(8 47 73 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-950\/90 {
  --tw-shadow-color: rgb(8 47 73 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-100 {
  --tw-shadow-color: #f1f5f9;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-100\/10 {
  --tw-shadow-color: rgb(241 245 249 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-100\/20 {
  --tw-shadow-color: rgb(241 245 249 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-100\/30 {
  --tw-shadow-color: rgb(241 245 249 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-100\/40 {
  --tw-shadow-color: rgb(241 245 249 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-100\/5 {
  --tw-shadow-color: rgb(241 245 249 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-100\/50 {
  --tw-shadow-color: rgb(241 245 249 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-100\/60 {
  --tw-shadow-color: rgb(241 245 249 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-100\/70 {
  --tw-shadow-color: rgb(241 245 249 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-100\/80 {
  --tw-shadow-color: rgb(241 245 249 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-100\/90 {
  --tw-shadow-color: rgb(241 245 249 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-200 {
  --tw-shadow-color: #e2e8f0;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-200\/10 {
  --tw-shadow-color: rgb(226 232 240 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-200\/20 {
  --tw-shadow-color: rgb(226 232 240 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-200\/30 {
  --tw-shadow-color: rgb(226 232 240 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-200\/40 {
  --tw-shadow-color: rgb(226 232 240 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-200\/5 {
  --tw-shadow-color: rgb(226 232 240 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-200\/50 {
  --tw-shadow-color: rgb(226 232 240 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-200\/60 {
  --tw-shadow-color: rgb(226 232 240 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-200\/70 {
  --tw-shadow-color: rgb(226 232 240 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-200\/80 {
  --tw-shadow-color: rgb(226 232 240 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-200\/90 {
  --tw-shadow-color: rgb(226 232 240 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-300 {
  --tw-shadow-color: #cbd5e1;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-300\/10 {
  --tw-shadow-color: rgb(203 213 225 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-300\/20 {
  --tw-shadow-color: rgb(203 213 225 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-300\/30 {
  --tw-shadow-color: rgb(203 213 225 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-300\/40 {
  --tw-shadow-color: rgb(203 213 225 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-300\/5 {
  --tw-shadow-color: rgb(203 213 225 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-300\/50 {
  --tw-shadow-color: rgb(203 213 225 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-300\/60 {
  --tw-shadow-color: rgb(203 213 225 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-300\/70 {
  --tw-shadow-color: rgb(203 213 225 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-300\/80 {
  --tw-shadow-color: rgb(203 213 225 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-300\/90 {
  --tw-shadow-color: rgb(203 213 225 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-400 {
  --tw-shadow-color: #94a3b8;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-400\/10 {
  --tw-shadow-color: rgb(148 163 184 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-400\/20 {
  --tw-shadow-color: rgb(148 163 184 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-400\/30 {
  --tw-shadow-color: rgb(148 163 184 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-400\/40 {
  --tw-shadow-color: rgb(148 163 184 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-400\/5 {
  --tw-shadow-color: rgb(148 163 184 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-400\/50 {
  --tw-shadow-color: rgb(148 163 184 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-400\/60 {
  --tw-shadow-color: rgb(148 163 184 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-400\/70 {
  --tw-shadow-color: rgb(148 163 184 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-400\/80 {
  --tw-shadow-color: rgb(148 163 184 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-400\/90 {
  --tw-shadow-color: rgb(148 163 184 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-50 {
  --tw-shadow-color: #f8fafc;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-50\/10 {
  --tw-shadow-color: rgb(248 250 252 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-50\/20 {
  --tw-shadow-color: rgb(248 250 252 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-50\/30 {
  --tw-shadow-color: rgb(248 250 252 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-50\/40 {
  --tw-shadow-color: rgb(248 250 252 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-50\/5 {
  --tw-shadow-color: rgb(248 250 252 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-50\/50 {
  --tw-shadow-color: rgb(248 250 252 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-50\/60 {
  --tw-shadow-color: rgb(248 250 252 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-50\/70 {
  --tw-shadow-color: rgb(248 250 252 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-50\/80 {
  --tw-shadow-color: rgb(248 250 252 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-50\/90 {
  --tw-shadow-color: rgb(248 250 252 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-500 {
  --tw-shadow-color: #64748b;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-500\/10 {
  --tw-shadow-color: rgb(100 116 139 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-500\/20 {
  --tw-shadow-color: rgb(100 116 139 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-500\/30 {
  --tw-shadow-color: rgb(100 116 139 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-500\/40 {
  --tw-shadow-color: rgb(100 116 139 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-500\/5 {
  --tw-shadow-color: rgb(100 116 139 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-500\/50 {
  --tw-shadow-color: rgb(100 116 139 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-500\/60 {
  --tw-shadow-color: rgb(100 116 139 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-500\/70 {
  --tw-shadow-color: rgb(100 116 139 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-500\/80 {
  --tw-shadow-color: rgb(100 116 139 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-500\/90 {
  --tw-shadow-color: rgb(100 116 139 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-600 {
  --tw-shadow-color: #475569;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-600\/10 {
  --tw-shadow-color: rgb(71 85 105 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-600\/20 {
  --tw-shadow-color: rgb(71 85 105 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-600\/30 {
  --tw-shadow-color: rgb(71 85 105 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-600\/40 {
  --tw-shadow-color: rgb(71 85 105 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-600\/5 {
  --tw-shadow-color: rgb(71 85 105 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-600\/50 {
  --tw-shadow-color: rgb(71 85 105 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-600\/60 {
  --tw-shadow-color: rgb(71 85 105 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-600\/70 {
  --tw-shadow-color: rgb(71 85 105 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-600\/80 {
  --tw-shadow-color: rgb(71 85 105 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-600\/90 {
  --tw-shadow-color: rgb(71 85 105 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-700 {
  --tw-shadow-color: #334155;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-700\/10 {
  --tw-shadow-color: rgb(51 65 85 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-700\/20 {
  --tw-shadow-color: rgb(51 65 85 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-700\/30 {
  --tw-shadow-color: rgb(51 65 85 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-700\/40 {
  --tw-shadow-color: rgb(51 65 85 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-700\/5 {
  --tw-shadow-color: rgb(51 65 85 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-700\/50 {
  --tw-shadow-color: rgb(51 65 85 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-700\/60 {
  --tw-shadow-color: rgb(51 65 85 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-700\/70 {
  --tw-shadow-color: rgb(51 65 85 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-700\/80 {
  --tw-shadow-color: rgb(51 65 85 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-700\/90 {
  --tw-shadow-color: rgb(51 65 85 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-800 {
  --tw-shadow-color: #1e293b;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-800\/10 {
  --tw-shadow-color: rgb(30 41 59 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-800\/20 {
  --tw-shadow-color: rgb(30 41 59 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-800\/30 {
  --tw-shadow-color: rgb(30 41 59 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-800\/40 {
  --tw-shadow-color: rgb(30 41 59 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-800\/5 {
  --tw-shadow-color: rgb(30 41 59 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-800\/50 {
  --tw-shadow-color: rgb(30 41 59 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-800\/60 {
  --tw-shadow-color: rgb(30 41 59 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-800\/70 {
  --tw-shadow-color: rgb(30 41 59 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-800\/80 {
  --tw-shadow-color: rgb(30 41 59 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-800\/90 {
  --tw-shadow-color: rgb(30 41 59 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-900 {
  --tw-shadow-color: #0f172a;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-900\/10 {
  --tw-shadow-color: rgb(15 23 42 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-900\/20 {
  --tw-shadow-color: rgb(15 23 42 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-900\/30 {
  --tw-shadow-color: rgb(15 23 42 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-900\/40 {
  --tw-shadow-color: rgb(15 23 42 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-900\/5 {
  --tw-shadow-color: rgb(15 23 42 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-900\/50 {
  --tw-shadow-color: rgb(15 23 42 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-900\/60 {
  --tw-shadow-color: rgb(15 23 42 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-900\/70 {
  --tw-shadow-color: rgb(15 23 42 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-900\/80 {
  --tw-shadow-color: rgb(15 23 42 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-900\/90 {
  --tw-shadow-color: rgb(15 23 42 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-950 {
  --tw-shadow-color: #020617;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-950\/10 {
  --tw-shadow-color: rgb(2 6 23 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-950\/20 {
  --tw-shadow-color: rgb(2 6 23 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-950\/30 {
  --tw-shadow-color: rgb(2 6 23 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-950\/40 {
  --tw-shadow-color: rgb(2 6 23 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-950\/5 {
  --tw-shadow-color: rgb(2 6 23 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-950\/50 {
  --tw-shadow-color: rgb(2 6 23 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-950\/60 {
  --tw-shadow-color: rgb(2 6 23 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-950\/70 {
  --tw-shadow-color: rgb(2 6 23 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-950\/80 {
  --tw-shadow-color: rgb(2 6 23 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-slate-950\/90 {
  --tw-shadow-color: rgb(2 6 23 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-100 {
  --tw-shadow-color: #f5f5f4;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-100\/10 {
  --tw-shadow-color: rgb(245 245 244 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-100\/20 {
  --tw-shadow-color: rgb(245 245 244 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-100\/30 {
  --tw-shadow-color: rgb(245 245 244 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-100\/40 {
  --tw-shadow-color: rgb(245 245 244 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-100\/5 {
  --tw-shadow-color: rgb(245 245 244 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-100\/50 {
  --tw-shadow-color: rgb(245 245 244 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-100\/60 {
  --tw-shadow-color: rgb(245 245 244 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-100\/70 {
  --tw-shadow-color: rgb(245 245 244 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-100\/80 {
  --tw-shadow-color: rgb(245 245 244 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-100\/90 {
  --tw-shadow-color: rgb(245 245 244 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-200 {
  --tw-shadow-color: #e7e5e4;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-200\/10 {
  --tw-shadow-color: rgb(231 229 228 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-200\/20 {
  --tw-shadow-color: rgb(231 229 228 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-200\/30 {
  --tw-shadow-color: rgb(231 229 228 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-200\/40 {
  --tw-shadow-color: rgb(231 229 228 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-200\/5 {
  --tw-shadow-color: rgb(231 229 228 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-200\/50 {
  --tw-shadow-color: rgb(231 229 228 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-200\/60 {
  --tw-shadow-color: rgb(231 229 228 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-200\/70 {
  --tw-shadow-color: rgb(231 229 228 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-200\/80 {
  --tw-shadow-color: rgb(231 229 228 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-200\/90 {
  --tw-shadow-color: rgb(231 229 228 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-300 {
  --tw-shadow-color: #d6d3d1;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-300\/10 {
  --tw-shadow-color: rgb(214 211 209 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-300\/20 {
  --tw-shadow-color: rgb(214 211 209 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-300\/30 {
  --tw-shadow-color: rgb(214 211 209 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-300\/40 {
  --tw-shadow-color: rgb(214 211 209 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-300\/5 {
  --tw-shadow-color: rgb(214 211 209 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-300\/50 {
  --tw-shadow-color: rgb(214 211 209 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-300\/60 {
  --tw-shadow-color: rgb(214 211 209 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-300\/70 {
  --tw-shadow-color: rgb(214 211 209 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-300\/80 {
  --tw-shadow-color: rgb(214 211 209 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-300\/90 {
  --tw-shadow-color: rgb(214 211 209 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-400 {
  --tw-shadow-color: #a8a29e;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-400\/10 {
  --tw-shadow-color: rgb(168 162 158 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-400\/20 {
  --tw-shadow-color: rgb(168 162 158 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-400\/30 {
  --tw-shadow-color: rgb(168 162 158 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-400\/40 {
  --tw-shadow-color: rgb(168 162 158 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-400\/5 {
  --tw-shadow-color: rgb(168 162 158 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-400\/50 {
  --tw-shadow-color: rgb(168 162 158 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-400\/60 {
  --tw-shadow-color: rgb(168 162 158 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-400\/70 {
  --tw-shadow-color: rgb(168 162 158 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-400\/80 {
  --tw-shadow-color: rgb(168 162 158 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-400\/90 {
  --tw-shadow-color: rgb(168 162 158 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-50 {
  --tw-shadow-color: #fafaf9;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-50\/10 {
  --tw-shadow-color: rgb(250 250 249 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-50\/20 {
  --tw-shadow-color: rgb(250 250 249 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-50\/30 {
  --tw-shadow-color: rgb(250 250 249 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-50\/40 {
  --tw-shadow-color: rgb(250 250 249 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-50\/5 {
  --tw-shadow-color: rgb(250 250 249 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-50\/50 {
  --tw-shadow-color: rgb(250 250 249 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-50\/60 {
  --tw-shadow-color: rgb(250 250 249 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-50\/70 {
  --tw-shadow-color: rgb(250 250 249 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-50\/80 {
  --tw-shadow-color: rgb(250 250 249 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-50\/90 {
  --tw-shadow-color: rgb(250 250 249 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-500 {
  --tw-shadow-color: #78716c;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-500\/10 {
  --tw-shadow-color: rgb(120 113 108 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-500\/20 {
  --tw-shadow-color: rgb(120 113 108 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-500\/30 {
  --tw-shadow-color: rgb(120 113 108 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-500\/40 {
  --tw-shadow-color: rgb(120 113 108 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-500\/5 {
  --tw-shadow-color: rgb(120 113 108 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-500\/50 {
  --tw-shadow-color: rgb(120 113 108 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-500\/60 {
  --tw-shadow-color: rgb(120 113 108 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-500\/70 {
  --tw-shadow-color: rgb(120 113 108 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-500\/80 {
  --tw-shadow-color: rgb(120 113 108 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-500\/90 {
  --tw-shadow-color: rgb(120 113 108 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-600 {
  --tw-shadow-color: #57534e;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-600\/10 {
  --tw-shadow-color: rgb(87 83 78 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-600\/20 {
  --tw-shadow-color: rgb(87 83 78 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-600\/30 {
  --tw-shadow-color: rgb(87 83 78 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-600\/40 {
  --tw-shadow-color: rgb(87 83 78 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-600\/5 {
  --tw-shadow-color: rgb(87 83 78 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-600\/50 {
  --tw-shadow-color: rgb(87 83 78 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-600\/60 {
  --tw-shadow-color: rgb(87 83 78 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-600\/70 {
  --tw-shadow-color: rgb(87 83 78 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-600\/80 {
  --tw-shadow-color: rgb(87 83 78 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-600\/90 {
  --tw-shadow-color: rgb(87 83 78 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-700 {
  --tw-shadow-color: #44403c;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-700\/10 {
  --tw-shadow-color: rgb(68 64 60 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-700\/20 {
  --tw-shadow-color: rgb(68 64 60 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-700\/30 {
  --tw-shadow-color: rgb(68 64 60 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-700\/40 {
  --tw-shadow-color: rgb(68 64 60 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-700\/5 {
  --tw-shadow-color: rgb(68 64 60 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-700\/50 {
  --tw-shadow-color: rgb(68 64 60 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-700\/60 {
  --tw-shadow-color: rgb(68 64 60 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-700\/70 {
  --tw-shadow-color: rgb(68 64 60 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-700\/80 {
  --tw-shadow-color: rgb(68 64 60 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-700\/90 {
  --tw-shadow-color: rgb(68 64 60 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-800 {
  --tw-shadow-color: #292524;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-800\/10 {
  --tw-shadow-color: rgb(41 37 36 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-800\/20 {
  --tw-shadow-color: rgb(41 37 36 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-800\/30 {
  --tw-shadow-color: rgb(41 37 36 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-800\/40 {
  --tw-shadow-color: rgb(41 37 36 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-800\/5 {
  --tw-shadow-color: rgb(41 37 36 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-800\/50 {
  --tw-shadow-color: rgb(41 37 36 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-800\/60 {
  --tw-shadow-color: rgb(41 37 36 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-800\/70 {
  --tw-shadow-color: rgb(41 37 36 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-800\/80 {
  --tw-shadow-color: rgb(41 37 36 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-800\/90 {
  --tw-shadow-color: rgb(41 37 36 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-900 {
  --tw-shadow-color: #1c1917;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-900\/10 {
  --tw-shadow-color: rgb(28 25 23 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-900\/20 {
  --tw-shadow-color: rgb(28 25 23 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-900\/30 {
  --tw-shadow-color: rgb(28 25 23 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-900\/40 {
  --tw-shadow-color: rgb(28 25 23 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-900\/5 {
  --tw-shadow-color: rgb(28 25 23 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-900\/50 {
  --tw-shadow-color: rgb(28 25 23 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-900\/60 {
  --tw-shadow-color: rgb(28 25 23 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-900\/70 {
  --tw-shadow-color: rgb(28 25 23 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-900\/80 {
  --tw-shadow-color: rgb(28 25 23 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-900\/90 {
  --tw-shadow-color: rgb(28 25 23 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-950 {
  --tw-shadow-color: #0c0a09;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-950\/10 {
  --tw-shadow-color: rgb(12 10 9 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-950\/20 {
  --tw-shadow-color: rgb(12 10 9 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-950\/30 {
  --tw-shadow-color: rgb(12 10 9 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-950\/40 {
  --tw-shadow-color: rgb(12 10 9 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-950\/5 {
  --tw-shadow-color: rgb(12 10 9 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-950\/50 {
  --tw-shadow-color: rgb(12 10 9 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-950\/60 {
  --tw-shadow-color: rgb(12 10 9 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-950\/70 {
  --tw-shadow-color: rgb(12 10 9 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-950\/80 {
  --tw-shadow-color: rgb(12 10 9 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-stone-950\/90 {
  --tw-shadow-color: rgb(12 10 9 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-100 {
  --tw-shadow-color: #ccfbf1;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-100\/10 {
  --tw-shadow-color: rgb(204 251 241 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-100\/20 {
  --tw-shadow-color: rgb(204 251 241 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-100\/30 {
  --tw-shadow-color: rgb(204 251 241 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-100\/40 {
  --tw-shadow-color: rgb(204 251 241 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-100\/5 {
  --tw-shadow-color: rgb(204 251 241 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-100\/50 {
  --tw-shadow-color: rgb(204 251 241 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-100\/60 {
  --tw-shadow-color: rgb(204 251 241 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-100\/70 {
  --tw-shadow-color: rgb(204 251 241 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-100\/80 {
  --tw-shadow-color: rgb(204 251 241 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-100\/90 {
  --tw-shadow-color: rgb(204 251 241 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-200 {
  --tw-shadow-color: #99f6e4;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-200\/10 {
  --tw-shadow-color: rgb(153 246 228 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-200\/20 {
  --tw-shadow-color: rgb(153 246 228 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-200\/30 {
  --tw-shadow-color: rgb(153 246 228 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-200\/40 {
  --tw-shadow-color: rgb(153 246 228 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-200\/5 {
  --tw-shadow-color: rgb(153 246 228 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-200\/50 {
  --tw-shadow-color: rgb(153 246 228 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-200\/60 {
  --tw-shadow-color: rgb(153 246 228 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-200\/70 {
  --tw-shadow-color: rgb(153 246 228 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-200\/80 {
  --tw-shadow-color: rgb(153 246 228 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-200\/90 {
  --tw-shadow-color: rgb(153 246 228 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-300 {
  --tw-shadow-color: #5eead4;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-300\/10 {
  --tw-shadow-color: rgb(94 234 212 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-300\/20 {
  --tw-shadow-color: rgb(94 234 212 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-300\/30 {
  --tw-shadow-color: rgb(94 234 212 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-300\/40 {
  --tw-shadow-color: rgb(94 234 212 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-300\/5 {
  --tw-shadow-color: rgb(94 234 212 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-300\/50 {
  --tw-shadow-color: rgb(94 234 212 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-300\/60 {
  --tw-shadow-color: rgb(94 234 212 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-300\/70 {
  --tw-shadow-color: rgb(94 234 212 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-300\/80 {
  --tw-shadow-color: rgb(94 234 212 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-300\/90 {
  --tw-shadow-color: rgb(94 234 212 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-400 {
  --tw-shadow-color: #2dd4bf;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-400\/10 {
  --tw-shadow-color: rgb(45 212 191 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-400\/20 {
  --tw-shadow-color: rgb(45 212 191 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-400\/30 {
  --tw-shadow-color: rgb(45 212 191 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-400\/40 {
  --tw-shadow-color: rgb(45 212 191 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-400\/5 {
  --tw-shadow-color: rgb(45 212 191 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-400\/50 {
  --tw-shadow-color: rgb(45 212 191 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-400\/60 {
  --tw-shadow-color: rgb(45 212 191 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-400\/70 {
  --tw-shadow-color: rgb(45 212 191 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-400\/80 {
  --tw-shadow-color: rgb(45 212 191 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-400\/90 {
  --tw-shadow-color: rgb(45 212 191 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-50 {
  --tw-shadow-color: #f0fdfa;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-50\/10 {
  --tw-shadow-color: rgb(240 253 250 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-50\/20 {
  --tw-shadow-color: rgb(240 253 250 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-50\/30 {
  --tw-shadow-color: rgb(240 253 250 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-50\/40 {
  --tw-shadow-color: rgb(240 253 250 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-50\/5 {
  --tw-shadow-color: rgb(240 253 250 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-50\/50 {
  --tw-shadow-color: rgb(240 253 250 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-50\/60 {
  --tw-shadow-color: rgb(240 253 250 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-50\/70 {
  --tw-shadow-color: rgb(240 253 250 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-50\/80 {
  --tw-shadow-color: rgb(240 253 250 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-50\/90 {
  --tw-shadow-color: rgb(240 253 250 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-500 {
  --tw-shadow-color: #14b8a6;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-500\/10 {
  --tw-shadow-color: rgb(20 184 166 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-500\/20 {
  --tw-shadow-color: rgb(20 184 166 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-500\/30 {
  --tw-shadow-color: rgb(20 184 166 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-500\/40 {
  --tw-shadow-color: rgb(20 184 166 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-500\/5 {
  --tw-shadow-color: rgb(20 184 166 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-500\/50 {
  --tw-shadow-color: rgb(20 184 166 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-500\/60 {
  --tw-shadow-color: rgb(20 184 166 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-500\/70 {
  --tw-shadow-color: rgb(20 184 166 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-500\/80 {
  --tw-shadow-color: rgb(20 184 166 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-500\/90 {
  --tw-shadow-color: rgb(20 184 166 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-600 {
  --tw-shadow-color: #0d9488;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-600\/10 {
  --tw-shadow-color: rgb(13 148 136 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-600\/20 {
  --tw-shadow-color: rgb(13 148 136 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-600\/30 {
  --tw-shadow-color: rgb(13 148 136 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-600\/40 {
  --tw-shadow-color: rgb(13 148 136 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-600\/5 {
  --tw-shadow-color: rgb(13 148 136 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-600\/50 {
  --tw-shadow-color: rgb(13 148 136 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-600\/60 {
  --tw-shadow-color: rgb(13 148 136 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-600\/70 {
  --tw-shadow-color: rgb(13 148 136 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-600\/80 {
  --tw-shadow-color: rgb(13 148 136 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-600\/90 {
  --tw-shadow-color: rgb(13 148 136 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-700 {
  --tw-shadow-color: #0f766e;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-700\/10 {
  --tw-shadow-color: rgb(15 118 110 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-700\/20 {
  --tw-shadow-color: rgb(15 118 110 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-700\/30 {
  --tw-shadow-color: rgb(15 118 110 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-700\/40 {
  --tw-shadow-color: rgb(15 118 110 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-700\/5 {
  --tw-shadow-color: rgb(15 118 110 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-700\/50 {
  --tw-shadow-color: rgb(15 118 110 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-700\/60 {
  --tw-shadow-color: rgb(15 118 110 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-700\/70 {
  --tw-shadow-color: rgb(15 118 110 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-700\/80 {
  --tw-shadow-color: rgb(15 118 110 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-700\/90 {
  --tw-shadow-color: rgb(15 118 110 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-800 {
  --tw-shadow-color: #115e59;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-800\/10 {
  --tw-shadow-color: rgb(17 94 89 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-800\/20 {
  --tw-shadow-color: rgb(17 94 89 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-800\/30 {
  --tw-shadow-color: rgb(17 94 89 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-800\/40 {
  --tw-shadow-color: rgb(17 94 89 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-800\/5 {
  --tw-shadow-color: rgb(17 94 89 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-800\/50 {
  --tw-shadow-color: rgb(17 94 89 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-800\/60 {
  --tw-shadow-color: rgb(17 94 89 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-800\/70 {
  --tw-shadow-color: rgb(17 94 89 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-800\/80 {
  --tw-shadow-color: rgb(17 94 89 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-800\/90 {
  --tw-shadow-color: rgb(17 94 89 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-900 {
  --tw-shadow-color: #134e4a;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-900\/10 {
  --tw-shadow-color: rgb(19 78 74 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-900\/20 {
  --tw-shadow-color: rgb(19 78 74 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-900\/30 {
  --tw-shadow-color: rgb(19 78 74 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-900\/40 {
  --tw-shadow-color: rgb(19 78 74 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-900\/5 {
  --tw-shadow-color: rgb(19 78 74 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-900\/50 {
  --tw-shadow-color: rgb(19 78 74 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-900\/60 {
  --tw-shadow-color: rgb(19 78 74 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-900\/70 {
  --tw-shadow-color: rgb(19 78 74 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-900\/80 {
  --tw-shadow-color: rgb(19 78 74 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-900\/90 {
  --tw-shadow-color: rgb(19 78 74 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-950 {
  --tw-shadow-color: #042f2e;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-950\/10 {
  --tw-shadow-color: rgb(4 47 46 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-950\/20 {
  --tw-shadow-color: rgb(4 47 46 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-950\/30 {
  --tw-shadow-color: rgb(4 47 46 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-950\/40 {
  --tw-shadow-color: rgb(4 47 46 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-950\/5 {
  --tw-shadow-color: rgb(4 47 46 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-950\/50 {
  --tw-shadow-color: rgb(4 47 46 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-950\/60 {
  --tw-shadow-color: rgb(4 47 46 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-950\/70 {
  --tw-shadow-color: rgb(4 47 46 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-950\/80 {
  --tw-shadow-color: rgb(4 47 46 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-950\/90 {
  --tw-shadow-color: rgb(4 47 46 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-100 {
  --tw-shadow-color: #ede9fe;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-100\/10 {
  --tw-shadow-color: rgb(237 233 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-100\/20 {
  --tw-shadow-color: rgb(237 233 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-100\/30 {
  --tw-shadow-color: rgb(237 233 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-100\/40 {
  --tw-shadow-color: rgb(237 233 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-100\/5 {
  --tw-shadow-color: rgb(237 233 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-100\/50 {
  --tw-shadow-color: rgb(237 233 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-100\/60 {
  --tw-shadow-color: rgb(237 233 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-100\/70 {
  --tw-shadow-color: rgb(237 233 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-100\/80 {
  --tw-shadow-color: rgb(237 233 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-100\/90 {
  --tw-shadow-color: rgb(237 233 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-200 {
  --tw-shadow-color: #ddd6fe;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-200\/10 {
  --tw-shadow-color: rgb(221 214 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-200\/20 {
  --tw-shadow-color: rgb(221 214 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-200\/30 {
  --tw-shadow-color: rgb(221 214 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-200\/40 {
  --tw-shadow-color: rgb(221 214 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-200\/5 {
  --tw-shadow-color: rgb(221 214 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-200\/50 {
  --tw-shadow-color: rgb(221 214 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-200\/60 {
  --tw-shadow-color: rgb(221 214 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-200\/70 {
  --tw-shadow-color: rgb(221 214 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-200\/80 {
  --tw-shadow-color: rgb(221 214 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-200\/90 {
  --tw-shadow-color: rgb(221 214 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-300 {
  --tw-shadow-color: #c4b5fd;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-300\/10 {
  --tw-shadow-color: rgb(196 181 253 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-300\/20 {
  --tw-shadow-color: rgb(196 181 253 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-300\/30 {
  --tw-shadow-color: rgb(196 181 253 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-300\/40 {
  --tw-shadow-color: rgb(196 181 253 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-300\/5 {
  --tw-shadow-color: rgb(196 181 253 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-300\/50 {
  --tw-shadow-color: rgb(196 181 253 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-300\/60 {
  --tw-shadow-color: rgb(196 181 253 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-300\/70 {
  --tw-shadow-color: rgb(196 181 253 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-300\/80 {
  --tw-shadow-color: rgb(196 181 253 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-300\/90 {
  --tw-shadow-color: rgb(196 181 253 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-400 {
  --tw-shadow-color: #a78bfa;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-400\/10 {
  --tw-shadow-color: rgb(167 139 250 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-400\/20 {
  --tw-shadow-color: rgb(167 139 250 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-400\/30 {
  --tw-shadow-color: rgb(167 139 250 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-400\/40 {
  --tw-shadow-color: rgb(167 139 250 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-400\/5 {
  --tw-shadow-color: rgb(167 139 250 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-400\/50 {
  --tw-shadow-color: rgb(167 139 250 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-400\/60 {
  --tw-shadow-color: rgb(167 139 250 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-400\/70 {
  --tw-shadow-color: rgb(167 139 250 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-400\/80 {
  --tw-shadow-color: rgb(167 139 250 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-400\/90 {
  --tw-shadow-color: rgb(167 139 250 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-50 {
  --tw-shadow-color: #f5f3ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-50\/10 {
  --tw-shadow-color: rgb(245 243 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-50\/20 {
  --tw-shadow-color: rgb(245 243 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-50\/30 {
  --tw-shadow-color: rgb(245 243 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-50\/40 {
  --tw-shadow-color: rgb(245 243 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-50\/5 {
  --tw-shadow-color: rgb(245 243 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-50\/50 {
  --tw-shadow-color: rgb(245 243 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-50\/60 {
  --tw-shadow-color: rgb(245 243 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-50\/70 {
  --tw-shadow-color: rgb(245 243 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-50\/80 {
  --tw-shadow-color: rgb(245 243 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-50\/90 {
  --tw-shadow-color: rgb(245 243 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-500 {
  --tw-shadow-color: #8b5cf6;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-500\/10 {
  --tw-shadow-color: rgb(139 92 246 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-500\/20 {
  --tw-shadow-color: rgb(139 92 246 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-500\/30 {
  --tw-shadow-color: rgb(139 92 246 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-500\/40 {
  --tw-shadow-color: rgb(139 92 246 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-500\/5 {
  --tw-shadow-color: rgb(139 92 246 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-500\/50 {
  --tw-shadow-color: rgb(139 92 246 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-500\/60 {
  --tw-shadow-color: rgb(139 92 246 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-500\/70 {
  --tw-shadow-color: rgb(139 92 246 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-500\/80 {
  --tw-shadow-color: rgb(139 92 246 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-500\/90 {
  --tw-shadow-color: rgb(139 92 246 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-600 {
  --tw-shadow-color: #7c3aed;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-600\/10 {
  --tw-shadow-color: rgb(124 58 237 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-600\/20 {
  --tw-shadow-color: rgb(124 58 237 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-600\/30 {
  --tw-shadow-color: rgb(124 58 237 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-600\/40 {
  --tw-shadow-color: rgb(124 58 237 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-600\/5 {
  --tw-shadow-color: rgb(124 58 237 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-600\/50 {
  --tw-shadow-color: rgb(124 58 237 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-600\/60 {
  --tw-shadow-color: rgb(124 58 237 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-600\/70 {
  --tw-shadow-color: rgb(124 58 237 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-600\/80 {
  --tw-shadow-color: rgb(124 58 237 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-600\/90 {
  --tw-shadow-color: rgb(124 58 237 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-700 {
  --tw-shadow-color: #6d28d9;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-700\/10 {
  --tw-shadow-color: rgb(109 40 217 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-700\/20 {
  --tw-shadow-color: rgb(109 40 217 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-700\/30 {
  --tw-shadow-color: rgb(109 40 217 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-700\/40 {
  --tw-shadow-color: rgb(109 40 217 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-700\/5 {
  --tw-shadow-color: rgb(109 40 217 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-700\/50 {
  --tw-shadow-color: rgb(109 40 217 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-700\/60 {
  --tw-shadow-color: rgb(109 40 217 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-700\/70 {
  --tw-shadow-color: rgb(109 40 217 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-700\/80 {
  --tw-shadow-color: rgb(109 40 217 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-700\/90 {
  --tw-shadow-color: rgb(109 40 217 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-800 {
  --tw-shadow-color: #5b21b6;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-800\/10 {
  --tw-shadow-color: rgb(91 33 182 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-800\/20 {
  --tw-shadow-color: rgb(91 33 182 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-800\/30 {
  --tw-shadow-color: rgb(91 33 182 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-800\/40 {
  --tw-shadow-color: rgb(91 33 182 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-800\/5 {
  --tw-shadow-color: rgb(91 33 182 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-800\/50 {
  --tw-shadow-color: rgb(91 33 182 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-800\/60 {
  --tw-shadow-color: rgb(91 33 182 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-800\/70 {
  --tw-shadow-color: rgb(91 33 182 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-800\/80 {
  --tw-shadow-color: rgb(91 33 182 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-800\/90 {
  --tw-shadow-color: rgb(91 33 182 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-900 {
  --tw-shadow-color: #4c1d95;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-900\/10 {
  --tw-shadow-color: rgb(76 29 149 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-900\/20 {
  --tw-shadow-color: rgb(76 29 149 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-900\/30 {
  --tw-shadow-color: rgb(76 29 149 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-900\/40 {
  --tw-shadow-color: rgb(76 29 149 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-900\/5 {
  --tw-shadow-color: rgb(76 29 149 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-900\/50 {
  --tw-shadow-color: rgb(76 29 149 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-900\/60 {
  --tw-shadow-color: rgb(76 29 149 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-900\/70 {
  --tw-shadow-color: rgb(76 29 149 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-900\/80 {
  --tw-shadow-color: rgb(76 29 149 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-900\/90 {
  --tw-shadow-color: rgb(76 29 149 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-950 {
  --tw-shadow-color: #2e1065;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-950\/10 {
  --tw-shadow-color: rgb(46 16 101 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-950\/20 {
  --tw-shadow-color: rgb(46 16 101 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-950\/30 {
  --tw-shadow-color: rgb(46 16 101 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-950\/40 {
  --tw-shadow-color: rgb(46 16 101 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-950\/5 {
  --tw-shadow-color: rgb(46 16 101 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-950\/50 {
  --tw-shadow-color: rgb(46 16 101 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-950\/60 {
  --tw-shadow-color: rgb(46 16 101 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-950\/70 {
  --tw-shadow-color: rgb(46 16 101 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-950\/80 {
  --tw-shadow-color: rgb(46 16 101 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-violet-950\/90 {
  --tw-shadow-color: rgb(46 16 101 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-white {
  --tw-shadow-color: #fff;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-100 {
  --tw-shadow-color: #fef9c3;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-100\/10 {
  --tw-shadow-color: rgb(254 249 195 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-100\/20 {
  --tw-shadow-color: rgb(254 249 195 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-100\/30 {
  --tw-shadow-color: rgb(254 249 195 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-100\/40 {
  --tw-shadow-color: rgb(254 249 195 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-100\/5 {
  --tw-shadow-color: rgb(254 249 195 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-100\/50 {
  --tw-shadow-color: rgb(254 249 195 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-100\/60 {
  --tw-shadow-color: rgb(254 249 195 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-100\/70 {
  --tw-shadow-color: rgb(254 249 195 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-100\/80 {
  --tw-shadow-color: rgb(254 249 195 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-100\/90 {
  --tw-shadow-color: rgb(254 249 195 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-200 {
  --tw-shadow-color: #fef08a;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-200\/10 {
  --tw-shadow-color: rgb(254 240 138 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-200\/20 {
  --tw-shadow-color: rgb(254 240 138 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-200\/30 {
  --tw-shadow-color: rgb(254 240 138 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-200\/40 {
  --tw-shadow-color: rgb(254 240 138 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-200\/5 {
  --tw-shadow-color: rgb(254 240 138 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-200\/50 {
  --tw-shadow-color: rgb(254 240 138 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-200\/60 {
  --tw-shadow-color: rgb(254 240 138 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-200\/70 {
  --tw-shadow-color: rgb(254 240 138 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-200\/80 {
  --tw-shadow-color: rgb(254 240 138 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-200\/90 {
  --tw-shadow-color: rgb(254 240 138 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-300 {
  --tw-shadow-color: #fde047;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-300\/10 {
  --tw-shadow-color: rgb(253 224 71 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-300\/20 {
  --tw-shadow-color: rgb(253 224 71 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-300\/30 {
  --tw-shadow-color: rgb(253 224 71 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-300\/40 {
  --tw-shadow-color: rgb(253 224 71 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-300\/5 {
  --tw-shadow-color: rgb(253 224 71 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-300\/50 {
  --tw-shadow-color: rgb(253 224 71 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-300\/60 {
  --tw-shadow-color: rgb(253 224 71 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-300\/70 {
  --tw-shadow-color: rgb(253 224 71 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-300\/80 {
  --tw-shadow-color: rgb(253 224 71 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-300\/90 {
  --tw-shadow-color: rgb(253 224 71 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-400 {
  --tw-shadow-color: #facc15;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-400\/10 {
  --tw-shadow-color: rgb(250 204 21 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-400\/20 {
  --tw-shadow-color: rgb(250 204 21 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-400\/30 {
  --tw-shadow-color: rgb(250 204 21 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-400\/40 {
  --tw-shadow-color: rgb(250 204 21 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-400\/5 {
  --tw-shadow-color: rgb(250 204 21 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-400\/50 {
  --tw-shadow-color: rgb(250 204 21 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-400\/60 {
  --tw-shadow-color: rgb(250 204 21 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-400\/70 {
  --tw-shadow-color: rgb(250 204 21 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-400\/80 {
  --tw-shadow-color: rgb(250 204 21 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-400\/90 {
  --tw-shadow-color: rgb(250 204 21 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-50 {
  --tw-shadow-color: #fefce8;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-50\/10 {
  --tw-shadow-color: rgb(254 252 232 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-50\/20 {
  --tw-shadow-color: rgb(254 252 232 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-50\/30 {
  --tw-shadow-color: rgb(254 252 232 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-50\/40 {
  --tw-shadow-color: rgb(254 252 232 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-50\/5 {
  --tw-shadow-color: rgb(254 252 232 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-50\/50 {
  --tw-shadow-color: rgb(254 252 232 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-50\/60 {
  --tw-shadow-color: rgb(254 252 232 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-50\/70 {
  --tw-shadow-color: rgb(254 252 232 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-50\/80 {
  --tw-shadow-color: rgb(254 252 232 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-50\/90 {
  --tw-shadow-color: rgb(254 252 232 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-500 {
  --tw-shadow-color: #eab308;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-500\/10 {
  --tw-shadow-color: rgb(234 179 8 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-500\/20 {
  --tw-shadow-color: rgb(234 179 8 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-500\/30 {
  --tw-shadow-color: rgb(234 179 8 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-500\/40 {
  --tw-shadow-color: rgb(234 179 8 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-500\/5 {
  --tw-shadow-color: rgb(234 179 8 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-500\/50 {
  --tw-shadow-color: rgb(234 179 8 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-500\/60 {
  --tw-shadow-color: rgb(234 179 8 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-500\/70 {
  --tw-shadow-color: rgb(234 179 8 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-500\/80 {
  --tw-shadow-color: rgb(234 179 8 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-500\/90 {
  --tw-shadow-color: rgb(234 179 8 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-600 {
  --tw-shadow-color: #ca8a04;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-600\/10 {
  --tw-shadow-color: rgb(202 138 4 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-600\/20 {
  --tw-shadow-color: rgb(202 138 4 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-600\/30 {
  --tw-shadow-color: rgb(202 138 4 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-600\/40 {
  --tw-shadow-color: rgb(202 138 4 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-600\/5 {
  --tw-shadow-color: rgb(202 138 4 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-600\/50 {
  --tw-shadow-color: rgb(202 138 4 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-600\/60 {
  --tw-shadow-color: rgb(202 138 4 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-600\/70 {
  --tw-shadow-color: rgb(202 138 4 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-600\/80 {
  --tw-shadow-color: rgb(202 138 4 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-600\/90 {
  --tw-shadow-color: rgb(202 138 4 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-700 {
  --tw-shadow-color: #a16207;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-700\/10 {
  --tw-shadow-color: rgb(161 98 7 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-700\/20 {
  --tw-shadow-color: rgb(161 98 7 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-700\/30 {
  --tw-shadow-color: rgb(161 98 7 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-700\/40 {
  --tw-shadow-color: rgb(161 98 7 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-700\/5 {
  --tw-shadow-color: rgb(161 98 7 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-700\/50 {
  --tw-shadow-color: rgb(161 98 7 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-700\/60 {
  --tw-shadow-color: rgb(161 98 7 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-700\/70 {
  --tw-shadow-color: rgb(161 98 7 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-700\/80 {
  --tw-shadow-color: rgb(161 98 7 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-700\/90 {
  --tw-shadow-color: rgb(161 98 7 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-800 {
  --tw-shadow-color: #854d0e;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-800\/10 {
  --tw-shadow-color: rgb(133 77 14 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-800\/20 {
  --tw-shadow-color: rgb(133 77 14 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-800\/30 {
  --tw-shadow-color: rgb(133 77 14 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-800\/40 {
  --tw-shadow-color: rgb(133 77 14 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-800\/5 {
  --tw-shadow-color: rgb(133 77 14 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-800\/50 {
  --tw-shadow-color: rgb(133 77 14 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-800\/60 {
  --tw-shadow-color: rgb(133 77 14 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-800\/70 {
  --tw-shadow-color: rgb(133 77 14 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-800\/80 {
  --tw-shadow-color: rgb(133 77 14 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-800\/90 {
  --tw-shadow-color: rgb(133 77 14 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-900 {
  --tw-shadow-color: #713f12;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-900\/10 {
  --tw-shadow-color: rgb(113 63 18 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-900\/20 {
  --tw-shadow-color: rgb(113 63 18 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-900\/30 {
  --tw-shadow-color: rgb(113 63 18 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-900\/40 {
  --tw-shadow-color: rgb(113 63 18 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-900\/5 {
  --tw-shadow-color: rgb(113 63 18 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-900\/50 {
  --tw-shadow-color: rgb(113 63 18 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-900\/60 {
  --tw-shadow-color: rgb(113 63 18 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-900\/70 {
  --tw-shadow-color: rgb(113 63 18 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-900\/80 {
  --tw-shadow-color: rgb(113 63 18 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-900\/90 {
  --tw-shadow-color: rgb(113 63 18 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-950 {
  --tw-shadow-color: #422006;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-950\/10 {
  --tw-shadow-color: rgb(66 32 6 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-950\/20 {
  --tw-shadow-color: rgb(66 32 6 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-950\/30 {
  --tw-shadow-color: rgb(66 32 6 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-950\/40 {
  --tw-shadow-color: rgb(66 32 6 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-950\/5 {
  --tw-shadow-color: rgb(66 32 6 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-950\/50 {
  --tw-shadow-color: rgb(66 32 6 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-950\/60 {
  --tw-shadow-color: rgb(66 32 6 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-950\/70 {
  --tw-shadow-color: rgb(66 32 6 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-950\/80 {
  --tw-shadow-color: rgb(66 32 6 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-yellow-950\/90 {
  --tw-shadow-color: rgb(66 32 6 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-100 {
  --tw-shadow-color: #f4f4f5;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-100\/10 {
  --tw-shadow-color: rgb(244 244 245 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-100\/20 {
  --tw-shadow-color: rgb(244 244 245 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-100\/30 {
  --tw-shadow-color: rgb(244 244 245 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-100\/40 {
  --tw-shadow-color: rgb(244 244 245 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-100\/5 {
  --tw-shadow-color: rgb(244 244 245 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-100\/50 {
  --tw-shadow-color: rgb(244 244 245 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-100\/60 {
  --tw-shadow-color: rgb(244 244 245 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-100\/70 {
  --tw-shadow-color: rgb(244 244 245 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-100\/80 {
  --tw-shadow-color: rgb(244 244 245 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-100\/90 {
  --tw-shadow-color: rgb(244 244 245 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-200 {
  --tw-shadow-color: #e4e4e7;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-200\/10 {
  --tw-shadow-color: rgb(228 228 231 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-200\/20 {
  --tw-shadow-color: rgb(228 228 231 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-200\/30 {
  --tw-shadow-color: rgb(228 228 231 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-200\/40 {
  --tw-shadow-color: rgb(228 228 231 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-200\/5 {
  --tw-shadow-color: rgb(228 228 231 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-200\/50 {
  --tw-shadow-color: rgb(228 228 231 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-200\/60 {
  --tw-shadow-color: rgb(228 228 231 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-200\/70 {
  --tw-shadow-color: rgb(228 228 231 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-200\/80 {
  --tw-shadow-color: rgb(228 228 231 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-200\/90 {
  --tw-shadow-color: rgb(228 228 231 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-300 {
  --tw-shadow-color: #d4d4d8;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-300\/10 {
  --tw-shadow-color: rgb(212 212 216 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-300\/20 {
  --tw-shadow-color: rgb(212 212 216 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-300\/30 {
  --tw-shadow-color: rgb(212 212 216 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-300\/40 {
  --tw-shadow-color: rgb(212 212 216 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-300\/5 {
  --tw-shadow-color: rgb(212 212 216 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-300\/50 {
  --tw-shadow-color: rgb(212 212 216 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-300\/60 {
  --tw-shadow-color: rgb(212 212 216 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-300\/70 {
  --tw-shadow-color: rgb(212 212 216 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-300\/80 {
  --tw-shadow-color: rgb(212 212 216 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-300\/90 {
  --tw-shadow-color: rgb(212 212 216 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-400 {
  --tw-shadow-color: #a1a1aa;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-400\/10 {
  --tw-shadow-color: rgb(161 161 170 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-400\/20 {
  --tw-shadow-color: rgb(161 161 170 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-400\/30 {
  --tw-shadow-color: rgb(161 161 170 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-400\/40 {
  --tw-shadow-color: rgb(161 161 170 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-400\/5 {
  --tw-shadow-color: rgb(161 161 170 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-400\/50 {
  --tw-shadow-color: rgb(161 161 170 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-400\/60 {
  --tw-shadow-color: rgb(161 161 170 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-400\/70 {
  --tw-shadow-color: rgb(161 161 170 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-400\/80 {
  --tw-shadow-color: rgb(161 161 170 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-400\/90 {
  --tw-shadow-color: rgb(161 161 170 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-50 {
  --tw-shadow-color: #fafafa;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-50\/10 {
  --tw-shadow-color: rgb(250 250 250 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-50\/20 {
  --tw-shadow-color: rgb(250 250 250 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-50\/30 {
  --tw-shadow-color: rgb(250 250 250 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-50\/40 {
  --tw-shadow-color: rgb(250 250 250 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-50\/5 {
  --tw-shadow-color: rgb(250 250 250 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-50\/50 {
  --tw-shadow-color: rgb(250 250 250 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-50\/60 {
  --tw-shadow-color: rgb(250 250 250 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-50\/70 {
  --tw-shadow-color: rgb(250 250 250 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-50\/80 {
  --tw-shadow-color: rgb(250 250 250 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-50\/90 {
  --tw-shadow-color: rgb(250 250 250 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-500 {
  --tw-shadow-color: #71717a;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-500\/10 {
  --tw-shadow-color: rgb(113 113 122 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-500\/20 {
  --tw-shadow-color: rgb(113 113 122 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-500\/30 {
  --tw-shadow-color: rgb(113 113 122 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-500\/40 {
  --tw-shadow-color: rgb(113 113 122 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-500\/5 {
  --tw-shadow-color: rgb(113 113 122 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-500\/50 {
  --tw-shadow-color: rgb(113 113 122 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-500\/60 {
  --tw-shadow-color: rgb(113 113 122 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-500\/70 {
  --tw-shadow-color: rgb(113 113 122 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-500\/80 {
  --tw-shadow-color: rgb(113 113 122 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-500\/90 {
  --tw-shadow-color: rgb(113 113 122 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-600 {
  --tw-shadow-color: #52525b;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-600\/10 {
  --tw-shadow-color: rgb(82 82 91 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-600\/20 {
  --tw-shadow-color: rgb(82 82 91 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-600\/30 {
  --tw-shadow-color: rgb(82 82 91 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-600\/40 {
  --tw-shadow-color: rgb(82 82 91 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-600\/5 {
  --tw-shadow-color: rgb(82 82 91 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-600\/50 {
  --tw-shadow-color: rgb(82 82 91 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-600\/60 {
  --tw-shadow-color: rgb(82 82 91 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-600\/70 {
  --tw-shadow-color: rgb(82 82 91 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-600\/80 {
  --tw-shadow-color: rgb(82 82 91 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-600\/90 {
  --tw-shadow-color: rgb(82 82 91 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-700 {
  --tw-shadow-color: #3f3f46;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-700\/10 {
  --tw-shadow-color: rgb(63 63 70 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-700\/20 {
  --tw-shadow-color: rgb(63 63 70 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-700\/30 {
  --tw-shadow-color: rgb(63 63 70 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-700\/40 {
  --tw-shadow-color: rgb(63 63 70 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-700\/5 {
  --tw-shadow-color: rgb(63 63 70 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-700\/50 {
  --tw-shadow-color: rgb(63 63 70 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-700\/60 {
  --tw-shadow-color: rgb(63 63 70 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-700\/70 {
  --tw-shadow-color: rgb(63 63 70 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-700\/80 {
  --tw-shadow-color: rgb(63 63 70 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-700\/90 {
  --tw-shadow-color: rgb(63 63 70 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-800 {
  --tw-shadow-color: #27272a;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-800\/10 {
  --tw-shadow-color: rgb(39 39 42 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-800\/20 {
  --tw-shadow-color: rgb(39 39 42 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-800\/30 {
  --tw-shadow-color: rgb(39 39 42 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-800\/40 {
  --tw-shadow-color: rgb(39 39 42 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-800\/5 {
  --tw-shadow-color: rgb(39 39 42 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-800\/50 {
  --tw-shadow-color: rgb(39 39 42 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-800\/60 {
  --tw-shadow-color: rgb(39 39 42 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-800\/70 {
  --tw-shadow-color: rgb(39 39 42 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-800\/80 {
  --tw-shadow-color: rgb(39 39 42 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-800\/90 {
  --tw-shadow-color: rgb(39 39 42 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-900 {
  --tw-shadow-color: #18181b;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-900\/10 {
  --tw-shadow-color: rgb(24 24 27 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-900\/20 {
  --tw-shadow-color: rgb(24 24 27 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-900\/30 {
  --tw-shadow-color: rgb(24 24 27 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-900\/40 {
  --tw-shadow-color: rgb(24 24 27 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-900\/5 {
  --tw-shadow-color: rgb(24 24 27 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-900\/50 {
  --tw-shadow-color: rgb(24 24 27 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-900\/60 {
  --tw-shadow-color: rgb(24 24 27 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-900\/70 {
  --tw-shadow-color: rgb(24 24 27 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-900\/80 {
  --tw-shadow-color: rgb(24 24 27 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-900\/90 {
  --tw-shadow-color: rgb(24 24 27 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-950 {
  --tw-shadow-color: #09090b;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-950\/10 {
  --tw-shadow-color: rgb(9 9 11 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-950\/20 {
  --tw-shadow-color: rgb(9 9 11 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-950\/30 {
  --tw-shadow-color: rgb(9 9 11 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-950\/40 {
  --tw-shadow-color: rgb(9 9 11 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-950\/5 {
  --tw-shadow-color: rgb(9 9 11 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-950\/50 {
  --tw-shadow-color: rgb(9 9 11 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-950\/60 {
  --tw-shadow-color: rgb(9 9 11 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-950\/70 {
  --tw-shadow-color: rgb(9 9 11 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-950\/80 {
  --tw-shadow-color: rgb(9 9 11 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-zinc-950\/90 {
  --tw-shadow-color: rgb(9 9 11 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.outline {
  outline-style: solid;
}
.outline-dashed {
  outline-style: dashed;
}
.outline-dotted {
  outline-style: dotted;
}
.outline-double {
  outline-style: double;
}
.outline-0 {
  outline-width: 0px;
}
.outline-1 {
  outline-width: 1px;
}
.outline-2 {
  outline-width: 2px;
}
.outline-4 {
  outline-width: 4px;
}
.outline-8 {
  outline-width: 8px;
}
.outline-offset-0 {
  outline-offset: 0px;
}
.outline-offset-2 {
  outline-offset: 2px;
}
.outline-offset-4 {
  outline-offset: 4px;
}
.outline-offset-8 {
  outline-offset: 8px;
}
.outline-\[var\(--outline\)\] {
  outline-color: var(--outline);
}
.outline-\[var\(--outline-\$\{bp\}-\$\{state\}\)\] {
  outline-color: var(--outline-${bp}-${state});
}
.outline-gray-100 {
  outline-color: #f3f4f6;
}
.outline-gray-200 {
  outline-color: #e5e7eb;
}
.outline-primary {
  outline-color: var(--primary);
}
.ring {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-0 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-1 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-2 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-4 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-8 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-\[color\:var\(--foc\)\] {
  --tw-ring-color: var(--foc);
}
.ring-\[var\(--ring\)\] {
  --tw-ring-color: var(--ring);
}
.ring-\[var\(--ring-\$\{bp\}-\$\{state\}\)\] {
  --tw-ring-color: var(--ring-${bp}-${state});
}
.ring-accent {
  --tw-ring-color: var(--accent);
}
.ring-amber-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 243 199 / var(--tw-ring-opacity, 1));
}
.ring-amber-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(253 230 138 / var(--tw-ring-opacity, 1));
}
.ring-amber-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(252 211 77 / var(--tw-ring-opacity, 1));
}
.ring-amber-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(251 191 36 / var(--tw-ring-opacity, 1));
}
.ring-amber-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 251 235 / var(--tw-ring-opacity, 1));
}
.ring-amber-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(245 158 11 / var(--tw-ring-opacity, 1));
}
.ring-amber-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(217 119 6 / var(--tw-ring-opacity, 1));
}
.ring-amber-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(180 83 9 / var(--tw-ring-opacity, 1));
}
.ring-amber-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(146 64 14 / var(--tw-ring-opacity, 1));
}
.ring-amber-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(120 53 15 / var(--tw-ring-opacity, 1));
}
.ring-amber-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(69 26 3 / var(--tw-ring-opacity, 1));
}
.ring-black {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity, 1));
}
.ring-blue-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(219 234 254 / var(--tw-ring-opacity, 1));
}
.ring-blue-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(191 219 254 / var(--tw-ring-opacity, 1));
}
.ring-blue-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(147 197 253 / var(--tw-ring-opacity, 1));
}
.ring-blue-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(96 165 250 / var(--tw-ring-opacity, 1));
}
.ring-blue-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(239 246 255 / var(--tw-ring-opacity, 1));
}
.ring-blue-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
}
.ring-blue-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(37 99 235 / var(--tw-ring-opacity, 1));
}
.ring-blue-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(29 78 216 / var(--tw-ring-opacity, 1));
}
.ring-blue-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(30 64 175 / var(--tw-ring-opacity, 1));
}
.ring-blue-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(30 58 138 / var(--tw-ring-opacity, 1));
}
.ring-blue-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(23 37 84 / var(--tw-ring-opacity, 1));
}
.ring-cyan-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(207 250 254 / var(--tw-ring-opacity, 1));
}
.ring-cyan-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(165 243 252 / var(--tw-ring-opacity, 1));
}
.ring-cyan-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(103 232 249 / var(--tw-ring-opacity, 1));
}
.ring-cyan-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(34 211 238 / var(--tw-ring-opacity, 1));
}
.ring-cyan-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(236 254 255 / var(--tw-ring-opacity, 1));
}
.ring-cyan-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(6 182 212 / var(--tw-ring-opacity, 1));
}
.ring-cyan-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(8 145 178 / var(--tw-ring-opacity, 1));
}
.ring-cyan-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(14 116 144 / var(--tw-ring-opacity, 1));
}
.ring-cyan-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(21 94 117 / var(--tw-ring-opacity, 1));
}
.ring-cyan-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(22 78 99 / var(--tw-ring-opacity, 1));
}
.ring-cyan-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(8 51 68 / var(--tw-ring-opacity, 1));
}
.ring-emerald-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(209 250 229 / var(--tw-ring-opacity, 1));
}
.ring-emerald-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(167 243 208 / var(--tw-ring-opacity, 1));
}
.ring-emerald-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(110 231 183 / var(--tw-ring-opacity, 1));
}
.ring-emerald-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(52 211 153 / var(--tw-ring-opacity, 1));
}
.ring-emerald-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(236 253 245 / var(--tw-ring-opacity, 1));
}
.ring-emerald-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(16 185 129 / var(--tw-ring-opacity, 1));
}
.ring-emerald-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(5 150 105 / var(--tw-ring-opacity, 1));
}
.ring-emerald-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(4 120 87 / var(--tw-ring-opacity, 1));
}
.ring-emerald-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(6 95 70 / var(--tw-ring-opacity, 1));
}
.ring-emerald-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(6 78 59 / var(--tw-ring-opacity, 1));
}
.ring-emerald-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(2 44 34 / var(--tw-ring-opacity, 1));
}
.ring-fuchsia-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(250 232 255 / var(--tw-ring-opacity, 1));
}
.ring-fuchsia-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(245 208 254 / var(--tw-ring-opacity, 1));
}
.ring-fuchsia-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(240 171 252 / var(--tw-ring-opacity, 1));
}
.ring-fuchsia-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(232 121 249 / var(--tw-ring-opacity, 1));
}
.ring-fuchsia-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(253 244 255 / var(--tw-ring-opacity, 1));
}
.ring-fuchsia-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(217 70 239 / var(--tw-ring-opacity, 1));
}
.ring-fuchsia-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(192 38 211 / var(--tw-ring-opacity, 1));
}
.ring-fuchsia-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(162 28 175 / var(--tw-ring-opacity, 1));
}
.ring-fuchsia-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(134 25 143 / var(--tw-ring-opacity, 1));
}
.ring-fuchsia-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(112 26 117 / var(--tw-ring-opacity, 1));
}
.ring-fuchsia-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(74 4 78 / var(--tw-ring-opacity, 1));
}
.ring-gray-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(243 244 246 / var(--tw-ring-opacity, 1));
}
.ring-gray-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity, 1));
}
.ring-gray-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity, 1));
}
.ring-gray-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(156 163 175 / var(--tw-ring-opacity, 1));
}
.ring-gray-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(249 250 251 / var(--tw-ring-opacity, 1));
}
.ring-gray-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(107 114 128 / var(--tw-ring-opacity, 1));
}
.ring-gray-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(75 85 99 / var(--tw-ring-opacity, 1));
}
.ring-gray-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(55 65 81 / var(--tw-ring-opacity, 1));
}
.ring-gray-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(31 41 55 / var(--tw-ring-opacity, 1));
}
.ring-gray-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(17 24 39 / var(--tw-ring-opacity, 1));
}
.ring-gray-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(3 7 18 / var(--tw-ring-opacity, 1));
}
.ring-green-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(220 252 231 / var(--tw-ring-opacity, 1));
}
.ring-green-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(187 247 208 / var(--tw-ring-opacity, 1));
}
.ring-green-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(134 239 172 / var(--tw-ring-opacity, 1));
}
.ring-green-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(74 222 128 / var(--tw-ring-opacity, 1));
}
.ring-green-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(240 253 244 / var(--tw-ring-opacity, 1));
}
.ring-green-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(34 197 94 / var(--tw-ring-opacity, 1));
}
.ring-green-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(22 163 74 / var(--tw-ring-opacity, 1));
}
.ring-green-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(21 128 61 / var(--tw-ring-opacity, 1));
}
.ring-green-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(22 101 52 / var(--tw-ring-opacity, 1));
}
.ring-green-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(20 83 45 / var(--tw-ring-opacity, 1));
}
.ring-green-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(5 46 22 / var(--tw-ring-opacity, 1));
}
.ring-indigo-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(224 231 255 / var(--tw-ring-opacity, 1));
}
.ring-indigo-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(199 210 254 / var(--tw-ring-opacity, 1));
}
.ring-indigo-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(165 180 252 / var(--tw-ring-opacity, 1));
}
.ring-indigo-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(129 140 248 / var(--tw-ring-opacity, 1));
}
.ring-indigo-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(238 242 255 / var(--tw-ring-opacity, 1));
}
.ring-indigo-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(99 102 241 / var(--tw-ring-opacity, 1));
}
.ring-indigo-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(79 70 229 / var(--tw-ring-opacity, 1));
}
.ring-indigo-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(67 56 202 / var(--tw-ring-opacity, 1));
}
.ring-indigo-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(55 48 163 / var(--tw-ring-opacity, 1));
}
.ring-indigo-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(49 46 129 / var(--tw-ring-opacity, 1));
}
.ring-indigo-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(30 27 75 / var(--tw-ring-opacity, 1));
}
.ring-lime-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(236 252 203 / var(--tw-ring-opacity, 1));
}
.ring-lime-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(217 249 157 / var(--tw-ring-opacity, 1));
}
.ring-lime-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(190 242 100 / var(--tw-ring-opacity, 1));
}
.ring-lime-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(163 230 53 / var(--tw-ring-opacity, 1));
}
.ring-lime-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(247 254 231 / var(--tw-ring-opacity, 1));
}
.ring-lime-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(132 204 22 / var(--tw-ring-opacity, 1));
}
.ring-lime-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(101 163 13 / var(--tw-ring-opacity, 1));
}
.ring-lime-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(77 124 15 / var(--tw-ring-opacity, 1));
}
.ring-lime-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(63 98 18 / var(--tw-ring-opacity, 1));
}
.ring-lime-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(54 83 20 / var(--tw-ring-opacity, 1));
}
.ring-lime-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(26 46 5 / var(--tw-ring-opacity, 1));
}
.ring-neutral-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(245 245 245 / var(--tw-ring-opacity, 1));
}
.ring-neutral-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(229 229 229 / var(--tw-ring-opacity, 1));
}
.ring-neutral-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(212 212 212 / var(--tw-ring-opacity, 1));
}
.ring-neutral-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(163 163 163 / var(--tw-ring-opacity, 1));
}
.ring-neutral-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(250 250 250 / var(--tw-ring-opacity, 1));
}
.ring-neutral-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(115 115 115 / var(--tw-ring-opacity, 1));
}
.ring-neutral-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(82 82 82 / var(--tw-ring-opacity, 1));
}
.ring-neutral-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(64 64 64 / var(--tw-ring-opacity, 1));
}
.ring-neutral-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(38 38 38 / var(--tw-ring-opacity, 1));
}
.ring-neutral-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(23 23 23 / var(--tw-ring-opacity, 1));
}
.ring-neutral-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(10 10 10 / var(--tw-ring-opacity, 1));
}
.ring-orange-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 237 213 / var(--tw-ring-opacity, 1));
}
.ring-orange-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 215 170 / var(--tw-ring-opacity, 1));
}
.ring-orange-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(253 186 116 / var(--tw-ring-opacity, 1));
}
.ring-orange-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(251 146 60 / var(--tw-ring-opacity, 1));
}
.ring-orange-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 247 237 / var(--tw-ring-opacity, 1));
}
.ring-orange-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(249 115 22 / var(--tw-ring-opacity, 1));
}
.ring-orange-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(234 88 12 / var(--tw-ring-opacity, 1));
}
.ring-orange-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(194 65 12 / var(--tw-ring-opacity, 1));
}
.ring-orange-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(154 52 18 / var(--tw-ring-opacity, 1));
}
.ring-orange-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(124 45 18 / var(--tw-ring-opacity, 1));
}
.ring-orange-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(67 20 7 / var(--tw-ring-opacity, 1));
}
.ring-pink-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(252 231 243 / var(--tw-ring-opacity, 1));
}
.ring-pink-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(251 207 232 / var(--tw-ring-opacity, 1));
}
.ring-pink-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(249 168 212 / var(--tw-ring-opacity, 1));
}
.ring-pink-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(244 114 182 / var(--tw-ring-opacity, 1));
}
.ring-pink-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(253 242 248 / var(--tw-ring-opacity, 1));
}
.ring-pink-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(236 72 153 / var(--tw-ring-opacity, 1));
}
.ring-pink-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(219 39 119 / var(--tw-ring-opacity, 1));
}
.ring-pink-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(190 24 93 / var(--tw-ring-opacity, 1));
}
.ring-pink-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(157 23 77 / var(--tw-ring-opacity, 1));
}
.ring-pink-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(131 24 67 / var(--tw-ring-opacity, 1));
}
.ring-pink-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(80 7 36 / var(--tw-ring-opacity, 1));
}
.ring-primary {
  --tw-ring-color: var(--primary);
}
.ring-purple-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(243 232 255 / var(--tw-ring-opacity, 1));
}
.ring-purple-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(233 213 255 / var(--tw-ring-opacity, 1));
}
.ring-purple-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(216 180 254 / var(--tw-ring-opacity, 1));
}
.ring-purple-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(192 132 252 / var(--tw-ring-opacity, 1));
}
.ring-purple-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(250 245 255 / var(--tw-ring-opacity, 1));
}
.ring-purple-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(168 85 247 / var(--tw-ring-opacity, 1));
}
.ring-purple-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(147 51 234 / var(--tw-ring-opacity, 1));
}
.ring-purple-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(126 34 206 / var(--tw-ring-opacity, 1));
}
.ring-purple-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(107 33 168 / var(--tw-ring-opacity, 1));
}
.ring-purple-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(88 28 135 / var(--tw-ring-opacity, 1));
}
.ring-purple-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 7 100 / var(--tw-ring-opacity, 1));
}
.ring-red-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 226 226 / var(--tw-ring-opacity, 1));
}
.ring-red-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 202 202 / var(--tw-ring-opacity, 1));
}
.ring-red-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(252 165 165 / var(--tw-ring-opacity, 1));
}
.ring-red-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(248 113 113 / var(--tw-ring-opacity, 1));
}
.ring-red-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 242 242 / var(--tw-ring-opacity, 1));
}
.ring-red-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity, 1));
}
.ring-red-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(220 38 38 / var(--tw-ring-opacity, 1));
}
.ring-red-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(185 28 28 / var(--tw-ring-opacity, 1));
}
.ring-red-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(153 27 27 / var(--tw-ring-opacity, 1));
}
.ring-red-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(127 29 29 / var(--tw-ring-opacity, 1));
}
.ring-red-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(69 10 10 / var(--tw-ring-opacity, 1));
}
.ring-rose-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 228 230 / var(--tw-ring-opacity, 1));
}
.ring-rose-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 205 211 / var(--tw-ring-opacity, 1));
}
.ring-rose-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(253 164 175 / var(--tw-ring-opacity, 1));
}
.ring-rose-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(251 113 133 / var(--tw-ring-opacity, 1));
}
.ring-rose-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 241 242 / var(--tw-ring-opacity, 1));
}
.ring-rose-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(244 63 94 / var(--tw-ring-opacity, 1));
}
.ring-rose-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(225 29 72 / var(--tw-ring-opacity, 1));
}
.ring-rose-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(190 18 60 / var(--tw-ring-opacity, 1));
}
.ring-rose-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(159 18 57 / var(--tw-ring-opacity, 1));
}
.ring-rose-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(136 19 55 / var(--tw-ring-opacity, 1));
}
.ring-rose-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(76 5 25 / var(--tw-ring-opacity, 1));
}
.ring-sky-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(224 242 254 / var(--tw-ring-opacity, 1));
}
.ring-sky-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(186 230 253 / var(--tw-ring-opacity, 1));
}
.ring-sky-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(125 211 252 / var(--tw-ring-opacity, 1));
}
.ring-sky-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(56 189 248 / var(--tw-ring-opacity, 1));
}
.ring-sky-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(240 249 255 / var(--tw-ring-opacity, 1));
}
.ring-sky-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(14 165 233 / var(--tw-ring-opacity, 1));
}
.ring-sky-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(2 132 199 / var(--tw-ring-opacity, 1));
}
.ring-sky-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(3 105 161 / var(--tw-ring-opacity, 1));
}
.ring-sky-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(7 89 133 / var(--tw-ring-opacity, 1));
}
.ring-sky-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(12 74 110 / var(--tw-ring-opacity, 1));
}
.ring-sky-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(8 47 73 / var(--tw-ring-opacity, 1));
}
.ring-slate-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(241 245 249 / var(--tw-ring-opacity, 1));
}
.ring-slate-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(226 232 240 / var(--tw-ring-opacity, 1));
}
.ring-slate-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(203 213 225 / var(--tw-ring-opacity, 1));
}
.ring-slate-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(148 163 184 / var(--tw-ring-opacity, 1));
}
.ring-slate-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(248 250 252 / var(--tw-ring-opacity, 1));
}
.ring-slate-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(100 116 139 / var(--tw-ring-opacity, 1));
}
.ring-slate-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(71 85 105 / var(--tw-ring-opacity, 1));
}
.ring-slate-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(51 65 85 / var(--tw-ring-opacity, 1));
}
.ring-slate-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(30 41 59 / var(--tw-ring-opacity, 1));
}
.ring-slate-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(15 23 42 / var(--tw-ring-opacity, 1));
}
.ring-slate-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(2 6 23 / var(--tw-ring-opacity, 1));
}
.ring-stone-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(245 245 244 / var(--tw-ring-opacity, 1));
}
.ring-stone-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(231 229 228 / var(--tw-ring-opacity, 1));
}
.ring-stone-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(214 211 209 / var(--tw-ring-opacity, 1));
}
.ring-stone-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(168 162 158 / var(--tw-ring-opacity, 1));
}
.ring-stone-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(250 250 249 / var(--tw-ring-opacity, 1));
}
.ring-stone-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(120 113 108 / var(--tw-ring-opacity, 1));
}
.ring-stone-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(87 83 78 / var(--tw-ring-opacity, 1));
}
.ring-stone-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(68 64 60 / var(--tw-ring-opacity, 1));
}
.ring-stone-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(41 37 36 / var(--tw-ring-opacity, 1));
}
.ring-stone-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(28 25 23 / var(--tw-ring-opacity, 1));
}
.ring-stone-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(12 10 9 / var(--tw-ring-opacity, 1));
}
.ring-teal-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(204 251 241 / var(--tw-ring-opacity, 1));
}
.ring-teal-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(153 246 228 / var(--tw-ring-opacity, 1));
}
.ring-teal-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(94 234 212 / var(--tw-ring-opacity, 1));
}
.ring-teal-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(45 212 191 / var(--tw-ring-opacity, 1));
}
.ring-teal-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(240 253 250 / var(--tw-ring-opacity, 1));
}
.ring-teal-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(20 184 166 / var(--tw-ring-opacity, 1));
}
.ring-teal-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(13 148 136 / var(--tw-ring-opacity, 1));
}
.ring-teal-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(15 118 110 / var(--tw-ring-opacity, 1));
}
.ring-teal-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(17 94 89 / var(--tw-ring-opacity, 1));
}
.ring-teal-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(19 78 74 / var(--tw-ring-opacity, 1));
}
.ring-teal-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(4 47 46 / var(--tw-ring-opacity, 1));
}
.ring-violet-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(237 233 254 / var(--tw-ring-opacity, 1));
}
.ring-violet-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(221 214 254 / var(--tw-ring-opacity, 1));
}
.ring-violet-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(196 181 253 / var(--tw-ring-opacity, 1));
}
.ring-violet-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(167 139 250 / var(--tw-ring-opacity, 1));
}
.ring-violet-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(245 243 255 / var(--tw-ring-opacity, 1));
}
.ring-violet-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(139 92 246 / var(--tw-ring-opacity, 1));
}
.ring-violet-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(124 58 237 / var(--tw-ring-opacity, 1));
}
.ring-violet-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(109 40 217 / var(--tw-ring-opacity, 1));
}
.ring-violet-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(91 33 182 / var(--tw-ring-opacity, 1));
}
.ring-violet-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(76 29 149 / var(--tw-ring-opacity, 1));
}
.ring-violet-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(46 16 101 / var(--tw-ring-opacity, 1));
}
.ring-white {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity, 1));
}
.ring-yellow-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 249 195 / var(--tw-ring-opacity, 1));
}
.ring-yellow-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 240 138 / var(--tw-ring-opacity, 1));
}
.ring-yellow-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(253 224 71 / var(--tw-ring-opacity, 1));
}
.ring-yellow-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(250 204 21 / var(--tw-ring-opacity, 1));
}
.ring-yellow-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 252 232 / var(--tw-ring-opacity, 1));
}
.ring-yellow-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(234 179 8 / var(--tw-ring-opacity, 1));
}
.ring-yellow-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(202 138 4 / var(--tw-ring-opacity, 1));
}
.ring-yellow-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(161 98 7 / var(--tw-ring-opacity, 1));
}
.ring-yellow-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(133 77 14 / var(--tw-ring-opacity, 1));
}
.ring-yellow-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(113 63 18 / var(--tw-ring-opacity, 1));
}
.ring-yellow-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(66 32 6 / var(--tw-ring-opacity, 1));
}
.ring-zinc-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(244 244 245 / var(--tw-ring-opacity, 1));
}
.ring-zinc-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(228 228 231 / var(--tw-ring-opacity, 1));
}
.ring-zinc-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(212 212 216 / var(--tw-ring-opacity, 1));
}
.ring-zinc-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(161 161 170 / var(--tw-ring-opacity, 1));
}
.ring-zinc-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(250 250 250 / var(--tw-ring-opacity, 1));
}
.ring-zinc-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(113 113 122 / var(--tw-ring-opacity, 1));
}
.ring-zinc-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(82 82 91 / var(--tw-ring-opacity, 1));
}
.ring-zinc-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(63 63 70 / var(--tw-ring-opacity, 1));
}
.ring-zinc-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(39 39 42 / var(--tw-ring-opacity, 1));
}
.ring-zinc-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(24 24 27 / var(--tw-ring-opacity, 1));
}
.ring-zinc-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(9 9 11 / var(--tw-ring-opacity, 1));
}
.ring-opacity-50 {
  --tw-ring-opacity: 0.5;
}
.ring-offset-2 {
  --tw-ring-offset-width: 2px;
}
.ring-offset-\[var\(--fo\)\] {
  --tw-ring-offset-color: var(--fo);
}
.ring-offset-background {
  --tw-ring-offset-color: var(--background);
}
.ring-offset-blue-500 {
  --tw-ring-offset-color: #3b82f6;
}
.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);
}
.blur-2xl {
  --tw-blur: blur(40px);
  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);
}
.blur-3xl {
  --tw-blur: blur(64px);
  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);
}
.blur-\[1px\] {
  --tw-blur: blur(1px);
  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);
}
.blur-\[24px\] {
  --tw-blur: blur(24px);
  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);
}
.blur-\[4px\] {
  --tw-blur: blur(4px);
  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);
}
.blur-\[8px\] {
  --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);
}
.blur-lg {
  --tw-blur: blur(16px);
  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);
}
.blur-md {
  --tw-blur: blur(12px);
  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);
}
.blur-none {
  --tw-blur:  ;
  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);
}
.blur-sm {
  --tw-blur: blur(4px);
  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);
}
.blur-xl {
  --tw-blur: blur(24px);
  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);
}
.brightness-0 {
  --tw-brightness: brightness(0);
  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);
}
.brightness-100 {
  --tw-brightness: brightness(1);
  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);
}
.brightness-125 {
  --tw-brightness: brightness(1.25);
  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);
}
.brightness-150 {
  --tw-brightness: brightness(1.5);
  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);
}
.brightness-200 {
  --tw-brightness: brightness(2);
  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);
}
.brightness-50 {
  --tw-brightness: brightness(.5);
  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);
}
.brightness-75 {
  --tw-brightness: brightness(.75);
  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);
}
.brightness-\[\.74\] {
  --tw-brightness: brightness(.74);
  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);
}
.contrast-0 {
  --tw-contrast: contrast(0);
  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);
}
.contrast-100 {
  --tw-contrast: contrast(1);
  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);
}
.contrast-125 {
  --tw-contrast: contrast(1.25);
  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);
}
.contrast-150 {
  --tw-contrast: contrast(1.5);
  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);
}
.contrast-200 {
  --tw-contrast: contrast(2);
  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);
}
.contrast-50 {
  --tw-contrast: contrast(.5);
  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);
}
.contrast-75 {
  --tw-contrast: contrast(.75);
  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);
}
.drop-shadow {
  --tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
  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);
}
.drop-shadow-lg {
  --tw-drop-shadow: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
  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);
}
.drop-shadow-md {
  --tw-drop-shadow: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
  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);
}
.drop-shadow-sm {
  --tw-drop-shadow: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05));
  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);
}
.grayscale-0 {
  --tw-grayscale: grayscale(0);
  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);
}
.hue-rotate-0 {
  --tw-hue-rotate: hue-rotate(0deg);
  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);
}
.hue-rotate-15 {
  --tw-hue-rotate: hue-rotate(15deg);
  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);
}
.hue-rotate-30 {
  --tw-hue-rotate: hue-rotate(30deg);
  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);
}
.invert {
  --tw-invert: invert(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);
}
.saturate-0 {
  --tw-saturate: saturate(0);
  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);
}
.saturate-100 {
  --tw-saturate: saturate(1);
  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);
}
.saturate-50 {
  --tw-saturate: saturate(.5);
  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-blur {
  --tw-backdrop-blur: blur(8px);
  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-blur-2xl {
  --tw-backdrop-blur: blur(40px);
  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-blur-3xl {
  --tw-backdrop-blur: blur(64px);
  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-blur-lg {
  --tw-backdrop-blur: blur(16px);
  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-blur-md {
  --tw-backdrop-blur: blur(12px);
  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-blur-none {
  --tw-backdrop-blur:  ;
  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-blur-sm {
  --tw-backdrop-blur: blur(4px);
  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-blur-xl {
  --tw-backdrop-blur: blur(24px);
  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-brightness-0 {
  --tw-backdrop-brightness: brightness(0);
  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-brightness-100 {
  --tw-backdrop-brightness: brightness(1);
  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-brightness-125 {
  --tw-backdrop-brightness: brightness(1.25);
  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-brightness-150 {
  --tw-backdrop-brightness: brightness(1.5);
  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-brightness-200 {
  --tw-backdrop-brightness: brightness(2);
  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-brightness-50 {
  --tw-backdrop-brightness: brightness(.5);
  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-brightness-75 {
  --tw-backdrop-brightness: brightness(.75);
  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-contrast-0 {
  --tw-backdrop-contrast: contrast(0);
  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-contrast-100 {
  --tw-backdrop-contrast: contrast(1);
  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-contrast-125 {
  --tw-backdrop-contrast: contrast(1.25);
  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-contrast-150 {
  --tw-backdrop-contrast: contrast(1.5);
  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-contrast-200 {
  --tw-backdrop-contrast: contrast(2);
  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-contrast-50 {
  --tw-backdrop-contrast: contrast(.5);
  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-contrast-75 {
  --tw-backdrop-contrast: contrast(.75);
  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-grayscale {
  --tw-backdrop-grayscale: grayscale(100%);
  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-grayscale-0 {
  --tw-backdrop-grayscale: grayscale(0);
  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-hue-rotate-180 {
  --tw-backdrop-hue-rotate: hue-rotate(180deg);
  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-hue-rotate-90 {
  --tw-backdrop-hue-rotate: hue-rotate(90deg);
  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-invert {
  --tw-backdrop-invert: invert(100%);
  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-saturate-0 {
  --tw-backdrop-saturate: saturate(0);
  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-saturate-100 {
  --tw-backdrop-saturate: saturate(1);
  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-saturate-150 {
  --tw-backdrop-saturate: saturate(1.5);
  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-saturate-200 {
  --tw-backdrop-saturate: saturate(2);
  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-saturate-50 {
  --tw-backdrop-saturate: saturate(.5);
  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 {
  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-none {
  backdrop-filter: none;
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-shadow {
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-100 {
  transition-duration: 100ms;
}
.duration-150 {
  transition-duration: 150ms;
}
.duration-200 {
  transition-duration: 200ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.duration-500 {
  transition-duration: 500ms;
}
.ease-in {
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.will-change-scroll {
  will-change: scroll-position;
}
@keyframes enter {

  from {
    opacity: var(--tw-enter-opacity, 1);
    transform: translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0) scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1)) rotate(var(--tw-enter-rotate, 0));
  }
}
@keyframes exit {

  to {
    opacity: var(--tw-exit-opacity, 1);
    transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0));
  }
}
.fade-in {
  --tw-enter-opacity: 0;
}
.zoom-in {
  --tw-enter-scale: 0;
}
.zoom-out {
  --tw-exit-scale: 0;
}
.duration-100 {
  animation-duration: 100ms;
}
.duration-150 {
  animation-duration: 150ms;
}
.duration-200 {
  animation-duration: 200ms;
}
.duration-300 {
  animation-duration: 300ms;
}
.duration-500 {
  animation-duration: 500ms;
}
.ease-in {
  animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.ease-in-out {
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out {
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.running {
  animation-play-state: running;
}
.paused {
  animation-play-state: paused;
}
.motion-blur-in-lg {
  --motion-origin-blur: 16px;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-blur-in-md {
  --motion-origin-blur: 12px;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-blur-out-lg {
  --motion-end-blur: 16px;
  --motion-filter-out-animation: motion-filter-out calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-out-animation), var(--motion-translate-out-animation), var(--motion-rotate-out-animation), var(--motion-filter-out-animation), var(--motion-opacity-out-animation), var(--motion-background-color-out-animation), var(--motion-text-color-out-animation);
}
.motion-blur-out-md {
  --motion-end-blur: 12px;
  --motion-filter-out-animation: motion-filter-out calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-out-animation), var(--motion-translate-out-animation), var(--motion-rotate-out-animation), var(--motion-filter-out-animation), var(--motion-opacity-out-animation), var(--motion-background-color-out-animation), var(--motion-text-color-out-animation);
}
.motion-blur-loop-lg {
  --motion-loop-blur: 16px;
  --motion-filter-loop-animation: motion-filter-loop-mirror calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both var(--motion-filter-loop-count, var(--motion-loop-count));
  animation-composition: accumulate;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.motion-blur-loop-md {
  --motion-loop-blur: 12px;
  --motion-filter-loop-animation: motion-filter-loop-mirror calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both var(--motion-filter-loop-count, var(--motion-loop-count));
  animation-composition: accumulate;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.\[--cell-size\:1rem\] {
  --cell-size: 1rem;
}

/* Fade/scale in animation for intersection observer */
.fade-pre {
  opacity: 0;
  transform: scale(0.90);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in-up {
  opacity: 1 !important;
  transform: scale(1) !important;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


@supports (animation-timeline: view()) {
  .scroll-animate {
    animation-timeline: view();
    animation-range: entry 20% cover 50%;
  }
  .animate-fade-in-up {
    animation-timeline: view();
    animation-range: entry 20% cover 50%;
  }
}

/* Hide scrollbar but allow scroll */
@keyframes starMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(-2000px); }
}
@keyframes neonMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.main-layout, .App, body {
  direction: rtl !important;
}
.neon-waves {
  background: linear-gradient(120deg,
    #ff00e6, #0066ff, #00ffd5, #ff00e6);
  background-size: 300% 300%;
  animation: neonMove 10s linear infinite;
}
.starfield {
  position: relative;
  background: #000;
  overflow: hidden;
}
.starfield::after {
  content: "";
  position: absolute;
  width: 2px; height: 2000px;
  background-image:
    radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 3px 3px;
  animation: starMove 20s linear infinite;
}
/* Floating gradient animation */
@keyframes floatGradient {
  0% {
    background-position: 0% 50%, 50% 0%, 100% 50%, 50% 100%;
  }

  50% {
    background-position: 100% 50%, 50% 100%, 0% 50%, 50% 0%;
  }

  100% {
    background-position: 0% 50%, 50% 0%, 100% 50%, 50% 100%;
  }
}

/* .floating-gradient {
  background: 
    radial-gradient(circle, #3577e2 25%, transparent 50%),
    radial-gradient(circle, #6d28d9 25%, transparent 50%),
    radial-gradient(circle, #f59e0b 25%, transparent 50%),
    radial-gradient(circle, #10b981 25%, transparent 50%);
  background-size: 200% 200%;
  animation: floatGradient 20s ease infinite;
} */
.floating-gradient {
  background-color: #000000;
  background-image: radial-gradient(circle, rgba(186, 19, 252, 0.6) 25%, transparent 60%), radial-gradient(circle, rgba(10, 131, 244, 0.5) 25%, transparent 60%), radial-gradient(circle, rgba(245, 158, 11, 0.4) 25%, transparent 60%), radial-gradient(circle, rgba(255, 255, 255, 0.2) 15%, transparent 50%);
  background-size: 400% 400%;
  animation: floatGradient 20s ease infinite
}

@keyframes float1 {
  0% {
    background-position: 0% 50%, 50% 0%, 100% 50%, 50% 100%;
  }

  50% {
    background-position: 100% 50%, 50% 100%, 0% 50%, 50% 0%;
  }

  100% {
    background-position: 0% 50%, 50% 0%, 100% 50%, 50% 100%;
  }

}

@keyframes float2 {
  0% {
    background-position: 70% 20%;
  }

  25% {
    background-position: 75% 25%;
  }

  50% {
    background-position: 70% 30%;
  }

  75% {
    background-position: 65% 25%;
  }

  100% {
    background-position: 70% 20%;
  }
}

@keyframes float3 {
  0% {
    background-position: 50% 70%;
  }

  25% {
    background-position: 55% 75%;
  }

  50% {
    background-position: 50% 70%;
  }

  75% {
    background-position: 45% 65%;
  }

  100% {
    background-position: 50% 70%;
  }
}

@keyframes float4 {
  0% {
    background-position: 20% 60%;
  }

  25% {
    background-position: 25% 65%;
  }

  50% {
    background-position: 20% 60%;
  }

  75% {
    background-position: 15% 55%;
  }

  100% {
    background-position: 20% 60%;
  }
}

/* Floating gradient container */
/* .floating-gradient {
  background-color: #0c0c0c;
  background-image: radial-gradient(circle, rgba(186, 19, 252, 0.6) 25%, transparent 60%), radial-gradient(circle, rgba(10, 131, 244, 0.5) 25%, transparent 60%), radial-gradient(circle, rgba(245, 158, 11, 0.4) 25%, transparent 60%), radial-gradient(circle, rgba(255, 255, 255, 0.2) 15%, transparent 50%);
  background-size: 200% 200%;
  animation: float1 20s ease infinite, float2 25s ease infinite, float3 30s ease-in-out infinite, float4 35s ease infinite;
} */


#colorPicker {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 0.5rem;
  padding: 4px;
  /* color:#ec003f; */
}

.animate-once {
  animation-iteration-count: 1 !important;
}

.animate-twice {
  animation-iteration-count: 2;
}

.animate-infinite {
  animation-iteration-count: infinite !important;
}

.clip-blob {
  clip-path: polygon(50% 0%,
      80% 10%,
      100% 40%,
      90% 80%,
      60% 100%,
      20% 90%,
      0% 50%,
      10% 20%);

}

.bb {
  /* -webkit-mask-image: url('/assets/5.svg');
  mask-image: url('/assets/Ellipse_5.svg'); */
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  /* -webkit-mask-size: 80% 80%;
  mask-size: 80%; */
  /* width: 100%; */
}

.arrow-mask {
  /* clip-path: polygon(
    0 0, 
    100% 0, 
    100% 70%, 
    50% 100%, 
    0 70%, 
    0 0
  ); */
  clip-path: ellipse(70% 90% at 50% 0%);
  /* clip-path: ellipse(120% 90% at -0% 0%); */
  /* clip-path: polygon(
  0% 0%, 100% 0%, 100% 85%,
  90% 88%, 80% 85%, 70% 88%, 60% 85%,
  50% 88%, 40% 85%, 30% 88%, 20% 85%,
  10% 88%, 0% 85%
); */
}

input[type='color'] {
  width: 100%;
  /* height:100%; */
  border-radius: 1rem;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #0000001A;
  transform: scale(1.0);
}

:root {
  font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color-scheme: light dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: #242424;
  /* overflow:hidden; */
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Assistant", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.bg-grid {
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 1) 2px, transparent 2px),
    linear-gradient(to bottom, rgba(255, 255, 255, 1) 2px, transparent 2px);
  background-size: calc(100vw/12) calc(100vw/12);
  /* size of squares */
  /* outline: 2px solid gray */
}

a {
  font-weight: 500;
  color: #646cff;
  text-decoration: inherit;
}

a:hover {
  color: #535bf2;
}

/* 
#root {
  width: 100vw;
  height: 100dvh;
  justify-content: flex-start;
  display: flex;
  flex-direction: column;
}

html,
body {
  margin: 0;
  display: flex;
  place-items: center;
  width: 100vw;
  max-height: 100vh;
} */
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  /* base full height */
  width: 100%;
  overflow-x: hidden;
  /* avoid sideways scroll */
}

#root {
  /* min-height: 100svh;  */
  height: auto;
  /* allow grow beyond screen */
  display: flex;
  flex-direction: column;
}

h1 {
  font-size: 3.2em;
  line-height: 1.1;
}

button {
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 500;
  font-family: inherit;
  /* background-color: #1a1a1a; */
  cursor: pointer;
  transition: border-color 0.25s;
}

button:hover {
  border-color: #646cff;
}

button:focus,
button:focus-visible {
  outline: 4px auto -webkit-focus-ring-color;
}

@media (prefers-color-scheme: light) {
  :root {
    color: #213547;
    background-color: #ffffff;
  }

  a:hover {
    color: #747bff;
  }

  button {
    background-color: #f9f9f9;
  }
}

/* Medium screens (tablets, 768px and up) */
@media (min-width: 768px) {

  ::-webkit-scrollbar {
    width: 10px;
    height: 10px;

    border-radius: 25px;
  }

  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 25px;
    width: 10px;
    height: 10px;
  }

  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #d6d6d6;
    border-radius: 25px;
    width: 10px;


  }

  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #bbbaba;
  }
}
.hover\:motion-preset-blur-down-lg:hover {
  --motion-origin-blur: 10px;
  --motion-origin-translate-y: -25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-blur-down-md:hover {
  --motion-origin-blur: 5px;
  --motion-origin-translate-y: -5%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-blur-left-lg:hover {
  --motion-origin-blur: 10px;
  --motion-origin-translate-x: 25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-blur-left-md:hover {
  --motion-origin-blur: 5px;
  --motion-origin-translate-x: 5%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-blur-right-lg:hover {
  --motion-origin-blur: 10px;
  --motion-origin-translate-x: -25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-blur-right-md:hover {
  --motion-origin-blur: 5px;
  --motion-origin-translate-x: -5%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-blur-up-lg:hover {
  --motion-origin-blur: 10px;
  --motion-origin-translate-y: 25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-blur-up-md:hover {
  --motion-origin-blur: 5px;
  --motion-origin-translate-y: 5%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-fade-lg:hover {
  --motion-origin-opacity: 0;
  --motion-duration: 800ms;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-fade-md:hover {
  --motion-origin-opacity: 0;
  --motion-duration: 500ms;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-focus-lg:hover {
  --motion-origin-blur: 10px;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-focus-md:hover {
  --motion-origin-blur: 5px;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-slide-down-left-lg:hover {
  --motion-origin-translate-x: 100%;
  --motion-origin-translate-y: -100%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-slide-down-left-md:hover {
  --motion-origin-translate-x: 25%;
  --motion-origin-translate-y: -25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-slide-down-lg:hover {
  --motion-origin-translate-y: -100%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-slide-down-md:hover {
  --motion-origin-translate-y: -25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-slide-down-right-lg:hover {
  --motion-origin-translate-x: -100%;
  --motion-origin-translate-y: -100%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-slide-down-right-md:hover {
  --motion-origin-translate-x: -25%;
  --motion-origin-translate-y: -25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-slide-left-lg:hover {
  --motion-origin-translate-x: 100%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-slide-left-md:hover {
  --motion-origin-translate-x: 25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-slide-right-lg:hover {
  --motion-origin-translate-x: -100%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-slide-right-md:hover {
  --motion-origin-translate-x: -25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-slide-up-left-lg:hover {
  --motion-origin-translate-x: 100%;
  --motion-origin-translate-y: 100%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-slide-up-left-md:hover {
  --motion-origin-translate-x: 25%;
  --motion-origin-translate-y: 25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-slide-up-lg:hover {
  --motion-origin-translate-y: 100%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-slide-up-md:hover {
  --motion-origin-translate-y: 25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-slide-up-right-lg:hover {
  --motion-origin-translate-x: -100%;
  --motion-origin-translate-y: 100%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-slide-up-right-md:hover {
  --motion-origin-translate-x: -25%;
  --motion-origin-translate-y: 25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-float-lg:hover {
  --motion-loop-translate-y: 150%;
  --motion-translate-timing: var(--motion-spring-bouncier);
  --motion-translate-perceptual-duration-multiplier: 2.035;
  --motion-duration: 2000ms;
  --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-float-md:hover {
  --motion-loop-translate-y: 100%;
  --motion-translate-timing: var(--motion-spring-bouncier);
  --motion-translate-perceptual-duration-multiplier: 2.035;
  --motion-duration: 2000ms;
  --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-oscillate-lg:hover {
  --motion-loop-translate-y: 25%;
  --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
  --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-oscillate-md:hover {
  --motion-loop-translate-y: 15%;
  --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
  --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-pulse-lg:hover {
  --motion-loop-scale-x: 1.5;
  --motion-loop-scale-y: 1.5;
  --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
  --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-pulse-md:hover {
  --motion-loop-scale-x: 1.25;
  --motion-loop-scale-y: 1.25;
  --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
  --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-seesaw-lg:hover {
  --motion-loop-rotate: 12deg;
  --motion-rotate-loop-animation: motion-rotate-loop-mirror calc(var(--motion-rotate-duration, var(--motion-duration)) * var(--motion-rotate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-rotate-timing, var(--motion-timing)) var(--motion-rotate-delay, var(--motion-delay)) both var(--motion-rotate-loop-count, var(--motion-loop-count));
  --motion-rotate-timing: var(--motion-spring-bounciest);
  --motion-rotate-perceptual-duration-multiplier: 5.285;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-seesaw-md:hover {
  --motion-loop-rotate: 6deg;
  --motion-rotate-loop-animation: motion-rotate-loop-mirror calc(var(--motion-rotate-duration, var(--motion-duration)) * var(--motion-rotate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-rotate-timing, var(--motion-timing)) var(--motion-rotate-delay, var(--motion-delay)) both var(--motion-rotate-loop-count, var(--motion-loop-count));
  --motion-rotate-timing: var(--motion-spring-bounciest);
  --motion-rotate-perceptual-duration-multiplier: 5.285;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-stretch-lg:hover {
  --motion-loop-scale-x: 75%;
  --motion-loop-scale-y: 125%;
  --motion-scale-timing: var(--motion-spring-bouncier);
  --motion-scale-perceptual-duration-multiplier: 2.035;
  --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-stretch-md:hover {
  --motion-loop-scale-x: 85%;
  --motion-loop-scale-y: 115%;
  --motion-scale-timing: var(--motion-spring-bouncier);
  --motion-scale-perceptual-duration-multiplier: 2.035;
  --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-wobble-lg:hover {
  --motion-loop-translate-x: 25%;
  --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
  --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-preset-wobble-md:hover {
  --motion-loop-translate-x: 15%;
  --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
  --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-blur-down-lg:focus {
  --motion-origin-blur: 10px;
  --motion-origin-translate-y: -25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-blur-down-md:focus {
  --motion-origin-blur: 5px;
  --motion-origin-translate-y: -5%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-blur-left-lg:focus {
  --motion-origin-blur: 10px;
  --motion-origin-translate-x: 25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-blur-left-md:focus {
  --motion-origin-blur: 5px;
  --motion-origin-translate-x: 5%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-blur-right-lg:focus {
  --motion-origin-blur: 10px;
  --motion-origin-translate-x: -25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-blur-right-md:focus {
  --motion-origin-blur: 5px;
  --motion-origin-translate-x: -5%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-blur-up-lg:focus {
  --motion-origin-blur: 10px;
  --motion-origin-translate-y: 25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-blur-up-md:focus {
  --motion-origin-blur: 5px;
  --motion-origin-translate-y: 5%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-fade-lg:focus {
  --motion-origin-opacity: 0;
  --motion-duration: 800ms;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-fade-md:focus {
  --motion-origin-opacity: 0;
  --motion-duration: 500ms;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-focus-lg:focus {
  --motion-origin-blur: 10px;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-focus-md:focus {
  --motion-origin-blur: 5px;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-slide-down-left-lg:focus {
  --motion-origin-translate-x: 100%;
  --motion-origin-translate-y: -100%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-slide-down-left-md:focus {
  --motion-origin-translate-x: 25%;
  --motion-origin-translate-y: -25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-slide-down-lg:focus {
  --motion-origin-translate-y: -100%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-slide-down-md:focus {
  --motion-origin-translate-y: -25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-slide-down-right-lg:focus {
  --motion-origin-translate-x: -100%;
  --motion-origin-translate-y: -100%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-slide-down-right-md:focus {
  --motion-origin-translate-x: -25%;
  --motion-origin-translate-y: -25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-slide-left-lg:focus {
  --motion-origin-translate-x: 100%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-slide-left-md:focus {
  --motion-origin-translate-x: 25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-slide-right-lg:focus {
  --motion-origin-translate-x: -100%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-slide-right-md:focus {
  --motion-origin-translate-x: -25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-slide-up-left-lg:focus {
  --motion-origin-translate-x: 100%;
  --motion-origin-translate-y: 100%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-slide-up-left-md:focus {
  --motion-origin-translate-x: 25%;
  --motion-origin-translate-y: 25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-slide-up-lg:focus {
  --motion-origin-translate-y: 100%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-slide-up-md:focus {
  --motion-origin-translate-y: 25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-slide-up-right-lg:focus {
  --motion-origin-translate-x: -100%;
  --motion-origin-translate-y: 100%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-slide-up-right-md:focus {
  --motion-origin-translate-x: -25%;
  --motion-origin-translate-y: 25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-float-lg:focus {
  --motion-loop-translate-y: 150%;
  --motion-translate-timing: var(--motion-spring-bouncier);
  --motion-translate-perceptual-duration-multiplier: 2.035;
  --motion-duration: 2000ms;
  --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-float-md:focus {
  --motion-loop-translate-y: 100%;
  --motion-translate-timing: var(--motion-spring-bouncier);
  --motion-translate-perceptual-duration-multiplier: 2.035;
  --motion-duration: 2000ms;
  --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-oscillate-lg:focus {
  --motion-loop-translate-y: 25%;
  --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
  --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-oscillate-md:focus {
  --motion-loop-translate-y: 15%;
  --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
  --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-pulse-lg:focus {
  --motion-loop-scale-x: 1.5;
  --motion-loop-scale-y: 1.5;
  --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
  --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-pulse-md:focus {
  --motion-loop-scale-x: 1.25;
  --motion-loop-scale-y: 1.25;
  --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
  --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-seesaw-lg:focus {
  --motion-loop-rotate: 12deg;
  --motion-rotate-loop-animation: motion-rotate-loop-mirror calc(var(--motion-rotate-duration, var(--motion-duration)) * var(--motion-rotate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-rotate-timing, var(--motion-timing)) var(--motion-rotate-delay, var(--motion-delay)) both var(--motion-rotate-loop-count, var(--motion-loop-count));
  --motion-rotate-timing: var(--motion-spring-bounciest);
  --motion-rotate-perceptual-duration-multiplier: 5.285;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-seesaw-md:focus {
  --motion-loop-rotate: 6deg;
  --motion-rotate-loop-animation: motion-rotate-loop-mirror calc(var(--motion-rotate-duration, var(--motion-duration)) * var(--motion-rotate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-rotate-timing, var(--motion-timing)) var(--motion-rotate-delay, var(--motion-delay)) both var(--motion-rotate-loop-count, var(--motion-loop-count));
  --motion-rotate-timing: var(--motion-spring-bounciest);
  --motion-rotate-perceptual-duration-multiplier: 5.285;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-stretch-lg:focus {
  --motion-loop-scale-x: 75%;
  --motion-loop-scale-y: 125%;
  --motion-scale-timing: var(--motion-spring-bouncier);
  --motion-scale-perceptual-duration-multiplier: 2.035;
  --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-stretch-md:focus {
  --motion-loop-scale-x: 85%;
  --motion-loop-scale-y: 115%;
  --motion-scale-timing: var(--motion-spring-bouncier);
  --motion-scale-perceptual-duration-multiplier: 2.035;
  --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-wobble-lg:focus {
  --motion-loop-translate-x: 25%;
  --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
  --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-preset-wobble-md:focus {
  --motion-loop-translate-x: 15%;
  --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
  --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-blur-down-lg:active {
  --motion-origin-blur: 10px;
  --motion-origin-translate-y: -25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-blur-down-md:active {
  --motion-origin-blur: 5px;
  --motion-origin-translate-y: -5%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-blur-left-lg:active {
  --motion-origin-blur: 10px;
  --motion-origin-translate-x: 25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-blur-left-md:active {
  --motion-origin-blur: 5px;
  --motion-origin-translate-x: 5%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-blur-right-lg:active {
  --motion-origin-blur: 10px;
  --motion-origin-translate-x: -25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-blur-right-md:active {
  --motion-origin-blur: 5px;
  --motion-origin-translate-x: -5%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-blur-up-lg:active {
  --motion-origin-blur: 10px;
  --motion-origin-translate-y: 25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-blur-up-md:active {
  --motion-origin-blur: 5px;
  --motion-origin-translate-y: 5%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-fade-lg:active {
  --motion-origin-opacity: 0;
  --motion-duration: 800ms;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-fade-md:active {
  --motion-origin-opacity: 0;
  --motion-duration: 500ms;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-focus-lg:active {
  --motion-origin-blur: 10px;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-focus-md:active {
  --motion-origin-blur: 5px;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-slide-down-left-lg:active {
  --motion-origin-translate-x: 100%;
  --motion-origin-translate-y: -100%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-slide-down-left-md:active {
  --motion-origin-translate-x: 25%;
  --motion-origin-translate-y: -25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-slide-down-lg:active {
  --motion-origin-translate-y: -100%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-slide-down-md:active {
  --motion-origin-translate-y: -25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-slide-down-right-lg:active {
  --motion-origin-translate-x: -100%;
  --motion-origin-translate-y: -100%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-slide-down-right-md:active {
  --motion-origin-translate-x: -25%;
  --motion-origin-translate-y: -25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-slide-left-lg:active {
  --motion-origin-translate-x: 100%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-slide-left-md:active {
  --motion-origin-translate-x: 25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-slide-right-lg:active {
  --motion-origin-translate-x: -100%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-slide-right-md:active {
  --motion-origin-translate-x: -25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-slide-up-left-lg:active {
  --motion-origin-translate-x: 100%;
  --motion-origin-translate-y: 100%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-slide-up-left-md:active {
  --motion-origin-translate-x: 25%;
  --motion-origin-translate-y: 25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-slide-up-lg:active {
  --motion-origin-translate-y: 100%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-slide-up-md:active {
  --motion-origin-translate-y: 25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-slide-up-right-lg:active {
  --motion-origin-translate-x: -100%;
  --motion-origin-translate-y: 100%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-slide-up-right-md:active {
  --motion-origin-translate-x: -25%;
  --motion-origin-translate-y: 25%;
  --motion-origin-opacity: 0;
  --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
  --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-float-lg:active {
  --motion-loop-translate-y: 150%;
  --motion-translate-timing: var(--motion-spring-bouncier);
  --motion-translate-perceptual-duration-multiplier: 2.035;
  --motion-duration: 2000ms;
  --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-float-md:active {
  --motion-loop-translate-y: 100%;
  --motion-translate-timing: var(--motion-spring-bouncier);
  --motion-translate-perceptual-duration-multiplier: 2.035;
  --motion-duration: 2000ms;
  --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-oscillate-lg:active {
  --motion-loop-translate-y: 25%;
  --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
  --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-oscillate-md:active {
  --motion-loop-translate-y: 15%;
  --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
  --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-pulse-lg:active {
  --motion-loop-scale-x: 1.5;
  --motion-loop-scale-y: 1.5;
  --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
  --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-pulse-md:active {
  --motion-loop-scale-x: 1.25;
  --motion-loop-scale-y: 1.25;
  --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
  --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-seesaw-lg:active {
  --motion-loop-rotate: 12deg;
  --motion-rotate-loop-animation: motion-rotate-loop-mirror calc(var(--motion-rotate-duration, var(--motion-duration)) * var(--motion-rotate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-rotate-timing, var(--motion-timing)) var(--motion-rotate-delay, var(--motion-delay)) both var(--motion-rotate-loop-count, var(--motion-loop-count));
  --motion-rotate-timing: var(--motion-spring-bounciest);
  --motion-rotate-perceptual-duration-multiplier: 5.285;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-seesaw-md:active {
  --motion-loop-rotate: 6deg;
  --motion-rotate-loop-animation: motion-rotate-loop-mirror calc(var(--motion-rotate-duration, var(--motion-duration)) * var(--motion-rotate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-rotate-timing, var(--motion-timing)) var(--motion-rotate-delay, var(--motion-delay)) both var(--motion-rotate-loop-count, var(--motion-loop-count));
  --motion-rotate-timing: var(--motion-spring-bounciest);
  --motion-rotate-perceptual-duration-multiplier: 5.285;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-stretch-lg:active {
  --motion-loop-scale-x: 75%;
  --motion-loop-scale-y: 125%;
  --motion-scale-timing: var(--motion-spring-bouncier);
  --motion-scale-perceptual-duration-multiplier: 2.035;
  --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-stretch-md:active {
  --motion-loop-scale-x: 85%;
  --motion-loop-scale-y: 115%;
  --motion-scale-timing: var(--motion-spring-bouncier);
  --motion-scale-perceptual-duration-multiplier: 2.035;
  --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-wobble-lg:active {
  --motion-loop-translate-x: 25%;
  --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
  --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-preset-wobble-md:active {
  --motion-loop-translate-x: 15%;
  --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
  --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
@media (min-width: 640px) {

  .sm\:motion-preset-blur-down-lg {
    --motion-origin-blur: 10px;
    --motion-origin-translate-y: -25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-blur-down-md {
    --motion-origin-blur: 5px;
    --motion-origin-translate-y: -5%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-blur-left-lg {
    --motion-origin-blur: 10px;
    --motion-origin-translate-x: 25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-blur-left-md {
    --motion-origin-blur: 5px;
    --motion-origin-translate-x: 5%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-blur-right-lg {
    --motion-origin-blur: 10px;
    --motion-origin-translate-x: -25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-blur-right-md {
    --motion-origin-blur: 5px;
    --motion-origin-translate-x: -5%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-blur-up-lg {
    --motion-origin-blur: 10px;
    --motion-origin-translate-y: 25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-blur-up-md {
    --motion-origin-blur: 5px;
    --motion-origin-translate-y: 5%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-fade-lg {
    --motion-origin-opacity: 0;
    --motion-duration: 800ms;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-fade-md {
    --motion-origin-opacity: 0;
    --motion-duration: 500ms;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-focus-lg {
    --motion-origin-blur: 10px;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-focus-md {
    --motion-origin-blur: 5px;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-slide-down-left-lg {
    --motion-origin-translate-x: 100%;
    --motion-origin-translate-y: -100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-slide-down-left-md {
    --motion-origin-translate-x: 25%;
    --motion-origin-translate-y: -25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-slide-down-lg {
    --motion-origin-translate-y: -100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-slide-down-md {
    --motion-origin-translate-y: -25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-slide-down-right-lg {
    --motion-origin-translate-x: -100%;
    --motion-origin-translate-y: -100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-slide-down-right-md {
    --motion-origin-translate-x: -25%;
    --motion-origin-translate-y: -25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-slide-left-lg {
    --motion-origin-translate-x: 100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-slide-left-md {
    --motion-origin-translate-x: 25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-slide-right-lg {
    --motion-origin-translate-x: -100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-slide-right-md {
    --motion-origin-translate-x: -25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-slide-up-left-lg {
    --motion-origin-translate-x: 100%;
    --motion-origin-translate-y: 100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-slide-up-left-md {
    --motion-origin-translate-x: 25%;
    --motion-origin-translate-y: 25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-slide-up-lg {
    --motion-origin-translate-y: 100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-slide-up-md {
    --motion-origin-translate-y: 25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-slide-up-right-lg {
    --motion-origin-translate-x: -100%;
    --motion-origin-translate-y: 100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-slide-up-right-md {
    --motion-origin-translate-x: -25%;
    --motion-origin-translate-y: 25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-float-lg {
    --motion-loop-translate-y: 150%;
    --motion-translate-timing: var(--motion-spring-bouncier);
    --motion-translate-perceptual-duration-multiplier: 2.035;
    --motion-duration: 2000ms;
    --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-float-md {
    --motion-loop-translate-y: 100%;
    --motion-translate-timing: var(--motion-spring-bouncier);
    --motion-translate-perceptual-duration-multiplier: 2.035;
    --motion-duration: 2000ms;
    --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-oscillate-lg {
    --motion-loop-translate-y: 25%;
    --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-oscillate-md {
    --motion-loop-translate-y: 15%;
    --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-pulse-lg {
    --motion-loop-scale-x: 1.5;
    --motion-loop-scale-y: 1.5;
    --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-pulse-md {
    --motion-loop-scale-x: 1.25;
    --motion-loop-scale-y: 1.25;
    --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-seesaw-lg {
    --motion-loop-rotate: 12deg;
    --motion-rotate-loop-animation: motion-rotate-loop-mirror calc(var(--motion-rotate-duration, var(--motion-duration)) * var(--motion-rotate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-rotate-timing, var(--motion-timing)) var(--motion-rotate-delay, var(--motion-delay)) both var(--motion-rotate-loop-count, var(--motion-loop-count));
    --motion-rotate-timing: var(--motion-spring-bounciest);
    --motion-rotate-perceptual-duration-multiplier: 5.285;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-seesaw-md {
    --motion-loop-rotate: 6deg;
    --motion-rotate-loop-animation: motion-rotate-loop-mirror calc(var(--motion-rotate-duration, var(--motion-duration)) * var(--motion-rotate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-rotate-timing, var(--motion-timing)) var(--motion-rotate-delay, var(--motion-delay)) both var(--motion-rotate-loop-count, var(--motion-loop-count));
    --motion-rotate-timing: var(--motion-spring-bounciest);
    --motion-rotate-perceptual-duration-multiplier: 5.285;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-stretch-lg {
    --motion-loop-scale-x: 75%;
    --motion-loop-scale-y: 125%;
    --motion-scale-timing: var(--motion-spring-bouncier);
    --motion-scale-perceptual-duration-multiplier: 2.035;
    --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-stretch-md {
    --motion-loop-scale-x: 85%;
    --motion-loop-scale-y: 115%;
    --motion-scale-timing: var(--motion-spring-bouncier);
    --motion-scale-perceptual-duration-multiplier: 2.035;
    --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-wobble-lg {
    --motion-loop-translate-x: 25%;
    --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-preset-wobble-md {
    --motion-loop-translate-x: 15%;
    --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }
}
@media (min-width: 768px) {

  .md\:motion-preset-blur-down-lg {
    --motion-origin-blur: 10px;
    --motion-origin-translate-y: -25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-blur-down-md {
    --motion-origin-blur: 5px;
    --motion-origin-translate-y: -5%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-blur-left-lg {
    --motion-origin-blur: 10px;
    --motion-origin-translate-x: 25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-blur-left-md {
    --motion-origin-blur: 5px;
    --motion-origin-translate-x: 5%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-blur-right-lg {
    --motion-origin-blur: 10px;
    --motion-origin-translate-x: -25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-blur-right-md {
    --motion-origin-blur: 5px;
    --motion-origin-translate-x: -5%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-blur-up-lg {
    --motion-origin-blur: 10px;
    --motion-origin-translate-y: 25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-blur-up-md {
    --motion-origin-blur: 5px;
    --motion-origin-translate-y: 5%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-fade-lg {
    --motion-origin-opacity: 0;
    --motion-duration: 800ms;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-fade-md {
    --motion-origin-opacity: 0;
    --motion-duration: 500ms;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-focus-lg {
    --motion-origin-blur: 10px;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-focus-md {
    --motion-origin-blur: 5px;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-slide-down-left-lg {
    --motion-origin-translate-x: 100%;
    --motion-origin-translate-y: -100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-slide-down-left-md {
    --motion-origin-translate-x: 25%;
    --motion-origin-translate-y: -25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-slide-down-lg {
    --motion-origin-translate-y: -100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-slide-down-md {
    --motion-origin-translate-y: -25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-slide-down-right-lg {
    --motion-origin-translate-x: -100%;
    --motion-origin-translate-y: -100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-slide-down-right-md {
    --motion-origin-translate-x: -25%;
    --motion-origin-translate-y: -25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-slide-left-lg {
    --motion-origin-translate-x: 100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-slide-left-md {
    --motion-origin-translate-x: 25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-slide-right-lg {
    --motion-origin-translate-x: -100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-slide-right-md {
    --motion-origin-translate-x: -25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-slide-up-left-lg {
    --motion-origin-translate-x: 100%;
    --motion-origin-translate-y: 100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-slide-up-left-md {
    --motion-origin-translate-x: 25%;
    --motion-origin-translate-y: 25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-slide-up-lg {
    --motion-origin-translate-y: 100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-slide-up-md {
    --motion-origin-translate-y: 25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-slide-up-right-lg {
    --motion-origin-translate-x: -100%;
    --motion-origin-translate-y: 100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-slide-up-right-md {
    --motion-origin-translate-x: -25%;
    --motion-origin-translate-y: 25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-float-lg {
    --motion-loop-translate-y: 150%;
    --motion-translate-timing: var(--motion-spring-bouncier);
    --motion-translate-perceptual-duration-multiplier: 2.035;
    --motion-duration: 2000ms;
    --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-float-md {
    --motion-loop-translate-y: 100%;
    --motion-translate-timing: var(--motion-spring-bouncier);
    --motion-translate-perceptual-duration-multiplier: 2.035;
    --motion-duration: 2000ms;
    --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-oscillate-lg {
    --motion-loop-translate-y: 25%;
    --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-oscillate-md {
    --motion-loop-translate-y: 15%;
    --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-pulse-lg {
    --motion-loop-scale-x: 1.5;
    --motion-loop-scale-y: 1.5;
    --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-pulse-md {
    --motion-loop-scale-x: 1.25;
    --motion-loop-scale-y: 1.25;
    --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-seesaw-lg {
    --motion-loop-rotate: 12deg;
    --motion-rotate-loop-animation: motion-rotate-loop-mirror calc(var(--motion-rotate-duration, var(--motion-duration)) * var(--motion-rotate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-rotate-timing, var(--motion-timing)) var(--motion-rotate-delay, var(--motion-delay)) both var(--motion-rotate-loop-count, var(--motion-loop-count));
    --motion-rotate-timing: var(--motion-spring-bounciest);
    --motion-rotate-perceptual-duration-multiplier: 5.285;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-seesaw-md {
    --motion-loop-rotate: 6deg;
    --motion-rotate-loop-animation: motion-rotate-loop-mirror calc(var(--motion-rotate-duration, var(--motion-duration)) * var(--motion-rotate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-rotate-timing, var(--motion-timing)) var(--motion-rotate-delay, var(--motion-delay)) both var(--motion-rotate-loop-count, var(--motion-loop-count));
    --motion-rotate-timing: var(--motion-spring-bounciest);
    --motion-rotate-perceptual-duration-multiplier: 5.285;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-stretch-lg {
    --motion-loop-scale-x: 75%;
    --motion-loop-scale-y: 125%;
    --motion-scale-timing: var(--motion-spring-bouncier);
    --motion-scale-perceptual-duration-multiplier: 2.035;
    --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-stretch-md {
    --motion-loop-scale-x: 85%;
    --motion-loop-scale-y: 115%;
    --motion-scale-timing: var(--motion-spring-bouncier);
    --motion-scale-perceptual-duration-multiplier: 2.035;
    --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-wobble-lg {
    --motion-loop-translate-x: 25%;
    --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-preset-wobble-md {
    --motion-loop-translate-x: 15%;
    --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }
}
@media (min-width: 1024px) {

  .lg\:motion-preset-blur-down-lg {
    --motion-origin-blur: 10px;
    --motion-origin-translate-y: -25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-blur-down-md {
    --motion-origin-blur: 5px;
    --motion-origin-translate-y: -5%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-blur-left-lg {
    --motion-origin-blur: 10px;
    --motion-origin-translate-x: 25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-blur-left-md {
    --motion-origin-blur: 5px;
    --motion-origin-translate-x: 5%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-blur-right-lg {
    --motion-origin-blur: 10px;
    --motion-origin-translate-x: -25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-blur-right-md {
    --motion-origin-blur: 5px;
    --motion-origin-translate-x: -5%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-blur-up-lg {
    --motion-origin-blur: 10px;
    --motion-origin-translate-y: 25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-blur-up-md {
    --motion-origin-blur: 5px;
    --motion-origin-translate-y: 5%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-fade-lg {
    --motion-origin-opacity: 0;
    --motion-duration: 800ms;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-fade-md {
    --motion-origin-opacity: 0;
    --motion-duration: 500ms;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-focus-lg {
    --motion-origin-blur: 10px;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-focus-md {
    --motion-origin-blur: 5px;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-slide-down-left-lg {
    --motion-origin-translate-x: 100%;
    --motion-origin-translate-y: -100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-slide-down-left-md {
    --motion-origin-translate-x: 25%;
    --motion-origin-translate-y: -25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-slide-down-lg {
    --motion-origin-translate-y: -100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-slide-down-md {
    --motion-origin-translate-y: -25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-slide-down-right-lg {
    --motion-origin-translate-x: -100%;
    --motion-origin-translate-y: -100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-slide-down-right-md {
    --motion-origin-translate-x: -25%;
    --motion-origin-translate-y: -25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-slide-left-lg {
    --motion-origin-translate-x: 100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-slide-left-md {
    --motion-origin-translate-x: 25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-slide-right-lg {
    --motion-origin-translate-x: -100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-slide-right-md {
    --motion-origin-translate-x: -25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-slide-up-left-lg {
    --motion-origin-translate-x: 100%;
    --motion-origin-translate-y: 100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-slide-up-left-md {
    --motion-origin-translate-x: 25%;
    --motion-origin-translate-y: 25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-slide-up-lg {
    --motion-origin-translate-y: 100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-slide-up-md {
    --motion-origin-translate-y: 25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-slide-up-right-lg {
    --motion-origin-translate-x: -100%;
    --motion-origin-translate-y: 100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-slide-up-right-md {
    --motion-origin-translate-x: -25%;
    --motion-origin-translate-y: 25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-float-lg {
    --motion-loop-translate-y: 150%;
    --motion-translate-timing: var(--motion-spring-bouncier);
    --motion-translate-perceptual-duration-multiplier: 2.035;
    --motion-duration: 2000ms;
    --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-float-md {
    --motion-loop-translate-y: 100%;
    --motion-translate-timing: var(--motion-spring-bouncier);
    --motion-translate-perceptual-duration-multiplier: 2.035;
    --motion-duration: 2000ms;
    --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-oscillate-lg {
    --motion-loop-translate-y: 25%;
    --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-oscillate-md {
    --motion-loop-translate-y: 15%;
    --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-pulse-lg {
    --motion-loop-scale-x: 1.5;
    --motion-loop-scale-y: 1.5;
    --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-pulse-md {
    --motion-loop-scale-x: 1.25;
    --motion-loop-scale-y: 1.25;
    --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-seesaw-lg {
    --motion-loop-rotate: 12deg;
    --motion-rotate-loop-animation: motion-rotate-loop-mirror calc(var(--motion-rotate-duration, var(--motion-duration)) * var(--motion-rotate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-rotate-timing, var(--motion-timing)) var(--motion-rotate-delay, var(--motion-delay)) both var(--motion-rotate-loop-count, var(--motion-loop-count));
    --motion-rotate-timing: var(--motion-spring-bounciest);
    --motion-rotate-perceptual-duration-multiplier: 5.285;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-seesaw-md {
    --motion-loop-rotate: 6deg;
    --motion-rotate-loop-animation: motion-rotate-loop-mirror calc(var(--motion-rotate-duration, var(--motion-duration)) * var(--motion-rotate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-rotate-timing, var(--motion-timing)) var(--motion-rotate-delay, var(--motion-delay)) both var(--motion-rotate-loop-count, var(--motion-loop-count));
    --motion-rotate-timing: var(--motion-spring-bounciest);
    --motion-rotate-perceptual-duration-multiplier: 5.285;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-stretch-lg {
    --motion-loop-scale-x: 75%;
    --motion-loop-scale-y: 125%;
    --motion-scale-timing: var(--motion-spring-bouncier);
    --motion-scale-perceptual-duration-multiplier: 2.035;
    --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-stretch-md {
    --motion-loop-scale-x: 85%;
    --motion-loop-scale-y: 115%;
    --motion-scale-timing: var(--motion-spring-bouncier);
    --motion-scale-perceptual-duration-multiplier: 2.035;
    --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-wobble-lg {
    --motion-loop-translate-x: 25%;
    --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-preset-wobble-md {
    --motion-loop-translate-x: 15%;
    --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }
}
@media (min-width: 1280px) {

  .xl\:motion-preset-blur-down-lg {
    --motion-origin-blur: 10px;
    --motion-origin-translate-y: -25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-blur-down-md {
    --motion-origin-blur: 5px;
    --motion-origin-translate-y: -5%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-blur-left-lg {
    --motion-origin-blur: 10px;
    --motion-origin-translate-x: 25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-blur-left-md {
    --motion-origin-blur: 5px;
    --motion-origin-translate-x: 5%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-blur-right-lg {
    --motion-origin-blur: 10px;
    --motion-origin-translate-x: -25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-blur-right-md {
    --motion-origin-blur: 5px;
    --motion-origin-translate-x: -5%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-blur-up-lg {
    --motion-origin-blur: 10px;
    --motion-origin-translate-y: 25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-blur-up-md {
    --motion-origin-blur: 5px;
    --motion-origin-translate-y: 5%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-fade-lg {
    --motion-origin-opacity: 0;
    --motion-duration: 800ms;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-fade-md {
    --motion-origin-opacity: 0;
    --motion-duration: 500ms;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-focus-lg {
    --motion-origin-blur: 10px;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-focus-md {
    --motion-origin-blur: 5px;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-slide-down-left-lg {
    --motion-origin-translate-x: 100%;
    --motion-origin-translate-y: -100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-slide-down-left-md {
    --motion-origin-translate-x: 25%;
    --motion-origin-translate-y: -25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-slide-down-lg {
    --motion-origin-translate-y: -100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-slide-down-md {
    --motion-origin-translate-y: -25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-slide-down-right-lg {
    --motion-origin-translate-x: -100%;
    --motion-origin-translate-y: -100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-slide-down-right-md {
    --motion-origin-translate-x: -25%;
    --motion-origin-translate-y: -25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-slide-left-lg {
    --motion-origin-translate-x: 100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-slide-left-md {
    --motion-origin-translate-x: 25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-slide-right-lg {
    --motion-origin-translate-x: -100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-slide-right-md {
    --motion-origin-translate-x: -25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-slide-up-left-lg {
    --motion-origin-translate-x: 100%;
    --motion-origin-translate-y: 100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-slide-up-left-md {
    --motion-origin-translate-x: 25%;
    --motion-origin-translate-y: 25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-slide-up-lg {
    --motion-origin-translate-y: 100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-slide-up-md {
    --motion-origin-translate-y: 25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-slide-up-right-lg {
    --motion-origin-translate-x: -100%;
    --motion-origin-translate-y: 100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-slide-up-right-md {
    --motion-origin-translate-x: -25%;
    --motion-origin-translate-y: 25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-float-lg {
    --motion-loop-translate-y: 150%;
    --motion-translate-timing: var(--motion-spring-bouncier);
    --motion-translate-perceptual-duration-multiplier: 2.035;
    --motion-duration: 2000ms;
    --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-float-md {
    --motion-loop-translate-y: 100%;
    --motion-translate-timing: var(--motion-spring-bouncier);
    --motion-translate-perceptual-duration-multiplier: 2.035;
    --motion-duration: 2000ms;
    --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-oscillate-lg {
    --motion-loop-translate-y: 25%;
    --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-oscillate-md {
    --motion-loop-translate-y: 15%;
    --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-pulse-lg {
    --motion-loop-scale-x: 1.5;
    --motion-loop-scale-y: 1.5;
    --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-pulse-md {
    --motion-loop-scale-x: 1.25;
    --motion-loop-scale-y: 1.25;
    --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-seesaw-lg {
    --motion-loop-rotate: 12deg;
    --motion-rotate-loop-animation: motion-rotate-loop-mirror calc(var(--motion-rotate-duration, var(--motion-duration)) * var(--motion-rotate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-rotate-timing, var(--motion-timing)) var(--motion-rotate-delay, var(--motion-delay)) both var(--motion-rotate-loop-count, var(--motion-loop-count));
    --motion-rotate-timing: var(--motion-spring-bounciest);
    --motion-rotate-perceptual-duration-multiplier: 5.285;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-seesaw-md {
    --motion-loop-rotate: 6deg;
    --motion-rotate-loop-animation: motion-rotate-loop-mirror calc(var(--motion-rotate-duration, var(--motion-duration)) * var(--motion-rotate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-rotate-timing, var(--motion-timing)) var(--motion-rotate-delay, var(--motion-delay)) both var(--motion-rotate-loop-count, var(--motion-loop-count));
    --motion-rotate-timing: var(--motion-spring-bounciest);
    --motion-rotate-perceptual-duration-multiplier: 5.285;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-stretch-lg {
    --motion-loop-scale-x: 75%;
    --motion-loop-scale-y: 125%;
    --motion-scale-timing: var(--motion-spring-bouncier);
    --motion-scale-perceptual-duration-multiplier: 2.035;
    --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-stretch-md {
    --motion-loop-scale-x: 85%;
    --motion-loop-scale-y: 115%;
    --motion-scale-timing: var(--motion-spring-bouncier);
    --motion-scale-perceptual-duration-multiplier: 2.035;
    --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-wobble-lg {
    --motion-loop-translate-x: 25%;
    --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-preset-wobble-md {
    --motion-loop-translate-x: 15%;
    --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }
}
@media (min-width: 1536px) {

  .\32xl\:motion-preset-blur-down-lg {
    --motion-origin-blur: 10px;
    --motion-origin-translate-y: -25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-blur-down-md {
    --motion-origin-blur: 5px;
    --motion-origin-translate-y: -5%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-blur-left-lg {
    --motion-origin-blur: 10px;
    --motion-origin-translate-x: 25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-blur-left-md {
    --motion-origin-blur: 5px;
    --motion-origin-translate-x: 5%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-blur-right-lg {
    --motion-origin-blur: 10px;
    --motion-origin-translate-x: -25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-blur-right-md {
    --motion-origin-blur: 5px;
    --motion-origin-translate-x: -5%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-blur-up-lg {
    --motion-origin-blur: 10px;
    --motion-origin-translate-y: 25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-blur-up-md {
    --motion-origin-blur: 5px;
    --motion-origin-translate-y: 5%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-fade-lg {
    --motion-origin-opacity: 0;
    --motion-duration: 800ms;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-fade-md {
    --motion-origin-opacity: 0;
    --motion-duration: 500ms;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-focus-lg {
    --motion-origin-blur: 10px;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-focus-md {
    --motion-origin-blur: 5px;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-slide-down-left-lg {
    --motion-origin-translate-x: 100%;
    --motion-origin-translate-y: -100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-slide-down-left-md {
    --motion-origin-translate-x: 25%;
    --motion-origin-translate-y: -25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-slide-down-lg {
    --motion-origin-translate-y: -100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-slide-down-md {
    --motion-origin-translate-y: -25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-slide-down-right-lg {
    --motion-origin-translate-x: -100%;
    --motion-origin-translate-y: -100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-slide-down-right-md {
    --motion-origin-translate-x: -25%;
    --motion-origin-translate-y: -25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-slide-left-lg {
    --motion-origin-translate-x: 100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-slide-left-md {
    --motion-origin-translate-x: 25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-slide-right-lg {
    --motion-origin-translate-x: -100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-slide-right-md {
    --motion-origin-translate-x: -25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-slide-up-left-lg {
    --motion-origin-translate-x: 100%;
    --motion-origin-translate-y: 100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-slide-up-left-md {
    --motion-origin-translate-x: 25%;
    --motion-origin-translate-y: 25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-slide-up-lg {
    --motion-origin-translate-y: 100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-slide-up-md {
    --motion-origin-translate-y: 25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-slide-up-right-lg {
    --motion-origin-translate-x: -100%;
    --motion-origin-translate-y: 100%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-slide-up-right-md {
    --motion-origin-translate-x: -25%;
    --motion-origin-translate-y: 25%;
    --motion-origin-opacity: 0;
    --motion-opacity-in-animation: motion-opacity-in calc(var(--motion-opacity-duration, var(--motion-duration)) * var(--motion-opacity-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-opacity-timing, var(--motion-timing)) var(--motion-opacity-delay, var(--motion-delay)) both;
    --motion-translate-in-animation: motion-translate-in calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-float-lg {
    --motion-loop-translate-y: 150%;
    --motion-translate-timing: var(--motion-spring-bouncier);
    --motion-translate-perceptual-duration-multiplier: 2.035;
    --motion-duration: 2000ms;
    --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-float-md {
    --motion-loop-translate-y: 100%;
    --motion-translate-timing: var(--motion-spring-bouncier);
    --motion-translate-perceptual-duration-multiplier: 2.035;
    --motion-duration: 2000ms;
    --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-oscillate-lg {
    --motion-loop-translate-y: 25%;
    --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-oscillate-md {
    --motion-loop-translate-y: 15%;
    --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-pulse-lg {
    --motion-loop-scale-x: 1.5;
    --motion-loop-scale-y: 1.5;
    --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-pulse-md {
    --motion-loop-scale-x: 1.25;
    --motion-loop-scale-y: 1.25;
    --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-seesaw-lg {
    --motion-loop-rotate: 12deg;
    --motion-rotate-loop-animation: motion-rotate-loop-mirror calc(var(--motion-rotate-duration, var(--motion-duration)) * var(--motion-rotate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-rotate-timing, var(--motion-timing)) var(--motion-rotate-delay, var(--motion-delay)) both var(--motion-rotate-loop-count, var(--motion-loop-count));
    --motion-rotate-timing: var(--motion-spring-bounciest);
    --motion-rotate-perceptual-duration-multiplier: 5.285;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-seesaw-md {
    --motion-loop-rotate: 6deg;
    --motion-rotate-loop-animation: motion-rotate-loop-mirror calc(var(--motion-rotate-duration, var(--motion-duration)) * var(--motion-rotate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-rotate-timing, var(--motion-timing)) var(--motion-rotate-delay, var(--motion-delay)) both var(--motion-rotate-loop-count, var(--motion-loop-count));
    --motion-rotate-timing: var(--motion-spring-bounciest);
    --motion-rotate-perceptual-duration-multiplier: 5.285;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-stretch-lg {
    --motion-loop-scale-x: 75%;
    --motion-loop-scale-y: 125%;
    --motion-scale-timing: var(--motion-spring-bouncier);
    --motion-scale-perceptual-duration-multiplier: 2.035;
    --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-stretch-md {
    --motion-loop-scale-x: 85%;
    --motion-loop-scale-y: 115%;
    --motion-scale-timing: var(--motion-spring-bouncier);
    --motion-scale-perceptual-duration-multiplier: 2.035;
    --motion-scale-loop-animation: motion-scale-loop-mirror calc(var(--motion-scale-duration, var(--motion-duration)) * var(--motion-scale-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-scale-timing, var(--motion-timing)) var(--motion-scale-delay, var(--motion-delay)) both var(--motion-scale-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-wobble-lg {
    --motion-loop-translate-x: 25%;
    --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-preset-wobble-md {
    --motion-loop-translate-x: 15%;
    --motion-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --motion-translate-loop-animation: motion-translate-loop-mirror calc(var(--motion-translate-duration, var(--motion-duration)) * var(--motion-translate-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-translate-timing, var(--motion-timing)) var(--motion-translate-delay, var(--motion-delay)) both var(--motion-translate-loop-count, var(--motion-loop-count));
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }
}
.file\:border-0::file-selector-button {
  border-width: 0px;
}
.file\:bg-transparent::file-selector-button {
  background-color: transparent;
}
.file\:text-sm::file-selector-button {
  font-size: .875rem;
}
.file\:font-medium::file-selector-button {
  font-weight: 500;
}
.file\:text-foreground::file-selector-button {
  color: var(--foreground);
}
.placeholder\:text-\[\#ffffff\]::-moz-placeholder {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.placeholder\:text-\[\#ffffff\]::placeholder {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.after\:absolute::after {
  content: var(--tw-content);
  position: absolute;
}
.after\:inset-y-0::after {
  content: var(--tw-content);
  top: 0px;
  bottom: 0px;
}
.after\:left-1\/2::after {
  content: var(--tw-content);
  left: 50%;
}
.after\:w-1::after {
  content: var(--tw-content);
  width: 0.25rem;
}
.after\:-translate-x-1\/2::after {
  content: var(--tw-content);
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.focus-within\:ring-2:focus-within {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-within\:ring-\[color\:var\(--ring\)\]:focus-within {
  --tw-ring-color: var(--ring);
}
.focus-within\:ring-red-500:focus-within {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity, 1));
}
.focus-within\:ring-offset-2:focus-within {
  --tw-ring-offset-width: 2px;
}
.hover\:m-0:hover {
  margin: 0px;
}
.hover\:m-1:hover {
  margin: 0.25rem;
}
.hover\:m-10:hover {
  margin: 2.5rem;
}
.hover\:m-11:hover {
  margin: 2.75rem;
}
.hover\:m-12:hover {
  margin: 3rem;
}
.hover\:m-14:hover {
  margin: 3.5rem;
}
.hover\:m-16:hover {
  margin: 4rem;
}
.hover\:m-2:hover {
  margin: 0.5rem;
}
.hover\:m-20:hover {
  margin: 5rem;
}
.hover\:m-24:hover {
  margin: 6rem;
}
.hover\:m-28:hover {
  margin: 7rem;
}
.hover\:m-3:hover {
  margin: 0.75rem;
}
.hover\:m-32:hover {
  margin: 8rem;
}
.hover\:m-36:hover {
  margin: 9rem;
}
.hover\:m-4:hover {
  margin: 1rem;
}
.hover\:m-40:hover {
  margin: 10rem;
}
.hover\:m-44:hover {
  margin: 11rem;
}
.hover\:m-48:hover {
  margin: 12rem;
}
.hover\:m-5:hover {
  margin: 1.25rem;
}
.hover\:m-52:hover {
  margin: 13rem;
}
.hover\:m-56:hover {
  margin: 14rem;
}
.hover\:m-6:hover {
  margin: 1.5rem;
}
.hover\:m-60:hover {
  margin: 15rem;
}
.hover\:m-64:hover {
  margin: 16rem;
}
.hover\:m-7:hover {
  margin: 1.75rem;
}
.hover\:m-72:hover {
  margin: 18rem;
}
.hover\:m-8:hover {
  margin: 2rem;
}
.hover\:m-80:hover {
  margin: 20rem;
}
.hover\:m-9:hover {
  margin: 2.25rem;
}
.hover\:m-96:hover {
  margin: 24rem;
}
.hover\:mx-0:hover {
  margin-left: 0px;
  margin-right: 0px;
}
.hover\:mx-1:hover {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.hover\:mx-10:hover {
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}
.hover\:mx-11:hover {
  margin-left: 2.75rem;
  margin-right: 2.75rem;
}
.hover\:mx-12:hover {
  margin-left: 3rem;
  margin-right: 3rem;
}
.hover\:mx-14:hover {
  margin-left: 3.5rem;
  margin-right: 3.5rem;
}
.hover\:mx-16:hover {
  margin-left: 4rem;
  margin-right: 4rem;
}
.hover\:mx-2:hover {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.hover\:mx-20:hover {
  margin-left: 5rem;
  margin-right: 5rem;
}
.hover\:mx-24:hover {
  margin-left: 6rem;
  margin-right: 6rem;
}
.hover\:mx-28:hover {
  margin-left: 7rem;
  margin-right: 7rem;
}
.hover\:mx-3:hover {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}
.hover\:mx-32:hover {
  margin-left: 8rem;
  margin-right: 8rem;
}
.hover\:mx-36:hover {
  margin-left: 9rem;
  margin-right: 9rem;
}
.hover\:mx-4:hover {
  margin-left: 1rem;
  margin-right: 1rem;
}
.hover\:mx-40:hover {
  margin-left: 10rem;
  margin-right: 10rem;
}
.hover\:mx-44:hover {
  margin-left: 11rem;
  margin-right: 11rem;
}
.hover\:mx-48:hover {
  margin-left: 12rem;
  margin-right: 12rem;
}
.hover\:mx-5:hover {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}
.hover\:mx-52:hover {
  margin-left: 13rem;
  margin-right: 13rem;
}
.hover\:mx-56:hover {
  margin-left: 14rem;
  margin-right: 14rem;
}
.hover\:mx-6:hover {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.hover\:mx-60:hover {
  margin-left: 15rem;
  margin-right: 15rem;
}
.hover\:mx-64:hover {
  margin-left: 16rem;
  margin-right: 16rem;
}
.hover\:mx-7:hover {
  margin-left: 1.75rem;
  margin-right: 1.75rem;
}
.hover\:mx-72:hover {
  margin-left: 18rem;
  margin-right: 18rem;
}
.hover\:mx-8:hover {
  margin-left: 2rem;
  margin-right: 2rem;
}
.hover\:mx-80:hover {
  margin-left: 20rem;
  margin-right: 20rem;
}
.hover\:mx-9:hover {
  margin-left: 2.25rem;
  margin-right: 2.25rem;
}
.hover\:mx-96:hover {
  margin-left: 24rem;
  margin-right: 24rem;
}
.hover\:my-0:hover {
  margin-top: 0px;
  margin-bottom: 0px;
}
.hover\:my-1:hover {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.hover\:my-10:hover {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.hover\:my-11:hover {
  margin-top: 2.75rem;
  margin-bottom: 2.75rem;
}
.hover\:my-12:hover {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.hover\:my-14:hover {
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}
.hover\:my-16:hover {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.hover\:my-2:hover {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.hover\:my-20:hover {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.hover\:my-24:hover {
  margin-top: 6rem;
  margin-bottom: 6rem;
}
.hover\:my-28:hover {
  margin-top: 7rem;
  margin-bottom: 7rem;
}
.hover\:my-3:hover {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.hover\:my-32:hover {
  margin-top: 8rem;
  margin-bottom: 8rem;
}
.hover\:my-36:hover {
  margin-top: 9rem;
  margin-bottom: 9rem;
}
.hover\:my-4:hover {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.hover\:my-40:hover {
  margin-top: 10rem;
  margin-bottom: 10rem;
}
.hover\:my-44:hover {
  margin-top: 11rem;
  margin-bottom: 11rem;
}
.hover\:my-48:hover {
  margin-top: 12rem;
  margin-bottom: 12rem;
}
.hover\:my-5:hover {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.hover\:my-52:hover {
  margin-top: 13rem;
  margin-bottom: 13rem;
}
.hover\:my-56:hover {
  margin-top: 14rem;
  margin-bottom: 14rem;
}
.hover\:my-6:hover {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.hover\:my-60:hover {
  margin-top: 15rem;
  margin-bottom: 15rem;
}
.hover\:my-64:hover {
  margin-top: 16rem;
  margin-bottom: 16rem;
}
.hover\:my-7:hover {
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}
.hover\:my-72:hover {
  margin-top: 18rem;
  margin-bottom: 18rem;
}
.hover\:my-8:hover {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.hover\:my-80:hover {
  margin-top: 20rem;
  margin-bottom: 20rem;
}
.hover\:my-9:hover {
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
}
.hover\:my-96:hover {
  margin-top: 24rem;
  margin-bottom: 24rem;
}
.hover\:mb-0:hover {
  margin-bottom: 0px;
}
.hover\:mb-1:hover {
  margin-bottom: 0.25rem;
}
.hover\:mb-10:hover {
  margin-bottom: 2.5rem;
}
.hover\:mb-11:hover {
  margin-bottom: 2.75rem;
}
.hover\:mb-12:hover {
  margin-bottom: 3rem;
}
.hover\:mb-14:hover {
  margin-bottom: 3.5rem;
}
.hover\:mb-16:hover {
  margin-bottom: 4rem;
}
.hover\:mb-2:hover {
  margin-bottom: 0.5rem;
}
.hover\:mb-20:hover {
  margin-bottom: 5rem;
}
.hover\:mb-24:hover {
  margin-bottom: 6rem;
}
.hover\:mb-28:hover {
  margin-bottom: 7rem;
}
.hover\:mb-3:hover {
  margin-bottom: 0.75rem;
}
.hover\:mb-32:hover {
  margin-bottom: 8rem;
}
.hover\:mb-36:hover {
  margin-bottom: 9rem;
}
.hover\:mb-4:hover {
  margin-bottom: 1rem;
}
.hover\:mb-40:hover {
  margin-bottom: 10rem;
}
.hover\:mb-44:hover {
  margin-bottom: 11rem;
}
.hover\:mb-48:hover {
  margin-bottom: 12rem;
}
.hover\:mb-5:hover {
  margin-bottom: 1.25rem;
}
.hover\:mb-52:hover {
  margin-bottom: 13rem;
}
.hover\:mb-56:hover {
  margin-bottom: 14rem;
}
.hover\:mb-6:hover {
  margin-bottom: 1.5rem;
}
.hover\:mb-60:hover {
  margin-bottom: 15rem;
}
.hover\:mb-64:hover {
  margin-bottom: 16rem;
}
.hover\:mb-7:hover {
  margin-bottom: 1.75rem;
}
.hover\:mb-72:hover {
  margin-bottom: 18rem;
}
.hover\:mb-8:hover {
  margin-bottom: 2rem;
}
.hover\:mb-80:hover {
  margin-bottom: 20rem;
}
.hover\:mb-9:hover {
  margin-bottom: 2.25rem;
}
.hover\:mb-96:hover {
  margin-bottom: 24rem;
}
.hover\:ml-0:hover {
  margin-left: 0px;
}
.hover\:ml-1:hover {
  margin-left: 0.25rem;
}
.hover\:ml-10:hover {
  margin-left: 2.5rem;
}
.hover\:ml-11:hover {
  margin-left: 2.75rem;
}
.hover\:ml-12:hover {
  margin-left: 3rem;
}
.hover\:ml-14:hover {
  margin-left: 3.5rem;
}
.hover\:ml-16:hover {
  margin-left: 4rem;
}
.hover\:ml-2:hover {
  margin-left: 0.5rem;
}
.hover\:ml-20:hover {
  margin-left: 5rem;
}
.hover\:ml-24:hover {
  margin-left: 6rem;
}
.hover\:ml-28:hover {
  margin-left: 7rem;
}
.hover\:ml-3:hover {
  margin-left: 0.75rem;
}
.hover\:ml-32:hover {
  margin-left: 8rem;
}
.hover\:ml-36:hover {
  margin-left: 9rem;
}
.hover\:ml-4:hover {
  margin-left: 1rem;
}
.hover\:ml-40:hover {
  margin-left: 10rem;
}
.hover\:ml-44:hover {
  margin-left: 11rem;
}
.hover\:ml-48:hover {
  margin-left: 12rem;
}
.hover\:ml-5:hover {
  margin-left: 1.25rem;
}
.hover\:ml-52:hover {
  margin-left: 13rem;
}
.hover\:ml-56:hover {
  margin-left: 14rem;
}
.hover\:ml-6:hover {
  margin-left: 1.5rem;
}
.hover\:ml-60:hover {
  margin-left: 15rem;
}
.hover\:ml-64:hover {
  margin-left: 16rem;
}
.hover\:ml-7:hover {
  margin-left: 1.75rem;
}
.hover\:ml-72:hover {
  margin-left: 18rem;
}
.hover\:ml-8:hover {
  margin-left: 2rem;
}
.hover\:ml-80:hover {
  margin-left: 20rem;
}
.hover\:ml-9:hover {
  margin-left: 2.25rem;
}
.hover\:ml-96:hover {
  margin-left: 24rem;
}
.hover\:mr-0:hover {
  margin-right: 0px;
}
.hover\:mr-1:hover {
  margin-right: 0.25rem;
}
.hover\:mr-10:hover {
  margin-right: 2.5rem;
}
.hover\:mr-11:hover {
  margin-right: 2.75rem;
}
.hover\:mr-12:hover {
  margin-right: 3rem;
}
.hover\:mr-14:hover {
  margin-right: 3.5rem;
}
.hover\:mr-16:hover {
  margin-right: 4rem;
}
.hover\:mr-2:hover {
  margin-right: 0.5rem;
}
.hover\:mr-20:hover {
  margin-right: 5rem;
}
.hover\:mr-24:hover {
  margin-right: 6rem;
}
.hover\:mr-28:hover {
  margin-right: 7rem;
}
.hover\:mr-3:hover {
  margin-right: 0.75rem;
}
.hover\:mr-32:hover {
  margin-right: 8rem;
}
.hover\:mr-36:hover {
  margin-right: 9rem;
}
.hover\:mr-4:hover {
  margin-right: 1rem;
}
.hover\:mr-40:hover {
  margin-right: 10rem;
}
.hover\:mr-44:hover {
  margin-right: 11rem;
}
.hover\:mr-48:hover {
  margin-right: 12rem;
}
.hover\:mr-5:hover {
  margin-right: 1.25rem;
}
.hover\:mr-52:hover {
  margin-right: 13rem;
}
.hover\:mr-56:hover {
  margin-right: 14rem;
}
.hover\:mr-6:hover {
  margin-right: 1.5rem;
}
.hover\:mr-60:hover {
  margin-right: 15rem;
}
.hover\:mr-64:hover {
  margin-right: 16rem;
}
.hover\:mr-7:hover {
  margin-right: 1.75rem;
}
.hover\:mr-72:hover {
  margin-right: 18rem;
}
.hover\:mr-8:hover {
  margin-right: 2rem;
}
.hover\:mr-80:hover {
  margin-right: 20rem;
}
.hover\:mr-9:hover {
  margin-right: 2.25rem;
}
.hover\:mr-96:hover {
  margin-right: 24rem;
}
.hover\:mt-0:hover {
  margin-top: 0px;
}
.hover\:mt-1:hover {
  margin-top: 0.25rem;
}
.hover\:mt-10:hover {
  margin-top: 2.5rem;
}
.hover\:mt-11:hover {
  margin-top: 2.75rem;
}
.hover\:mt-12:hover {
  margin-top: 3rem;
}
.hover\:mt-14:hover {
  margin-top: 3.5rem;
}
.hover\:mt-16:hover {
  margin-top: 4rem;
}
.hover\:mt-2:hover {
  margin-top: 0.5rem;
}
.hover\:mt-20:hover {
  margin-top: 5rem;
}
.hover\:mt-24:hover {
  margin-top: 6rem;
}
.hover\:mt-28:hover {
  margin-top: 7rem;
}
.hover\:mt-3:hover {
  margin-top: 0.75rem;
}
.hover\:mt-32:hover {
  margin-top: 8rem;
}
.hover\:mt-36:hover {
  margin-top: 9rem;
}
.hover\:mt-4:hover {
  margin-top: 1rem;
}
.hover\:mt-40:hover {
  margin-top: 10rem;
}
.hover\:mt-44:hover {
  margin-top: 11rem;
}
.hover\:mt-48:hover {
  margin-top: 12rem;
}
.hover\:mt-5:hover {
  margin-top: 1.25rem;
}
.hover\:mt-52:hover {
  margin-top: 13rem;
}
.hover\:mt-56:hover {
  margin-top: 14rem;
}
.hover\:mt-6:hover {
  margin-top: 1.5rem;
}
.hover\:mt-60:hover {
  margin-top: 15rem;
}
.hover\:mt-64:hover {
  margin-top: 16rem;
}
.hover\:mt-7:hover {
  margin-top: 1.75rem;
}
.hover\:mt-72:hover {
  margin-top: 18rem;
}
.hover\:mt-8:hover {
  margin-top: 2rem;
}
.hover\:mt-80:hover {
  margin-top: 20rem;
}
.hover\:mt-9:hover {
  margin-top: 2.25rem;
}
.hover\:mt-96:hover {
  margin-top: 24rem;
}
.hover\:h-0:hover {
  height: 0px;
}
.hover\:h-0\.5:hover {
  height: 0.125rem;
}
.hover\:h-1:hover {
  height: 0.25rem;
}
.hover\:h-1\.5:hover {
  height: 0.375rem;
}
.hover\:h-1\/2:hover {
  height: 50%;
}
.hover\:h-1\/3:hover {
  height: 33.333333%;
}
.hover\:h-1\/4:hover {
  height: 25%;
}
.hover\:h-1\/5:hover {
  height: 20%;
}
.hover\:h-1\/6:hover {
  height: 16.666667%;
}
.hover\:h-10:hover {
  height: 2.5rem;
}
.hover\:h-11:hover {
  height: 2.75rem;
}
.hover\:h-12:hover {
  height: 3rem;
}
.hover\:h-14:hover {
  height: 3.5rem;
}
.hover\:h-16:hover {
  height: 4rem;
}
.hover\:h-2:hover {
  height: 0.5rem;
}
.hover\:h-2\.5:hover {
  height: 0.625rem;
}
.hover\:h-2\/3:hover {
  height: 66.666667%;
}
.hover\:h-2\/4:hover {
  height: 50%;
}
.hover\:h-2\/5:hover {
  height: 40%;
}
.hover\:h-2\/6:hover {
  height: 33.333333%;
}
.hover\:h-20:hover {
  height: 5rem;
}
.hover\:h-24:hover {
  height: 6rem;
}
.hover\:h-28:hover {
  height: 7rem;
}
.hover\:h-3:hover {
  height: 0.75rem;
}
.hover\:h-3\.5:hover {
  height: 0.875rem;
}
.hover\:h-3\/4:hover {
  height: 75%;
}
.hover\:h-3\/5:hover {
  height: 60%;
}
.hover\:h-3\/6:hover {
  height: 50%;
}
.hover\:h-32:hover {
  height: 8rem;
}
.hover\:h-36:hover {
  height: 9rem;
}
.hover\:h-4:hover {
  height: 1rem;
}
.hover\:h-4\/5:hover {
  height: 80%;
}
.hover\:h-4\/6:hover {
  height: 66.666667%;
}
.hover\:h-40:hover {
  height: 10rem;
}
.hover\:h-44:hover {
  height: 11rem;
}
.hover\:h-48:hover {
  height: 12rem;
}
.hover\:h-5:hover {
  height: 1.25rem;
}
.hover\:h-5\/6:hover {
  height: 83.333333%;
}
.hover\:h-52:hover {
  height: 13rem;
}
.hover\:h-56:hover {
  height: 14rem;
}
.hover\:h-6:hover {
  height: 1.5rem;
}
.hover\:h-60:hover {
  height: 15rem;
}
.hover\:h-64:hover {
  height: 16rem;
}
.hover\:h-7:hover {
  height: 1.75rem;
}
.hover\:h-72:hover {
  height: 18rem;
}
.hover\:h-8:hover {
  height: 2rem;
}
.hover\:h-80:hover {
  height: 20rem;
}
.hover\:h-9:hover {
  height: 2.25rem;
}
.hover\:h-96:hover {
  height: 24rem;
}
.hover\:h-auto:hover {
  height: auto;
}
.hover\:h-dvh:hover {
  height: 100dvh;
}
.hover\:h-fit:hover {
  height: -moz-fit-content;
  height: fit-content;
}
.hover\:h-full:hover {
  height: 100%;
}
.hover\:h-lvh:hover {
  height: 100lvh;
}
.hover\:h-max:hover {
  height: -moz-max-content;
  height: max-content;
}
.hover\:h-min:hover {
  height: -moz-min-content;
  height: min-content;
}
.hover\:h-px:hover {
  height: 1px;
}
.hover\:h-screen:hover {
  height: 100vh;
}
.hover\:h-svh:hover {
  height: 100svh;
}
.hover\:max-h-full:hover {
  max-height: 100%;
}
.hover\:max-h-none:hover {
  max-height: none;
}
.hover\:min-h-full:hover {
  min-height: 100%;
}
.hover\:w-1\/2:hover {
  width: 50%;
}
.hover\:w-1\/3:hover {
  width: 33.333333%;
}
.hover\:w-1\/4:hover {
  width: 25%;
}
.hover\:w-1\/5:hover {
  width: 20%;
}
.hover\:w-1\/6:hover {
  width: 16.666667%;
}
.hover\:w-full:hover {
  width: 100%;
}
.hover\:min-w-full:hover {
  min-width: 100%;
}
.hover\:max-w-full:hover {
  max-width: 100%;
}
.hover\:max-w-lg:hover {
  max-width: 32rem;
}
.hover\:max-w-md:hover {
  max-width: 28rem;
}
.hover\:max-w-none:hover {
  max-width: none;
}
.hover\:max-w-screen-lg:hover {
  max-width: 1024px;
}
.hover\:max-w-screen-md:hover {
  max-width: 768px;
}
.hover\:scale-0:hover {
  --tw-scale-x: 0;
  --tw-scale-y: 0;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:scale-100:hover {
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:scale-105:hover {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:scale-110:hover {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:scale-125:hover {
  --tw-scale-x: 1.25;
  --tw-scale-y: 1.25;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:scale-150:hover {
  --tw-scale-x: 1.5;
  --tw-scale-y: 1.5;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:scale-95:hover {
  --tw-scale-x: .95;
  --tw-scale-y: .95;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:columns-lg:hover {
  -moz-columns: 32rem;
       columns: 32rem;
}
.hover\:columns-md:hover {
  -moz-columns: 28rem;
       columns: 28rem;
}
.hover\:grid-cols-1:hover {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.hover\:grid-cols-10:hover {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}
.hover\:grid-cols-11:hover {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}
.hover\:grid-cols-12:hover {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.hover\:grid-cols-2:hover {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.hover\:grid-cols-3:hover {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.hover\:grid-cols-4:hover {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.hover\:grid-cols-5:hover {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.hover\:grid-cols-6:hover {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.hover\:grid-cols-7:hover {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.hover\:grid-cols-8:hover {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.hover\:grid-cols-9:hover {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}
.hover\:gap-1:hover {
  gap: 0.25rem;
}
.hover\:gap-10:hover {
  gap: 2.5rem;
}
.hover\:gap-11:hover {
  gap: 2.75rem;
}
.hover\:gap-12:hover {
  gap: 3rem;
}
.hover\:gap-2:hover {
  gap: 0.5rem;
}
.hover\:gap-3:hover {
  gap: 0.75rem;
}
.hover\:gap-4:hover {
  gap: 1rem;
}
.hover\:gap-5:hover {
  gap: 1.25rem;
}
.hover\:gap-6:hover {
  gap: 1.5rem;
}
.hover\:gap-7:hover {
  gap: 1.75rem;
}
.hover\:gap-8:hover {
  gap: 2rem;
}
.hover\:gap-9:hover {
  gap: 2.25rem;
}
.hover\:rounded-lg:hover {
  border-radius: var(--radius);
}
.hover\:rounded-md:hover {
  border-radius: calc(var(--radius) - 2px);
}
.hover\:rounded-b-lg:hover {
  border-bottom-right-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}
.hover\:rounded-b-md:hover {
  border-bottom-right-radius: calc(var(--radius) - 2px);
  border-bottom-left-radius: calc(var(--radius) - 2px);
}
.hover\:rounded-e-lg:hover {
  border-start-end-radius: var(--radius);
  border-end-end-radius: var(--radius);
}
.hover\:rounded-e-md:hover {
  border-start-end-radius: calc(var(--radius) - 2px);
  border-end-end-radius: calc(var(--radius) - 2px);
}
.hover\:rounded-l-lg:hover {
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}
.hover\:rounded-l-md:hover {
  border-top-left-radius: calc(var(--radius) - 2px);
  border-bottom-left-radius: calc(var(--radius) - 2px);
}
.hover\:rounded-r-lg:hover {
  border-top-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}
.hover\:rounded-r-md:hover {
  border-top-right-radius: calc(var(--radius) - 2px);
  border-bottom-right-radius: calc(var(--radius) - 2px);
}
.hover\:rounded-s-lg:hover {
  border-start-start-radius: var(--radius);
  border-end-start-radius: var(--radius);
}
.hover\:rounded-s-md:hover {
  border-start-start-radius: calc(var(--radius) - 2px);
  border-end-start-radius: calc(var(--radius) - 2px);
}
.hover\:rounded-t-lg:hover {
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}
.hover\:rounded-t-md:hover {
  border-top-left-radius: calc(var(--radius) - 2px);
  border-top-right-radius: calc(var(--radius) - 2px);
}
.hover\:rounded-bl-lg:hover {
  border-bottom-left-radius: var(--radius);
}
.hover\:rounded-bl-md:hover {
  border-bottom-left-radius: calc(var(--radius) - 2px);
}
.hover\:rounded-br-lg:hover {
  border-bottom-right-radius: var(--radius);
}
.hover\:rounded-br-md:hover {
  border-bottom-right-radius: calc(var(--radius) - 2px);
}
.hover\:rounded-ee-lg:hover {
  border-end-end-radius: var(--radius);
}
.hover\:rounded-ee-md:hover {
  border-end-end-radius: calc(var(--radius) - 2px);
}
.hover\:rounded-es-lg:hover {
  border-end-start-radius: var(--radius);
}
.hover\:rounded-es-md:hover {
  border-end-start-radius: calc(var(--radius) - 2px);
}
.hover\:rounded-se-lg:hover {
  border-start-end-radius: var(--radius);
}
.hover\:rounded-se-md:hover {
  border-start-end-radius: calc(var(--radius) - 2px);
}
.hover\:rounded-ss-lg:hover {
  border-start-start-radius: var(--radius);
}
.hover\:rounded-ss-md:hover {
  border-start-start-radius: calc(var(--radius) - 2px);
}
.hover\:rounded-tl-lg:hover {
  border-top-left-radius: var(--radius);
}
.hover\:rounded-tl-md:hover {
  border-top-left-radius: calc(var(--radius) - 2px);
}
.hover\:rounded-tr-lg:hover {
  border-top-right-radius: var(--radius);
}
.hover\:rounded-tr-md:hover {
  border-top-right-radius: calc(var(--radius) - 2px);
}
.hover\:border-none:hover {
  border-style: none;
}
.hover\:border-amber-100:hover {
  --tw-border-opacity: 1;
  border-color: rgb(254 243 199 / var(--tw-border-opacity, 1));
}
.hover\:border-amber-200:hover {
  --tw-border-opacity: 1;
  border-color: rgb(253 230 138 / var(--tw-border-opacity, 1));
}
.hover\:border-amber-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(252 211 77 / var(--tw-border-opacity, 1));
}
.hover\:border-amber-400:hover {
  --tw-border-opacity: 1;
  border-color: rgb(251 191 36 / var(--tw-border-opacity, 1));
}
.hover\:border-amber-50:hover {
  --tw-border-opacity: 1;
  border-color: rgb(255 251 235 / var(--tw-border-opacity, 1));
}
.hover\:border-amber-500:hover {
  --tw-border-opacity: 1;
  border-color: rgb(245 158 11 / var(--tw-border-opacity, 1));
}
.hover\:border-amber-600:hover {
  --tw-border-opacity: 1;
  border-color: rgb(217 119 6 / var(--tw-border-opacity, 1));
}
.hover\:border-amber-700:hover {
  --tw-border-opacity: 1;
  border-color: rgb(180 83 9 / var(--tw-border-opacity, 1));
}
.hover\:border-amber-800:hover {
  --tw-border-opacity: 1;
  border-color: rgb(146 64 14 / var(--tw-border-opacity, 1));
}
.hover\:border-amber-900:hover {
  --tw-border-opacity: 1;
  border-color: rgb(120 53 15 / var(--tw-border-opacity, 1));
}
.hover\:border-amber-950:hover {
  --tw-border-opacity: 1;
  border-color: rgb(69 26 3 / var(--tw-border-opacity, 1));
}
.hover\:border-blue-100:hover {
  --tw-border-opacity: 1;
  border-color: rgb(219 234 254 / var(--tw-border-opacity, 1));
}
.hover\:border-blue-200:hover {
  --tw-border-opacity: 1;
  border-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
}
.hover\:border-blue-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
}
.hover\:border-blue-400:hover {
  --tw-border-opacity: 1;
  border-color: rgb(96 165 250 / var(--tw-border-opacity, 1));
}
.hover\:border-blue-50:hover {
  --tw-border-opacity: 1;
  border-color: rgb(239 246 255 / var(--tw-border-opacity, 1));
}
.hover\:border-blue-500:hover {
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
}
.hover\:border-blue-600:hover {
  --tw-border-opacity: 1;
  border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}
.hover\:border-blue-700:hover {
  --tw-border-opacity: 1;
  border-color: rgb(29 78 216 / var(--tw-border-opacity, 1));
}
.hover\:border-blue-800:hover {
  --tw-border-opacity: 1;
  border-color: rgb(30 64 175 / var(--tw-border-opacity, 1));
}
.hover\:border-blue-900:hover {
  --tw-border-opacity: 1;
  border-color: rgb(30 58 138 / var(--tw-border-opacity, 1));
}
.hover\:border-blue-950:hover {
  --tw-border-opacity: 1;
  border-color: rgb(23 37 84 / var(--tw-border-opacity, 1));
}
.hover\:border-cyan-100:hover {
  --tw-border-opacity: 1;
  border-color: rgb(207 250 254 / var(--tw-border-opacity, 1));
}
.hover\:border-cyan-200:hover {
  --tw-border-opacity: 1;
  border-color: rgb(165 243 252 / var(--tw-border-opacity, 1));
}
.hover\:border-cyan-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(103 232 249 / var(--tw-border-opacity, 1));
}
.hover\:border-cyan-400:hover {
  --tw-border-opacity: 1;
  border-color: rgb(34 211 238 / var(--tw-border-opacity, 1));
}
.hover\:border-cyan-50:hover {
  --tw-border-opacity: 1;
  border-color: rgb(236 254 255 / var(--tw-border-opacity, 1));
}
.hover\:border-cyan-500:hover {
  --tw-border-opacity: 1;
  border-color: rgb(6 182 212 / var(--tw-border-opacity, 1));
}
.hover\:border-cyan-600:hover {
  --tw-border-opacity: 1;
  border-color: rgb(8 145 178 / var(--tw-border-opacity, 1));
}
.hover\:border-cyan-700:hover {
  --tw-border-opacity: 1;
  border-color: rgb(14 116 144 / var(--tw-border-opacity, 1));
}
.hover\:border-cyan-800:hover {
  --tw-border-opacity: 1;
  border-color: rgb(21 94 117 / var(--tw-border-opacity, 1));
}
.hover\:border-cyan-900:hover {
  --tw-border-opacity: 1;
  border-color: rgb(22 78 99 / var(--tw-border-opacity, 1));
}
.hover\:border-cyan-950:hover {
  --tw-border-opacity: 1;
  border-color: rgb(8 51 68 / var(--tw-border-opacity, 1));
}
.hover\:border-emerald-100:hover {
  --tw-border-opacity: 1;
  border-color: rgb(209 250 229 / var(--tw-border-opacity, 1));
}
.hover\:border-emerald-200:hover {
  --tw-border-opacity: 1;
  border-color: rgb(167 243 208 / var(--tw-border-opacity, 1));
}
.hover\:border-emerald-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(110 231 183 / var(--tw-border-opacity, 1));
}
.hover\:border-emerald-400:hover {
  --tw-border-opacity: 1;
  border-color: rgb(52 211 153 / var(--tw-border-opacity, 1));
}
.hover\:border-emerald-50:hover {
  --tw-border-opacity: 1;
  border-color: rgb(236 253 245 / var(--tw-border-opacity, 1));
}
.hover\:border-emerald-500:hover {
  --tw-border-opacity: 1;
  border-color: rgb(16 185 129 / var(--tw-border-opacity, 1));
}
.hover\:border-emerald-600:hover {
  --tw-border-opacity: 1;
  border-color: rgb(5 150 105 / var(--tw-border-opacity, 1));
}
.hover\:border-emerald-700:hover {
  --tw-border-opacity: 1;
  border-color: rgb(4 120 87 / var(--tw-border-opacity, 1));
}
.hover\:border-emerald-800:hover {
  --tw-border-opacity: 1;
  border-color: rgb(6 95 70 / var(--tw-border-opacity, 1));
}
.hover\:border-emerald-900:hover {
  --tw-border-opacity: 1;
  border-color: rgb(6 78 59 / var(--tw-border-opacity, 1));
}
.hover\:border-emerald-950:hover {
  --tw-border-opacity: 1;
  border-color: rgb(2 44 34 / var(--tw-border-opacity, 1));
}
.hover\:border-fuchsia-100:hover {
  --tw-border-opacity: 1;
  border-color: rgb(250 232 255 / var(--tw-border-opacity, 1));
}
.hover\:border-fuchsia-200:hover {
  --tw-border-opacity: 1;
  border-color: rgb(245 208 254 / var(--tw-border-opacity, 1));
}
.hover\:border-fuchsia-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(240 171 252 / var(--tw-border-opacity, 1));
}
.hover\:border-fuchsia-400:hover {
  --tw-border-opacity: 1;
  border-color: rgb(232 121 249 / var(--tw-border-opacity, 1));
}
.hover\:border-fuchsia-50:hover {
  --tw-border-opacity: 1;
  border-color: rgb(253 244 255 / var(--tw-border-opacity, 1));
}
.hover\:border-fuchsia-500:hover {
  --tw-border-opacity: 1;
  border-color: rgb(217 70 239 / var(--tw-border-opacity, 1));
}
.hover\:border-fuchsia-600:hover {
  --tw-border-opacity: 1;
  border-color: rgb(192 38 211 / var(--tw-border-opacity, 1));
}
.hover\:border-fuchsia-700:hover {
  --tw-border-opacity: 1;
  border-color: rgb(162 28 175 / var(--tw-border-opacity, 1));
}
.hover\:border-fuchsia-800:hover {
  --tw-border-opacity: 1;
  border-color: rgb(134 25 143 / var(--tw-border-opacity, 1));
}
.hover\:border-fuchsia-900:hover {
  --tw-border-opacity: 1;
  border-color: rgb(112 26 117 / var(--tw-border-opacity, 1));
}
.hover\:border-fuchsia-950:hover {
  --tw-border-opacity: 1;
  border-color: rgb(74 4 78 / var(--tw-border-opacity, 1));
}
.hover\:border-gray-100:hover {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}
.hover\:border-gray-200:hover {
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.hover\:border-gray-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.hover\:border-gray-400:hover {
  --tw-border-opacity: 1;
  border-color: rgb(156 163 175 / var(--tw-border-opacity, 1));
}
.hover\:border-gray-50:hover {
  --tw-border-opacity: 1;
  border-color: rgb(249 250 251 / var(--tw-border-opacity, 1));
}
.hover\:border-gray-500:hover {
  --tw-border-opacity: 1;
  border-color: rgb(107 114 128 / var(--tw-border-opacity, 1));
}
.hover\:border-gray-600:hover {
  --tw-border-opacity: 1;
  border-color: rgb(75 85 99 / var(--tw-border-opacity, 1));
}
.hover\:border-gray-700:hover {
  --tw-border-opacity: 1;
  border-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
}
.hover\:border-gray-800:hover {
  --tw-border-opacity: 1;
  border-color: rgb(31 41 55 / var(--tw-border-opacity, 1));
}
.hover\:border-gray-900:hover {
  --tw-border-opacity: 1;
  border-color: rgb(17 24 39 / var(--tw-border-opacity, 1));
}
.hover\:border-gray-950:hover {
  --tw-border-opacity: 1;
  border-color: rgb(3 7 18 / var(--tw-border-opacity, 1));
}
.hover\:border-green-100:hover {
  --tw-border-opacity: 1;
  border-color: rgb(220 252 231 / var(--tw-border-opacity, 1));
}
.hover\:border-green-200:hover {
  --tw-border-opacity: 1;
  border-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
}
.hover\:border-green-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(134 239 172 / var(--tw-border-opacity, 1));
}
.hover\:border-green-400:hover {
  --tw-border-opacity: 1;
  border-color: rgb(74 222 128 / var(--tw-border-opacity, 1));
}
.hover\:border-green-50:hover {
  --tw-border-opacity: 1;
  border-color: rgb(240 253 244 / var(--tw-border-opacity, 1));
}
.hover\:border-green-500:hover {
  --tw-border-opacity: 1;
  border-color: rgb(34 197 94 / var(--tw-border-opacity, 1));
}
.hover\:border-green-600:hover {
  --tw-border-opacity: 1;
  border-color: rgb(22 163 74 / var(--tw-border-opacity, 1));
}
.hover\:border-green-700:hover {
  --tw-border-opacity: 1;
  border-color: rgb(21 128 61 / var(--tw-border-opacity, 1));
}
.hover\:border-green-800:hover {
  --tw-border-opacity: 1;
  border-color: rgb(22 101 52 / var(--tw-border-opacity, 1));
}
.hover\:border-green-900:hover {
  --tw-border-opacity: 1;
  border-color: rgb(20 83 45 / var(--tw-border-opacity, 1));
}
.hover\:border-green-950:hover {
  --tw-border-opacity: 1;
  border-color: rgb(5 46 22 / var(--tw-border-opacity, 1));
}
.hover\:border-indigo-100:hover {
  --tw-border-opacity: 1;
  border-color: rgb(224 231 255 / var(--tw-border-opacity, 1));
}
.hover\:border-indigo-200:hover {
  --tw-border-opacity: 1;
  border-color: rgb(199 210 254 / var(--tw-border-opacity, 1));
}
.hover\:border-indigo-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(165 180 252 / var(--tw-border-opacity, 1));
}
.hover\:border-indigo-400:hover {
  --tw-border-opacity: 1;
  border-color: rgb(129 140 248 / var(--tw-border-opacity, 1));
}
.hover\:border-indigo-50:hover {
  --tw-border-opacity: 1;
  border-color: rgb(238 242 255 / var(--tw-border-opacity, 1));
}
.hover\:border-indigo-500:hover {
  --tw-border-opacity: 1;
  border-color: rgb(99 102 241 / var(--tw-border-opacity, 1));
}
.hover\:border-indigo-600:hover {
  --tw-border-opacity: 1;
  border-color: rgb(79 70 229 / var(--tw-border-opacity, 1));
}
.hover\:border-indigo-700:hover {
  --tw-border-opacity: 1;
  border-color: rgb(67 56 202 / var(--tw-border-opacity, 1));
}
.hover\:border-indigo-800:hover {
  --tw-border-opacity: 1;
  border-color: rgb(55 48 163 / var(--tw-border-opacity, 1));
}
.hover\:border-indigo-900:hover {
  --tw-border-opacity: 1;
  border-color: rgb(49 46 129 / var(--tw-border-opacity, 1));
}
.hover\:border-indigo-950:hover {
  --tw-border-opacity: 1;
  border-color: rgb(30 27 75 / var(--tw-border-opacity, 1));
}
.hover\:border-lime-100:hover {
  --tw-border-opacity: 1;
  border-color: rgb(236 252 203 / var(--tw-border-opacity, 1));
}
.hover\:border-lime-200:hover {
  --tw-border-opacity: 1;
  border-color: rgb(217 249 157 / var(--tw-border-opacity, 1));
}
.hover\:border-lime-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(190 242 100 / var(--tw-border-opacity, 1));
}
.hover\:border-lime-400:hover {
  --tw-border-opacity: 1;
  border-color: rgb(163 230 53 / var(--tw-border-opacity, 1));
}
.hover\:border-lime-50:hover {
  --tw-border-opacity: 1;
  border-color: rgb(247 254 231 / var(--tw-border-opacity, 1));
}
.hover\:border-lime-500:hover {
  --tw-border-opacity: 1;
  border-color: rgb(132 204 22 / var(--tw-border-opacity, 1));
}
.hover\:border-lime-600:hover {
  --tw-border-opacity: 1;
  border-color: rgb(101 163 13 / var(--tw-border-opacity, 1));
}
.hover\:border-lime-700:hover {
  --tw-border-opacity: 1;
  border-color: rgb(77 124 15 / var(--tw-border-opacity, 1));
}
.hover\:border-lime-800:hover {
  --tw-border-opacity: 1;
  border-color: rgb(63 98 18 / var(--tw-border-opacity, 1));
}
.hover\:border-lime-900:hover {
  --tw-border-opacity: 1;
  border-color: rgb(54 83 20 / var(--tw-border-opacity, 1));
}
.hover\:border-lime-950:hover {
  --tw-border-opacity: 1;
  border-color: rgb(26 46 5 / var(--tw-border-opacity, 1));
}
.hover\:border-neutral-100:hover {
  --tw-border-opacity: 1;
  border-color: rgb(245 245 245 / var(--tw-border-opacity, 1));
}
.hover\:border-neutral-200:hover {
  --tw-border-opacity: 1;
  border-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
}
.hover\:border-neutral-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(212 212 212 / var(--tw-border-opacity, 1));
}
.hover\:border-neutral-400:hover {
  --tw-border-opacity: 1;
  border-color: rgb(163 163 163 / var(--tw-border-opacity, 1));
}
.hover\:border-neutral-50:hover {
  --tw-border-opacity: 1;
  border-color: rgb(250 250 250 / var(--tw-border-opacity, 1));
}
.hover\:border-neutral-500:hover {
  --tw-border-opacity: 1;
  border-color: rgb(115 115 115 / var(--tw-border-opacity, 1));
}
.hover\:border-neutral-600:hover {
  --tw-border-opacity: 1;
  border-color: rgb(82 82 82 / var(--tw-border-opacity, 1));
}
.hover\:border-neutral-700:hover {
  --tw-border-opacity: 1;
  border-color: rgb(64 64 64 / var(--tw-border-opacity, 1));
}
.hover\:border-neutral-800:hover {
  --tw-border-opacity: 1;
  border-color: rgb(38 38 38 / var(--tw-border-opacity, 1));
}
.hover\:border-neutral-900:hover {
  --tw-border-opacity: 1;
  border-color: rgb(23 23 23 / var(--tw-border-opacity, 1));
}
.hover\:border-neutral-950:hover {
  --tw-border-opacity: 1;
  border-color: rgb(10 10 10 / var(--tw-border-opacity, 1));
}
.hover\:border-orange-100:hover {
  --tw-border-opacity: 1;
  border-color: rgb(255 237 213 / var(--tw-border-opacity, 1));
}
.hover\:border-orange-200:hover {
  --tw-border-opacity: 1;
  border-color: rgb(254 215 170 / var(--tw-border-opacity, 1));
}
.hover\:border-orange-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(253 186 116 / var(--tw-border-opacity, 1));
}
.hover\:border-orange-400:hover {
  --tw-border-opacity: 1;
  border-color: rgb(251 146 60 / var(--tw-border-opacity, 1));
}
.hover\:border-orange-50:hover {
  --tw-border-opacity: 1;
  border-color: rgb(255 247 237 / var(--tw-border-opacity, 1));
}
.hover\:border-orange-500:hover {
  --tw-border-opacity: 1;
  border-color: rgb(249 115 22 / var(--tw-border-opacity, 1));
}
.hover\:border-orange-600:hover {
  --tw-border-opacity: 1;
  border-color: rgb(234 88 12 / var(--tw-border-opacity, 1));
}
.hover\:border-orange-700:hover {
  --tw-border-opacity: 1;
  border-color: rgb(194 65 12 / var(--tw-border-opacity, 1));
}
.hover\:border-orange-800:hover {
  --tw-border-opacity: 1;
  border-color: rgb(154 52 18 / var(--tw-border-opacity, 1));
}
.hover\:border-orange-900:hover {
  --tw-border-opacity: 1;
  border-color: rgb(124 45 18 / var(--tw-border-opacity, 1));
}
.hover\:border-orange-950:hover {
  --tw-border-opacity: 1;
  border-color: rgb(67 20 7 / var(--tw-border-opacity, 1));
}
.hover\:border-pink-100:hover {
  --tw-border-opacity: 1;
  border-color: rgb(252 231 243 / var(--tw-border-opacity, 1));
}
.hover\:border-pink-200:hover {
  --tw-border-opacity: 1;
  border-color: rgb(251 207 232 / var(--tw-border-opacity, 1));
}
.hover\:border-pink-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(249 168 212 / var(--tw-border-opacity, 1));
}
.hover\:border-pink-400:hover {
  --tw-border-opacity: 1;
  border-color: rgb(244 114 182 / var(--tw-border-opacity, 1));
}
.hover\:border-pink-50:hover {
  --tw-border-opacity: 1;
  border-color: rgb(253 242 248 / var(--tw-border-opacity, 1));
}
.hover\:border-pink-500:hover {
  --tw-border-opacity: 1;
  border-color: rgb(236 72 153 / var(--tw-border-opacity, 1));
}
.hover\:border-pink-600:hover {
  --tw-border-opacity: 1;
  border-color: rgb(219 39 119 / var(--tw-border-opacity, 1));
}
.hover\:border-pink-700:hover {
  --tw-border-opacity: 1;
  border-color: rgb(190 24 93 / var(--tw-border-opacity, 1));
}
.hover\:border-pink-800:hover {
  --tw-border-opacity: 1;
  border-color: rgb(157 23 77 / var(--tw-border-opacity, 1));
}
.hover\:border-pink-900:hover {
  --tw-border-opacity: 1;
  border-color: rgb(131 24 67 / var(--tw-border-opacity, 1));
}
.hover\:border-pink-950:hover {
  --tw-border-opacity: 1;
  border-color: rgb(80 7 36 / var(--tw-border-opacity, 1));
}
.hover\:border-purple-100:hover {
  --tw-border-opacity: 1;
  border-color: rgb(243 232 255 / var(--tw-border-opacity, 1));
}
.hover\:border-purple-200:hover {
  --tw-border-opacity: 1;
  border-color: rgb(233 213 255 / var(--tw-border-opacity, 1));
}
.hover\:border-purple-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(216 180 254 / var(--tw-border-opacity, 1));
}
.hover\:border-purple-400:hover {
  --tw-border-opacity: 1;
  border-color: rgb(192 132 252 / var(--tw-border-opacity, 1));
}
.hover\:border-purple-50:hover {
  --tw-border-opacity: 1;
  border-color: rgb(250 245 255 / var(--tw-border-opacity, 1));
}
.hover\:border-purple-500:hover {
  --tw-border-opacity: 1;
  border-color: rgb(168 85 247 / var(--tw-border-opacity, 1));
}
.hover\:border-purple-600:hover {
  --tw-border-opacity: 1;
  border-color: rgb(147 51 234 / var(--tw-border-opacity, 1));
}
.hover\:border-purple-700:hover {
  --tw-border-opacity: 1;
  border-color: rgb(126 34 206 / var(--tw-border-opacity, 1));
}
.hover\:border-purple-800:hover {
  --tw-border-opacity: 1;
  border-color: rgb(107 33 168 / var(--tw-border-opacity, 1));
}
.hover\:border-purple-900:hover {
  --tw-border-opacity: 1;
  border-color: rgb(88 28 135 / var(--tw-border-opacity, 1));
}
.hover\:border-purple-950:hover {
  --tw-border-opacity: 1;
  border-color: rgb(59 7 100 / var(--tw-border-opacity, 1));
}
.hover\:border-red-100:hover {
  --tw-border-opacity: 1;
  border-color: rgb(254 226 226 / var(--tw-border-opacity, 1));
}
.hover\:border-red-200:hover {
  --tw-border-opacity: 1;
  border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}
.hover\:border-red-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(252 165 165 / var(--tw-border-opacity, 1));
}
.hover\:border-red-400:hover {
  --tw-border-opacity: 1;
  border-color: rgb(248 113 113 / var(--tw-border-opacity, 1));
}
.hover\:border-red-50:hover {
  --tw-border-opacity: 1;
  border-color: rgb(254 242 242 / var(--tw-border-opacity, 1));
}
.hover\:border-red-500:hover {
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}
.hover\:border-red-600:hover {
  --tw-border-opacity: 1;
  border-color: rgb(220 38 38 / var(--tw-border-opacity, 1));
}
.hover\:border-red-700:hover {
  --tw-border-opacity: 1;
  border-color: rgb(185 28 28 / var(--tw-border-opacity, 1));
}
.hover\:border-red-800:hover {
  --tw-border-opacity: 1;
  border-color: rgb(153 27 27 / var(--tw-border-opacity, 1));
}
.hover\:border-red-900:hover {
  --tw-border-opacity: 1;
  border-color: rgb(127 29 29 / var(--tw-border-opacity, 1));
}
.hover\:border-red-950:hover {
  --tw-border-opacity: 1;
  border-color: rgb(69 10 10 / var(--tw-border-opacity, 1));
}
.hover\:border-rose-100:hover {
  --tw-border-opacity: 1;
  border-color: rgb(255 228 230 / var(--tw-border-opacity, 1));
}
.hover\:border-rose-200:hover {
  --tw-border-opacity: 1;
  border-color: rgb(254 205 211 / var(--tw-border-opacity, 1));
}
.hover\:border-rose-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(253 164 175 / var(--tw-border-opacity, 1));
}
.hover\:border-rose-400:hover {
  --tw-border-opacity: 1;
  border-color: rgb(251 113 133 / var(--tw-border-opacity, 1));
}
.hover\:border-rose-50:hover {
  --tw-border-opacity: 1;
  border-color: rgb(255 241 242 / var(--tw-border-opacity, 1));
}
.hover\:border-rose-500:hover {
  --tw-border-opacity: 1;
  border-color: rgb(244 63 94 / var(--tw-border-opacity, 1));
}
.hover\:border-rose-600:hover {
  --tw-border-opacity: 1;
  border-color: rgb(225 29 72 / var(--tw-border-opacity, 1));
}
.hover\:border-rose-700:hover {
  --tw-border-opacity: 1;
  border-color: rgb(190 18 60 / var(--tw-border-opacity, 1));
}
.hover\:border-rose-800:hover {
  --tw-border-opacity: 1;
  border-color: rgb(159 18 57 / var(--tw-border-opacity, 1));
}
.hover\:border-rose-900:hover {
  --tw-border-opacity: 1;
  border-color: rgb(136 19 55 / var(--tw-border-opacity, 1));
}
.hover\:border-rose-950:hover {
  --tw-border-opacity: 1;
  border-color: rgb(76 5 25 / var(--tw-border-opacity, 1));
}
.hover\:border-sky-100:hover {
  --tw-border-opacity: 1;
  border-color: rgb(224 242 254 / var(--tw-border-opacity, 1));
}
.hover\:border-sky-200:hover {
  --tw-border-opacity: 1;
  border-color: rgb(186 230 253 / var(--tw-border-opacity, 1));
}
.hover\:border-sky-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(125 211 252 / var(--tw-border-opacity, 1));
}
.hover\:border-sky-400:hover {
  --tw-border-opacity: 1;
  border-color: rgb(56 189 248 / var(--tw-border-opacity, 1));
}
.hover\:border-sky-50:hover {
  --tw-border-opacity: 1;
  border-color: rgb(240 249 255 / var(--tw-border-opacity, 1));
}
.hover\:border-sky-500:hover {
  --tw-border-opacity: 1;
  border-color: rgb(14 165 233 / var(--tw-border-opacity, 1));
}
.hover\:border-sky-600:hover {
  --tw-border-opacity: 1;
  border-color: rgb(2 132 199 / var(--tw-border-opacity, 1));
}
.hover\:border-sky-700:hover {
  --tw-border-opacity: 1;
  border-color: rgb(3 105 161 / var(--tw-border-opacity, 1));
}
.hover\:border-sky-800:hover {
  --tw-border-opacity: 1;
  border-color: rgb(7 89 133 / var(--tw-border-opacity, 1));
}
.hover\:border-sky-900:hover {
  --tw-border-opacity: 1;
  border-color: rgb(12 74 110 / var(--tw-border-opacity, 1));
}
.hover\:border-sky-950:hover {
  --tw-border-opacity: 1;
  border-color: rgb(8 47 73 / var(--tw-border-opacity, 1));
}
.hover\:border-slate-100:hover {
  --tw-border-opacity: 1;
  border-color: rgb(241 245 249 / var(--tw-border-opacity, 1));
}
.hover\:border-slate-200:hover {
  --tw-border-opacity: 1;
  border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
}
.hover\:border-slate-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(203 213 225 / var(--tw-border-opacity, 1));
}
.hover\:border-slate-400:hover {
  --tw-border-opacity: 1;
  border-color: rgb(148 163 184 / var(--tw-border-opacity, 1));
}
.hover\:border-slate-50:hover {
  --tw-border-opacity: 1;
  border-color: rgb(248 250 252 / var(--tw-border-opacity, 1));
}
.hover\:border-slate-500:hover {
  --tw-border-opacity: 1;
  border-color: rgb(100 116 139 / var(--tw-border-opacity, 1));
}
.hover\:border-slate-600:hover {
  --tw-border-opacity: 1;
  border-color: rgb(71 85 105 / var(--tw-border-opacity, 1));
}
.hover\:border-slate-700:hover {
  --tw-border-opacity: 1;
  border-color: rgb(51 65 85 / var(--tw-border-opacity, 1));
}
.hover\:border-slate-800:hover {
  --tw-border-opacity: 1;
  border-color: rgb(30 41 59 / var(--tw-border-opacity, 1));
}
.hover\:border-slate-900:hover {
  --tw-border-opacity: 1;
  border-color: rgb(15 23 42 / var(--tw-border-opacity, 1));
}
.hover\:border-slate-950:hover {
  --tw-border-opacity: 1;
  border-color: rgb(2 6 23 / var(--tw-border-opacity, 1));
}
.hover\:border-stone-100:hover {
  --tw-border-opacity: 1;
  border-color: rgb(245 245 244 / var(--tw-border-opacity, 1));
}
.hover\:border-stone-200:hover {
  --tw-border-opacity: 1;
  border-color: rgb(231 229 228 / var(--tw-border-opacity, 1));
}
.hover\:border-stone-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(214 211 209 / var(--tw-border-opacity, 1));
}
.hover\:border-stone-400:hover {
  --tw-border-opacity: 1;
  border-color: rgb(168 162 158 / var(--tw-border-opacity, 1));
}
.hover\:border-stone-50:hover {
  --tw-border-opacity: 1;
  border-color: rgb(250 250 249 / var(--tw-border-opacity, 1));
}
.hover\:border-stone-500:hover {
  --tw-border-opacity: 1;
  border-color: rgb(120 113 108 / var(--tw-border-opacity, 1));
}
.hover\:border-stone-600:hover {
  --tw-border-opacity: 1;
  border-color: rgb(87 83 78 / var(--tw-border-opacity, 1));
}
.hover\:border-stone-700:hover {
  --tw-border-opacity: 1;
  border-color: rgb(68 64 60 / var(--tw-border-opacity, 1));
}
.hover\:border-stone-800:hover {
  --tw-border-opacity: 1;
  border-color: rgb(41 37 36 / var(--tw-border-opacity, 1));
}
.hover\:border-stone-900:hover {
  --tw-border-opacity: 1;
  border-color: rgb(28 25 23 / var(--tw-border-opacity, 1));
}
.hover\:border-stone-950:hover {
  --tw-border-opacity: 1;
  border-color: rgb(12 10 9 / var(--tw-border-opacity, 1));
}
.hover\:border-teal-100:hover {
  --tw-border-opacity: 1;
  border-color: rgb(204 251 241 / var(--tw-border-opacity, 1));
}
.hover\:border-teal-200:hover {
  --tw-border-opacity: 1;
  border-color: rgb(153 246 228 / var(--tw-border-opacity, 1));
}
.hover\:border-teal-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(94 234 212 / var(--tw-border-opacity, 1));
}
.hover\:border-teal-400:hover {
  --tw-border-opacity: 1;
  border-color: rgb(45 212 191 / var(--tw-border-opacity, 1));
}
.hover\:border-teal-50:hover {
  --tw-border-opacity: 1;
  border-color: rgb(240 253 250 / var(--tw-border-opacity, 1));
}
.hover\:border-teal-500:hover {
  --tw-border-opacity: 1;
  border-color: rgb(20 184 166 / var(--tw-border-opacity, 1));
}
.hover\:border-teal-600:hover {
  --tw-border-opacity: 1;
  border-color: rgb(13 148 136 / var(--tw-border-opacity, 1));
}
.hover\:border-teal-700:hover {
  --tw-border-opacity: 1;
  border-color: rgb(15 118 110 / var(--tw-border-opacity, 1));
}
.hover\:border-teal-800:hover {
  --tw-border-opacity: 1;
  border-color: rgb(17 94 89 / var(--tw-border-opacity, 1));
}
.hover\:border-teal-900:hover {
  --tw-border-opacity: 1;
  border-color: rgb(19 78 74 / var(--tw-border-opacity, 1));
}
.hover\:border-teal-950:hover {
  --tw-border-opacity: 1;
  border-color: rgb(4 47 46 / var(--tw-border-opacity, 1));
}
.hover\:border-violet-100:hover {
  --tw-border-opacity: 1;
  border-color: rgb(237 233 254 / var(--tw-border-opacity, 1));
}
.hover\:border-violet-200:hover {
  --tw-border-opacity: 1;
  border-color: rgb(221 214 254 / var(--tw-border-opacity, 1));
}
.hover\:border-violet-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(196 181 253 / var(--tw-border-opacity, 1));
}
.hover\:border-violet-400:hover {
  --tw-border-opacity: 1;
  border-color: rgb(167 139 250 / var(--tw-border-opacity, 1));
}
.hover\:border-violet-50:hover {
  --tw-border-opacity: 1;
  border-color: rgb(245 243 255 / var(--tw-border-opacity, 1));
}
.hover\:border-violet-500:hover {
  --tw-border-opacity: 1;
  border-color: rgb(139 92 246 / var(--tw-border-opacity, 1));
}
.hover\:border-violet-600:hover {
  --tw-border-opacity: 1;
  border-color: rgb(124 58 237 / var(--tw-border-opacity, 1));
}
.hover\:border-violet-700:hover {
  --tw-border-opacity: 1;
  border-color: rgb(109 40 217 / var(--tw-border-opacity, 1));
}
.hover\:border-violet-800:hover {
  --tw-border-opacity: 1;
  border-color: rgb(91 33 182 / var(--tw-border-opacity, 1));
}
.hover\:border-violet-900:hover {
  --tw-border-opacity: 1;
  border-color: rgb(76 29 149 / var(--tw-border-opacity, 1));
}
.hover\:border-violet-950:hover {
  --tw-border-opacity: 1;
  border-color: rgb(46 16 101 / var(--tw-border-opacity, 1));
}
.hover\:border-yellow-100:hover {
  --tw-border-opacity: 1;
  border-color: rgb(254 249 195 / var(--tw-border-opacity, 1));
}
.hover\:border-yellow-200:hover {
  --tw-border-opacity: 1;
  border-color: rgb(254 240 138 / var(--tw-border-opacity, 1));
}
.hover\:border-yellow-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(253 224 71 / var(--tw-border-opacity, 1));
}
.hover\:border-yellow-400:hover {
  --tw-border-opacity: 1;
  border-color: rgb(250 204 21 / var(--tw-border-opacity, 1));
}
.hover\:border-yellow-50:hover {
  --tw-border-opacity: 1;
  border-color: rgb(254 252 232 / var(--tw-border-opacity, 1));
}
.hover\:border-yellow-500:hover {
  --tw-border-opacity: 1;
  border-color: rgb(234 179 8 / var(--tw-border-opacity, 1));
}
.hover\:border-yellow-600:hover {
  --tw-border-opacity: 1;
  border-color: rgb(202 138 4 / var(--tw-border-opacity, 1));
}
.hover\:border-yellow-700:hover {
  --tw-border-opacity: 1;
  border-color: rgb(161 98 7 / var(--tw-border-opacity, 1));
}
.hover\:border-yellow-800:hover {
  --tw-border-opacity: 1;
  border-color: rgb(133 77 14 / var(--tw-border-opacity, 1));
}
.hover\:border-yellow-900:hover {
  --tw-border-opacity: 1;
  border-color: rgb(113 63 18 / var(--tw-border-opacity, 1));
}
.hover\:border-yellow-950:hover {
  --tw-border-opacity: 1;
  border-color: rgb(66 32 6 / var(--tw-border-opacity, 1));
}
.hover\:border-zinc-100:hover {
  --tw-border-opacity: 1;
  border-color: rgb(244 244 245 / var(--tw-border-opacity, 1));
}
.hover\:border-zinc-200:hover {
  --tw-border-opacity: 1;
  border-color: rgb(228 228 231 / var(--tw-border-opacity, 1));
}
.hover\:border-zinc-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(212 212 216 / var(--tw-border-opacity, 1));
}
.hover\:border-zinc-400:hover {
  --tw-border-opacity: 1;
  border-color: rgb(161 161 170 / var(--tw-border-opacity, 1));
}
.hover\:border-zinc-50:hover {
  --tw-border-opacity: 1;
  border-color: rgb(250 250 250 / var(--tw-border-opacity, 1));
}
.hover\:border-zinc-500:hover {
  --tw-border-opacity: 1;
  border-color: rgb(113 113 122 / var(--tw-border-opacity, 1));
}
.hover\:border-zinc-600:hover {
  --tw-border-opacity: 1;
  border-color: rgb(82 82 91 / var(--tw-border-opacity, 1));
}
.hover\:border-zinc-700:hover {
  --tw-border-opacity: 1;
  border-color: rgb(63 63 70 / var(--tw-border-opacity, 1));
}
.hover\:border-zinc-800:hover {
  --tw-border-opacity: 1;
  border-color: rgb(39 39 42 / var(--tw-border-opacity, 1));
}
.hover\:border-zinc-900:hover {
  --tw-border-opacity: 1;
  border-color: rgb(24 24 27 / var(--tw-border-opacity, 1));
}
.hover\:border-zinc-950:hover {
  --tw-border-opacity: 1;
  border-color: rgb(9 9 11 / var(--tw-border-opacity, 1));
}
.hover\:bg-accent:hover {
  background-color: var(--accent);
}
.hover\:bg-amber-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(254 243 199 / var(--tw-bg-opacity, 1));
}
.hover\:bg-amber-100\/10:hover {
  background-color: rgb(254 243 199 / 0.1);
}
.hover\:bg-amber-100\/20:hover {
  background-color: rgb(254 243 199 / 0.2);
}
.hover\:bg-amber-100\/30:hover {
  background-color: rgb(254 243 199 / 0.3);
}
.hover\:bg-amber-100\/40:hover {
  background-color: rgb(254 243 199 / 0.4);
}
.hover\:bg-amber-100\/5:hover {
  background-color: rgb(254 243 199 / 0.05);
}
.hover\:bg-amber-100\/50:hover {
  background-color: rgb(254 243 199 / 0.5);
}
.hover\:bg-amber-100\/60:hover {
  background-color: rgb(254 243 199 / 0.6);
}
.hover\:bg-amber-100\/70:hover {
  background-color: rgb(254 243 199 / 0.7);
}
.hover\:bg-amber-100\/80:hover {
  background-color: rgb(254 243 199 / 0.8);
}
.hover\:bg-amber-100\/90:hover {
  background-color: rgb(254 243 199 / 0.9);
}
.hover\:bg-amber-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(253 230 138 / var(--tw-bg-opacity, 1));
}
.hover\:bg-amber-200\/10:hover {
  background-color: rgb(253 230 138 / 0.1);
}
.hover\:bg-amber-200\/20:hover {
  background-color: rgb(253 230 138 / 0.2);
}
.hover\:bg-amber-200\/30:hover {
  background-color: rgb(253 230 138 / 0.3);
}
.hover\:bg-amber-200\/40:hover {
  background-color: rgb(253 230 138 / 0.4);
}
.hover\:bg-amber-200\/5:hover {
  background-color: rgb(253 230 138 / 0.05);
}
.hover\:bg-amber-200\/50:hover {
  background-color: rgb(253 230 138 / 0.5);
}
.hover\:bg-amber-200\/60:hover {
  background-color: rgb(253 230 138 / 0.6);
}
.hover\:bg-amber-200\/70:hover {
  background-color: rgb(253 230 138 / 0.7);
}
.hover\:bg-amber-200\/80:hover {
  background-color: rgb(253 230 138 / 0.8);
}
.hover\:bg-amber-200\/90:hover {
  background-color: rgb(253 230 138 / 0.9);
}
.hover\:bg-amber-300:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(252 211 77 / var(--tw-bg-opacity, 1));
}
.hover\:bg-amber-300\/10:hover {
  background-color: rgb(252 211 77 / 0.1);
}
.hover\:bg-amber-300\/20:hover {
  background-color: rgb(252 211 77 / 0.2);
}
.hover\:bg-amber-300\/30:hover {
  background-color: rgb(252 211 77 / 0.3);
}
.hover\:bg-amber-300\/40:hover {
  background-color: rgb(252 211 77 / 0.4);
}
.hover\:bg-amber-300\/5:hover {
  background-color: rgb(252 211 77 / 0.05);
}
.hover\:bg-amber-300\/50:hover {
  background-color: rgb(252 211 77 / 0.5);
}
.hover\:bg-amber-300\/60:hover {
  background-color: rgb(252 211 77 / 0.6);
}
.hover\:bg-amber-300\/70:hover {
  background-color: rgb(252 211 77 / 0.7);
}
.hover\:bg-amber-300\/80:hover {
  background-color: rgb(252 211 77 / 0.8);
}
.hover\:bg-amber-300\/90:hover {
  background-color: rgb(252 211 77 / 0.9);
}
.hover\:bg-amber-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(251 191 36 / var(--tw-bg-opacity, 1));
}
.hover\:bg-amber-400\/10:hover {
  background-color: rgb(251 191 36 / 0.1);
}
.hover\:bg-amber-400\/20:hover {
  background-color: rgb(251 191 36 / 0.2);
}
.hover\:bg-amber-400\/30:hover {
  background-color: rgb(251 191 36 / 0.3);
}
.hover\:bg-amber-400\/40:hover {
  background-color: rgb(251 191 36 / 0.4);
}
.hover\:bg-amber-400\/5:hover {
  background-color: rgb(251 191 36 / 0.05);
}
.hover\:bg-amber-400\/50:hover {
  background-color: rgb(251 191 36 / 0.5);
}
.hover\:bg-amber-400\/60:hover {
  background-color: rgb(251 191 36 / 0.6);
}
.hover\:bg-amber-400\/70:hover {
  background-color: rgb(251 191 36 / 0.7);
}
.hover\:bg-amber-400\/80:hover {
  background-color: rgb(251 191 36 / 0.8);
}
.hover\:bg-amber-400\/90:hover {
  background-color: rgb(251 191 36 / 0.9);
}
.hover\:bg-amber-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 251 235 / var(--tw-bg-opacity, 1));
}
.hover\:bg-amber-50\/10:hover {
  background-color: rgb(255 251 235 / 0.1);
}
.hover\:bg-amber-50\/20:hover {
  background-color: rgb(255 251 235 / 0.2);
}
.hover\:bg-amber-50\/30:hover {
  background-color: rgb(255 251 235 / 0.3);
}
.hover\:bg-amber-50\/40:hover {
  background-color: rgb(255 251 235 / 0.4);
}
.hover\:bg-amber-50\/5:hover {
  background-color: rgb(255 251 235 / 0.05);
}
.hover\:bg-amber-50\/50:hover {
  background-color: rgb(255 251 235 / 0.5);
}
.hover\:bg-amber-50\/60:hover {
  background-color: rgb(255 251 235 / 0.6);
}
.hover\:bg-amber-50\/70:hover {
  background-color: rgb(255 251 235 / 0.7);
}
.hover\:bg-amber-50\/80:hover {
  background-color: rgb(255 251 235 / 0.8);
}
.hover\:bg-amber-50\/90:hover {
  background-color: rgb(255 251 235 / 0.9);
}
.hover\:bg-amber-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(245 158 11 / var(--tw-bg-opacity, 1));
}
.hover\:bg-amber-500\/10:hover {
  background-color: rgb(245 158 11 / 0.1);
}
.hover\:bg-amber-500\/20:hover {
  background-color: rgb(245 158 11 / 0.2);
}
.hover\:bg-amber-500\/30:hover {
  background-color: rgb(245 158 11 / 0.3);
}
.hover\:bg-amber-500\/40:hover {
  background-color: rgb(245 158 11 / 0.4);
}
.hover\:bg-amber-500\/5:hover {
  background-color: rgb(245 158 11 / 0.05);
}
.hover\:bg-amber-500\/50:hover {
  background-color: rgb(245 158 11 / 0.5);
}
.hover\:bg-amber-500\/60:hover {
  background-color: rgb(245 158 11 / 0.6);
}
.hover\:bg-amber-500\/70:hover {
  background-color: rgb(245 158 11 / 0.7);
}
.hover\:bg-amber-500\/80:hover {
  background-color: rgb(245 158 11 / 0.8);
}
.hover\:bg-amber-500\/90:hover {
  background-color: rgb(245 158 11 / 0.9);
}
.hover\:bg-amber-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(217 119 6 / var(--tw-bg-opacity, 1));
}
.hover\:bg-amber-600\/10:hover {
  background-color: rgb(217 119 6 / 0.1);
}
.hover\:bg-amber-600\/20:hover {
  background-color: rgb(217 119 6 / 0.2);
}
.hover\:bg-amber-600\/30:hover {
  background-color: rgb(217 119 6 / 0.3);
}
.hover\:bg-amber-600\/40:hover {
  background-color: rgb(217 119 6 / 0.4);
}
.hover\:bg-amber-600\/5:hover {
  background-color: rgb(217 119 6 / 0.05);
}
.hover\:bg-amber-600\/50:hover {
  background-color: rgb(217 119 6 / 0.5);
}
.hover\:bg-amber-600\/60:hover {
  background-color: rgb(217 119 6 / 0.6);
}
.hover\:bg-amber-600\/70:hover {
  background-color: rgb(217 119 6 / 0.7);
}
.hover\:bg-amber-600\/80:hover {
  background-color: rgb(217 119 6 / 0.8);
}
.hover\:bg-amber-600\/90:hover {
  background-color: rgb(217 119 6 / 0.9);
}
.hover\:bg-amber-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(180 83 9 / var(--tw-bg-opacity, 1));
}
.hover\:bg-amber-700\/10:hover {
  background-color: rgb(180 83 9 / 0.1);
}
.hover\:bg-amber-700\/20:hover {
  background-color: rgb(180 83 9 / 0.2);
}
.hover\:bg-amber-700\/30:hover {
  background-color: rgb(180 83 9 / 0.3);
}
.hover\:bg-amber-700\/40:hover {
  background-color: rgb(180 83 9 / 0.4);
}
.hover\:bg-amber-700\/5:hover {
  background-color: rgb(180 83 9 / 0.05);
}
.hover\:bg-amber-700\/50:hover {
  background-color: rgb(180 83 9 / 0.5);
}
.hover\:bg-amber-700\/60:hover {
  background-color: rgb(180 83 9 / 0.6);
}
.hover\:bg-amber-700\/70:hover {
  background-color: rgb(180 83 9 / 0.7);
}
.hover\:bg-amber-700\/80:hover {
  background-color: rgb(180 83 9 / 0.8);
}
.hover\:bg-amber-700\/90:hover {
  background-color: rgb(180 83 9 / 0.9);
}
.hover\:bg-amber-800:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(146 64 14 / var(--tw-bg-opacity, 1));
}
.hover\:bg-amber-800\/10:hover {
  background-color: rgb(146 64 14 / 0.1);
}
.hover\:bg-amber-800\/20:hover {
  background-color: rgb(146 64 14 / 0.2);
}
.hover\:bg-amber-800\/30:hover {
  background-color: rgb(146 64 14 / 0.3);
}
.hover\:bg-amber-800\/40:hover {
  background-color: rgb(146 64 14 / 0.4);
}
.hover\:bg-amber-800\/5:hover {
  background-color: rgb(146 64 14 / 0.05);
}
.hover\:bg-amber-800\/50:hover {
  background-color: rgb(146 64 14 / 0.5);
}
.hover\:bg-amber-800\/60:hover {
  background-color: rgb(146 64 14 / 0.6);
}
.hover\:bg-amber-800\/70:hover {
  background-color: rgb(146 64 14 / 0.7);
}
.hover\:bg-amber-800\/80:hover {
  background-color: rgb(146 64 14 / 0.8);
}
.hover\:bg-amber-800\/90:hover {
  background-color: rgb(146 64 14 / 0.9);
}
.hover\:bg-amber-900:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(120 53 15 / var(--tw-bg-opacity, 1));
}
.hover\:bg-amber-900\/10:hover {
  background-color: rgb(120 53 15 / 0.1);
}
.hover\:bg-amber-900\/20:hover {
  background-color: rgb(120 53 15 / 0.2);
}
.hover\:bg-amber-900\/30:hover {
  background-color: rgb(120 53 15 / 0.3);
}
.hover\:bg-amber-900\/40:hover {
  background-color: rgb(120 53 15 / 0.4);
}
.hover\:bg-amber-900\/5:hover {
  background-color: rgb(120 53 15 / 0.05);
}
.hover\:bg-amber-900\/50:hover {
  background-color: rgb(120 53 15 / 0.5);
}
.hover\:bg-amber-900\/60:hover {
  background-color: rgb(120 53 15 / 0.6);
}
.hover\:bg-amber-900\/70:hover {
  background-color: rgb(120 53 15 / 0.7);
}
.hover\:bg-amber-900\/80:hover {
  background-color: rgb(120 53 15 / 0.8);
}
.hover\:bg-amber-900\/90:hover {
  background-color: rgb(120 53 15 / 0.9);
}
.hover\:bg-amber-950:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(69 26 3 / var(--tw-bg-opacity, 1));
}
.hover\:bg-amber-950\/10:hover {
  background-color: rgb(69 26 3 / 0.1);
}
.hover\:bg-amber-950\/20:hover {
  background-color: rgb(69 26 3 / 0.2);
}
.hover\:bg-amber-950\/30:hover {
  background-color: rgb(69 26 3 / 0.3);
}
.hover\:bg-amber-950\/40:hover {
  background-color: rgb(69 26 3 / 0.4);
}
.hover\:bg-amber-950\/5:hover {
  background-color: rgb(69 26 3 / 0.05);
}
.hover\:bg-amber-950\/50:hover {
  background-color: rgb(69 26 3 / 0.5);
}
.hover\:bg-amber-950\/60:hover {
  background-color: rgb(69 26 3 / 0.6);
}
.hover\:bg-amber-950\/70:hover {
  background-color: rgb(69 26 3 / 0.7);
}
.hover\:bg-amber-950\/80:hover {
  background-color: rgb(69 26 3 / 0.8);
}
.hover\:bg-amber-950\/90:hover {
  background-color: rgb(69 26 3 / 0.9);
}
.hover\:bg-blue-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-100\/10:hover {
  background-color: rgb(219 234 254 / 0.1);
}
.hover\:bg-blue-100\/20:hover {
  background-color: rgb(219 234 254 / 0.2);
}
.hover\:bg-blue-100\/30:hover {
  background-color: rgb(219 234 254 / 0.3);
}
.hover\:bg-blue-100\/40:hover {
  background-color: rgb(219 234 254 / 0.4);
}
.hover\:bg-blue-100\/5:hover {
  background-color: rgb(219 234 254 / 0.05);
}
.hover\:bg-blue-100\/50:hover {
  background-color: rgb(219 234 254 / 0.5);
}
.hover\:bg-blue-100\/60:hover {
  background-color: rgb(219 234 254 / 0.6);
}
.hover\:bg-blue-100\/70:hover {
  background-color: rgb(219 234 254 / 0.7);
}
.hover\:bg-blue-100\/80:hover {
  background-color: rgb(219 234 254 / 0.8);
}
.hover\:bg-blue-100\/90:hover {
  background-color: rgb(219 234 254 / 0.9);
}
.hover\:bg-blue-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(191 219 254 / var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-200\/10:hover {
  background-color: rgb(191 219 254 / 0.1);
}
.hover\:bg-blue-200\/20:hover {
  background-color: rgb(191 219 254 / 0.2);
}
.hover\:bg-blue-200\/30:hover {
  background-color: rgb(191 219 254 / 0.3);
}
.hover\:bg-blue-200\/40:hover {
  background-color: rgb(191 219 254 / 0.4);
}
.hover\:bg-blue-200\/5:hover {
  background-color: rgb(191 219 254 / 0.05);
}
.hover\:bg-blue-200\/50:hover {
  background-color: rgb(191 219 254 / 0.5);
}
.hover\:bg-blue-200\/60:hover {
  background-color: rgb(191 219 254 / 0.6);
}
.hover\:bg-blue-200\/70:hover {
  background-color: rgb(191 219 254 / 0.7);
}
.hover\:bg-blue-200\/80:hover {
  background-color: rgb(191 219 254 / 0.8);
}
.hover\:bg-blue-200\/90:hover {
  background-color: rgb(191 219 254 / 0.9);
}
.hover\:bg-blue-300:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(147 197 253 / var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-300\/10:hover {
  background-color: rgb(147 197 253 / 0.1);
}
.hover\:bg-blue-300\/20:hover {
  background-color: rgb(147 197 253 / 0.2);
}
.hover\:bg-blue-300\/30:hover {
  background-color: rgb(147 197 253 / 0.3);
}
.hover\:bg-blue-300\/40:hover {
  background-color: rgb(147 197 253 / 0.4);
}
.hover\:bg-blue-300\/5:hover {
  background-color: rgb(147 197 253 / 0.05);
}
.hover\:bg-blue-300\/50:hover {
  background-color: rgb(147 197 253 / 0.5);
}
.hover\:bg-blue-300\/60:hover {
  background-color: rgb(147 197 253 / 0.6);
}
.hover\:bg-blue-300\/70:hover {
  background-color: rgb(147 197 253 / 0.7);
}
.hover\:bg-blue-300\/80:hover {
  background-color: rgb(147 197 253 / 0.8);
}
.hover\:bg-blue-300\/90:hover {
  background-color: rgb(147 197 253 / 0.9);
}
.hover\:bg-blue-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(96 165 250 / var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-400\/10:hover {
  background-color: rgb(96 165 250 / 0.1);
}
.hover\:bg-blue-400\/20:hover {
  background-color: rgb(96 165 250 / 0.2);
}
.hover\:bg-blue-400\/30:hover {
  background-color: rgb(96 165 250 / 0.3);
}
.hover\:bg-blue-400\/40:hover {
  background-color: rgb(96 165 250 / 0.4);
}
.hover\:bg-blue-400\/5:hover {
  background-color: rgb(96 165 250 / 0.05);
}
.hover\:bg-blue-400\/50:hover {
  background-color: rgb(96 165 250 / 0.5);
}
.hover\:bg-blue-400\/60:hover {
  background-color: rgb(96 165 250 / 0.6);
}
.hover\:bg-blue-400\/70:hover {
  background-color: rgb(96 165 250 / 0.7);
}
.hover\:bg-blue-400\/80:hover {
  background-color: rgb(96 165 250 / 0.8);
}
.hover\:bg-blue-400\/90:hover {
  background-color: rgb(96 165 250 / 0.9);
}
.hover\:bg-blue-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-50\/10:hover {
  background-color: rgb(239 246 255 / 0.1);
}
.hover\:bg-blue-50\/20:hover {
  background-color: rgb(239 246 255 / 0.2);
}
.hover\:bg-blue-50\/30:hover {
  background-color: rgb(239 246 255 / 0.3);
}
.hover\:bg-blue-50\/40:hover {
  background-color: rgb(239 246 255 / 0.4);
}
.hover\:bg-blue-50\/5:hover {
  background-color: rgb(239 246 255 / 0.05);
}
.hover\:bg-blue-50\/50:hover {
  background-color: rgb(239 246 255 / 0.5);
}
.hover\:bg-blue-50\/60:hover {
  background-color: rgb(239 246 255 / 0.6);
}
.hover\:bg-blue-50\/70:hover {
  background-color: rgb(239 246 255 / 0.7);
}
.hover\:bg-blue-50\/80:hover {
  background-color: rgb(239 246 255 / 0.8);
}
.hover\:bg-blue-50\/90:hover {
  background-color: rgb(239 246 255 / 0.9);
}
.hover\:bg-blue-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-500\/10:hover {
  background-color: rgb(59 130 246 / 0.1);
}
.hover\:bg-blue-500\/20:hover {
  background-color: rgb(59 130 246 / 0.2);
}
.hover\:bg-blue-500\/30:hover {
  background-color: rgb(59 130 246 / 0.3);
}
.hover\:bg-blue-500\/40:hover {
  background-color: rgb(59 130 246 / 0.4);
}
.hover\:bg-blue-500\/5:hover {
  background-color: rgb(59 130 246 / 0.05);
}
.hover\:bg-blue-500\/50:hover {
  background-color: rgb(59 130 246 / 0.5);
}
.hover\:bg-blue-500\/60:hover {
  background-color: rgb(59 130 246 / 0.6);
}
.hover\:bg-blue-500\/70:hover {
  background-color: rgb(59 130 246 / 0.7);
}
.hover\:bg-blue-500\/80:hover {
  background-color: rgb(59 130 246 / 0.8);
}
.hover\:bg-blue-500\/90:hover {
  background-color: rgb(59 130 246 / 0.9);
}
.hover\:bg-blue-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-600\/10:hover {
  background-color: rgb(37 99 235 / 0.1);
}
.hover\:bg-blue-600\/20:hover {
  background-color: rgb(37 99 235 / 0.2);
}
.hover\:bg-blue-600\/30:hover {
  background-color: rgb(37 99 235 / 0.3);
}
.hover\:bg-blue-600\/40:hover {
  background-color: rgb(37 99 235 / 0.4);
}
.hover\:bg-blue-600\/5:hover {
  background-color: rgb(37 99 235 / 0.05);
}
.hover\:bg-blue-600\/50:hover {
  background-color: rgb(37 99 235 / 0.5);
}
.hover\:bg-blue-600\/60:hover {
  background-color: rgb(37 99 235 / 0.6);
}
.hover\:bg-blue-600\/70:hover {
  background-color: rgb(37 99 235 / 0.7);
}
.hover\:bg-blue-600\/80:hover {
  background-color: rgb(37 99 235 / 0.8);
}
.hover\:bg-blue-600\/90:hover {
  background-color: rgb(37 99 235 / 0.9);
}
.hover\:bg-blue-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-700\/10:hover {
  background-color: rgb(29 78 216 / 0.1);
}
.hover\:bg-blue-700\/20:hover {
  background-color: rgb(29 78 216 / 0.2);
}
.hover\:bg-blue-700\/30:hover {
  background-color: rgb(29 78 216 / 0.3);
}
.hover\:bg-blue-700\/40:hover {
  background-color: rgb(29 78 216 / 0.4);
}
.hover\:bg-blue-700\/5:hover {
  background-color: rgb(29 78 216 / 0.05);
}
.hover\:bg-blue-700\/50:hover {
  background-color: rgb(29 78 216 / 0.5);
}
.hover\:bg-blue-700\/60:hover {
  background-color: rgb(29 78 216 / 0.6);
}
.hover\:bg-blue-700\/70:hover {
  background-color: rgb(29 78 216 / 0.7);
}
.hover\:bg-blue-700\/80:hover {
  background-color: rgb(29 78 216 / 0.8);
}
.hover\:bg-blue-700\/90:hover {
  background-color: rgb(29 78 216 / 0.9);
}
.hover\:bg-blue-800:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(30 64 175 / var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-800\/10:hover {
  background-color: rgb(30 64 175 / 0.1);
}
.hover\:bg-blue-800\/20:hover {
  background-color: rgb(30 64 175 / 0.2);
}
.hover\:bg-blue-800\/30:hover {
  background-color: rgb(30 64 175 / 0.3);
}
.hover\:bg-blue-800\/40:hover {
  background-color: rgb(30 64 175 / 0.4);
}
.hover\:bg-blue-800\/5:hover {
  background-color: rgb(30 64 175 / 0.05);
}
.hover\:bg-blue-800\/50:hover {
  background-color: rgb(30 64 175 / 0.5);
}
.hover\:bg-blue-800\/60:hover {
  background-color: rgb(30 64 175 / 0.6);
}
.hover\:bg-blue-800\/70:hover {
  background-color: rgb(30 64 175 / 0.7);
}
.hover\:bg-blue-800\/80:hover {
  background-color: rgb(30 64 175 / 0.8);
}
.hover\:bg-blue-800\/90:hover {
  background-color: rgb(30 64 175 / 0.9);
}
.hover\:bg-blue-900:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(30 58 138 / var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-900\/10:hover {
  background-color: rgb(30 58 138 / 0.1);
}
.hover\:bg-blue-900\/20:hover {
  background-color: rgb(30 58 138 / 0.2);
}
.hover\:bg-blue-900\/30:hover {
  background-color: rgb(30 58 138 / 0.3);
}
.hover\:bg-blue-900\/40:hover {
  background-color: rgb(30 58 138 / 0.4);
}
.hover\:bg-blue-900\/5:hover {
  background-color: rgb(30 58 138 / 0.05);
}
.hover\:bg-blue-900\/50:hover {
  background-color: rgb(30 58 138 / 0.5);
}
.hover\:bg-blue-900\/60:hover {
  background-color: rgb(30 58 138 / 0.6);
}
.hover\:bg-blue-900\/70:hover {
  background-color: rgb(30 58 138 / 0.7);
}
.hover\:bg-blue-900\/80:hover {
  background-color: rgb(30 58 138 / 0.8);
}
.hover\:bg-blue-900\/90:hover {
  background-color: rgb(30 58 138 / 0.9);
}
.hover\:bg-blue-950:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(23 37 84 / var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-950\/10:hover {
  background-color: rgb(23 37 84 / 0.1);
}
.hover\:bg-blue-950\/20:hover {
  background-color: rgb(23 37 84 / 0.2);
}
.hover\:bg-blue-950\/30:hover {
  background-color: rgb(23 37 84 / 0.3);
}
.hover\:bg-blue-950\/40:hover {
  background-color: rgb(23 37 84 / 0.4);
}
.hover\:bg-blue-950\/5:hover {
  background-color: rgb(23 37 84 / 0.05);
}
.hover\:bg-blue-950\/50:hover {
  background-color: rgb(23 37 84 / 0.5);
}
.hover\:bg-blue-950\/60:hover {
  background-color: rgb(23 37 84 / 0.6);
}
.hover\:bg-blue-950\/70:hover {
  background-color: rgb(23 37 84 / 0.7);
}
.hover\:bg-blue-950\/80:hover {
  background-color: rgb(23 37 84 / 0.8);
}
.hover\:bg-blue-950\/90:hover {
  background-color: rgb(23 37 84 / 0.9);
}
.hover\:bg-cyan-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(207 250 254 / var(--tw-bg-opacity, 1));
}
.hover\:bg-cyan-100\/10:hover {
  background-color: rgb(207 250 254 / 0.1);
}
.hover\:bg-cyan-100\/20:hover {
  background-color: rgb(207 250 254 / 0.2);
}
.hover\:bg-cyan-100\/30:hover {
  background-color: rgb(207 250 254 / 0.3);
}
.hover\:bg-cyan-100\/40:hover {
  background-color: rgb(207 250 254 / 0.4);
}
.hover\:bg-cyan-100\/5:hover {
  background-color: rgb(207 250 254 / 0.05);
}
.hover\:bg-cyan-100\/50:hover {
  background-color: rgb(207 250 254 / 0.5);
}
.hover\:bg-cyan-100\/60:hover {
  background-color: rgb(207 250 254 / 0.6);
}
.hover\:bg-cyan-100\/70:hover {
  background-color: rgb(207 250 254 / 0.7);
}
.hover\:bg-cyan-100\/80:hover {
  background-color: rgb(207 250 254 / 0.8);
}
.hover\:bg-cyan-100\/90:hover {
  background-color: rgb(207 250 254 / 0.9);
}
.hover\:bg-cyan-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(165 243 252 / var(--tw-bg-opacity, 1));
}
.hover\:bg-cyan-200\/10:hover {
  background-color: rgb(165 243 252 / 0.1);
}
.hover\:bg-cyan-200\/20:hover {
  background-color: rgb(165 243 252 / 0.2);
}
.hover\:bg-cyan-200\/30:hover {
  background-color: rgb(165 243 252 / 0.3);
}
.hover\:bg-cyan-200\/40:hover {
  background-color: rgb(165 243 252 / 0.4);
}
.hover\:bg-cyan-200\/5:hover {
  background-color: rgb(165 243 252 / 0.05);
}
.hover\:bg-cyan-200\/50:hover {
  background-color: rgb(165 243 252 / 0.5);
}
.hover\:bg-cyan-200\/60:hover {
  background-color: rgb(165 243 252 / 0.6);
}
.hover\:bg-cyan-200\/70:hover {
  background-color: rgb(165 243 252 / 0.7);
}
.hover\:bg-cyan-200\/80:hover {
  background-color: rgb(165 243 252 / 0.8);
}
.hover\:bg-cyan-200\/90:hover {
  background-color: rgb(165 243 252 / 0.9);
}
.hover\:bg-cyan-300:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(103 232 249 / var(--tw-bg-opacity, 1));
}
.hover\:bg-cyan-300\/10:hover {
  background-color: rgb(103 232 249 / 0.1);
}
.hover\:bg-cyan-300\/20:hover {
  background-color: rgb(103 232 249 / 0.2);
}
.hover\:bg-cyan-300\/30:hover {
  background-color: rgb(103 232 249 / 0.3);
}
.hover\:bg-cyan-300\/40:hover {
  background-color: rgb(103 232 249 / 0.4);
}
.hover\:bg-cyan-300\/5:hover {
  background-color: rgb(103 232 249 / 0.05);
}
.hover\:bg-cyan-300\/50:hover {
  background-color: rgb(103 232 249 / 0.5);
}
.hover\:bg-cyan-300\/60:hover {
  background-color: rgb(103 232 249 / 0.6);
}
.hover\:bg-cyan-300\/70:hover {
  background-color: rgb(103 232 249 / 0.7);
}
.hover\:bg-cyan-300\/80:hover {
  background-color: rgb(103 232 249 / 0.8);
}
.hover\:bg-cyan-300\/90:hover {
  background-color: rgb(103 232 249 / 0.9);
}
.hover\:bg-cyan-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(34 211 238 / var(--tw-bg-opacity, 1));
}
.hover\:bg-cyan-400\/10:hover {
  background-color: rgb(34 211 238 / 0.1);
}
.hover\:bg-cyan-400\/20:hover {
  background-color: rgb(34 211 238 / 0.2);
}
.hover\:bg-cyan-400\/30:hover {
  background-color: rgb(34 211 238 / 0.3);
}
.hover\:bg-cyan-400\/40:hover {
  background-color: rgb(34 211 238 / 0.4);
}
.hover\:bg-cyan-400\/5:hover {
  background-color: rgb(34 211 238 / 0.05);
}
.hover\:bg-cyan-400\/50:hover {
  background-color: rgb(34 211 238 / 0.5);
}
.hover\:bg-cyan-400\/60:hover {
  background-color: rgb(34 211 238 / 0.6);
}
.hover\:bg-cyan-400\/70:hover {
  background-color: rgb(34 211 238 / 0.7);
}
.hover\:bg-cyan-400\/80:hover {
  background-color: rgb(34 211 238 / 0.8);
}
.hover\:bg-cyan-400\/90:hover {
  background-color: rgb(34 211 238 / 0.9);
}
.hover\:bg-cyan-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(236 254 255 / var(--tw-bg-opacity, 1));
}
.hover\:bg-cyan-50\/10:hover {
  background-color: rgb(236 254 255 / 0.1);
}
.hover\:bg-cyan-50\/20:hover {
  background-color: rgb(236 254 255 / 0.2);
}
.hover\:bg-cyan-50\/30:hover {
  background-color: rgb(236 254 255 / 0.3);
}
.hover\:bg-cyan-50\/40:hover {
  background-color: rgb(236 254 255 / 0.4);
}
.hover\:bg-cyan-50\/5:hover {
  background-color: rgb(236 254 255 / 0.05);
}
.hover\:bg-cyan-50\/50:hover {
  background-color: rgb(236 254 255 / 0.5);
}
.hover\:bg-cyan-50\/60:hover {
  background-color: rgb(236 254 255 / 0.6);
}
.hover\:bg-cyan-50\/70:hover {
  background-color: rgb(236 254 255 / 0.7);
}
.hover\:bg-cyan-50\/80:hover {
  background-color: rgb(236 254 255 / 0.8);
}
.hover\:bg-cyan-50\/90:hover {
  background-color: rgb(236 254 255 / 0.9);
}
.hover\:bg-cyan-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(6 182 212 / var(--tw-bg-opacity, 1));
}
.hover\:bg-cyan-500\/10:hover {
  background-color: rgb(6 182 212 / 0.1);
}
.hover\:bg-cyan-500\/20:hover {
  background-color: rgb(6 182 212 / 0.2);
}
.hover\:bg-cyan-500\/30:hover {
  background-color: rgb(6 182 212 / 0.3);
}
.hover\:bg-cyan-500\/40:hover {
  background-color: rgb(6 182 212 / 0.4);
}
.hover\:bg-cyan-500\/5:hover {
  background-color: rgb(6 182 212 / 0.05);
}
.hover\:bg-cyan-500\/50:hover {
  background-color: rgb(6 182 212 / 0.5);
}
.hover\:bg-cyan-500\/60:hover {
  background-color: rgb(6 182 212 / 0.6);
}
.hover\:bg-cyan-500\/70:hover {
  background-color: rgb(6 182 212 / 0.7);
}
.hover\:bg-cyan-500\/80:hover {
  background-color: rgb(6 182 212 / 0.8);
}
.hover\:bg-cyan-500\/90:hover {
  background-color: rgb(6 182 212 / 0.9);
}
.hover\:bg-cyan-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(8 145 178 / var(--tw-bg-opacity, 1));
}
.hover\:bg-cyan-600\/10:hover {
  background-color: rgb(8 145 178 / 0.1);
}
.hover\:bg-cyan-600\/20:hover {
  background-color: rgb(8 145 178 / 0.2);
}
.hover\:bg-cyan-600\/30:hover {
  background-color: rgb(8 145 178 / 0.3);
}
.hover\:bg-cyan-600\/40:hover {
  background-color: rgb(8 145 178 / 0.4);
}
.hover\:bg-cyan-600\/5:hover {
  background-color: rgb(8 145 178 / 0.05);
}
.hover\:bg-cyan-600\/50:hover {
  background-color: rgb(8 145 178 / 0.5);
}
.hover\:bg-cyan-600\/60:hover {
  background-color: rgb(8 145 178 / 0.6);
}
.hover\:bg-cyan-600\/70:hover {
  background-color: rgb(8 145 178 / 0.7);
}
.hover\:bg-cyan-600\/80:hover {
  background-color: rgb(8 145 178 / 0.8);
}
.hover\:bg-cyan-600\/90:hover {
  background-color: rgb(8 145 178 / 0.9);
}
.hover\:bg-cyan-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(14 116 144 / var(--tw-bg-opacity, 1));
}
.hover\:bg-cyan-700\/10:hover {
  background-color: rgb(14 116 144 / 0.1);
}
.hover\:bg-cyan-700\/20:hover {
  background-color: rgb(14 116 144 / 0.2);
}
.hover\:bg-cyan-700\/30:hover {
  background-color: rgb(14 116 144 / 0.3);
}
.hover\:bg-cyan-700\/40:hover {
  background-color: rgb(14 116 144 / 0.4);
}
.hover\:bg-cyan-700\/5:hover {
  background-color: rgb(14 116 144 / 0.05);
}
.hover\:bg-cyan-700\/50:hover {
  background-color: rgb(14 116 144 / 0.5);
}
.hover\:bg-cyan-700\/60:hover {
  background-color: rgb(14 116 144 / 0.6);
}
.hover\:bg-cyan-700\/70:hover {
  background-color: rgb(14 116 144 / 0.7);
}
.hover\:bg-cyan-700\/80:hover {
  background-color: rgb(14 116 144 / 0.8);
}
.hover\:bg-cyan-700\/90:hover {
  background-color: rgb(14 116 144 / 0.9);
}
.hover\:bg-cyan-800:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(21 94 117 / var(--tw-bg-opacity, 1));
}
.hover\:bg-cyan-800\/10:hover {
  background-color: rgb(21 94 117 / 0.1);
}
.hover\:bg-cyan-800\/20:hover {
  background-color: rgb(21 94 117 / 0.2);
}
.hover\:bg-cyan-800\/30:hover {
  background-color: rgb(21 94 117 / 0.3);
}
.hover\:bg-cyan-800\/40:hover {
  background-color: rgb(21 94 117 / 0.4);
}
.hover\:bg-cyan-800\/5:hover {
  background-color: rgb(21 94 117 / 0.05);
}
.hover\:bg-cyan-800\/50:hover {
  background-color: rgb(21 94 117 / 0.5);
}
.hover\:bg-cyan-800\/60:hover {
  background-color: rgb(21 94 117 / 0.6);
}
.hover\:bg-cyan-800\/70:hover {
  background-color: rgb(21 94 117 / 0.7);
}
.hover\:bg-cyan-800\/80:hover {
  background-color: rgb(21 94 117 / 0.8);
}
.hover\:bg-cyan-800\/90:hover {
  background-color: rgb(21 94 117 / 0.9);
}
.hover\:bg-cyan-900:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(22 78 99 / var(--tw-bg-opacity, 1));
}
.hover\:bg-cyan-900\/10:hover {
  background-color: rgb(22 78 99 / 0.1);
}
.hover\:bg-cyan-900\/20:hover {
  background-color: rgb(22 78 99 / 0.2);
}
.hover\:bg-cyan-900\/30:hover {
  background-color: rgb(22 78 99 / 0.3);
}
.hover\:bg-cyan-900\/40:hover {
  background-color: rgb(22 78 99 / 0.4);
}
.hover\:bg-cyan-900\/5:hover {
  background-color: rgb(22 78 99 / 0.05);
}
.hover\:bg-cyan-900\/50:hover {
  background-color: rgb(22 78 99 / 0.5);
}
.hover\:bg-cyan-900\/60:hover {
  background-color: rgb(22 78 99 / 0.6);
}
.hover\:bg-cyan-900\/70:hover {
  background-color: rgb(22 78 99 / 0.7);
}
.hover\:bg-cyan-900\/80:hover {
  background-color: rgb(22 78 99 / 0.8);
}
.hover\:bg-cyan-900\/90:hover {
  background-color: rgb(22 78 99 / 0.9);
}
.hover\:bg-cyan-950:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(8 51 68 / var(--tw-bg-opacity, 1));
}
.hover\:bg-cyan-950\/10:hover {
  background-color: rgb(8 51 68 / 0.1);
}
.hover\:bg-cyan-950\/20:hover {
  background-color: rgb(8 51 68 / 0.2);
}
.hover\:bg-cyan-950\/30:hover {
  background-color: rgb(8 51 68 / 0.3);
}
.hover\:bg-cyan-950\/40:hover {
  background-color: rgb(8 51 68 / 0.4);
}
.hover\:bg-cyan-950\/5:hover {
  background-color: rgb(8 51 68 / 0.05);
}
.hover\:bg-cyan-950\/50:hover {
  background-color: rgb(8 51 68 / 0.5);
}
.hover\:bg-cyan-950\/60:hover {
  background-color: rgb(8 51 68 / 0.6);
}
.hover\:bg-cyan-950\/70:hover {
  background-color: rgb(8 51 68 / 0.7);
}
.hover\:bg-cyan-950\/80:hover {
  background-color: rgb(8 51 68 / 0.8);
}
.hover\:bg-cyan-950\/90:hover {
  background-color: rgb(8 51 68 / 0.9);
}
.hover\:bg-emerald-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(209 250 229 / var(--tw-bg-opacity, 1));
}
.hover\:bg-emerald-100\/10:hover {
  background-color: rgb(209 250 229 / 0.1);
}
.hover\:bg-emerald-100\/20:hover {
  background-color: rgb(209 250 229 / 0.2);
}
.hover\:bg-emerald-100\/30:hover {
  background-color: rgb(209 250 229 / 0.3);
}
.hover\:bg-emerald-100\/40:hover {
  background-color: rgb(209 250 229 / 0.4);
}
.hover\:bg-emerald-100\/5:hover {
  background-color: rgb(209 250 229 / 0.05);
}
.hover\:bg-emerald-100\/50:hover {
  background-color: rgb(209 250 229 / 0.5);
}
.hover\:bg-emerald-100\/60:hover {
  background-color: rgb(209 250 229 / 0.6);
}
.hover\:bg-emerald-100\/70:hover {
  background-color: rgb(209 250 229 / 0.7);
}
.hover\:bg-emerald-100\/80:hover {
  background-color: rgb(209 250 229 / 0.8);
}
.hover\:bg-emerald-100\/90:hover {
  background-color: rgb(209 250 229 / 0.9);
}
.hover\:bg-emerald-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(167 243 208 / var(--tw-bg-opacity, 1));
}
.hover\:bg-emerald-200\/10:hover {
  background-color: rgb(167 243 208 / 0.1);
}
.hover\:bg-emerald-200\/20:hover {
  background-color: rgb(167 243 208 / 0.2);
}
.hover\:bg-emerald-200\/30:hover {
  background-color: rgb(167 243 208 / 0.3);
}
.hover\:bg-emerald-200\/40:hover {
  background-color: rgb(167 243 208 / 0.4);
}
.hover\:bg-emerald-200\/5:hover {
  background-color: rgb(167 243 208 / 0.05);
}
.hover\:bg-emerald-200\/50:hover {
  background-color: rgb(167 243 208 / 0.5);
}
.hover\:bg-emerald-200\/60:hover {
  background-color: rgb(167 243 208 / 0.6);
}
.hover\:bg-emerald-200\/70:hover {
  background-color: rgb(167 243 208 / 0.7);
}
.hover\:bg-emerald-200\/80:hover {
  background-color: rgb(167 243 208 / 0.8);
}
.hover\:bg-emerald-200\/90:hover {
  background-color: rgb(167 243 208 / 0.9);
}
.hover\:bg-emerald-300:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(110 231 183 / var(--tw-bg-opacity, 1));
}
.hover\:bg-emerald-300\/10:hover {
  background-color: rgb(110 231 183 / 0.1);
}
.hover\:bg-emerald-300\/20:hover {
  background-color: rgb(110 231 183 / 0.2);
}
.hover\:bg-emerald-300\/30:hover {
  background-color: rgb(110 231 183 / 0.3);
}
.hover\:bg-emerald-300\/40:hover {
  background-color: rgb(110 231 183 / 0.4);
}
.hover\:bg-emerald-300\/5:hover {
  background-color: rgb(110 231 183 / 0.05);
}
.hover\:bg-emerald-300\/50:hover {
  background-color: rgb(110 231 183 / 0.5);
}
.hover\:bg-emerald-300\/60:hover {
  background-color: rgb(110 231 183 / 0.6);
}
.hover\:bg-emerald-300\/70:hover {
  background-color: rgb(110 231 183 / 0.7);
}
.hover\:bg-emerald-300\/80:hover {
  background-color: rgb(110 231 183 / 0.8);
}
.hover\:bg-emerald-300\/90:hover {
  background-color: rgb(110 231 183 / 0.9);
}
.hover\:bg-emerald-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(52 211 153 / var(--tw-bg-opacity, 1));
}
.hover\:bg-emerald-400\/10:hover {
  background-color: rgb(52 211 153 / 0.1);
}
.hover\:bg-emerald-400\/20:hover {
  background-color: rgb(52 211 153 / 0.2);
}
.hover\:bg-emerald-400\/30:hover {
  background-color: rgb(52 211 153 / 0.3);
}
.hover\:bg-emerald-400\/40:hover {
  background-color: rgb(52 211 153 / 0.4);
}
.hover\:bg-emerald-400\/5:hover {
  background-color: rgb(52 211 153 / 0.05);
}
.hover\:bg-emerald-400\/50:hover {
  background-color: rgb(52 211 153 / 0.5);
}
.hover\:bg-emerald-400\/60:hover {
  background-color: rgb(52 211 153 / 0.6);
}
.hover\:bg-emerald-400\/70:hover {
  background-color: rgb(52 211 153 / 0.7);
}
.hover\:bg-emerald-400\/80:hover {
  background-color: rgb(52 211 153 / 0.8);
}
.hover\:bg-emerald-400\/90:hover {
  background-color: rgb(52 211 153 / 0.9);
}
.hover\:bg-emerald-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(236 253 245 / var(--tw-bg-opacity, 1));
}
.hover\:bg-emerald-50\/10:hover {
  background-color: rgb(236 253 245 / 0.1);
}
.hover\:bg-emerald-50\/20:hover {
  background-color: rgb(236 253 245 / 0.2);
}
.hover\:bg-emerald-50\/30:hover {
  background-color: rgb(236 253 245 / 0.3);
}
.hover\:bg-emerald-50\/40:hover {
  background-color: rgb(236 253 245 / 0.4);
}
.hover\:bg-emerald-50\/5:hover {
  background-color: rgb(236 253 245 / 0.05);
}
.hover\:bg-emerald-50\/50:hover {
  background-color: rgb(236 253 245 / 0.5);
}
.hover\:bg-emerald-50\/60:hover {
  background-color: rgb(236 253 245 / 0.6);
}
.hover\:bg-emerald-50\/70:hover {
  background-color: rgb(236 253 245 / 0.7);
}
.hover\:bg-emerald-50\/80:hover {
  background-color: rgb(236 253 245 / 0.8);
}
.hover\:bg-emerald-50\/90:hover {
  background-color: rgb(236 253 245 / 0.9);
}
.hover\:bg-emerald-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(16 185 129 / var(--tw-bg-opacity, 1));
}
.hover\:bg-emerald-500\/10:hover {
  background-color: rgb(16 185 129 / 0.1);
}
.hover\:bg-emerald-500\/20:hover {
  background-color: rgb(16 185 129 / 0.2);
}
.hover\:bg-emerald-500\/30:hover {
  background-color: rgb(16 185 129 / 0.3);
}
.hover\:bg-emerald-500\/40:hover {
  background-color: rgb(16 185 129 / 0.4);
}
.hover\:bg-emerald-500\/5:hover {
  background-color: rgb(16 185 129 / 0.05);
}
.hover\:bg-emerald-500\/50:hover {
  background-color: rgb(16 185 129 / 0.5);
}
.hover\:bg-emerald-500\/60:hover {
  background-color: rgb(16 185 129 / 0.6);
}
.hover\:bg-emerald-500\/70:hover {
  background-color: rgb(16 185 129 / 0.7);
}
.hover\:bg-emerald-500\/80:hover {
  background-color: rgb(16 185 129 / 0.8);
}
.hover\:bg-emerald-500\/90:hover {
  background-color: rgb(16 185 129 / 0.9);
}
.hover\:bg-emerald-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(5 150 105 / var(--tw-bg-opacity, 1));
}
.hover\:bg-emerald-600\/10:hover {
  background-color: rgb(5 150 105 / 0.1);
}
.hover\:bg-emerald-600\/20:hover {
  background-color: rgb(5 150 105 / 0.2);
}
.hover\:bg-emerald-600\/30:hover {
  background-color: rgb(5 150 105 / 0.3);
}
.hover\:bg-emerald-600\/40:hover {
  background-color: rgb(5 150 105 / 0.4);
}
.hover\:bg-emerald-600\/5:hover {
  background-color: rgb(5 150 105 / 0.05);
}
.hover\:bg-emerald-600\/50:hover {
  background-color: rgb(5 150 105 / 0.5);
}
.hover\:bg-emerald-600\/60:hover {
  background-color: rgb(5 150 105 / 0.6);
}
.hover\:bg-emerald-600\/70:hover {
  background-color: rgb(5 150 105 / 0.7);
}
.hover\:bg-emerald-600\/80:hover {
  background-color: rgb(5 150 105 / 0.8);
}
.hover\:bg-emerald-600\/90:hover {
  background-color: rgb(5 150 105 / 0.9);
}
.hover\:bg-emerald-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(4 120 87 / var(--tw-bg-opacity, 1));
}
.hover\:bg-emerald-700\/10:hover {
  background-color: rgb(4 120 87 / 0.1);
}
.hover\:bg-emerald-700\/20:hover {
  background-color: rgb(4 120 87 / 0.2);
}
.hover\:bg-emerald-700\/30:hover {
  background-color: rgb(4 120 87 / 0.3);
}
.hover\:bg-emerald-700\/40:hover {
  background-color: rgb(4 120 87 / 0.4);
}
.hover\:bg-emerald-700\/5:hover {
  background-color: rgb(4 120 87 / 0.05);
}
.hover\:bg-emerald-700\/50:hover {
  background-color: rgb(4 120 87 / 0.5);
}
.hover\:bg-emerald-700\/60:hover {
  background-color: rgb(4 120 87 / 0.6);
}
.hover\:bg-emerald-700\/70:hover {
  background-color: rgb(4 120 87 / 0.7);
}
.hover\:bg-emerald-700\/80:hover {
  background-color: rgb(4 120 87 / 0.8);
}
.hover\:bg-emerald-700\/90:hover {
  background-color: rgb(4 120 87 / 0.9);
}
.hover\:bg-emerald-800:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(6 95 70 / var(--tw-bg-opacity, 1));
}
.hover\:bg-emerald-800\/10:hover {
  background-color: rgb(6 95 70 / 0.1);
}
.hover\:bg-emerald-800\/20:hover {
  background-color: rgb(6 95 70 / 0.2);
}
.hover\:bg-emerald-800\/30:hover {
  background-color: rgb(6 95 70 / 0.3);
}
.hover\:bg-emerald-800\/40:hover {
  background-color: rgb(6 95 70 / 0.4);
}
.hover\:bg-emerald-800\/5:hover {
  background-color: rgb(6 95 70 / 0.05);
}
.hover\:bg-emerald-800\/50:hover {
  background-color: rgb(6 95 70 / 0.5);
}
.hover\:bg-emerald-800\/60:hover {
  background-color: rgb(6 95 70 / 0.6);
}
.hover\:bg-emerald-800\/70:hover {
  background-color: rgb(6 95 70 / 0.7);
}
.hover\:bg-emerald-800\/80:hover {
  background-color: rgb(6 95 70 / 0.8);
}
.hover\:bg-emerald-800\/90:hover {
  background-color: rgb(6 95 70 / 0.9);
}
.hover\:bg-emerald-900:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(6 78 59 / var(--tw-bg-opacity, 1));
}
.hover\:bg-emerald-900\/10:hover {
  background-color: rgb(6 78 59 / 0.1);
}
.hover\:bg-emerald-900\/20:hover {
  background-color: rgb(6 78 59 / 0.2);
}
.hover\:bg-emerald-900\/30:hover {
  background-color: rgb(6 78 59 / 0.3);
}
.hover\:bg-emerald-900\/40:hover {
  background-color: rgb(6 78 59 / 0.4);
}
.hover\:bg-emerald-900\/5:hover {
  background-color: rgb(6 78 59 / 0.05);
}
.hover\:bg-emerald-900\/50:hover {
  background-color: rgb(6 78 59 / 0.5);
}
.hover\:bg-emerald-900\/60:hover {
  background-color: rgb(6 78 59 / 0.6);
}
.hover\:bg-emerald-900\/70:hover {
  background-color: rgb(6 78 59 / 0.7);
}
.hover\:bg-emerald-900\/80:hover {
  background-color: rgb(6 78 59 / 0.8);
}
.hover\:bg-emerald-900\/90:hover {
  background-color: rgb(6 78 59 / 0.9);
}
.hover\:bg-emerald-950:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(2 44 34 / var(--tw-bg-opacity, 1));
}
.hover\:bg-emerald-950\/10:hover {
  background-color: rgb(2 44 34 / 0.1);
}
.hover\:bg-emerald-950\/20:hover {
  background-color: rgb(2 44 34 / 0.2);
}
.hover\:bg-emerald-950\/30:hover {
  background-color: rgb(2 44 34 / 0.3);
}
.hover\:bg-emerald-950\/40:hover {
  background-color: rgb(2 44 34 / 0.4);
}
.hover\:bg-emerald-950\/5:hover {
  background-color: rgb(2 44 34 / 0.05);
}
.hover\:bg-emerald-950\/50:hover {
  background-color: rgb(2 44 34 / 0.5);
}
.hover\:bg-emerald-950\/60:hover {
  background-color: rgb(2 44 34 / 0.6);
}
.hover\:bg-emerald-950\/70:hover {
  background-color: rgb(2 44 34 / 0.7);
}
.hover\:bg-emerald-950\/80:hover {
  background-color: rgb(2 44 34 / 0.8);
}
.hover\:bg-emerald-950\/90:hover {
  background-color: rgb(2 44 34 / 0.9);
}
.hover\:bg-fuchsia-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(250 232 255 / var(--tw-bg-opacity, 1));
}
.hover\:bg-fuchsia-100\/10:hover {
  background-color: rgb(250 232 255 / 0.1);
}
.hover\:bg-fuchsia-100\/20:hover {
  background-color: rgb(250 232 255 / 0.2);
}
.hover\:bg-fuchsia-100\/30:hover {
  background-color: rgb(250 232 255 / 0.3);
}
.hover\:bg-fuchsia-100\/40:hover {
  background-color: rgb(250 232 255 / 0.4);
}
.hover\:bg-fuchsia-100\/5:hover {
  background-color: rgb(250 232 255 / 0.05);
}
.hover\:bg-fuchsia-100\/50:hover {
  background-color: rgb(250 232 255 / 0.5);
}
.hover\:bg-fuchsia-100\/60:hover {
  background-color: rgb(250 232 255 / 0.6);
}
.hover\:bg-fuchsia-100\/70:hover {
  background-color: rgb(250 232 255 / 0.7);
}
.hover\:bg-fuchsia-100\/80:hover {
  background-color: rgb(250 232 255 / 0.8);
}
.hover\:bg-fuchsia-100\/90:hover {
  background-color: rgb(250 232 255 / 0.9);
}
.hover\:bg-fuchsia-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(245 208 254 / var(--tw-bg-opacity, 1));
}
.hover\:bg-fuchsia-200\/10:hover {
  background-color: rgb(245 208 254 / 0.1);
}
.hover\:bg-fuchsia-200\/20:hover {
  background-color: rgb(245 208 254 / 0.2);
}
.hover\:bg-fuchsia-200\/30:hover {
  background-color: rgb(245 208 254 / 0.3);
}
.hover\:bg-fuchsia-200\/40:hover {
  background-color: rgb(245 208 254 / 0.4);
}
.hover\:bg-fuchsia-200\/5:hover {
  background-color: rgb(245 208 254 / 0.05);
}
.hover\:bg-fuchsia-200\/50:hover {
  background-color: rgb(245 208 254 / 0.5);
}
.hover\:bg-fuchsia-200\/60:hover {
  background-color: rgb(245 208 254 / 0.6);
}
.hover\:bg-fuchsia-200\/70:hover {
  background-color: rgb(245 208 254 / 0.7);
}
.hover\:bg-fuchsia-200\/80:hover {
  background-color: rgb(245 208 254 / 0.8);
}
.hover\:bg-fuchsia-200\/90:hover {
  background-color: rgb(245 208 254 / 0.9);
}
.hover\:bg-fuchsia-300:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(240 171 252 / var(--tw-bg-opacity, 1));
}
.hover\:bg-fuchsia-300\/10:hover {
  background-color: rgb(240 171 252 / 0.1);
}
.hover\:bg-fuchsia-300\/20:hover {
  background-color: rgb(240 171 252 / 0.2);
}
.hover\:bg-fuchsia-300\/30:hover {
  background-color: rgb(240 171 252 / 0.3);
}
.hover\:bg-fuchsia-300\/40:hover {
  background-color: rgb(240 171 252 / 0.4);
}
.hover\:bg-fuchsia-300\/5:hover {
  background-color: rgb(240 171 252 / 0.05);
}
.hover\:bg-fuchsia-300\/50:hover {
  background-color: rgb(240 171 252 / 0.5);
}
.hover\:bg-fuchsia-300\/60:hover {
  background-color: rgb(240 171 252 / 0.6);
}
.hover\:bg-fuchsia-300\/70:hover {
  background-color: rgb(240 171 252 / 0.7);
}
.hover\:bg-fuchsia-300\/80:hover {
  background-color: rgb(240 171 252 / 0.8);
}
.hover\:bg-fuchsia-300\/90:hover {
  background-color: rgb(240 171 252 / 0.9);
}
.hover\:bg-fuchsia-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(232 121 249 / var(--tw-bg-opacity, 1));
}
.hover\:bg-fuchsia-400\/10:hover {
  background-color: rgb(232 121 249 / 0.1);
}
.hover\:bg-fuchsia-400\/20:hover {
  background-color: rgb(232 121 249 / 0.2);
}
.hover\:bg-fuchsia-400\/30:hover {
  background-color: rgb(232 121 249 / 0.3);
}
.hover\:bg-fuchsia-400\/40:hover {
  background-color: rgb(232 121 249 / 0.4);
}
.hover\:bg-fuchsia-400\/5:hover {
  background-color: rgb(232 121 249 / 0.05);
}
.hover\:bg-fuchsia-400\/50:hover {
  background-color: rgb(232 121 249 / 0.5);
}
.hover\:bg-fuchsia-400\/60:hover {
  background-color: rgb(232 121 249 / 0.6);
}
.hover\:bg-fuchsia-400\/70:hover {
  background-color: rgb(232 121 249 / 0.7);
}
.hover\:bg-fuchsia-400\/80:hover {
  background-color: rgb(232 121 249 / 0.8);
}
.hover\:bg-fuchsia-400\/90:hover {
  background-color: rgb(232 121 249 / 0.9);
}
.hover\:bg-fuchsia-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(253 244 255 / var(--tw-bg-opacity, 1));
}
.hover\:bg-fuchsia-50\/10:hover {
  background-color: rgb(253 244 255 / 0.1);
}
.hover\:bg-fuchsia-50\/20:hover {
  background-color: rgb(253 244 255 / 0.2);
}
.hover\:bg-fuchsia-50\/30:hover {
  background-color: rgb(253 244 255 / 0.3);
}
.hover\:bg-fuchsia-50\/40:hover {
  background-color: rgb(253 244 255 / 0.4);
}
.hover\:bg-fuchsia-50\/5:hover {
  background-color: rgb(253 244 255 / 0.05);
}
.hover\:bg-fuchsia-50\/50:hover {
  background-color: rgb(253 244 255 / 0.5);
}
.hover\:bg-fuchsia-50\/60:hover {
  background-color: rgb(253 244 255 / 0.6);
}
.hover\:bg-fuchsia-50\/70:hover {
  background-color: rgb(253 244 255 / 0.7);
}
.hover\:bg-fuchsia-50\/80:hover {
  background-color: rgb(253 244 255 / 0.8);
}
.hover\:bg-fuchsia-50\/90:hover {
  background-color: rgb(253 244 255 / 0.9);
}
.hover\:bg-fuchsia-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(217 70 239 / var(--tw-bg-opacity, 1));
}
.hover\:bg-fuchsia-500\/10:hover {
  background-color: rgb(217 70 239 / 0.1);
}
.hover\:bg-fuchsia-500\/20:hover {
  background-color: rgb(217 70 239 / 0.2);
}
.hover\:bg-fuchsia-500\/30:hover {
  background-color: rgb(217 70 239 / 0.3);
}
.hover\:bg-fuchsia-500\/40:hover {
  background-color: rgb(217 70 239 / 0.4);
}
.hover\:bg-fuchsia-500\/5:hover {
  background-color: rgb(217 70 239 / 0.05);
}
.hover\:bg-fuchsia-500\/50:hover {
  background-color: rgb(217 70 239 / 0.5);
}
.hover\:bg-fuchsia-500\/60:hover {
  background-color: rgb(217 70 239 / 0.6);
}
.hover\:bg-fuchsia-500\/70:hover {
  background-color: rgb(217 70 239 / 0.7);
}
.hover\:bg-fuchsia-500\/80:hover {
  background-color: rgb(217 70 239 / 0.8);
}
.hover\:bg-fuchsia-500\/90:hover {
  background-color: rgb(217 70 239 / 0.9);
}
.hover\:bg-fuchsia-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(192 38 211 / var(--tw-bg-opacity, 1));
}
.hover\:bg-fuchsia-600\/10:hover {
  background-color: rgb(192 38 211 / 0.1);
}
.hover\:bg-fuchsia-600\/20:hover {
  background-color: rgb(192 38 211 / 0.2);
}
.hover\:bg-fuchsia-600\/30:hover {
  background-color: rgb(192 38 211 / 0.3);
}
.hover\:bg-fuchsia-600\/40:hover {
  background-color: rgb(192 38 211 / 0.4);
}
.hover\:bg-fuchsia-600\/5:hover {
  background-color: rgb(192 38 211 / 0.05);
}
.hover\:bg-fuchsia-600\/50:hover {
  background-color: rgb(192 38 211 / 0.5);
}
.hover\:bg-fuchsia-600\/60:hover {
  background-color: rgb(192 38 211 / 0.6);
}
.hover\:bg-fuchsia-600\/70:hover {
  background-color: rgb(192 38 211 / 0.7);
}
.hover\:bg-fuchsia-600\/80:hover {
  background-color: rgb(192 38 211 / 0.8);
}
.hover\:bg-fuchsia-600\/90:hover {
  background-color: rgb(192 38 211 / 0.9);
}
.hover\:bg-fuchsia-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(162 28 175 / var(--tw-bg-opacity, 1));
}
.hover\:bg-fuchsia-700\/10:hover {
  background-color: rgb(162 28 175 / 0.1);
}
.hover\:bg-fuchsia-700\/20:hover {
  background-color: rgb(162 28 175 / 0.2);
}
.hover\:bg-fuchsia-700\/30:hover {
  background-color: rgb(162 28 175 / 0.3);
}
.hover\:bg-fuchsia-700\/40:hover {
  background-color: rgb(162 28 175 / 0.4);
}
.hover\:bg-fuchsia-700\/5:hover {
  background-color: rgb(162 28 175 / 0.05);
}
.hover\:bg-fuchsia-700\/50:hover {
  background-color: rgb(162 28 175 / 0.5);
}
.hover\:bg-fuchsia-700\/60:hover {
  background-color: rgb(162 28 175 / 0.6);
}
.hover\:bg-fuchsia-700\/70:hover {
  background-color: rgb(162 28 175 / 0.7);
}
.hover\:bg-fuchsia-700\/80:hover {
  background-color: rgb(162 28 175 / 0.8);
}
.hover\:bg-fuchsia-700\/90:hover {
  background-color: rgb(162 28 175 / 0.9);
}
.hover\:bg-fuchsia-800:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(134 25 143 / var(--tw-bg-opacity, 1));
}
.hover\:bg-fuchsia-800\/10:hover {
  background-color: rgb(134 25 143 / 0.1);
}
.hover\:bg-fuchsia-800\/20:hover {
  background-color: rgb(134 25 143 / 0.2);
}
.hover\:bg-fuchsia-800\/30:hover {
  background-color: rgb(134 25 143 / 0.3);
}
.hover\:bg-fuchsia-800\/40:hover {
  background-color: rgb(134 25 143 / 0.4);
}
.hover\:bg-fuchsia-800\/5:hover {
  background-color: rgb(134 25 143 / 0.05);
}
.hover\:bg-fuchsia-800\/50:hover {
  background-color: rgb(134 25 143 / 0.5);
}
.hover\:bg-fuchsia-800\/60:hover {
  background-color: rgb(134 25 143 / 0.6);
}
.hover\:bg-fuchsia-800\/70:hover {
  background-color: rgb(134 25 143 / 0.7);
}
.hover\:bg-fuchsia-800\/80:hover {
  background-color: rgb(134 25 143 / 0.8);
}
.hover\:bg-fuchsia-800\/90:hover {
  background-color: rgb(134 25 143 / 0.9);
}
.hover\:bg-fuchsia-900:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(112 26 117 / var(--tw-bg-opacity, 1));
}
.hover\:bg-fuchsia-900\/10:hover {
  background-color: rgb(112 26 117 / 0.1);
}
.hover\:bg-fuchsia-900\/20:hover {
  background-color: rgb(112 26 117 / 0.2);
}
.hover\:bg-fuchsia-900\/30:hover {
  background-color: rgb(112 26 117 / 0.3);
}
.hover\:bg-fuchsia-900\/40:hover {
  background-color: rgb(112 26 117 / 0.4);
}
.hover\:bg-fuchsia-900\/5:hover {
  background-color: rgb(112 26 117 / 0.05);
}
.hover\:bg-fuchsia-900\/50:hover {
  background-color: rgb(112 26 117 / 0.5);
}
.hover\:bg-fuchsia-900\/60:hover {
  background-color: rgb(112 26 117 / 0.6);
}
.hover\:bg-fuchsia-900\/70:hover {
  background-color: rgb(112 26 117 / 0.7);
}
.hover\:bg-fuchsia-900\/80:hover {
  background-color: rgb(112 26 117 / 0.8);
}
.hover\:bg-fuchsia-900\/90:hover {
  background-color: rgb(112 26 117 / 0.9);
}
.hover\:bg-fuchsia-950:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(74 4 78 / var(--tw-bg-opacity, 1));
}
.hover\:bg-fuchsia-950\/10:hover {
  background-color: rgb(74 4 78 / 0.1);
}
.hover\:bg-fuchsia-950\/20:hover {
  background-color: rgb(74 4 78 / 0.2);
}
.hover\:bg-fuchsia-950\/30:hover {
  background-color: rgb(74 4 78 / 0.3);
}
.hover\:bg-fuchsia-950\/40:hover {
  background-color: rgb(74 4 78 / 0.4);
}
.hover\:bg-fuchsia-950\/5:hover {
  background-color: rgb(74 4 78 / 0.05);
}
.hover\:bg-fuchsia-950\/50:hover {
  background-color: rgb(74 4 78 / 0.5);
}
.hover\:bg-fuchsia-950\/60:hover {
  background-color: rgb(74 4 78 / 0.6);
}
.hover\:bg-fuchsia-950\/70:hover {
  background-color: rgb(74 4 78 / 0.7);
}
.hover\:bg-fuchsia-950\/80:hover {
  background-color: rgb(74 4 78 / 0.8);
}
.hover\:bg-fuchsia-950\/90:hover {
  background-color: rgb(74 4 78 / 0.9);
}
.hover\:bg-gray-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-100\/10:hover {
  background-color: rgb(243 244 246 / 0.1);
}
.hover\:bg-gray-100\/20:hover {
  background-color: rgb(243 244 246 / 0.2);
}
.hover\:bg-gray-100\/30:hover {
  background-color: rgb(243 244 246 / 0.3);
}
.hover\:bg-gray-100\/40:hover {
  background-color: rgb(243 244 246 / 0.4);
}
.hover\:bg-gray-100\/5:hover {
  background-color: rgb(243 244 246 / 0.05);
}
.hover\:bg-gray-100\/50:hover {
  background-color: rgb(243 244 246 / 0.5);
}
.hover\:bg-gray-100\/60:hover {
  background-color: rgb(243 244 246 / 0.6);
}
.hover\:bg-gray-100\/70:hover {
  background-color: rgb(243 244 246 / 0.7);
}
.hover\:bg-gray-100\/80:hover {
  background-color: rgb(243 244 246 / 0.8);
}
.hover\:bg-gray-100\/90:hover {
  background-color: rgb(243 244 246 / 0.9);
}
.hover\:bg-gray-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-200\/10:hover {
  background-color: rgb(229 231 235 / 0.1);
}
.hover\:bg-gray-200\/20:hover {
  background-color: rgb(229 231 235 / 0.2);
}
.hover\:bg-gray-200\/30:hover {
  background-color: rgb(229 231 235 / 0.3);
}
.hover\:bg-gray-200\/40:hover {
  background-color: rgb(229 231 235 / 0.4);
}
.hover\:bg-gray-200\/5:hover {
  background-color: rgb(229 231 235 / 0.05);
}
.hover\:bg-gray-200\/50:hover {
  background-color: rgb(229 231 235 / 0.5);
}
.hover\:bg-gray-200\/60:hover {
  background-color: rgb(229 231 235 / 0.6);
}
.hover\:bg-gray-200\/70:hover {
  background-color: rgb(229 231 235 / 0.7);
}
.hover\:bg-gray-200\/80:hover {
  background-color: rgb(229 231 235 / 0.8);
}
.hover\:bg-gray-200\/90:hover {
  background-color: rgb(229 231 235 / 0.9);
}
.hover\:bg-gray-300:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-300\/10:hover {
  background-color: rgb(209 213 219 / 0.1);
}
.hover\:bg-gray-300\/20:hover {
  background-color: rgb(209 213 219 / 0.2);
}
.hover\:bg-gray-300\/30:hover {
  background-color: rgb(209 213 219 / 0.3);
}
.hover\:bg-gray-300\/40:hover {
  background-color: rgb(209 213 219 / 0.4);
}
.hover\:bg-gray-300\/5:hover {
  background-color: rgb(209 213 219 / 0.05);
}
.hover\:bg-gray-300\/50:hover {
  background-color: rgb(209 213 219 / 0.5);
}
.hover\:bg-gray-300\/60:hover {
  background-color: rgb(209 213 219 / 0.6);
}
.hover\:bg-gray-300\/70:hover {
  background-color: rgb(209 213 219 / 0.7);
}
.hover\:bg-gray-300\/80:hover {
  background-color: rgb(209 213 219 / 0.8);
}
.hover\:bg-gray-300\/90:hover {
  background-color: rgb(209 213 219 / 0.9);
}
.hover\:bg-gray-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(156 163 175 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-400\/10:hover {
  background-color: rgb(156 163 175 / 0.1);
}
.hover\:bg-gray-400\/20:hover {
  background-color: rgb(156 163 175 / 0.2);
}
.hover\:bg-gray-400\/30:hover {
  background-color: rgb(156 163 175 / 0.3);
}
.hover\:bg-gray-400\/40:hover {
  background-color: rgb(156 163 175 / 0.4);
}
.hover\:bg-gray-400\/5:hover {
  background-color: rgb(156 163 175 / 0.05);
}
.hover\:bg-gray-400\/50:hover {
  background-color: rgb(156 163 175 / 0.5);
}
.hover\:bg-gray-400\/60:hover {
  background-color: rgb(156 163 175 / 0.6);
}
.hover\:bg-gray-400\/70:hover {
  background-color: rgb(156 163 175 / 0.7);
}
.hover\:bg-gray-400\/80:hover {
  background-color: rgb(156 163 175 / 0.8);
}
.hover\:bg-gray-400\/90:hover {
  background-color: rgb(156 163 175 / 0.9);
}
.hover\:bg-gray-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-50\/10:hover {
  background-color: rgb(249 250 251 / 0.1);
}
.hover\:bg-gray-50\/20:hover {
  background-color: rgb(249 250 251 / 0.2);
}
.hover\:bg-gray-50\/30:hover {
  background-color: rgb(249 250 251 / 0.3);
}
.hover\:bg-gray-50\/40:hover {
  background-color: rgb(249 250 251 / 0.4);
}
.hover\:bg-gray-50\/5:hover {
  background-color: rgb(249 250 251 / 0.05);
}
.hover\:bg-gray-50\/50:hover {
  background-color: rgb(249 250 251 / 0.5);
}
.hover\:bg-gray-50\/60:hover {
  background-color: rgb(249 250 251 / 0.6);
}
.hover\:bg-gray-50\/70:hover {
  background-color: rgb(249 250 251 / 0.7);
}
.hover\:bg-gray-50\/80:hover {
  background-color: rgb(249 250 251 / 0.8);
}
.hover\:bg-gray-50\/90:hover {
  background-color: rgb(249 250 251 / 0.9);
}
.hover\:bg-gray-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(107 114 128 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-500\/10:hover {
  background-color: rgb(107 114 128 / 0.1);
}
.hover\:bg-gray-500\/20:hover {
  background-color: rgb(107 114 128 / 0.2);
}
.hover\:bg-gray-500\/30:hover {
  background-color: rgb(107 114 128 / 0.3);
}
.hover\:bg-gray-500\/40:hover {
  background-color: rgb(107 114 128 / 0.4);
}
.hover\:bg-gray-500\/5:hover {
  background-color: rgb(107 114 128 / 0.05);
}
.hover\:bg-gray-500\/50:hover {
  background-color: rgb(107 114 128 / 0.5);
}
.hover\:bg-gray-500\/60:hover {
  background-color: rgb(107 114 128 / 0.6);
}
.hover\:bg-gray-500\/70:hover {
  background-color: rgb(107 114 128 / 0.7);
}
.hover\:bg-gray-500\/80:hover {
  background-color: rgb(107 114 128 / 0.8);
}
.hover\:bg-gray-500\/90:hover {
  background-color: rgb(107 114 128 / 0.9);
}
.hover\:bg-gray-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-600\/10:hover {
  background-color: rgb(75 85 99 / 0.1);
}
.hover\:bg-gray-600\/20:hover {
  background-color: rgb(75 85 99 / 0.2);
}
.hover\:bg-gray-600\/30:hover {
  background-color: rgb(75 85 99 / 0.3);
}
.hover\:bg-gray-600\/40:hover {
  background-color: rgb(75 85 99 / 0.4);
}
.hover\:bg-gray-600\/5:hover {
  background-color: rgb(75 85 99 / 0.05);
}
.hover\:bg-gray-600\/50:hover {
  background-color: rgb(75 85 99 / 0.5);
}
.hover\:bg-gray-600\/60:hover {
  background-color: rgb(75 85 99 / 0.6);
}
.hover\:bg-gray-600\/70:hover {
  background-color: rgb(75 85 99 / 0.7);
}
.hover\:bg-gray-600\/80:hover {
  background-color: rgb(75 85 99 / 0.8);
}
.hover\:bg-gray-600\/90:hover {
  background-color: rgb(75 85 99 / 0.9);
}
.hover\:bg-gray-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-700\/10:hover {
  background-color: rgb(55 65 81 / 0.1);
}
.hover\:bg-gray-700\/20:hover {
  background-color: rgb(55 65 81 / 0.2);
}
.hover\:bg-gray-700\/30:hover {
  background-color: rgb(55 65 81 / 0.3);
}
.hover\:bg-gray-700\/40:hover {
  background-color: rgb(55 65 81 / 0.4);
}
.hover\:bg-gray-700\/5:hover {
  background-color: rgb(55 65 81 / 0.05);
}
.hover\:bg-gray-700\/50:hover {
  background-color: rgb(55 65 81 / 0.5);
}
.hover\:bg-gray-700\/60:hover {
  background-color: rgb(55 65 81 / 0.6);
}
.hover\:bg-gray-700\/70:hover {
  background-color: rgb(55 65 81 / 0.7);
}
.hover\:bg-gray-700\/80:hover {
  background-color: rgb(55 65 81 / 0.8);
}
.hover\:bg-gray-700\/90:hover {
  background-color: rgb(55 65 81 / 0.9);
}
.hover\:bg-gray-800:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-800\/10:hover {
  background-color: rgb(31 41 55 / 0.1);
}
.hover\:bg-gray-800\/20:hover {
  background-color: rgb(31 41 55 / 0.2);
}
.hover\:bg-gray-800\/30:hover {
  background-color: rgb(31 41 55 / 0.3);
}
.hover\:bg-gray-800\/40:hover {
  background-color: rgb(31 41 55 / 0.4);
}
.hover\:bg-gray-800\/5:hover {
  background-color: rgb(31 41 55 / 0.05);
}
.hover\:bg-gray-800\/50:hover {
  background-color: rgb(31 41 55 / 0.5);
}
.hover\:bg-gray-800\/60:hover {
  background-color: rgb(31 41 55 / 0.6);
}
.hover\:bg-gray-800\/70:hover {
  background-color: rgb(31 41 55 / 0.7);
}
.hover\:bg-gray-800\/80:hover {
  background-color: rgb(31 41 55 / 0.8);
}
.hover\:bg-gray-800\/90:hover {
  background-color: rgb(31 41 55 / 0.9);
}
.hover\:bg-gray-900:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-900\/10:hover {
  background-color: rgb(17 24 39 / 0.1);
}
.hover\:bg-gray-900\/20:hover {
  background-color: rgb(17 24 39 / 0.2);
}
.hover\:bg-gray-900\/30:hover {
  background-color: rgb(17 24 39 / 0.3);
}
.hover\:bg-gray-900\/40:hover {
  background-color: rgb(17 24 39 / 0.4);
}
.hover\:bg-gray-900\/5:hover {
  background-color: rgb(17 24 39 / 0.05);
}
.hover\:bg-gray-900\/50:hover {
  background-color: rgb(17 24 39 / 0.5);
}
.hover\:bg-gray-900\/60:hover {
  background-color: rgb(17 24 39 / 0.6);
}
.hover\:bg-gray-900\/70:hover {
  background-color: rgb(17 24 39 / 0.7);
}
.hover\:bg-gray-900\/80:hover {
  background-color: rgb(17 24 39 / 0.8);
}
.hover\:bg-gray-900\/90:hover {
  background-color: rgb(17 24 39 / 0.9);
}
.hover\:bg-gray-950:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(3 7 18 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-950\/10:hover {
  background-color: rgb(3 7 18 / 0.1);
}
.hover\:bg-gray-950\/20:hover {
  background-color: rgb(3 7 18 / 0.2);
}
.hover\:bg-gray-950\/30:hover {
  background-color: rgb(3 7 18 / 0.3);
}
.hover\:bg-gray-950\/40:hover {
  background-color: rgb(3 7 18 / 0.4);
}
.hover\:bg-gray-950\/5:hover {
  background-color: rgb(3 7 18 / 0.05);
}
.hover\:bg-gray-950\/50:hover {
  background-color: rgb(3 7 18 / 0.5);
}
.hover\:bg-gray-950\/60:hover {
  background-color: rgb(3 7 18 / 0.6);
}
.hover\:bg-gray-950\/70:hover {
  background-color: rgb(3 7 18 / 0.7);
}
.hover\:bg-gray-950\/80:hover {
  background-color: rgb(3 7 18 / 0.8);
}
.hover\:bg-gray-950\/90:hover {
  background-color: rgb(3 7 18 / 0.9);
}
.hover\:bg-green-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
}
.hover\:bg-green-100\/10:hover {
  background-color: rgb(220 252 231 / 0.1);
}
.hover\:bg-green-100\/20:hover {
  background-color: rgb(220 252 231 / 0.2);
}
.hover\:bg-green-100\/30:hover {
  background-color: rgb(220 252 231 / 0.3);
}
.hover\:bg-green-100\/40:hover {
  background-color: rgb(220 252 231 / 0.4);
}
.hover\:bg-green-100\/5:hover {
  background-color: rgb(220 252 231 / 0.05);
}
.hover\:bg-green-100\/50:hover {
  background-color: rgb(220 252 231 / 0.5);
}
.hover\:bg-green-100\/60:hover {
  background-color: rgb(220 252 231 / 0.6);
}
.hover\:bg-green-100\/70:hover {
  background-color: rgb(220 252 231 / 0.7);
}
.hover\:bg-green-100\/80:hover {
  background-color: rgb(220 252 231 / 0.8);
}
.hover\:bg-green-100\/90:hover {
  background-color: rgb(220 252 231 / 0.9);
}
.hover\:bg-green-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(187 247 208 / var(--tw-bg-opacity, 1));
}
.hover\:bg-green-200\/10:hover {
  background-color: rgb(187 247 208 / 0.1);
}
.hover\:bg-green-200\/20:hover {
  background-color: rgb(187 247 208 / 0.2);
}
.hover\:bg-green-200\/30:hover {
  background-color: rgb(187 247 208 / 0.3);
}
.hover\:bg-green-200\/40:hover {
  background-color: rgb(187 247 208 / 0.4);
}
.hover\:bg-green-200\/5:hover {
  background-color: rgb(187 247 208 / 0.05);
}
.hover\:bg-green-200\/50:hover {
  background-color: rgb(187 247 208 / 0.5);
}
.hover\:bg-green-200\/60:hover {
  background-color: rgb(187 247 208 / 0.6);
}
.hover\:bg-green-200\/70:hover {
  background-color: rgb(187 247 208 / 0.7);
}
.hover\:bg-green-200\/80:hover {
  background-color: rgb(187 247 208 / 0.8);
}
.hover\:bg-green-200\/90:hover {
  background-color: rgb(187 247 208 / 0.9);
}
.hover\:bg-green-300:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(134 239 172 / var(--tw-bg-opacity, 1));
}
.hover\:bg-green-300\/10:hover {
  background-color: rgb(134 239 172 / 0.1);
}
.hover\:bg-green-300\/20:hover {
  background-color: rgb(134 239 172 / 0.2);
}
.hover\:bg-green-300\/30:hover {
  background-color: rgb(134 239 172 / 0.3);
}
.hover\:bg-green-300\/40:hover {
  background-color: rgb(134 239 172 / 0.4);
}
.hover\:bg-green-300\/5:hover {
  background-color: rgb(134 239 172 / 0.05);
}
.hover\:bg-green-300\/50:hover {
  background-color: rgb(134 239 172 / 0.5);
}
.hover\:bg-green-300\/60:hover {
  background-color: rgb(134 239 172 / 0.6);
}
.hover\:bg-green-300\/70:hover {
  background-color: rgb(134 239 172 / 0.7);
}
.hover\:bg-green-300\/80:hover {
  background-color: rgb(134 239 172 / 0.8);
}
.hover\:bg-green-300\/90:hover {
  background-color: rgb(134 239 172 / 0.9);
}
.hover\:bg-green-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(74 222 128 / var(--tw-bg-opacity, 1));
}
.hover\:bg-green-400\/10:hover {
  background-color: rgb(74 222 128 / 0.1);
}
.hover\:bg-green-400\/20:hover {
  background-color: rgb(74 222 128 / 0.2);
}
.hover\:bg-green-400\/30:hover {
  background-color: rgb(74 222 128 / 0.3);
}
.hover\:bg-green-400\/40:hover {
  background-color: rgb(74 222 128 / 0.4);
}
.hover\:bg-green-400\/5:hover {
  background-color: rgb(74 222 128 / 0.05);
}
.hover\:bg-green-400\/50:hover {
  background-color: rgb(74 222 128 / 0.5);
}
.hover\:bg-green-400\/60:hover {
  background-color: rgb(74 222 128 / 0.6);
}
.hover\:bg-green-400\/70:hover {
  background-color: rgb(74 222 128 / 0.7);
}
.hover\:bg-green-400\/80:hover {
  background-color: rgb(74 222 128 / 0.8);
}
.hover\:bg-green-400\/90:hover {
  background-color: rgb(74 222 128 / 0.9);
}
.hover\:bg-green-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
}
.hover\:bg-green-50\/10:hover {
  background-color: rgb(240 253 244 / 0.1);
}
.hover\:bg-green-50\/20:hover {
  background-color: rgb(240 253 244 / 0.2);
}
.hover\:bg-green-50\/30:hover {
  background-color: rgb(240 253 244 / 0.3);
}
.hover\:bg-green-50\/40:hover {
  background-color: rgb(240 253 244 / 0.4);
}
.hover\:bg-green-50\/5:hover {
  background-color: rgb(240 253 244 / 0.05);
}
.hover\:bg-green-50\/50:hover {
  background-color: rgb(240 253 244 / 0.5);
}
.hover\:bg-green-50\/60:hover {
  background-color: rgb(240 253 244 / 0.6);
}
.hover\:bg-green-50\/70:hover {
  background-color: rgb(240 253 244 / 0.7);
}
.hover\:bg-green-50\/80:hover {
  background-color: rgb(240 253 244 / 0.8);
}
.hover\:bg-green-50\/90:hover {
  background-color: rgb(240 253 244 / 0.9);
}
.hover\:bg-green-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
}
.hover\:bg-green-500\/10:hover {
  background-color: rgb(34 197 94 / 0.1);
}
.hover\:bg-green-500\/20:hover {
  background-color: rgb(34 197 94 / 0.2);
}
.hover\:bg-green-500\/30:hover {
  background-color: rgb(34 197 94 / 0.3);
}
.hover\:bg-green-500\/40:hover {
  background-color: rgb(34 197 94 / 0.4);
}
.hover\:bg-green-500\/5:hover {
  background-color: rgb(34 197 94 / 0.05);
}
.hover\:bg-green-500\/50:hover {
  background-color: rgb(34 197 94 / 0.5);
}
.hover\:bg-green-500\/60:hover {
  background-color: rgb(34 197 94 / 0.6);
}
.hover\:bg-green-500\/70:hover {
  background-color: rgb(34 197 94 / 0.7);
}
.hover\:bg-green-500\/80:hover {
  background-color: rgb(34 197 94 / 0.8);
}
.hover\:bg-green-500\/90:hover {
  background-color: rgb(34 197 94 / 0.9);
}
.hover\:bg-green-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
}
.hover\:bg-green-600\/10:hover {
  background-color: rgb(22 163 74 / 0.1);
}
.hover\:bg-green-600\/20:hover {
  background-color: rgb(22 163 74 / 0.2);
}
.hover\:bg-green-600\/30:hover {
  background-color: rgb(22 163 74 / 0.3);
}
.hover\:bg-green-600\/40:hover {
  background-color: rgb(22 163 74 / 0.4);
}
.hover\:bg-green-600\/5:hover {
  background-color: rgb(22 163 74 / 0.05);
}
.hover\:bg-green-600\/50:hover {
  background-color: rgb(22 163 74 / 0.5);
}
.hover\:bg-green-600\/60:hover {
  background-color: rgb(22 163 74 / 0.6);
}
.hover\:bg-green-600\/70:hover {
  background-color: rgb(22 163 74 / 0.7);
}
.hover\:bg-green-600\/80:hover {
  background-color: rgb(22 163 74 / 0.8);
}
.hover\:bg-green-600\/90:hover {
  background-color: rgb(22 163 74 / 0.9);
}
.hover\:bg-green-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(21 128 61 / var(--tw-bg-opacity, 1));
}
.hover\:bg-green-700\/10:hover {
  background-color: rgb(21 128 61 / 0.1);
}
.hover\:bg-green-700\/20:hover {
  background-color: rgb(21 128 61 / 0.2);
}
.hover\:bg-green-700\/30:hover {
  background-color: rgb(21 128 61 / 0.3);
}
.hover\:bg-green-700\/40:hover {
  background-color: rgb(21 128 61 / 0.4);
}
.hover\:bg-green-700\/5:hover {
  background-color: rgb(21 128 61 / 0.05);
}
.hover\:bg-green-700\/50:hover {
  background-color: rgb(21 128 61 / 0.5);
}
.hover\:bg-green-700\/60:hover {
  background-color: rgb(21 128 61 / 0.6);
}
.hover\:bg-green-700\/70:hover {
  background-color: rgb(21 128 61 / 0.7);
}
.hover\:bg-green-700\/80:hover {
  background-color: rgb(21 128 61 / 0.8);
}
.hover\:bg-green-700\/90:hover {
  background-color: rgb(21 128 61 / 0.9);
}
.hover\:bg-green-800:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(22 101 52 / var(--tw-bg-opacity, 1));
}
.hover\:bg-green-800\/10:hover {
  background-color: rgb(22 101 52 / 0.1);
}
.hover\:bg-green-800\/20:hover {
  background-color: rgb(22 101 52 / 0.2);
}
.hover\:bg-green-800\/30:hover {
  background-color: rgb(22 101 52 / 0.3);
}
.hover\:bg-green-800\/40:hover {
  background-color: rgb(22 101 52 / 0.4);
}
.hover\:bg-green-800\/5:hover {
  background-color: rgb(22 101 52 / 0.05);
}
.hover\:bg-green-800\/50:hover {
  background-color: rgb(22 101 52 / 0.5);
}
.hover\:bg-green-800\/60:hover {
  background-color: rgb(22 101 52 / 0.6);
}
.hover\:bg-green-800\/70:hover {
  background-color: rgb(22 101 52 / 0.7);
}
.hover\:bg-green-800\/80:hover {
  background-color: rgb(22 101 52 / 0.8);
}
.hover\:bg-green-800\/90:hover {
  background-color: rgb(22 101 52 / 0.9);
}
.hover\:bg-green-900:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(20 83 45 / var(--tw-bg-opacity, 1));
}
.hover\:bg-green-900\/10:hover {
  background-color: rgb(20 83 45 / 0.1);
}
.hover\:bg-green-900\/20:hover {
  background-color: rgb(20 83 45 / 0.2);
}
.hover\:bg-green-900\/30:hover {
  background-color: rgb(20 83 45 / 0.3);
}
.hover\:bg-green-900\/40:hover {
  background-color: rgb(20 83 45 / 0.4);
}
.hover\:bg-green-900\/5:hover {
  background-color: rgb(20 83 45 / 0.05);
}
.hover\:bg-green-900\/50:hover {
  background-color: rgb(20 83 45 / 0.5);
}
.hover\:bg-green-900\/60:hover {
  background-color: rgb(20 83 45 / 0.6);
}
.hover\:bg-green-900\/70:hover {
  background-color: rgb(20 83 45 / 0.7);
}
.hover\:bg-green-900\/80:hover {
  background-color: rgb(20 83 45 / 0.8);
}
.hover\:bg-green-900\/90:hover {
  background-color: rgb(20 83 45 / 0.9);
}
.hover\:bg-green-950:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(5 46 22 / var(--tw-bg-opacity, 1));
}
.hover\:bg-green-950\/10:hover {
  background-color: rgb(5 46 22 / 0.1);
}
.hover\:bg-green-950\/20:hover {
  background-color: rgb(5 46 22 / 0.2);
}
.hover\:bg-green-950\/30:hover {
  background-color: rgb(5 46 22 / 0.3);
}
.hover\:bg-green-950\/40:hover {
  background-color: rgb(5 46 22 / 0.4);
}
.hover\:bg-green-950\/5:hover {
  background-color: rgb(5 46 22 / 0.05);
}
.hover\:bg-green-950\/50:hover {
  background-color: rgb(5 46 22 / 0.5);
}
.hover\:bg-green-950\/60:hover {
  background-color: rgb(5 46 22 / 0.6);
}
.hover\:bg-green-950\/70:hover {
  background-color: rgb(5 46 22 / 0.7);
}
.hover\:bg-green-950\/80:hover {
  background-color: rgb(5 46 22 / 0.8);
}
.hover\:bg-green-950\/90:hover {
  background-color: rgb(5 46 22 / 0.9);
}
.hover\:bg-indigo-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(224 231 255 / var(--tw-bg-opacity, 1));
}
.hover\:bg-indigo-100\/10:hover {
  background-color: rgb(224 231 255 / 0.1);
}
.hover\:bg-indigo-100\/20:hover {
  background-color: rgb(224 231 255 / 0.2);
}
.hover\:bg-indigo-100\/30:hover {
  background-color: rgb(224 231 255 / 0.3);
}
.hover\:bg-indigo-100\/40:hover {
  background-color: rgb(224 231 255 / 0.4);
}
.hover\:bg-indigo-100\/5:hover {
  background-color: rgb(224 231 255 / 0.05);
}
.hover\:bg-indigo-100\/50:hover {
  background-color: rgb(224 231 255 / 0.5);
}
.hover\:bg-indigo-100\/60:hover {
  background-color: rgb(224 231 255 / 0.6);
}
.hover\:bg-indigo-100\/70:hover {
  background-color: rgb(224 231 255 / 0.7);
}
.hover\:bg-indigo-100\/80:hover {
  background-color: rgb(224 231 255 / 0.8);
}
.hover\:bg-indigo-100\/90:hover {
  background-color: rgb(224 231 255 / 0.9);
}
.hover\:bg-indigo-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(199 210 254 / var(--tw-bg-opacity, 1));
}
.hover\:bg-indigo-200\/10:hover {
  background-color: rgb(199 210 254 / 0.1);
}
.hover\:bg-indigo-200\/20:hover {
  background-color: rgb(199 210 254 / 0.2);
}
.hover\:bg-indigo-200\/30:hover {
  background-color: rgb(199 210 254 / 0.3);
}
.hover\:bg-indigo-200\/40:hover {
  background-color: rgb(199 210 254 / 0.4);
}
.hover\:bg-indigo-200\/5:hover {
  background-color: rgb(199 210 254 / 0.05);
}
.hover\:bg-indigo-200\/50:hover {
  background-color: rgb(199 210 254 / 0.5);
}
.hover\:bg-indigo-200\/60:hover {
  background-color: rgb(199 210 254 / 0.6);
}
.hover\:bg-indigo-200\/70:hover {
  background-color: rgb(199 210 254 / 0.7);
}
.hover\:bg-indigo-200\/80:hover {
  background-color: rgb(199 210 254 / 0.8);
}
.hover\:bg-indigo-200\/90:hover {
  background-color: rgb(199 210 254 / 0.9);
}
.hover\:bg-indigo-300:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(165 180 252 / var(--tw-bg-opacity, 1));
}
.hover\:bg-indigo-300\/10:hover {
  background-color: rgb(165 180 252 / 0.1);
}
.hover\:bg-indigo-300\/20:hover {
  background-color: rgb(165 180 252 / 0.2);
}
.hover\:bg-indigo-300\/30:hover {
  background-color: rgb(165 180 252 / 0.3);
}
.hover\:bg-indigo-300\/40:hover {
  background-color: rgb(165 180 252 / 0.4);
}
.hover\:bg-indigo-300\/5:hover {
  background-color: rgb(165 180 252 / 0.05);
}
.hover\:bg-indigo-300\/50:hover {
  background-color: rgb(165 180 252 / 0.5);
}
.hover\:bg-indigo-300\/60:hover {
  background-color: rgb(165 180 252 / 0.6);
}
.hover\:bg-indigo-300\/70:hover {
  background-color: rgb(165 180 252 / 0.7);
}
.hover\:bg-indigo-300\/80:hover {
  background-color: rgb(165 180 252 / 0.8);
}
.hover\:bg-indigo-300\/90:hover {
  background-color: rgb(165 180 252 / 0.9);
}
.hover\:bg-indigo-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(129 140 248 / var(--tw-bg-opacity, 1));
}
.hover\:bg-indigo-400\/10:hover {
  background-color: rgb(129 140 248 / 0.1);
}
.hover\:bg-indigo-400\/20:hover {
  background-color: rgb(129 140 248 / 0.2);
}
.hover\:bg-indigo-400\/30:hover {
  background-color: rgb(129 140 248 / 0.3);
}
.hover\:bg-indigo-400\/40:hover {
  background-color: rgb(129 140 248 / 0.4);
}
.hover\:bg-indigo-400\/5:hover {
  background-color: rgb(129 140 248 / 0.05);
}
.hover\:bg-indigo-400\/50:hover {
  background-color: rgb(129 140 248 / 0.5);
}
.hover\:bg-indigo-400\/60:hover {
  background-color: rgb(129 140 248 / 0.6);
}
.hover\:bg-indigo-400\/70:hover {
  background-color: rgb(129 140 248 / 0.7);
}
.hover\:bg-indigo-400\/80:hover {
  background-color: rgb(129 140 248 / 0.8);
}
.hover\:bg-indigo-400\/90:hover {
  background-color: rgb(129 140 248 / 0.9);
}
.hover\:bg-indigo-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(238 242 255 / var(--tw-bg-opacity, 1));
}
.hover\:bg-indigo-50\/10:hover {
  background-color: rgb(238 242 255 / 0.1);
}
.hover\:bg-indigo-50\/20:hover {
  background-color: rgb(238 242 255 / 0.2);
}
.hover\:bg-indigo-50\/30:hover {
  background-color: rgb(238 242 255 / 0.3);
}
.hover\:bg-indigo-50\/40:hover {
  background-color: rgb(238 242 255 / 0.4);
}
.hover\:bg-indigo-50\/5:hover {
  background-color: rgb(238 242 255 / 0.05);
}
.hover\:bg-indigo-50\/50:hover {
  background-color: rgb(238 242 255 / 0.5);
}
.hover\:bg-indigo-50\/60:hover {
  background-color: rgb(238 242 255 / 0.6);
}
.hover\:bg-indigo-50\/70:hover {
  background-color: rgb(238 242 255 / 0.7);
}
.hover\:bg-indigo-50\/80:hover {
  background-color: rgb(238 242 255 / 0.8);
}
.hover\:bg-indigo-50\/90:hover {
  background-color: rgb(238 242 255 / 0.9);
}
.hover\:bg-indigo-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(99 102 241 / var(--tw-bg-opacity, 1));
}
.hover\:bg-indigo-500\/10:hover {
  background-color: rgb(99 102 241 / 0.1);
}
.hover\:bg-indigo-500\/20:hover {
  background-color: rgb(99 102 241 / 0.2);
}
.hover\:bg-indigo-500\/30:hover {
  background-color: rgb(99 102 241 / 0.3);
}
.hover\:bg-indigo-500\/40:hover {
  background-color: rgb(99 102 241 / 0.4);
}
.hover\:bg-indigo-500\/5:hover {
  background-color: rgb(99 102 241 / 0.05);
}
.hover\:bg-indigo-500\/50:hover {
  background-color: rgb(99 102 241 / 0.5);
}
.hover\:bg-indigo-500\/60:hover {
  background-color: rgb(99 102 241 / 0.6);
}
.hover\:bg-indigo-500\/70:hover {
  background-color: rgb(99 102 241 / 0.7);
}
.hover\:bg-indigo-500\/80:hover {
  background-color: rgb(99 102 241 / 0.8);
}
.hover\:bg-indigo-500\/90:hover {
  background-color: rgb(99 102 241 / 0.9);
}
.hover\:bg-indigo-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(79 70 229 / var(--tw-bg-opacity, 1));
}
.hover\:bg-indigo-600\/10:hover {
  background-color: rgb(79 70 229 / 0.1);
}
.hover\:bg-indigo-600\/20:hover {
  background-color: rgb(79 70 229 / 0.2);
}
.hover\:bg-indigo-600\/30:hover {
  background-color: rgb(79 70 229 / 0.3);
}
.hover\:bg-indigo-600\/40:hover {
  background-color: rgb(79 70 229 / 0.4);
}
.hover\:bg-indigo-600\/5:hover {
  background-color: rgb(79 70 229 / 0.05);
}
.hover\:bg-indigo-600\/50:hover {
  background-color: rgb(79 70 229 / 0.5);
}
.hover\:bg-indigo-600\/60:hover {
  background-color: rgb(79 70 229 / 0.6);
}
.hover\:bg-indigo-600\/70:hover {
  background-color: rgb(79 70 229 / 0.7);
}
.hover\:bg-indigo-600\/80:hover {
  background-color: rgb(79 70 229 / 0.8);
}
.hover\:bg-indigo-600\/90:hover {
  background-color: rgb(79 70 229 / 0.9);
}
.hover\:bg-indigo-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(67 56 202 / var(--tw-bg-opacity, 1));
}
.hover\:bg-indigo-700\/10:hover {
  background-color: rgb(67 56 202 / 0.1);
}
.hover\:bg-indigo-700\/20:hover {
  background-color: rgb(67 56 202 / 0.2);
}
.hover\:bg-indigo-700\/30:hover {
  background-color: rgb(67 56 202 / 0.3);
}
.hover\:bg-indigo-700\/40:hover {
  background-color: rgb(67 56 202 / 0.4);
}
.hover\:bg-indigo-700\/5:hover {
  background-color: rgb(67 56 202 / 0.05);
}
.hover\:bg-indigo-700\/50:hover {
  background-color: rgb(67 56 202 / 0.5);
}
.hover\:bg-indigo-700\/60:hover {
  background-color: rgb(67 56 202 / 0.6);
}
.hover\:bg-indigo-700\/70:hover {
  background-color: rgb(67 56 202 / 0.7);
}
.hover\:bg-indigo-700\/80:hover {
  background-color: rgb(67 56 202 / 0.8);
}
.hover\:bg-indigo-700\/90:hover {
  background-color: rgb(67 56 202 / 0.9);
}
.hover\:bg-indigo-800:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(55 48 163 / var(--tw-bg-opacity, 1));
}
.hover\:bg-indigo-800\/10:hover {
  background-color: rgb(55 48 163 / 0.1);
}
.hover\:bg-indigo-800\/20:hover {
  background-color: rgb(55 48 163 / 0.2);
}
.hover\:bg-indigo-800\/30:hover {
  background-color: rgb(55 48 163 / 0.3);
}
.hover\:bg-indigo-800\/40:hover {
  background-color: rgb(55 48 163 / 0.4);
}
.hover\:bg-indigo-800\/5:hover {
  background-color: rgb(55 48 163 / 0.05);
}
.hover\:bg-indigo-800\/50:hover {
  background-color: rgb(55 48 163 / 0.5);
}
.hover\:bg-indigo-800\/60:hover {
  background-color: rgb(55 48 163 / 0.6);
}
.hover\:bg-indigo-800\/70:hover {
  background-color: rgb(55 48 163 / 0.7);
}
.hover\:bg-indigo-800\/80:hover {
  background-color: rgb(55 48 163 / 0.8);
}
.hover\:bg-indigo-800\/90:hover {
  background-color: rgb(55 48 163 / 0.9);
}
.hover\:bg-indigo-900:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(49 46 129 / var(--tw-bg-opacity, 1));
}
.hover\:bg-indigo-900\/10:hover {
  background-color: rgb(49 46 129 / 0.1);
}
.hover\:bg-indigo-900\/20:hover {
  background-color: rgb(49 46 129 / 0.2);
}
.hover\:bg-indigo-900\/30:hover {
  background-color: rgb(49 46 129 / 0.3);
}
.hover\:bg-indigo-900\/40:hover {
  background-color: rgb(49 46 129 / 0.4);
}
.hover\:bg-indigo-900\/5:hover {
  background-color: rgb(49 46 129 / 0.05);
}
.hover\:bg-indigo-900\/50:hover {
  background-color: rgb(49 46 129 / 0.5);
}
.hover\:bg-indigo-900\/60:hover {
  background-color: rgb(49 46 129 / 0.6);
}
.hover\:bg-indigo-900\/70:hover {
  background-color: rgb(49 46 129 / 0.7);
}
.hover\:bg-indigo-900\/80:hover {
  background-color: rgb(49 46 129 / 0.8);
}
.hover\:bg-indigo-900\/90:hover {
  background-color: rgb(49 46 129 / 0.9);
}
.hover\:bg-indigo-950:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(30 27 75 / var(--tw-bg-opacity, 1));
}
.hover\:bg-indigo-950\/10:hover {
  background-color: rgb(30 27 75 / 0.1);
}
.hover\:bg-indigo-950\/20:hover {
  background-color: rgb(30 27 75 / 0.2);
}
.hover\:bg-indigo-950\/30:hover {
  background-color: rgb(30 27 75 / 0.3);
}
.hover\:bg-indigo-950\/40:hover {
  background-color: rgb(30 27 75 / 0.4);
}
.hover\:bg-indigo-950\/5:hover {
  background-color: rgb(30 27 75 / 0.05);
}
.hover\:bg-indigo-950\/50:hover {
  background-color: rgb(30 27 75 / 0.5);
}
.hover\:bg-indigo-950\/60:hover {
  background-color: rgb(30 27 75 / 0.6);
}
.hover\:bg-indigo-950\/70:hover {
  background-color: rgb(30 27 75 / 0.7);
}
.hover\:bg-indigo-950\/80:hover {
  background-color: rgb(30 27 75 / 0.8);
}
.hover\:bg-indigo-950\/90:hover {
  background-color: rgb(30 27 75 / 0.9);
}
.hover\:bg-lime-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(236 252 203 / var(--tw-bg-opacity, 1));
}
.hover\:bg-lime-100\/10:hover {
  background-color: rgb(236 252 203 / 0.1);
}
.hover\:bg-lime-100\/20:hover {
  background-color: rgb(236 252 203 / 0.2);
}
.hover\:bg-lime-100\/30:hover {
  background-color: rgb(236 252 203 / 0.3);
}
.hover\:bg-lime-100\/40:hover {
  background-color: rgb(236 252 203 / 0.4);
}
.hover\:bg-lime-100\/5:hover {
  background-color: rgb(236 252 203 / 0.05);
}
.hover\:bg-lime-100\/50:hover {
  background-color: rgb(236 252 203 / 0.5);
}
.hover\:bg-lime-100\/60:hover {
  background-color: rgb(236 252 203 / 0.6);
}
.hover\:bg-lime-100\/70:hover {
  background-color: rgb(236 252 203 / 0.7);
}
.hover\:bg-lime-100\/80:hover {
  background-color: rgb(236 252 203 / 0.8);
}
.hover\:bg-lime-100\/90:hover {
  background-color: rgb(236 252 203 / 0.9);
}
.hover\:bg-lime-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(217 249 157 / var(--tw-bg-opacity, 1));
}
.hover\:bg-lime-200\/10:hover {
  background-color: rgb(217 249 157 / 0.1);
}
.hover\:bg-lime-200\/20:hover {
  background-color: rgb(217 249 157 / 0.2);
}
.hover\:bg-lime-200\/30:hover {
  background-color: rgb(217 249 157 / 0.3);
}
.hover\:bg-lime-200\/40:hover {
  background-color: rgb(217 249 157 / 0.4);
}
.hover\:bg-lime-200\/5:hover {
  background-color: rgb(217 249 157 / 0.05);
}
.hover\:bg-lime-200\/50:hover {
  background-color: rgb(217 249 157 / 0.5);
}
.hover\:bg-lime-200\/60:hover {
  background-color: rgb(217 249 157 / 0.6);
}
.hover\:bg-lime-200\/70:hover {
  background-color: rgb(217 249 157 / 0.7);
}
.hover\:bg-lime-200\/80:hover {
  background-color: rgb(217 249 157 / 0.8);
}
.hover\:bg-lime-200\/90:hover {
  background-color: rgb(217 249 157 / 0.9);
}
.hover\:bg-lime-300:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(190 242 100 / var(--tw-bg-opacity, 1));
}
.hover\:bg-lime-300\/10:hover {
  background-color: rgb(190 242 100 / 0.1);
}
.hover\:bg-lime-300\/20:hover {
  background-color: rgb(190 242 100 / 0.2);
}
.hover\:bg-lime-300\/30:hover {
  background-color: rgb(190 242 100 / 0.3);
}
.hover\:bg-lime-300\/40:hover {
  background-color: rgb(190 242 100 / 0.4);
}
.hover\:bg-lime-300\/5:hover {
  background-color: rgb(190 242 100 / 0.05);
}
.hover\:bg-lime-300\/50:hover {
  background-color: rgb(190 242 100 / 0.5);
}
.hover\:bg-lime-300\/60:hover {
  background-color: rgb(190 242 100 / 0.6);
}
.hover\:bg-lime-300\/70:hover {
  background-color: rgb(190 242 100 / 0.7);
}
.hover\:bg-lime-300\/80:hover {
  background-color: rgb(190 242 100 / 0.8);
}
.hover\:bg-lime-300\/90:hover {
  background-color: rgb(190 242 100 / 0.9);
}
.hover\:bg-lime-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(163 230 53 / var(--tw-bg-opacity, 1));
}
.hover\:bg-lime-400\/10:hover {
  background-color: rgb(163 230 53 / 0.1);
}
.hover\:bg-lime-400\/20:hover {
  background-color: rgb(163 230 53 / 0.2);
}
.hover\:bg-lime-400\/30:hover {
  background-color: rgb(163 230 53 / 0.3);
}
.hover\:bg-lime-400\/40:hover {
  background-color: rgb(163 230 53 / 0.4);
}
.hover\:bg-lime-400\/5:hover {
  background-color: rgb(163 230 53 / 0.05);
}
.hover\:bg-lime-400\/50:hover {
  background-color: rgb(163 230 53 / 0.5);
}
.hover\:bg-lime-400\/60:hover {
  background-color: rgb(163 230 53 / 0.6);
}
.hover\:bg-lime-400\/70:hover {
  background-color: rgb(163 230 53 / 0.7);
}
.hover\:bg-lime-400\/80:hover {
  background-color: rgb(163 230 53 / 0.8);
}
.hover\:bg-lime-400\/90:hover {
  background-color: rgb(163 230 53 / 0.9);
}
.hover\:bg-lime-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(247 254 231 / var(--tw-bg-opacity, 1));
}
.hover\:bg-lime-50\/10:hover {
  background-color: rgb(247 254 231 / 0.1);
}
.hover\:bg-lime-50\/20:hover {
  background-color: rgb(247 254 231 / 0.2);
}
.hover\:bg-lime-50\/30:hover {
  background-color: rgb(247 254 231 / 0.3);
}
.hover\:bg-lime-50\/40:hover {
  background-color: rgb(247 254 231 / 0.4);
}
.hover\:bg-lime-50\/5:hover {
  background-color: rgb(247 254 231 / 0.05);
}
.hover\:bg-lime-50\/50:hover {
  background-color: rgb(247 254 231 / 0.5);
}
.hover\:bg-lime-50\/60:hover {
  background-color: rgb(247 254 231 / 0.6);
}
.hover\:bg-lime-50\/70:hover {
  background-color: rgb(247 254 231 / 0.7);
}
.hover\:bg-lime-50\/80:hover {
  background-color: rgb(247 254 231 / 0.8);
}
.hover\:bg-lime-50\/90:hover {
  background-color: rgb(247 254 231 / 0.9);
}
.hover\:bg-lime-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(132 204 22 / var(--tw-bg-opacity, 1));
}
.hover\:bg-lime-500\/10:hover {
  background-color: rgb(132 204 22 / 0.1);
}
.hover\:bg-lime-500\/20:hover {
  background-color: rgb(132 204 22 / 0.2);
}
.hover\:bg-lime-500\/30:hover {
  background-color: rgb(132 204 22 / 0.3);
}
.hover\:bg-lime-500\/40:hover {
  background-color: rgb(132 204 22 / 0.4);
}
.hover\:bg-lime-500\/5:hover {
  background-color: rgb(132 204 22 / 0.05);
}
.hover\:bg-lime-500\/50:hover {
  background-color: rgb(132 204 22 / 0.5);
}
.hover\:bg-lime-500\/60:hover {
  background-color: rgb(132 204 22 / 0.6);
}
.hover\:bg-lime-500\/70:hover {
  background-color: rgb(132 204 22 / 0.7);
}
.hover\:bg-lime-500\/80:hover {
  background-color: rgb(132 204 22 / 0.8);
}
.hover\:bg-lime-500\/90:hover {
  background-color: rgb(132 204 22 / 0.9);
}
.hover\:bg-lime-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(101 163 13 / var(--tw-bg-opacity, 1));
}
.hover\:bg-lime-600\/10:hover {
  background-color: rgb(101 163 13 / 0.1);
}
.hover\:bg-lime-600\/20:hover {
  background-color: rgb(101 163 13 / 0.2);
}
.hover\:bg-lime-600\/30:hover {
  background-color: rgb(101 163 13 / 0.3);
}
.hover\:bg-lime-600\/40:hover {
  background-color: rgb(101 163 13 / 0.4);
}
.hover\:bg-lime-600\/5:hover {
  background-color: rgb(101 163 13 / 0.05);
}
.hover\:bg-lime-600\/50:hover {
  background-color: rgb(101 163 13 / 0.5);
}
.hover\:bg-lime-600\/60:hover {
  background-color: rgb(101 163 13 / 0.6);
}
.hover\:bg-lime-600\/70:hover {
  background-color: rgb(101 163 13 / 0.7);
}
.hover\:bg-lime-600\/80:hover {
  background-color: rgb(101 163 13 / 0.8);
}
.hover\:bg-lime-600\/90:hover {
  background-color: rgb(101 163 13 / 0.9);
}
.hover\:bg-lime-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(77 124 15 / var(--tw-bg-opacity, 1));
}
.hover\:bg-lime-700\/10:hover {
  background-color: rgb(77 124 15 / 0.1);
}
.hover\:bg-lime-700\/20:hover {
  background-color: rgb(77 124 15 / 0.2);
}
.hover\:bg-lime-700\/30:hover {
  background-color: rgb(77 124 15 / 0.3);
}
.hover\:bg-lime-700\/40:hover {
  background-color: rgb(77 124 15 / 0.4);
}
.hover\:bg-lime-700\/5:hover {
  background-color: rgb(77 124 15 / 0.05);
}
.hover\:bg-lime-700\/50:hover {
  background-color: rgb(77 124 15 / 0.5);
}
.hover\:bg-lime-700\/60:hover {
  background-color: rgb(77 124 15 / 0.6);
}
.hover\:bg-lime-700\/70:hover {
  background-color: rgb(77 124 15 / 0.7);
}
.hover\:bg-lime-700\/80:hover {
  background-color: rgb(77 124 15 / 0.8);
}
.hover\:bg-lime-700\/90:hover {
  background-color: rgb(77 124 15 / 0.9);
}
.hover\:bg-lime-800:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(63 98 18 / var(--tw-bg-opacity, 1));
}
.hover\:bg-lime-800\/10:hover {
  background-color: rgb(63 98 18 / 0.1);
}
.hover\:bg-lime-800\/20:hover {
  background-color: rgb(63 98 18 / 0.2);
}
.hover\:bg-lime-800\/30:hover {
  background-color: rgb(63 98 18 / 0.3);
}
.hover\:bg-lime-800\/40:hover {
  background-color: rgb(63 98 18 / 0.4);
}
.hover\:bg-lime-800\/5:hover {
  background-color: rgb(63 98 18 / 0.05);
}
.hover\:bg-lime-800\/50:hover {
  background-color: rgb(63 98 18 / 0.5);
}
.hover\:bg-lime-800\/60:hover {
  background-color: rgb(63 98 18 / 0.6);
}
.hover\:bg-lime-800\/70:hover {
  background-color: rgb(63 98 18 / 0.7);
}
.hover\:bg-lime-800\/80:hover {
  background-color: rgb(63 98 18 / 0.8);
}
.hover\:bg-lime-800\/90:hover {
  background-color: rgb(63 98 18 / 0.9);
}
.hover\:bg-lime-900:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(54 83 20 / var(--tw-bg-opacity, 1));
}
.hover\:bg-lime-900\/10:hover {
  background-color: rgb(54 83 20 / 0.1);
}
.hover\:bg-lime-900\/20:hover {
  background-color: rgb(54 83 20 / 0.2);
}
.hover\:bg-lime-900\/30:hover {
  background-color: rgb(54 83 20 / 0.3);
}
.hover\:bg-lime-900\/40:hover {
  background-color: rgb(54 83 20 / 0.4);
}
.hover\:bg-lime-900\/5:hover {
  background-color: rgb(54 83 20 / 0.05);
}
.hover\:bg-lime-900\/50:hover {
  background-color: rgb(54 83 20 / 0.5);
}
.hover\:bg-lime-900\/60:hover {
  background-color: rgb(54 83 20 / 0.6);
}
.hover\:bg-lime-900\/70:hover {
  background-color: rgb(54 83 20 / 0.7);
}
.hover\:bg-lime-900\/80:hover {
  background-color: rgb(54 83 20 / 0.8);
}
.hover\:bg-lime-900\/90:hover {
  background-color: rgb(54 83 20 / 0.9);
}
.hover\:bg-lime-950:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(26 46 5 / var(--tw-bg-opacity, 1));
}
.hover\:bg-lime-950\/10:hover {
  background-color: rgb(26 46 5 / 0.1);
}
.hover\:bg-lime-950\/20:hover {
  background-color: rgb(26 46 5 / 0.2);
}
.hover\:bg-lime-950\/30:hover {
  background-color: rgb(26 46 5 / 0.3);
}
.hover\:bg-lime-950\/40:hover {
  background-color: rgb(26 46 5 / 0.4);
}
.hover\:bg-lime-950\/5:hover {
  background-color: rgb(26 46 5 / 0.05);
}
.hover\:bg-lime-950\/50:hover {
  background-color: rgb(26 46 5 / 0.5);
}
.hover\:bg-lime-950\/60:hover {
  background-color: rgb(26 46 5 / 0.6);
}
.hover\:bg-lime-950\/70:hover {
  background-color: rgb(26 46 5 / 0.7);
}
.hover\:bg-lime-950\/80:hover {
  background-color: rgb(26 46 5 / 0.8);
}
.hover\:bg-lime-950\/90:hover {
  background-color: rgb(26 46 5 / 0.9);
}
.hover\:bg-neutral-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 245 / var(--tw-bg-opacity, 1));
}
.hover\:bg-neutral-100\/10:hover {
  background-color: rgb(245 245 245 / 0.1);
}
.hover\:bg-neutral-100\/20:hover {
  background-color: rgb(245 245 245 / 0.2);
}
.hover\:bg-neutral-100\/30:hover {
  background-color: rgb(245 245 245 / 0.3);
}
.hover\:bg-neutral-100\/40:hover {
  background-color: rgb(245 245 245 / 0.4);
}
.hover\:bg-neutral-100\/5:hover {
  background-color: rgb(245 245 245 / 0.05);
}
.hover\:bg-neutral-100\/50:hover {
  background-color: rgb(245 245 245 / 0.5);
}
.hover\:bg-neutral-100\/60:hover {
  background-color: rgb(245 245 245 / 0.6);
}
.hover\:bg-neutral-100\/70:hover {
  background-color: rgb(245 245 245 / 0.7);
}
.hover\:bg-neutral-100\/80:hover {
  background-color: rgb(245 245 245 / 0.8);
}
.hover\:bg-neutral-100\/90:hover {
  background-color: rgb(245 245 245 / 0.9);
}
.hover\:bg-neutral-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(229 229 229 / var(--tw-bg-opacity, 1));
}
.hover\:bg-neutral-200\/10:hover {
  background-color: rgb(229 229 229 / 0.1);
}
.hover\:bg-neutral-200\/20:hover {
  background-color: rgb(229 229 229 / 0.2);
}
.hover\:bg-neutral-200\/30:hover {
  background-color: rgb(229 229 229 / 0.3);
}
.hover\:bg-neutral-200\/40:hover {
  background-color: rgb(229 229 229 / 0.4);
}
.hover\:bg-neutral-200\/5:hover {
  background-color: rgb(229 229 229 / 0.05);
}
.hover\:bg-neutral-200\/50:hover {
  background-color: rgb(229 229 229 / 0.5);
}
.hover\:bg-neutral-200\/60:hover {
  background-color: rgb(229 229 229 / 0.6);
}
.hover\:bg-neutral-200\/70:hover {
  background-color: rgb(229 229 229 / 0.7);
}
.hover\:bg-neutral-200\/80:hover {
  background-color: rgb(229 229 229 / 0.8);
}
.hover\:bg-neutral-200\/90:hover {
  background-color: rgb(229 229 229 / 0.9);
}
.hover\:bg-neutral-300:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(212 212 212 / var(--tw-bg-opacity, 1));
}
.hover\:bg-neutral-300\/10:hover {
  background-color: rgb(212 212 212 / 0.1);
}
.hover\:bg-neutral-300\/20:hover {
  background-color: rgb(212 212 212 / 0.2);
}
.hover\:bg-neutral-300\/30:hover {
  background-color: rgb(212 212 212 / 0.3);
}
.hover\:bg-neutral-300\/40:hover {
  background-color: rgb(212 212 212 / 0.4);
}
.hover\:bg-neutral-300\/5:hover {
  background-color: rgb(212 212 212 / 0.05);
}
.hover\:bg-neutral-300\/50:hover {
  background-color: rgb(212 212 212 / 0.5);
}
.hover\:bg-neutral-300\/60:hover {
  background-color: rgb(212 212 212 / 0.6);
}
.hover\:bg-neutral-300\/70:hover {
  background-color: rgb(212 212 212 / 0.7);
}
.hover\:bg-neutral-300\/80:hover {
  background-color: rgb(212 212 212 / 0.8);
}
.hover\:bg-neutral-300\/90:hover {
  background-color: rgb(212 212 212 / 0.9);
}
.hover\:bg-neutral-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(163 163 163 / var(--tw-bg-opacity, 1));
}
.hover\:bg-neutral-400\/10:hover {
  background-color: rgb(163 163 163 / 0.1);
}
.hover\:bg-neutral-400\/20:hover {
  background-color: rgb(163 163 163 / 0.2);
}
.hover\:bg-neutral-400\/30:hover {
  background-color: rgb(163 163 163 / 0.3);
}
.hover\:bg-neutral-400\/40:hover {
  background-color: rgb(163 163 163 / 0.4);
}
.hover\:bg-neutral-400\/5:hover {
  background-color: rgb(163 163 163 / 0.05);
}
.hover\:bg-neutral-400\/50:hover {
  background-color: rgb(163 163 163 / 0.5);
}
.hover\:bg-neutral-400\/60:hover {
  background-color: rgb(163 163 163 / 0.6);
}
.hover\:bg-neutral-400\/70:hover {
  background-color: rgb(163 163 163 / 0.7);
}
.hover\:bg-neutral-400\/80:hover {
  background-color: rgb(163 163 163 / 0.8);
}
.hover\:bg-neutral-400\/90:hover {
  background-color: rgb(163 163 163 / 0.9);
}
.hover\:bg-neutral-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
}
.hover\:bg-neutral-50\/10:hover {
  background-color: rgb(250 250 250 / 0.1);
}
.hover\:bg-neutral-50\/20:hover {
  background-color: rgb(250 250 250 / 0.2);
}
.hover\:bg-neutral-50\/30:hover {
  background-color: rgb(250 250 250 / 0.3);
}
.hover\:bg-neutral-50\/40:hover {
  background-color: rgb(250 250 250 / 0.4);
}
.hover\:bg-neutral-50\/5:hover {
  background-color: rgb(250 250 250 / 0.05);
}
.hover\:bg-neutral-50\/50:hover {
  background-color: rgb(250 250 250 / 0.5);
}
.hover\:bg-neutral-50\/60:hover {
  background-color: rgb(250 250 250 / 0.6);
}
.hover\:bg-neutral-50\/70:hover {
  background-color: rgb(250 250 250 / 0.7);
}
.hover\:bg-neutral-50\/80:hover {
  background-color: rgb(250 250 250 / 0.8);
}
.hover\:bg-neutral-50\/90:hover {
  background-color: rgb(250 250 250 / 0.9);
}
.hover\:bg-neutral-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(115 115 115 / var(--tw-bg-opacity, 1));
}
.hover\:bg-neutral-500\/10:hover {
  background-color: rgb(115 115 115 / 0.1);
}
.hover\:bg-neutral-500\/20:hover {
  background-color: rgb(115 115 115 / 0.2);
}
.hover\:bg-neutral-500\/30:hover {
  background-color: rgb(115 115 115 / 0.3);
}
.hover\:bg-neutral-500\/40:hover {
  background-color: rgb(115 115 115 / 0.4);
}
.hover\:bg-neutral-500\/5:hover {
  background-color: rgb(115 115 115 / 0.05);
}
.hover\:bg-neutral-500\/50:hover {
  background-color: rgb(115 115 115 / 0.5);
}
.hover\:bg-neutral-500\/60:hover {
  background-color: rgb(115 115 115 / 0.6);
}
.hover\:bg-neutral-500\/70:hover {
  background-color: rgb(115 115 115 / 0.7);
}
.hover\:bg-neutral-500\/80:hover {
  background-color: rgb(115 115 115 / 0.8);
}
.hover\:bg-neutral-500\/90:hover {
  background-color: rgb(115 115 115 / 0.9);
}
.hover\:bg-neutral-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(82 82 82 / var(--tw-bg-opacity, 1));
}
.hover\:bg-neutral-600\/10:hover {
  background-color: rgb(82 82 82 / 0.1);
}
.hover\:bg-neutral-600\/20:hover {
  background-color: rgb(82 82 82 / 0.2);
}
.hover\:bg-neutral-600\/30:hover {
  background-color: rgb(82 82 82 / 0.3);
}
.hover\:bg-neutral-600\/40:hover {
  background-color: rgb(82 82 82 / 0.4);
}
.hover\:bg-neutral-600\/5:hover {
  background-color: rgb(82 82 82 / 0.05);
}
.hover\:bg-neutral-600\/50:hover {
  background-color: rgb(82 82 82 / 0.5);
}
.hover\:bg-neutral-600\/60:hover {
  background-color: rgb(82 82 82 / 0.6);
}
.hover\:bg-neutral-600\/70:hover {
  background-color: rgb(82 82 82 / 0.7);
}
.hover\:bg-neutral-600\/80:hover {
  background-color: rgb(82 82 82 / 0.8);
}
.hover\:bg-neutral-600\/90:hover {
  background-color: rgb(82 82 82 / 0.9);
}
.hover\:bg-neutral-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(64 64 64 / var(--tw-bg-opacity, 1));
}
.hover\:bg-neutral-700\/10:hover {
  background-color: rgb(64 64 64 / 0.1);
}
.hover\:bg-neutral-700\/20:hover {
  background-color: rgb(64 64 64 / 0.2);
}
.hover\:bg-neutral-700\/30:hover {
  background-color: rgb(64 64 64 / 0.3);
}
.hover\:bg-neutral-700\/40:hover {
  background-color: rgb(64 64 64 / 0.4);
}
.hover\:bg-neutral-700\/5:hover {
  background-color: rgb(64 64 64 / 0.05);
}
.hover\:bg-neutral-700\/50:hover {
  background-color: rgb(64 64 64 / 0.5);
}
.hover\:bg-neutral-700\/60:hover {
  background-color: rgb(64 64 64 / 0.6);
}
.hover\:bg-neutral-700\/70:hover {
  background-color: rgb(64 64 64 / 0.7);
}
.hover\:bg-neutral-700\/80:hover {
  background-color: rgb(64 64 64 / 0.8);
}
.hover\:bg-neutral-700\/90:hover {
  background-color: rgb(64 64 64 / 0.9);
}
.hover\:bg-neutral-800:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(38 38 38 / var(--tw-bg-opacity, 1));
}
.hover\:bg-neutral-800\/10:hover {
  background-color: rgb(38 38 38 / 0.1);
}
.hover\:bg-neutral-800\/20:hover {
  background-color: rgb(38 38 38 / 0.2);
}
.hover\:bg-neutral-800\/30:hover {
  background-color: rgb(38 38 38 / 0.3);
}
.hover\:bg-neutral-800\/40:hover {
  background-color: rgb(38 38 38 / 0.4);
}
.hover\:bg-neutral-800\/5:hover {
  background-color: rgb(38 38 38 / 0.05);
}
.hover\:bg-neutral-800\/50:hover {
  background-color: rgb(38 38 38 / 0.5);
}
.hover\:bg-neutral-800\/60:hover {
  background-color: rgb(38 38 38 / 0.6);
}
.hover\:bg-neutral-800\/70:hover {
  background-color: rgb(38 38 38 / 0.7);
}
.hover\:bg-neutral-800\/80:hover {
  background-color: rgb(38 38 38 / 0.8);
}
.hover\:bg-neutral-800\/90:hover {
  background-color: rgb(38 38 38 / 0.9);
}
.hover\:bg-neutral-900:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(23 23 23 / var(--tw-bg-opacity, 1));
}
.hover\:bg-neutral-900\/10:hover {
  background-color: rgb(23 23 23 / 0.1);
}
.hover\:bg-neutral-900\/20:hover {
  background-color: rgb(23 23 23 / 0.2);
}
.hover\:bg-neutral-900\/30:hover {
  background-color: rgb(23 23 23 / 0.3);
}
.hover\:bg-neutral-900\/40:hover {
  background-color: rgb(23 23 23 / 0.4);
}
.hover\:bg-neutral-900\/5:hover {
  background-color: rgb(23 23 23 / 0.05);
}
.hover\:bg-neutral-900\/50:hover {
  background-color: rgb(23 23 23 / 0.5);
}
.hover\:bg-neutral-900\/60:hover {
  background-color: rgb(23 23 23 / 0.6);
}
.hover\:bg-neutral-900\/70:hover {
  background-color: rgb(23 23 23 / 0.7);
}
.hover\:bg-neutral-900\/80:hover {
  background-color: rgb(23 23 23 / 0.8);
}
.hover\:bg-neutral-900\/90:hover {
  background-color: rgb(23 23 23 / 0.9);
}
.hover\:bg-neutral-950:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(10 10 10 / var(--tw-bg-opacity, 1));
}
.hover\:bg-neutral-950\/10:hover {
  background-color: rgb(10 10 10 / 0.1);
}
.hover\:bg-neutral-950\/20:hover {
  background-color: rgb(10 10 10 / 0.2);
}
.hover\:bg-neutral-950\/30:hover {
  background-color: rgb(10 10 10 / 0.3);
}
.hover\:bg-neutral-950\/40:hover {
  background-color: rgb(10 10 10 / 0.4);
}
.hover\:bg-neutral-950\/5:hover {
  background-color: rgb(10 10 10 / 0.05);
}
.hover\:bg-neutral-950\/50:hover {
  background-color: rgb(10 10 10 / 0.5);
}
.hover\:bg-neutral-950\/60:hover {
  background-color: rgb(10 10 10 / 0.6);
}
.hover\:bg-neutral-950\/70:hover {
  background-color: rgb(10 10 10 / 0.7);
}
.hover\:bg-neutral-950\/80:hover {
  background-color: rgb(10 10 10 / 0.8);
}
.hover\:bg-neutral-950\/90:hover {
  background-color: rgb(10 10 10 / 0.9);
}
.hover\:bg-orange-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 237 213 / var(--tw-bg-opacity, 1));
}
.hover\:bg-orange-100\/10:hover {
  background-color: rgb(255 237 213 / 0.1);
}
.hover\:bg-orange-100\/20:hover {
  background-color: rgb(255 237 213 / 0.2);
}
.hover\:bg-orange-100\/30:hover {
  background-color: rgb(255 237 213 / 0.3);
}
.hover\:bg-orange-100\/40:hover {
  background-color: rgb(255 237 213 / 0.4);
}
.hover\:bg-orange-100\/5:hover {
  background-color: rgb(255 237 213 / 0.05);
}
.hover\:bg-orange-100\/50:hover {
  background-color: rgb(255 237 213 / 0.5);
}
.hover\:bg-orange-100\/60:hover {
  background-color: rgb(255 237 213 / 0.6);
}
.hover\:bg-orange-100\/70:hover {
  background-color: rgb(255 237 213 / 0.7);
}
.hover\:bg-orange-100\/80:hover {
  background-color: rgb(255 237 213 / 0.8);
}
.hover\:bg-orange-100\/90:hover {
  background-color: rgb(255 237 213 / 0.9);
}
.hover\:bg-orange-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(254 215 170 / var(--tw-bg-opacity, 1));
}
.hover\:bg-orange-200\/10:hover {
  background-color: rgb(254 215 170 / 0.1);
}
.hover\:bg-orange-200\/20:hover {
  background-color: rgb(254 215 170 / 0.2);
}
.hover\:bg-orange-200\/30:hover {
  background-color: rgb(254 215 170 / 0.3);
}
.hover\:bg-orange-200\/40:hover {
  background-color: rgb(254 215 170 / 0.4);
}
.hover\:bg-orange-200\/5:hover {
  background-color: rgb(254 215 170 / 0.05);
}
.hover\:bg-orange-200\/50:hover {
  background-color: rgb(254 215 170 / 0.5);
}
.hover\:bg-orange-200\/60:hover {
  background-color: rgb(254 215 170 / 0.6);
}
.hover\:bg-orange-200\/70:hover {
  background-color: rgb(254 215 170 / 0.7);
}
.hover\:bg-orange-200\/80:hover {
  background-color: rgb(254 215 170 / 0.8);
}
.hover\:bg-orange-200\/90:hover {
  background-color: rgb(254 215 170 / 0.9);
}
.hover\:bg-orange-300:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(253 186 116 / var(--tw-bg-opacity, 1));
}
.hover\:bg-orange-300\/10:hover {
  background-color: rgb(253 186 116 / 0.1);
}
.hover\:bg-orange-300\/20:hover {
  background-color: rgb(253 186 116 / 0.2);
}
.hover\:bg-orange-300\/30:hover {
  background-color: rgb(253 186 116 / 0.3);
}
.hover\:bg-orange-300\/40:hover {
  background-color: rgb(253 186 116 / 0.4);
}
.hover\:bg-orange-300\/5:hover {
  background-color: rgb(253 186 116 / 0.05);
}
.hover\:bg-orange-300\/50:hover {
  background-color: rgb(253 186 116 / 0.5);
}
.hover\:bg-orange-300\/60:hover {
  background-color: rgb(253 186 116 / 0.6);
}
.hover\:bg-orange-300\/70:hover {
  background-color: rgb(253 186 116 / 0.7);
}
.hover\:bg-orange-300\/80:hover {
  background-color: rgb(253 186 116 / 0.8);
}
.hover\:bg-orange-300\/90:hover {
  background-color: rgb(253 186 116 / 0.9);
}
.hover\:bg-orange-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(251 146 60 / var(--tw-bg-opacity, 1));
}
.hover\:bg-orange-400\/10:hover {
  background-color: rgb(251 146 60 / 0.1);
}
.hover\:bg-orange-400\/20:hover {
  background-color: rgb(251 146 60 / 0.2);
}
.hover\:bg-orange-400\/30:hover {
  background-color: rgb(251 146 60 / 0.3);
}
.hover\:bg-orange-400\/40:hover {
  background-color: rgb(251 146 60 / 0.4);
}
.hover\:bg-orange-400\/5:hover {
  background-color: rgb(251 146 60 / 0.05);
}
.hover\:bg-orange-400\/50:hover {
  background-color: rgb(251 146 60 / 0.5);
}
.hover\:bg-orange-400\/60:hover {
  background-color: rgb(251 146 60 / 0.6);
}
.hover\:bg-orange-400\/70:hover {
  background-color: rgb(251 146 60 / 0.7);
}
.hover\:bg-orange-400\/80:hover {
  background-color: rgb(251 146 60 / 0.8);
}
.hover\:bg-orange-400\/90:hover {
  background-color: rgb(251 146 60 / 0.9);
}
.hover\:bg-orange-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 247 237 / var(--tw-bg-opacity, 1));
}
.hover\:bg-orange-50\/10:hover {
  background-color: rgb(255 247 237 / 0.1);
}
.hover\:bg-orange-50\/20:hover {
  background-color: rgb(255 247 237 / 0.2);
}
.hover\:bg-orange-50\/30:hover {
  background-color: rgb(255 247 237 / 0.3);
}
.hover\:bg-orange-50\/40:hover {
  background-color: rgb(255 247 237 / 0.4);
}
.hover\:bg-orange-50\/5:hover {
  background-color: rgb(255 247 237 / 0.05);
}
.hover\:bg-orange-50\/50:hover {
  background-color: rgb(255 247 237 / 0.5);
}
.hover\:bg-orange-50\/60:hover {
  background-color: rgb(255 247 237 / 0.6);
}
.hover\:bg-orange-50\/70:hover {
  background-color: rgb(255 247 237 / 0.7);
}
.hover\:bg-orange-50\/80:hover {
  background-color: rgb(255 247 237 / 0.8);
}
.hover\:bg-orange-50\/90:hover {
  background-color: rgb(255 247 237 / 0.9);
}
.hover\:bg-orange-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
}
.hover\:bg-orange-500\/10:hover {
  background-color: rgb(249 115 22 / 0.1);
}
.hover\:bg-orange-500\/20:hover {
  background-color: rgb(249 115 22 / 0.2);
}
.hover\:bg-orange-500\/30:hover {
  background-color: rgb(249 115 22 / 0.3);
}
.hover\:bg-orange-500\/40:hover {
  background-color: rgb(249 115 22 / 0.4);
}
.hover\:bg-orange-500\/5:hover {
  background-color: rgb(249 115 22 / 0.05);
}
.hover\:bg-orange-500\/50:hover {
  background-color: rgb(249 115 22 / 0.5);
}
.hover\:bg-orange-500\/60:hover {
  background-color: rgb(249 115 22 / 0.6);
}
.hover\:bg-orange-500\/70:hover {
  background-color: rgb(249 115 22 / 0.7);
}
.hover\:bg-orange-500\/80:hover {
  background-color: rgb(249 115 22 / 0.8);
}
.hover\:bg-orange-500\/90:hover {
  background-color: rgb(249 115 22 / 0.9);
}
.hover\:bg-orange-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(234 88 12 / var(--tw-bg-opacity, 1));
}
.hover\:bg-orange-600\/10:hover {
  background-color: rgb(234 88 12 / 0.1);
}
.hover\:bg-orange-600\/20:hover {
  background-color: rgb(234 88 12 / 0.2);
}
.hover\:bg-orange-600\/30:hover {
  background-color: rgb(234 88 12 / 0.3);
}
.hover\:bg-orange-600\/40:hover {
  background-color: rgb(234 88 12 / 0.4);
}
.hover\:bg-orange-600\/5:hover {
  background-color: rgb(234 88 12 / 0.05);
}
.hover\:bg-orange-600\/50:hover {
  background-color: rgb(234 88 12 / 0.5);
}
.hover\:bg-orange-600\/60:hover {
  background-color: rgb(234 88 12 / 0.6);
}
.hover\:bg-orange-600\/70:hover {
  background-color: rgb(234 88 12 / 0.7);
}
.hover\:bg-orange-600\/80:hover {
  background-color: rgb(234 88 12 / 0.8);
}
.hover\:bg-orange-600\/90:hover {
  background-color: rgb(234 88 12 / 0.9);
}
.hover\:bg-orange-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(194 65 12 / var(--tw-bg-opacity, 1));
}
.hover\:bg-orange-700\/10:hover {
  background-color: rgb(194 65 12 / 0.1);
}
.hover\:bg-orange-700\/20:hover {
  background-color: rgb(194 65 12 / 0.2);
}
.hover\:bg-orange-700\/30:hover {
  background-color: rgb(194 65 12 / 0.3);
}
.hover\:bg-orange-700\/40:hover {
  background-color: rgb(194 65 12 / 0.4);
}
.hover\:bg-orange-700\/5:hover {
  background-color: rgb(194 65 12 / 0.05);
}
.hover\:bg-orange-700\/50:hover {
  background-color: rgb(194 65 12 / 0.5);
}
.hover\:bg-orange-700\/60:hover {
  background-color: rgb(194 65 12 / 0.6);
}
.hover\:bg-orange-700\/70:hover {
  background-color: rgb(194 65 12 / 0.7);
}
.hover\:bg-orange-700\/80:hover {
  background-color: rgb(194 65 12 / 0.8);
}
.hover\:bg-orange-700\/90:hover {
  background-color: rgb(194 65 12 / 0.9);
}
.hover\:bg-orange-800:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(154 52 18 / var(--tw-bg-opacity, 1));
}
.hover\:bg-orange-800\/10:hover {
  background-color: rgb(154 52 18 / 0.1);
}
.hover\:bg-orange-800\/20:hover {
  background-color: rgb(154 52 18 / 0.2);
}
.hover\:bg-orange-800\/30:hover {
  background-color: rgb(154 52 18 / 0.3);
}
.hover\:bg-orange-800\/40:hover {
  background-color: rgb(154 52 18 / 0.4);
}
.hover\:bg-orange-800\/5:hover {
  background-color: rgb(154 52 18 / 0.05);
}
.hover\:bg-orange-800\/50:hover {
  background-color: rgb(154 52 18 / 0.5);
}
.hover\:bg-orange-800\/60:hover {
  background-color: rgb(154 52 18 / 0.6);
}
.hover\:bg-orange-800\/70:hover {
  background-color: rgb(154 52 18 / 0.7);
}
.hover\:bg-orange-800\/80:hover {
  background-color: rgb(154 52 18 / 0.8);
}
.hover\:bg-orange-800\/90:hover {
  background-color: rgb(154 52 18 / 0.9);
}
.hover\:bg-orange-900:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(124 45 18 / var(--tw-bg-opacity, 1));
}
.hover\:bg-orange-900\/10:hover {
  background-color: rgb(124 45 18 / 0.1);
}
.hover\:bg-orange-900\/20:hover {
  background-color: rgb(124 45 18 / 0.2);
}
.hover\:bg-orange-900\/30:hover {
  background-color: rgb(124 45 18 / 0.3);
}
.hover\:bg-orange-900\/40:hover {
  background-color: rgb(124 45 18 / 0.4);
}
.hover\:bg-orange-900\/5:hover {
  background-color: rgb(124 45 18 / 0.05);
}
.hover\:bg-orange-900\/50:hover {
  background-color: rgb(124 45 18 / 0.5);
}
.hover\:bg-orange-900\/60:hover {
  background-color: rgb(124 45 18 / 0.6);
}
.hover\:bg-orange-900\/70:hover {
  background-color: rgb(124 45 18 / 0.7);
}
.hover\:bg-orange-900\/80:hover {
  background-color: rgb(124 45 18 / 0.8);
}
.hover\:bg-orange-900\/90:hover {
  background-color: rgb(124 45 18 / 0.9);
}
.hover\:bg-orange-950:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(67 20 7 / var(--tw-bg-opacity, 1));
}
.hover\:bg-orange-950\/10:hover {
  background-color: rgb(67 20 7 / 0.1);
}
.hover\:bg-orange-950\/20:hover {
  background-color: rgb(67 20 7 / 0.2);
}
.hover\:bg-orange-950\/30:hover {
  background-color: rgb(67 20 7 / 0.3);
}
.hover\:bg-orange-950\/40:hover {
  background-color: rgb(67 20 7 / 0.4);
}
.hover\:bg-orange-950\/5:hover {
  background-color: rgb(67 20 7 / 0.05);
}
.hover\:bg-orange-950\/50:hover {
  background-color: rgb(67 20 7 / 0.5);
}
.hover\:bg-orange-950\/60:hover {
  background-color: rgb(67 20 7 / 0.6);
}
.hover\:bg-orange-950\/70:hover {
  background-color: rgb(67 20 7 / 0.7);
}
.hover\:bg-orange-950\/80:hover {
  background-color: rgb(67 20 7 / 0.8);
}
.hover\:bg-orange-950\/90:hover {
  background-color: rgb(67 20 7 / 0.9);
}
.hover\:bg-pink-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(252 231 243 / var(--tw-bg-opacity, 1));
}
.hover\:bg-pink-100\/10:hover {
  background-color: rgb(252 231 243 / 0.1);
}
.hover\:bg-pink-100\/20:hover {
  background-color: rgb(252 231 243 / 0.2);
}
.hover\:bg-pink-100\/30:hover {
  background-color: rgb(252 231 243 / 0.3);
}
.hover\:bg-pink-100\/40:hover {
  background-color: rgb(252 231 243 / 0.4);
}
.hover\:bg-pink-100\/5:hover {
  background-color: rgb(252 231 243 / 0.05);
}
.hover\:bg-pink-100\/50:hover {
  background-color: rgb(252 231 243 / 0.5);
}
.hover\:bg-pink-100\/60:hover {
  background-color: rgb(252 231 243 / 0.6);
}
.hover\:bg-pink-100\/70:hover {
  background-color: rgb(252 231 243 / 0.7);
}
.hover\:bg-pink-100\/80:hover {
  background-color: rgb(252 231 243 / 0.8);
}
.hover\:bg-pink-100\/90:hover {
  background-color: rgb(252 231 243 / 0.9);
}
.hover\:bg-pink-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(251 207 232 / var(--tw-bg-opacity, 1));
}
.hover\:bg-pink-200\/10:hover {
  background-color: rgb(251 207 232 / 0.1);
}
.hover\:bg-pink-200\/20:hover {
  background-color: rgb(251 207 232 / 0.2);
}
.hover\:bg-pink-200\/30:hover {
  background-color: rgb(251 207 232 / 0.3);
}
.hover\:bg-pink-200\/40:hover {
  background-color: rgb(251 207 232 / 0.4);
}
.hover\:bg-pink-200\/5:hover {
  background-color: rgb(251 207 232 / 0.05);
}
.hover\:bg-pink-200\/50:hover {
  background-color: rgb(251 207 232 / 0.5);
}
.hover\:bg-pink-200\/60:hover {
  background-color: rgb(251 207 232 / 0.6);
}
.hover\:bg-pink-200\/70:hover {
  background-color: rgb(251 207 232 / 0.7);
}
.hover\:bg-pink-200\/80:hover {
  background-color: rgb(251 207 232 / 0.8);
}
.hover\:bg-pink-200\/90:hover {
  background-color: rgb(251 207 232 / 0.9);
}
.hover\:bg-pink-300:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(249 168 212 / var(--tw-bg-opacity, 1));
}
.hover\:bg-pink-300\/10:hover {
  background-color: rgb(249 168 212 / 0.1);
}
.hover\:bg-pink-300\/20:hover {
  background-color: rgb(249 168 212 / 0.2);
}
.hover\:bg-pink-300\/30:hover {
  background-color: rgb(249 168 212 / 0.3);
}
.hover\:bg-pink-300\/40:hover {
  background-color: rgb(249 168 212 / 0.4);
}
.hover\:bg-pink-300\/5:hover {
  background-color: rgb(249 168 212 / 0.05);
}
.hover\:bg-pink-300\/50:hover {
  background-color: rgb(249 168 212 / 0.5);
}
.hover\:bg-pink-300\/60:hover {
  background-color: rgb(249 168 212 / 0.6);
}
.hover\:bg-pink-300\/70:hover {
  background-color: rgb(249 168 212 / 0.7);
}
.hover\:bg-pink-300\/80:hover {
  background-color: rgb(249 168 212 / 0.8);
}
.hover\:bg-pink-300\/90:hover {
  background-color: rgb(249 168 212 / 0.9);
}
.hover\:bg-pink-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(244 114 182 / var(--tw-bg-opacity, 1));
}
.hover\:bg-pink-400\/10:hover {
  background-color: rgb(244 114 182 / 0.1);
}
.hover\:bg-pink-400\/20:hover {
  background-color: rgb(244 114 182 / 0.2);
}
.hover\:bg-pink-400\/30:hover {
  background-color: rgb(244 114 182 / 0.3);
}
.hover\:bg-pink-400\/40:hover {
  background-color: rgb(244 114 182 / 0.4);
}
.hover\:bg-pink-400\/5:hover {
  background-color: rgb(244 114 182 / 0.05);
}
.hover\:bg-pink-400\/50:hover {
  background-color: rgb(244 114 182 / 0.5);
}
.hover\:bg-pink-400\/60:hover {
  background-color: rgb(244 114 182 / 0.6);
}
.hover\:bg-pink-400\/70:hover {
  background-color: rgb(244 114 182 / 0.7);
}
.hover\:bg-pink-400\/80:hover {
  background-color: rgb(244 114 182 / 0.8);
}
.hover\:bg-pink-400\/90:hover {
  background-color: rgb(244 114 182 / 0.9);
}
.hover\:bg-pink-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(253 242 248 / var(--tw-bg-opacity, 1));
}
.hover\:bg-pink-50\/10:hover {
  background-color: rgb(253 242 248 / 0.1);
}
.hover\:bg-pink-50\/20:hover {
  background-color: rgb(253 242 248 / 0.2);
}
.hover\:bg-pink-50\/30:hover {
  background-color: rgb(253 242 248 / 0.3);
}
.hover\:bg-pink-50\/40:hover {
  background-color: rgb(253 242 248 / 0.4);
}
.hover\:bg-pink-50\/5:hover {
  background-color: rgb(253 242 248 / 0.05);
}
.hover\:bg-pink-50\/50:hover {
  background-color: rgb(253 242 248 / 0.5);
}
.hover\:bg-pink-50\/60:hover {
  background-color: rgb(253 242 248 / 0.6);
}
.hover\:bg-pink-50\/70:hover {
  background-color: rgb(253 242 248 / 0.7);
}
.hover\:bg-pink-50\/80:hover {
  background-color: rgb(253 242 248 / 0.8);
}
.hover\:bg-pink-50\/90:hover {
  background-color: rgb(253 242 248 / 0.9);
}
.hover\:bg-pink-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(236 72 153 / var(--tw-bg-opacity, 1));
}
.hover\:bg-pink-500\/10:hover {
  background-color: rgb(236 72 153 / 0.1);
}
.hover\:bg-pink-500\/20:hover {
  background-color: rgb(236 72 153 / 0.2);
}
.hover\:bg-pink-500\/30:hover {
  background-color: rgb(236 72 153 / 0.3);
}
.hover\:bg-pink-500\/40:hover {
  background-color: rgb(236 72 153 / 0.4);
}
.hover\:bg-pink-500\/5:hover {
  background-color: rgb(236 72 153 / 0.05);
}
.hover\:bg-pink-500\/50:hover {
  background-color: rgb(236 72 153 / 0.5);
}
.hover\:bg-pink-500\/60:hover {
  background-color: rgb(236 72 153 / 0.6);
}
.hover\:bg-pink-500\/70:hover {
  background-color: rgb(236 72 153 / 0.7);
}
.hover\:bg-pink-500\/80:hover {
  background-color: rgb(236 72 153 / 0.8);
}
.hover\:bg-pink-500\/90:hover {
  background-color: rgb(236 72 153 / 0.9);
}
.hover\:bg-pink-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(219 39 119 / var(--tw-bg-opacity, 1));
}
.hover\:bg-pink-600\/10:hover {
  background-color: rgb(219 39 119 / 0.1);
}
.hover\:bg-pink-600\/20:hover {
  background-color: rgb(219 39 119 / 0.2);
}
.hover\:bg-pink-600\/30:hover {
  background-color: rgb(219 39 119 / 0.3);
}
.hover\:bg-pink-600\/40:hover {
  background-color: rgb(219 39 119 / 0.4);
}
.hover\:bg-pink-600\/5:hover {
  background-color: rgb(219 39 119 / 0.05);
}
.hover\:bg-pink-600\/50:hover {
  background-color: rgb(219 39 119 / 0.5);
}
.hover\:bg-pink-600\/60:hover {
  background-color: rgb(219 39 119 / 0.6);
}
.hover\:bg-pink-600\/70:hover {
  background-color: rgb(219 39 119 / 0.7);
}
.hover\:bg-pink-600\/80:hover {
  background-color: rgb(219 39 119 / 0.8);
}
.hover\:bg-pink-600\/90:hover {
  background-color: rgb(219 39 119 / 0.9);
}
.hover\:bg-pink-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(190 24 93 / var(--tw-bg-opacity, 1));
}
.hover\:bg-pink-700\/10:hover {
  background-color: rgb(190 24 93 / 0.1);
}
.hover\:bg-pink-700\/20:hover {
  background-color: rgb(190 24 93 / 0.2);
}
.hover\:bg-pink-700\/30:hover {
  background-color: rgb(190 24 93 / 0.3);
}
.hover\:bg-pink-700\/40:hover {
  background-color: rgb(190 24 93 / 0.4);
}
.hover\:bg-pink-700\/5:hover {
  background-color: rgb(190 24 93 / 0.05);
}
.hover\:bg-pink-700\/50:hover {
  background-color: rgb(190 24 93 / 0.5);
}
.hover\:bg-pink-700\/60:hover {
  background-color: rgb(190 24 93 / 0.6);
}
.hover\:bg-pink-700\/70:hover {
  background-color: rgb(190 24 93 / 0.7);
}
.hover\:bg-pink-700\/80:hover {
  background-color: rgb(190 24 93 / 0.8);
}
.hover\:bg-pink-700\/90:hover {
  background-color: rgb(190 24 93 / 0.9);
}
.hover\:bg-pink-800:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(157 23 77 / var(--tw-bg-opacity, 1));
}
.hover\:bg-pink-800\/10:hover {
  background-color: rgb(157 23 77 / 0.1);
}
.hover\:bg-pink-800\/20:hover {
  background-color: rgb(157 23 77 / 0.2);
}
.hover\:bg-pink-800\/30:hover {
  background-color: rgb(157 23 77 / 0.3);
}
.hover\:bg-pink-800\/40:hover {
  background-color: rgb(157 23 77 / 0.4);
}
.hover\:bg-pink-800\/5:hover {
  background-color: rgb(157 23 77 / 0.05);
}
.hover\:bg-pink-800\/50:hover {
  background-color: rgb(157 23 77 / 0.5);
}
.hover\:bg-pink-800\/60:hover {
  background-color: rgb(157 23 77 / 0.6);
}
.hover\:bg-pink-800\/70:hover {
  background-color: rgb(157 23 77 / 0.7);
}
.hover\:bg-pink-800\/80:hover {
  background-color: rgb(157 23 77 / 0.8);
}
.hover\:bg-pink-800\/90:hover {
  background-color: rgb(157 23 77 / 0.9);
}
.hover\:bg-pink-900:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(131 24 67 / var(--tw-bg-opacity, 1));
}
.hover\:bg-pink-900\/10:hover {
  background-color: rgb(131 24 67 / 0.1);
}
.hover\:bg-pink-900\/20:hover {
  background-color: rgb(131 24 67 / 0.2);
}
.hover\:bg-pink-900\/30:hover {
  background-color: rgb(131 24 67 / 0.3);
}
.hover\:bg-pink-900\/40:hover {
  background-color: rgb(131 24 67 / 0.4);
}
.hover\:bg-pink-900\/5:hover {
  background-color: rgb(131 24 67 / 0.05);
}
.hover\:bg-pink-900\/50:hover {
  background-color: rgb(131 24 67 / 0.5);
}
.hover\:bg-pink-900\/60:hover {
  background-color: rgb(131 24 67 / 0.6);
}
.hover\:bg-pink-900\/70:hover {
  background-color: rgb(131 24 67 / 0.7);
}
.hover\:bg-pink-900\/80:hover {
  background-color: rgb(131 24 67 / 0.8);
}
.hover\:bg-pink-900\/90:hover {
  background-color: rgb(131 24 67 / 0.9);
}
.hover\:bg-pink-950:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(80 7 36 / var(--tw-bg-opacity, 1));
}
.hover\:bg-pink-950\/10:hover {
  background-color: rgb(80 7 36 / 0.1);
}
.hover\:bg-pink-950\/20:hover {
  background-color: rgb(80 7 36 / 0.2);
}
.hover\:bg-pink-950\/30:hover {
  background-color: rgb(80 7 36 / 0.3);
}
.hover\:bg-pink-950\/40:hover {
  background-color: rgb(80 7 36 / 0.4);
}
.hover\:bg-pink-950\/5:hover {
  background-color: rgb(80 7 36 / 0.05);
}
.hover\:bg-pink-950\/50:hover {
  background-color: rgb(80 7 36 / 0.5);
}
.hover\:bg-pink-950\/60:hover {
  background-color: rgb(80 7 36 / 0.6);
}
.hover\:bg-pink-950\/70:hover {
  background-color: rgb(80 7 36 / 0.7);
}
.hover\:bg-pink-950\/80:hover {
  background-color: rgb(80 7 36 / 0.8);
}
.hover\:bg-pink-950\/90:hover {
  background-color: rgb(80 7 36 / 0.9);
}
.hover\:bg-primary:hover {
  background-color: var(--primary);
}
.hover\:bg-purple-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(243 232 255 / var(--tw-bg-opacity, 1));
}
.hover\:bg-purple-100\/10:hover {
  background-color: rgb(243 232 255 / 0.1);
}
.hover\:bg-purple-100\/20:hover {
  background-color: rgb(243 232 255 / 0.2);
}
.hover\:bg-purple-100\/30:hover {
  background-color: rgb(243 232 255 / 0.3);
}
.hover\:bg-purple-100\/40:hover {
  background-color: rgb(243 232 255 / 0.4);
}
.hover\:bg-purple-100\/5:hover {
  background-color: rgb(243 232 255 / 0.05);
}
.hover\:bg-purple-100\/50:hover {
  background-color: rgb(243 232 255 / 0.5);
}
.hover\:bg-purple-100\/60:hover {
  background-color: rgb(243 232 255 / 0.6);
}
.hover\:bg-purple-100\/70:hover {
  background-color: rgb(243 232 255 / 0.7);
}
.hover\:bg-purple-100\/80:hover {
  background-color: rgb(243 232 255 / 0.8);
}
.hover\:bg-purple-100\/90:hover {
  background-color: rgb(243 232 255 / 0.9);
}
.hover\:bg-purple-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(233 213 255 / var(--tw-bg-opacity, 1));
}
.hover\:bg-purple-200\/10:hover {
  background-color: rgb(233 213 255 / 0.1);
}
.hover\:bg-purple-200\/20:hover {
  background-color: rgb(233 213 255 / 0.2);
}
.hover\:bg-purple-200\/30:hover {
  background-color: rgb(233 213 255 / 0.3);
}
.hover\:bg-purple-200\/40:hover {
  background-color: rgb(233 213 255 / 0.4);
}
.hover\:bg-purple-200\/5:hover {
  background-color: rgb(233 213 255 / 0.05);
}
.hover\:bg-purple-200\/50:hover {
  background-color: rgb(233 213 255 / 0.5);
}
.hover\:bg-purple-200\/60:hover {
  background-color: rgb(233 213 255 / 0.6);
}
.hover\:bg-purple-200\/70:hover {
  background-color: rgb(233 213 255 / 0.7);
}
.hover\:bg-purple-200\/80:hover {
  background-color: rgb(233 213 255 / 0.8);
}
.hover\:bg-purple-200\/90:hover {
  background-color: rgb(233 213 255 / 0.9);
}
.hover\:bg-purple-300:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(216 180 254 / var(--tw-bg-opacity, 1));
}
.hover\:bg-purple-300\/10:hover {
  background-color: rgb(216 180 254 / 0.1);
}
.hover\:bg-purple-300\/20:hover {
  background-color: rgb(216 180 254 / 0.2);
}
.hover\:bg-purple-300\/30:hover {
  background-color: rgb(216 180 254 / 0.3);
}
.hover\:bg-purple-300\/40:hover {
  background-color: rgb(216 180 254 / 0.4);
}
.hover\:bg-purple-300\/5:hover {
  background-color: rgb(216 180 254 / 0.05);
}
.hover\:bg-purple-300\/50:hover {
  background-color: rgb(216 180 254 / 0.5);
}
.hover\:bg-purple-300\/60:hover {
  background-color: rgb(216 180 254 / 0.6);
}
.hover\:bg-purple-300\/70:hover {
  background-color: rgb(216 180 254 / 0.7);
}
.hover\:bg-purple-300\/80:hover {
  background-color: rgb(216 180 254 / 0.8);
}
.hover\:bg-purple-300\/90:hover {
  background-color: rgb(216 180 254 / 0.9);
}
.hover\:bg-purple-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(192 132 252 / var(--tw-bg-opacity, 1));
}
.hover\:bg-purple-400\/10:hover {
  background-color: rgb(192 132 252 / 0.1);
}
.hover\:bg-purple-400\/20:hover {
  background-color: rgb(192 132 252 / 0.2);
}
.hover\:bg-purple-400\/30:hover {
  background-color: rgb(192 132 252 / 0.3);
}
.hover\:bg-purple-400\/40:hover {
  background-color: rgb(192 132 252 / 0.4);
}
.hover\:bg-purple-400\/5:hover {
  background-color: rgb(192 132 252 / 0.05);
}
.hover\:bg-purple-400\/50:hover {
  background-color: rgb(192 132 252 / 0.5);
}
.hover\:bg-purple-400\/60:hover {
  background-color: rgb(192 132 252 / 0.6);
}
.hover\:bg-purple-400\/70:hover {
  background-color: rgb(192 132 252 / 0.7);
}
.hover\:bg-purple-400\/80:hover {
  background-color: rgb(192 132 252 / 0.8);
}
.hover\:bg-purple-400\/90:hover {
  background-color: rgb(192 132 252 / 0.9);
}
.hover\:bg-purple-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(250 245 255 / var(--tw-bg-opacity, 1));
}
.hover\:bg-purple-50\/10:hover {
  background-color: rgb(250 245 255 / 0.1);
}
.hover\:bg-purple-50\/20:hover {
  background-color: rgb(250 245 255 / 0.2);
}
.hover\:bg-purple-50\/30:hover {
  background-color: rgb(250 245 255 / 0.3);
}
.hover\:bg-purple-50\/40:hover {
  background-color: rgb(250 245 255 / 0.4);
}
.hover\:bg-purple-50\/5:hover {
  background-color: rgb(250 245 255 / 0.05);
}
.hover\:bg-purple-50\/50:hover {
  background-color: rgb(250 245 255 / 0.5);
}
.hover\:bg-purple-50\/60:hover {
  background-color: rgb(250 245 255 / 0.6);
}
.hover\:bg-purple-50\/70:hover {
  background-color: rgb(250 245 255 / 0.7);
}
.hover\:bg-purple-50\/80:hover {
  background-color: rgb(250 245 255 / 0.8);
}
.hover\:bg-purple-50\/90:hover {
  background-color: rgb(250 245 255 / 0.9);
}
.hover\:bg-purple-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(168 85 247 / var(--tw-bg-opacity, 1));
}
.hover\:bg-purple-500\/10:hover {
  background-color: rgb(168 85 247 / 0.1);
}
.hover\:bg-purple-500\/20:hover {
  background-color: rgb(168 85 247 / 0.2);
}
.hover\:bg-purple-500\/30:hover {
  background-color: rgb(168 85 247 / 0.3);
}
.hover\:bg-purple-500\/40:hover {
  background-color: rgb(168 85 247 / 0.4);
}
.hover\:bg-purple-500\/5:hover {
  background-color: rgb(168 85 247 / 0.05);
}
.hover\:bg-purple-500\/50:hover {
  background-color: rgb(168 85 247 / 0.5);
}
.hover\:bg-purple-500\/60:hover {
  background-color: rgb(168 85 247 / 0.6);
}
.hover\:bg-purple-500\/70:hover {
  background-color: rgb(168 85 247 / 0.7);
}
.hover\:bg-purple-500\/80:hover {
  background-color: rgb(168 85 247 / 0.8);
}
.hover\:bg-purple-500\/90:hover {
  background-color: rgb(168 85 247 / 0.9);
}
.hover\:bg-purple-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(147 51 234 / var(--tw-bg-opacity, 1));
}
.hover\:bg-purple-600\/10:hover {
  background-color: rgb(147 51 234 / 0.1);
}
.hover\:bg-purple-600\/20:hover {
  background-color: rgb(147 51 234 / 0.2);
}
.hover\:bg-purple-600\/30:hover {
  background-color: rgb(147 51 234 / 0.3);
}
.hover\:bg-purple-600\/40:hover {
  background-color: rgb(147 51 234 / 0.4);
}
.hover\:bg-purple-600\/5:hover {
  background-color: rgb(147 51 234 / 0.05);
}
.hover\:bg-purple-600\/50:hover {
  background-color: rgb(147 51 234 / 0.5);
}
.hover\:bg-purple-600\/60:hover {
  background-color: rgb(147 51 234 / 0.6);
}
.hover\:bg-purple-600\/70:hover {
  background-color: rgb(147 51 234 / 0.7);
}
.hover\:bg-purple-600\/80:hover {
  background-color: rgb(147 51 234 / 0.8);
}
.hover\:bg-purple-600\/90:hover {
  background-color: rgb(147 51 234 / 0.9);
}
.hover\:bg-purple-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(126 34 206 / var(--tw-bg-opacity, 1));
}
.hover\:bg-purple-700\/10:hover {
  background-color: rgb(126 34 206 / 0.1);
}
.hover\:bg-purple-700\/20:hover {
  background-color: rgb(126 34 206 / 0.2);
}
.hover\:bg-purple-700\/30:hover {
  background-color: rgb(126 34 206 / 0.3);
}
.hover\:bg-purple-700\/40:hover {
  background-color: rgb(126 34 206 / 0.4);
}
.hover\:bg-purple-700\/5:hover {
  background-color: rgb(126 34 206 / 0.05);
}
.hover\:bg-purple-700\/50:hover {
  background-color: rgb(126 34 206 / 0.5);
}
.hover\:bg-purple-700\/60:hover {
  background-color: rgb(126 34 206 / 0.6);
}
.hover\:bg-purple-700\/70:hover {
  background-color: rgb(126 34 206 / 0.7);
}
.hover\:bg-purple-700\/80:hover {
  background-color: rgb(126 34 206 / 0.8);
}
.hover\:bg-purple-700\/90:hover {
  background-color: rgb(126 34 206 / 0.9);
}
.hover\:bg-purple-800:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(107 33 168 / var(--tw-bg-opacity, 1));
}
.hover\:bg-purple-800\/10:hover {
  background-color: rgb(107 33 168 / 0.1);
}
.hover\:bg-purple-800\/20:hover {
  background-color: rgb(107 33 168 / 0.2);
}
.hover\:bg-purple-800\/30:hover {
  background-color: rgb(107 33 168 / 0.3);
}
.hover\:bg-purple-800\/40:hover {
  background-color: rgb(107 33 168 / 0.4);
}
.hover\:bg-purple-800\/5:hover {
  background-color: rgb(107 33 168 / 0.05);
}
.hover\:bg-purple-800\/50:hover {
  background-color: rgb(107 33 168 / 0.5);
}
.hover\:bg-purple-800\/60:hover {
  background-color: rgb(107 33 168 / 0.6);
}
.hover\:bg-purple-800\/70:hover {
  background-color: rgb(107 33 168 / 0.7);
}
.hover\:bg-purple-800\/80:hover {
  background-color: rgb(107 33 168 / 0.8);
}
.hover\:bg-purple-800\/90:hover {
  background-color: rgb(107 33 168 / 0.9);
}
.hover\:bg-purple-900:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(88 28 135 / var(--tw-bg-opacity, 1));
}
.hover\:bg-purple-900\/10:hover {
  background-color: rgb(88 28 135 / 0.1);
}
.hover\:bg-purple-900\/20:hover {
  background-color: rgb(88 28 135 / 0.2);
}
.hover\:bg-purple-900\/30:hover {
  background-color: rgb(88 28 135 / 0.3);
}
.hover\:bg-purple-900\/40:hover {
  background-color: rgb(88 28 135 / 0.4);
}
.hover\:bg-purple-900\/5:hover {
  background-color: rgb(88 28 135 / 0.05);
}
.hover\:bg-purple-900\/50:hover {
  background-color: rgb(88 28 135 / 0.5);
}
.hover\:bg-purple-900\/60:hover {
  background-color: rgb(88 28 135 / 0.6);
}
.hover\:bg-purple-900\/70:hover {
  background-color: rgb(88 28 135 / 0.7);
}
.hover\:bg-purple-900\/80:hover {
  background-color: rgb(88 28 135 / 0.8);
}
.hover\:bg-purple-900\/90:hover {
  background-color: rgb(88 28 135 / 0.9);
}
.hover\:bg-purple-950:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(59 7 100 / var(--tw-bg-opacity, 1));
}
.hover\:bg-purple-950\/10:hover {
  background-color: rgb(59 7 100 / 0.1);
}
.hover\:bg-purple-950\/20:hover {
  background-color: rgb(59 7 100 / 0.2);
}
.hover\:bg-purple-950\/30:hover {
  background-color: rgb(59 7 100 / 0.3);
}
.hover\:bg-purple-950\/40:hover {
  background-color: rgb(59 7 100 / 0.4);
}
.hover\:bg-purple-950\/5:hover {
  background-color: rgb(59 7 100 / 0.05);
}
.hover\:bg-purple-950\/50:hover {
  background-color: rgb(59 7 100 / 0.5);
}
.hover\:bg-purple-950\/60:hover {
  background-color: rgb(59 7 100 / 0.6);
}
.hover\:bg-purple-950\/70:hover {
  background-color: rgb(59 7 100 / 0.7);
}
.hover\:bg-purple-950\/80:hover {
  background-color: rgb(59 7 100 / 0.8);
}
.hover\:bg-purple-950\/90:hover {
  background-color: rgb(59 7 100 / 0.9);
}
.hover\:bg-red-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}
.hover\:bg-red-100\/10:hover {
  background-color: rgb(254 226 226 / 0.1);
}
.hover\:bg-red-100\/20:hover {
  background-color: rgb(254 226 226 / 0.2);
}
.hover\:bg-red-100\/30:hover {
  background-color: rgb(254 226 226 / 0.3);
}
.hover\:bg-red-100\/40:hover {
  background-color: rgb(254 226 226 / 0.4);
}
.hover\:bg-red-100\/5:hover {
  background-color: rgb(254 226 226 / 0.05);
}
.hover\:bg-red-100\/50:hover {
  background-color: rgb(254 226 226 / 0.5);
}
.hover\:bg-red-100\/60:hover {
  background-color: rgb(254 226 226 / 0.6);
}
.hover\:bg-red-100\/70:hover {
  background-color: rgb(254 226 226 / 0.7);
}
.hover\:bg-red-100\/80:hover {
  background-color: rgb(254 226 226 / 0.8);
}
.hover\:bg-red-100\/90:hover {
  background-color: rgb(254 226 226 / 0.9);
}
.hover\:bg-red-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(254 202 202 / var(--tw-bg-opacity, 1));
}
.hover\:bg-red-200\/10:hover {
  background-color: rgb(254 202 202 / 0.1);
}
.hover\:bg-red-200\/20:hover {
  background-color: rgb(254 202 202 / 0.2);
}
.hover\:bg-red-200\/30:hover {
  background-color: rgb(254 202 202 / 0.3);
}
.hover\:bg-red-200\/40:hover {
  background-color: rgb(254 202 202 / 0.4);
}
.hover\:bg-red-200\/5:hover {
  background-color: rgb(254 202 202 / 0.05);
}
.hover\:bg-red-200\/50:hover {
  background-color: rgb(254 202 202 / 0.5);
}
.hover\:bg-red-200\/60:hover {
  background-color: rgb(254 202 202 / 0.6);
}
.hover\:bg-red-200\/70:hover {
  background-color: rgb(254 202 202 / 0.7);
}
.hover\:bg-red-200\/80:hover {
  background-color: rgb(254 202 202 / 0.8);
}
.hover\:bg-red-200\/90:hover {
  background-color: rgb(254 202 202 / 0.9);
}
.hover\:bg-red-300:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(252 165 165 / var(--tw-bg-opacity, 1));
}
.hover\:bg-red-300\/10:hover {
  background-color: rgb(252 165 165 / 0.1);
}
.hover\:bg-red-300\/20:hover {
  background-color: rgb(252 165 165 / 0.2);
}
.hover\:bg-red-300\/30:hover {
  background-color: rgb(252 165 165 / 0.3);
}
.hover\:bg-red-300\/40:hover {
  background-color: rgb(252 165 165 / 0.4);
}
.hover\:bg-red-300\/5:hover {
  background-color: rgb(252 165 165 / 0.05);
}
.hover\:bg-red-300\/50:hover {
  background-color: rgb(252 165 165 / 0.5);
}
.hover\:bg-red-300\/60:hover {
  background-color: rgb(252 165 165 / 0.6);
}
.hover\:bg-red-300\/70:hover {
  background-color: rgb(252 165 165 / 0.7);
}
.hover\:bg-red-300\/80:hover {
  background-color: rgb(252 165 165 / 0.8);
}
.hover\:bg-red-300\/90:hover {
  background-color: rgb(252 165 165 / 0.9);
}
.hover\:bg-red-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(248 113 113 / var(--tw-bg-opacity, 1));
}
.hover\:bg-red-400\/10:hover {
  background-color: rgb(248 113 113 / 0.1);
}
.hover\:bg-red-400\/20:hover {
  background-color: rgb(248 113 113 / 0.2);
}
.hover\:bg-red-400\/30:hover {
  background-color: rgb(248 113 113 / 0.3);
}
.hover\:bg-red-400\/40:hover {
  background-color: rgb(248 113 113 / 0.4);
}
.hover\:bg-red-400\/5:hover {
  background-color: rgb(248 113 113 / 0.05);
}
.hover\:bg-red-400\/50:hover {
  background-color: rgb(248 113 113 / 0.5);
}
.hover\:bg-red-400\/60:hover {
  background-color: rgb(248 113 113 / 0.6);
}
.hover\:bg-red-400\/70:hover {
  background-color: rgb(248 113 113 / 0.7);
}
.hover\:bg-red-400\/80:hover {
  background-color: rgb(248 113 113 / 0.8);
}
.hover\:bg-red-400\/90:hover {
  background-color: rgb(248 113 113 / 0.9);
}
.hover\:bg-red-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}
.hover\:bg-red-50\/10:hover {
  background-color: rgb(254 242 242 / 0.1);
}
.hover\:bg-red-50\/20:hover {
  background-color: rgb(254 242 242 / 0.2);
}
.hover\:bg-red-50\/30:hover {
  background-color: rgb(254 242 242 / 0.3);
}
.hover\:bg-red-50\/40:hover {
  background-color: rgb(254 242 242 / 0.4);
}
.hover\:bg-red-50\/5:hover {
  background-color: rgb(254 242 242 / 0.05);
}
.hover\:bg-red-50\/50:hover {
  background-color: rgb(254 242 242 / 0.5);
}
.hover\:bg-red-50\/60:hover {
  background-color: rgb(254 242 242 / 0.6);
}
.hover\:bg-red-50\/70:hover {
  background-color: rgb(254 242 242 / 0.7);
}
.hover\:bg-red-50\/80:hover {
  background-color: rgb(254 242 242 / 0.8);
}
.hover\:bg-red-50\/90:hover {
  background-color: rgb(254 242 242 / 0.9);
}
.hover\:bg-red-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}
.hover\:bg-red-500\/10:hover {
  background-color: rgb(239 68 68 / 0.1);
}
.hover\:bg-red-500\/20:hover {
  background-color: rgb(239 68 68 / 0.2);
}
.hover\:bg-red-500\/30:hover {
  background-color: rgb(239 68 68 / 0.3);
}
.hover\:bg-red-500\/40:hover {
  background-color: rgb(239 68 68 / 0.4);
}
.hover\:bg-red-500\/5:hover {
  background-color: rgb(239 68 68 / 0.05);
}
.hover\:bg-red-500\/50:hover {
  background-color: rgb(239 68 68 / 0.5);
}
.hover\:bg-red-500\/60:hover {
  background-color: rgb(239 68 68 / 0.6);
}
.hover\:bg-red-500\/70:hover {
  background-color: rgb(239 68 68 / 0.7);
}
.hover\:bg-red-500\/80:hover {
  background-color: rgb(239 68 68 / 0.8);
}
.hover\:bg-red-500\/90:hover {
  background-color: rgb(239 68 68 / 0.9);
}
.hover\:bg-red-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}
.hover\:bg-red-600\/10:hover {
  background-color: rgb(220 38 38 / 0.1);
}
.hover\:bg-red-600\/20:hover {
  background-color: rgb(220 38 38 / 0.2);
}
.hover\:bg-red-600\/30:hover {
  background-color: rgb(220 38 38 / 0.3);
}
.hover\:bg-red-600\/40:hover {
  background-color: rgb(220 38 38 / 0.4);
}
.hover\:bg-red-600\/5:hover {
  background-color: rgb(220 38 38 / 0.05);
}
.hover\:bg-red-600\/50:hover {
  background-color: rgb(220 38 38 / 0.5);
}
.hover\:bg-red-600\/60:hover {
  background-color: rgb(220 38 38 / 0.6);
}
.hover\:bg-red-600\/70:hover {
  background-color: rgb(220 38 38 / 0.7);
}
.hover\:bg-red-600\/80:hover {
  background-color: rgb(220 38 38 / 0.8);
}
.hover\:bg-red-600\/90:hover {
  background-color: rgb(220 38 38 / 0.9);
}
.hover\:bg-red-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
}
.hover\:bg-red-700\/10:hover {
  background-color: rgb(185 28 28 / 0.1);
}
.hover\:bg-red-700\/20:hover {
  background-color: rgb(185 28 28 / 0.2);
}
.hover\:bg-red-700\/30:hover {
  background-color: rgb(185 28 28 / 0.3);
}
.hover\:bg-red-700\/40:hover {
  background-color: rgb(185 28 28 / 0.4);
}
.hover\:bg-red-700\/5:hover {
  background-color: rgb(185 28 28 / 0.05);
}
.hover\:bg-red-700\/50:hover {
  background-color: rgb(185 28 28 / 0.5);
}
.hover\:bg-red-700\/60:hover {
  background-color: rgb(185 28 28 / 0.6);
}
.hover\:bg-red-700\/70:hover {
  background-color: rgb(185 28 28 / 0.7);
}
.hover\:bg-red-700\/80:hover {
  background-color: rgb(185 28 28 / 0.8);
}
.hover\:bg-red-700\/90:hover {
  background-color: rgb(185 28 28 / 0.9);
}
.hover\:bg-red-800:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(153 27 27 / var(--tw-bg-opacity, 1));
}
.hover\:bg-red-800\/10:hover {
  background-color: rgb(153 27 27 / 0.1);
}
.hover\:bg-red-800\/20:hover {
  background-color: rgb(153 27 27 / 0.2);
}
.hover\:bg-red-800\/30:hover {
  background-color: rgb(153 27 27 / 0.3);
}
.hover\:bg-red-800\/40:hover {
  background-color: rgb(153 27 27 / 0.4);
}
.hover\:bg-red-800\/5:hover {
  background-color: rgb(153 27 27 / 0.05);
}
.hover\:bg-red-800\/50:hover {
  background-color: rgb(153 27 27 / 0.5);
}
.hover\:bg-red-800\/60:hover {
  background-color: rgb(153 27 27 / 0.6);
}
.hover\:bg-red-800\/70:hover {
  background-color: rgb(153 27 27 / 0.7);
}
.hover\:bg-red-800\/80:hover {
  background-color: rgb(153 27 27 / 0.8);
}
.hover\:bg-red-800\/90:hover {
  background-color: rgb(153 27 27 / 0.9);
}
.hover\:bg-red-900:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(127 29 29 / var(--tw-bg-opacity, 1));
}
.hover\:bg-red-900\/10:hover {
  background-color: rgb(127 29 29 / 0.1);
}
.hover\:bg-red-900\/20:hover {
  background-color: rgb(127 29 29 / 0.2);
}
.hover\:bg-red-900\/30:hover {
  background-color: rgb(127 29 29 / 0.3);
}
.hover\:bg-red-900\/40:hover {
  background-color: rgb(127 29 29 / 0.4);
}
.hover\:bg-red-900\/5:hover {
  background-color: rgb(127 29 29 / 0.05);
}
.hover\:bg-red-900\/50:hover {
  background-color: rgb(127 29 29 / 0.5);
}
.hover\:bg-red-900\/60:hover {
  background-color: rgb(127 29 29 / 0.6);
}
.hover\:bg-red-900\/70:hover {
  background-color: rgb(127 29 29 / 0.7);
}
.hover\:bg-red-900\/80:hover {
  background-color: rgb(127 29 29 / 0.8);
}
.hover\:bg-red-900\/90:hover {
  background-color: rgb(127 29 29 / 0.9);
}
.hover\:bg-red-950:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(69 10 10 / var(--tw-bg-opacity, 1));
}
.hover\:bg-red-950\/10:hover {
  background-color: rgb(69 10 10 / 0.1);
}
.hover\:bg-red-950\/20:hover {
  background-color: rgb(69 10 10 / 0.2);
}
.hover\:bg-red-950\/30:hover {
  background-color: rgb(69 10 10 / 0.3);
}
.hover\:bg-red-950\/40:hover {
  background-color: rgb(69 10 10 / 0.4);
}
.hover\:bg-red-950\/5:hover {
  background-color: rgb(69 10 10 / 0.05);
}
.hover\:bg-red-950\/50:hover {
  background-color: rgb(69 10 10 / 0.5);
}
.hover\:bg-red-950\/60:hover {
  background-color: rgb(69 10 10 / 0.6);
}
.hover\:bg-red-950\/70:hover {
  background-color: rgb(69 10 10 / 0.7);
}
.hover\:bg-red-950\/80:hover {
  background-color: rgb(69 10 10 / 0.8);
}
.hover\:bg-red-950\/90:hover {
  background-color: rgb(69 10 10 / 0.9);
}
.hover\:bg-rose-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 228 230 / var(--tw-bg-opacity, 1));
}
.hover\:bg-rose-100\/10:hover {
  background-color: rgb(255 228 230 / 0.1);
}
.hover\:bg-rose-100\/20:hover {
  background-color: rgb(255 228 230 / 0.2);
}
.hover\:bg-rose-100\/30:hover {
  background-color: rgb(255 228 230 / 0.3);
}
.hover\:bg-rose-100\/40:hover {
  background-color: rgb(255 228 230 / 0.4);
}
.hover\:bg-rose-100\/5:hover {
  background-color: rgb(255 228 230 / 0.05);
}
.hover\:bg-rose-100\/50:hover {
  background-color: rgb(255 228 230 / 0.5);
}
.hover\:bg-rose-100\/60:hover {
  background-color: rgb(255 228 230 / 0.6);
}
.hover\:bg-rose-100\/70:hover {
  background-color: rgb(255 228 230 / 0.7);
}
.hover\:bg-rose-100\/80:hover {
  background-color: rgb(255 228 230 / 0.8);
}
.hover\:bg-rose-100\/90:hover {
  background-color: rgb(255 228 230 / 0.9);
}
.hover\:bg-rose-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(254 205 211 / var(--tw-bg-opacity, 1));
}
.hover\:bg-rose-200\/10:hover {
  background-color: rgb(254 205 211 / 0.1);
}
.hover\:bg-rose-200\/20:hover {
  background-color: rgb(254 205 211 / 0.2);
}
.hover\:bg-rose-200\/30:hover {
  background-color: rgb(254 205 211 / 0.3);
}
.hover\:bg-rose-200\/40:hover {
  background-color: rgb(254 205 211 / 0.4);
}
.hover\:bg-rose-200\/5:hover {
  background-color: rgb(254 205 211 / 0.05);
}
.hover\:bg-rose-200\/50:hover {
  background-color: rgb(254 205 211 / 0.5);
}
.hover\:bg-rose-200\/60:hover {
  background-color: rgb(254 205 211 / 0.6);
}
.hover\:bg-rose-200\/70:hover {
  background-color: rgb(254 205 211 / 0.7);
}
.hover\:bg-rose-200\/80:hover {
  background-color: rgb(254 205 211 / 0.8);
}
.hover\:bg-rose-200\/90:hover {
  background-color: rgb(254 205 211 / 0.9);
}
.hover\:bg-rose-300:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(253 164 175 / var(--tw-bg-opacity, 1));
}
.hover\:bg-rose-300\/10:hover {
  background-color: rgb(253 164 175 / 0.1);
}
.hover\:bg-rose-300\/20:hover {
  background-color: rgb(253 164 175 / 0.2);
}
.hover\:bg-rose-300\/30:hover {
  background-color: rgb(253 164 175 / 0.3);
}
.hover\:bg-rose-300\/40:hover {
  background-color: rgb(253 164 175 / 0.4);
}
.hover\:bg-rose-300\/5:hover {
  background-color: rgb(253 164 175 / 0.05);
}
.hover\:bg-rose-300\/50:hover {
  background-color: rgb(253 164 175 / 0.5);
}
.hover\:bg-rose-300\/60:hover {
  background-color: rgb(253 164 175 / 0.6);
}
.hover\:bg-rose-300\/70:hover {
  background-color: rgb(253 164 175 / 0.7);
}
.hover\:bg-rose-300\/80:hover {
  background-color: rgb(253 164 175 / 0.8);
}
.hover\:bg-rose-300\/90:hover {
  background-color: rgb(253 164 175 / 0.9);
}
.hover\:bg-rose-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(251 113 133 / var(--tw-bg-opacity, 1));
}
.hover\:bg-rose-400\/10:hover {
  background-color: rgb(251 113 133 / 0.1);
}
.hover\:bg-rose-400\/20:hover {
  background-color: rgb(251 113 133 / 0.2);
}
.hover\:bg-rose-400\/30:hover {
  background-color: rgb(251 113 133 / 0.3);
}
.hover\:bg-rose-400\/40:hover {
  background-color: rgb(251 113 133 / 0.4);
}
.hover\:bg-rose-400\/5:hover {
  background-color: rgb(251 113 133 / 0.05);
}
.hover\:bg-rose-400\/50:hover {
  background-color: rgb(251 113 133 / 0.5);
}
.hover\:bg-rose-400\/60:hover {
  background-color: rgb(251 113 133 / 0.6);
}
.hover\:bg-rose-400\/70:hover {
  background-color: rgb(251 113 133 / 0.7);
}
.hover\:bg-rose-400\/80:hover {
  background-color: rgb(251 113 133 / 0.8);
}
.hover\:bg-rose-400\/90:hover {
  background-color: rgb(251 113 133 / 0.9);
}
.hover\:bg-rose-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 241 242 / var(--tw-bg-opacity, 1));
}
.hover\:bg-rose-50\/10:hover {
  background-color: rgb(255 241 242 / 0.1);
}
.hover\:bg-rose-50\/20:hover {
  background-color: rgb(255 241 242 / 0.2);
}
.hover\:bg-rose-50\/30:hover {
  background-color: rgb(255 241 242 / 0.3);
}
.hover\:bg-rose-50\/40:hover {
  background-color: rgb(255 241 242 / 0.4);
}
.hover\:bg-rose-50\/5:hover {
  background-color: rgb(255 241 242 / 0.05);
}
.hover\:bg-rose-50\/50:hover {
  background-color: rgb(255 241 242 / 0.5);
}
.hover\:bg-rose-50\/60:hover {
  background-color: rgb(255 241 242 / 0.6);
}
.hover\:bg-rose-50\/70:hover {
  background-color: rgb(255 241 242 / 0.7);
}
.hover\:bg-rose-50\/80:hover {
  background-color: rgb(255 241 242 / 0.8);
}
.hover\:bg-rose-50\/90:hover {
  background-color: rgb(255 241 242 / 0.9);
}
.hover\:bg-rose-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(244 63 94 / var(--tw-bg-opacity, 1));
}
.hover\:bg-rose-500\/10:hover {
  background-color: rgb(244 63 94 / 0.1);
}
.hover\:bg-rose-500\/20:hover {
  background-color: rgb(244 63 94 / 0.2);
}
.hover\:bg-rose-500\/30:hover {
  background-color: rgb(244 63 94 / 0.3);
}
.hover\:bg-rose-500\/40:hover {
  background-color: rgb(244 63 94 / 0.4);
}
.hover\:bg-rose-500\/5:hover {
  background-color: rgb(244 63 94 / 0.05);
}
.hover\:bg-rose-500\/50:hover {
  background-color: rgb(244 63 94 / 0.5);
}
.hover\:bg-rose-500\/60:hover {
  background-color: rgb(244 63 94 / 0.6);
}
.hover\:bg-rose-500\/70:hover {
  background-color: rgb(244 63 94 / 0.7);
}
.hover\:bg-rose-500\/80:hover {
  background-color: rgb(244 63 94 / 0.8);
}
.hover\:bg-rose-500\/90:hover {
  background-color: rgb(244 63 94 / 0.9);
}
.hover\:bg-rose-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(225 29 72 / var(--tw-bg-opacity, 1));
}
.hover\:bg-rose-600\/10:hover {
  background-color: rgb(225 29 72 / 0.1);
}
.hover\:bg-rose-600\/20:hover {
  background-color: rgb(225 29 72 / 0.2);
}
.hover\:bg-rose-600\/30:hover {
  background-color: rgb(225 29 72 / 0.3);
}
.hover\:bg-rose-600\/40:hover {
  background-color: rgb(225 29 72 / 0.4);
}
.hover\:bg-rose-600\/5:hover {
  background-color: rgb(225 29 72 / 0.05);
}
.hover\:bg-rose-600\/50:hover {
  background-color: rgb(225 29 72 / 0.5);
}
.hover\:bg-rose-600\/60:hover {
  background-color: rgb(225 29 72 / 0.6);
}
.hover\:bg-rose-600\/70:hover {
  background-color: rgb(225 29 72 / 0.7);
}
.hover\:bg-rose-600\/80:hover {
  background-color: rgb(225 29 72 / 0.8);
}
.hover\:bg-rose-600\/90:hover {
  background-color: rgb(225 29 72 / 0.9);
}
.hover\:bg-rose-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(190 18 60 / var(--tw-bg-opacity, 1));
}
.hover\:bg-rose-700\/10:hover {
  background-color: rgb(190 18 60 / 0.1);
}
.hover\:bg-rose-700\/20:hover {
  background-color: rgb(190 18 60 / 0.2);
}
.hover\:bg-rose-700\/30:hover {
  background-color: rgb(190 18 60 / 0.3);
}
.hover\:bg-rose-700\/40:hover {
  background-color: rgb(190 18 60 / 0.4);
}
.hover\:bg-rose-700\/5:hover {
  background-color: rgb(190 18 60 / 0.05);
}
.hover\:bg-rose-700\/50:hover {
  background-color: rgb(190 18 60 / 0.5);
}
.hover\:bg-rose-700\/60:hover {
  background-color: rgb(190 18 60 / 0.6);
}
.hover\:bg-rose-700\/70:hover {
  background-color: rgb(190 18 60 / 0.7);
}
.hover\:bg-rose-700\/80:hover {
  background-color: rgb(190 18 60 / 0.8);
}
.hover\:bg-rose-700\/90:hover {
  background-color: rgb(190 18 60 / 0.9);
}
.hover\:bg-rose-800:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(159 18 57 / var(--tw-bg-opacity, 1));
}
.hover\:bg-rose-800\/10:hover {
  background-color: rgb(159 18 57 / 0.1);
}
.hover\:bg-rose-800\/20:hover {
  background-color: rgb(159 18 57 / 0.2);
}
.hover\:bg-rose-800\/30:hover {
  background-color: rgb(159 18 57 / 0.3);
}
.hover\:bg-rose-800\/40:hover {
  background-color: rgb(159 18 57 / 0.4);
}
.hover\:bg-rose-800\/5:hover {
  background-color: rgb(159 18 57 / 0.05);
}
.hover\:bg-rose-800\/50:hover {
  background-color: rgb(159 18 57 / 0.5);
}
.hover\:bg-rose-800\/60:hover {
  background-color: rgb(159 18 57 / 0.6);
}
.hover\:bg-rose-800\/70:hover {
  background-color: rgb(159 18 57 / 0.7);
}
.hover\:bg-rose-800\/80:hover {
  background-color: rgb(159 18 57 / 0.8);
}
.hover\:bg-rose-800\/90:hover {
  background-color: rgb(159 18 57 / 0.9);
}
.hover\:bg-rose-900:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(136 19 55 / var(--tw-bg-opacity, 1));
}
.hover\:bg-rose-900\/10:hover {
  background-color: rgb(136 19 55 / 0.1);
}
.hover\:bg-rose-900\/20:hover {
  background-color: rgb(136 19 55 / 0.2);
}
.hover\:bg-rose-900\/30:hover {
  background-color: rgb(136 19 55 / 0.3);
}
.hover\:bg-rose-900\/40:hover {
  background-color: rgb(136 19 55 / 0.4);
}
.hover\:bg-rose-900\/5:hover {
  background-color: rgb(136 19 55 / 0.05);
}
.hover\:bg-rose-900\/50:hover {
  background-color: rgb(136 19 55 / 0.5);
}
.hover\:bg-rose-900\/60:hover {
  background-color: rgb(136 19 55 / 0.6);
}
.hover\:bg-rose-900\/70:hover {
  background-color: rgb(136 19 55 / 0.7);
}
.hover\:bg-rose-900\/80:hover {
  background-color: rgb(136 19 55 / 0.8);
}
.hover\:bg-rose-900\/90:hover {
  background-color: rgb(136 19 55 / 0.9);
}
.hover\:bg-rose-950:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(76 5 25 / var(--tw-bg-opacity, 1));
}
.hover\:bg-rose-950\/10:hover {
  background-color: rgb(76 5 25 / 0.1);
}
.hover\:bg-rose-950\/20:hover {
  background-color: rgb(76 5 25 / 0.2);
}
.hover\:bg-rose-950\/30:hover {
  background-color: rgb(76 5 25 / 0.3);
}
.hover\:bg-rose-950\/40:hover {
  background-color: rgb(76 5 25 / 0.4);
}
.hover\:bg-rose-950\/5:hover {
  background-color: rgb(76 5 25 / 0.05);
}
.hover\:bg-rose-950\/50:hover {
  background-color: rgb(76 5 25 / 0.5);
}
.hover\:bg-rose-950\/60:hover {
  background-color: rgb(76 5 25 / 0.6);
}
.hover\:bg-rose-950\/70:hover {
  background-color: rgb(76 5 25 / 0.7);
}
.hover\:bg-rose-950\/80:hover {
  background-color: rgb(76 5 25 / 0.8);
}
.hover\:bg-rose-950\/90:hover {
  background-color: rgb(76 5 25 / 0.9);
}
.hover\:bg-secondary:hover {
  background-color: var(--secondary);
}
.hover\:bg-sky-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(224 242 254 / var(--tw-bg-opacity, 1));
}
.hover\:bg-sky-100\/10:hover {
  background-color: rgb(224 242 254 / 0.1);
}
.hover\:bg-sky-100\/20:hover {
  background-color: rgb(224 242 254 / 0.2);
}
.hover\:bg-sky-100\/30:hover {
  background-color: rgb(224 242 254 / 0.3);
}
.hover\:bg-sky-100\/40:hover {
  background-color: rgb(224 242 254 / 0.4);
}
.hover\:bg-sky-100\/5:hover {
  background-color: rgb(224 242 254 / 0.05);
}
.hover\:bg-sky-100\/50:hover {
  background-color: rgb(224 242 254 / 0.5);
}
.hover\:bg-sky-100\/60:hover {
  background-color: rgb(224 242 254 / 0.6);
}
.hover\:bg-sky-100\/70:hover {
  background-color: rgb(224 242 254 / 0.7);
}
.hover\:bg-sky-100\/80:hover {
  background-color: rgb(224 242 254 / 0.8);
}
.hover\:bg-sky-100\/90:hover {
  background-color: rgb(224 242 254 / 0.9);
}
.hover\:bg-sky-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(186 230 253 / var(--tw-bg-opacity, 1));
}
.hover\:bg-sky-200\/10:hover {
  background-color: rgb(186 230 253 / 0.1);
}
.hover\:bg-sky-200\/20:hover {
  background-color: rgb(186 230 253 / 0.2);
}
.hover\:bg-sky-200\/30:hover {
  background-color: rgb(186 230 253 / 0.3);
}
.hover\:bg-sky-200\/40:hover {
  background-color: rgb(186 230 253 / 0.4);
}
.hover\:bg-sky-200\/5:hover {
  background-color: rgb(186 230 253 / 0.05);
}
.hover\:bg-sky-200\/50:hover {
  background-color: rgb(186 230 253 / 0.5);
}
.hover\:bg-sky-200\/60:hover {
  background-color: rgb(186 230 253 / 0.6);
}
.hover\:bg-sky-200\/70:hover {
  background-color: rgb(186 230 253 / 0.7);
}
.hover\:bg-sky-200\/80:hover {
  background-color: rgb(186 230 253 / 0.8);
}
.hover\:bg-sky-200\/90:hover {
  background-color: rgb(186 230 253 / 0.9);
}
.hover\:bg-sky-300:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(125 211 252 / var(--tw-bg-opacity, 1));
}
.hover\:bg-sky-300\/10:hover {
  background-color: rgb(125 211 252 / 0.1);
}
.hover\:bg-sky-300\/20:hover {
  background-color: rgb(125 211 252 / 0.2);
}
.hover\:bg-sky-300\/30:hover {
  background-color: rgb(125 211 252 / 0.3);
}
.hover\:bg-sky-300\/40:hover {
  background-color: rgb(125 211 252 / 0.4);
}
.hover\:bg-sky-300\/5:hover {
  background-color: rgb(125 211 252 / 0.05);
}
.hover\:bg-sky-300\/50:hover {
  background-color: rgb(125 211 252 / 0.5);
}
.hover\:bg-sky-300\/60:hover {
  background-color: rgb(125 211 252 / 0.6);
}
.hover\:bg-sky-300\/70:hover {
  background-color: rgb(125 211 252 / 0.7);
}
.hover\:bg-sky-300\/80:hover {
  background-color: rgb(125 211 252 / 0.8);
}
.hover\:bg-sky-300\/90:hover {
  background-color: rgb(125 211 252 / 0.9);
}
.hover\:bg-sky-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(56 189 248 / var(--tw-bg-opacity, 1));
}
.hover\:bg-sky-400\/10:hover {
  background-color: rgb(56 189 248 / 0.1);
}
.hover\:bg-sky-400\/20:hover {
  background-color: rgb(56 189 248 / 0.2);
}
.hover\:bg-sky-400\/30:hover {
  background-color: rgb(56 189 248 / 0.3);
}
.hover\:bg-sky-400\/40:hover {
  background-color: rgb(56 189 248 / 0.4);
}
.hover\:bg-sky-400\/5:hover {
  background-color: rgb(56 189 248 / 0.05);
}
.hover\:bg-sky-400\/50:hover {
  background-color: rgb(56 189 248 / 0.5);
}
.hover\:bg-sky-400\/60:hover {
  background-color: rgb(56 189 248 / 0.6);
}
.hover\:bg-sky-400\/70:hover {
  background-color: rgb(56 189 248 / 0.7);
}
.hover\:bg-sky-400\/80:hover {
  background-color: rgb(56 189 248 / 0.8);
}
.hover\:bg-sky-400\/90:hover {
  background-color: rgb(56 189 248 / 0.9);
}
.hover\:bg-sky-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(240 249 255 / var(--tw-bg-opacity, 1));
}
.hover\:bg-sky-50\/10:hover {
  background-color: rgb(240 249 255 / 0.1);
}
.hover\:bg-sky-50\/20:hover {
  background-color: rgb(240 249 255 / 0.2);
}
.hover\:bg-sky-50\/30:hover {
  background-color: rgb(240 249 255 / 0.3);
}
.hover\:bg-sky-50\/40:hover {
  background-color: rgb(240 249 255 / 0.4);
}
.hover\:bg-sky-50\/5:hover {
  background-color: rgb(240 249 255 / 0.05);
}
.hover\:bg-sky-50\/50:hover {
  background-color: rgb(240 249 255 / 0.5);
}
.hover\:bg-sky-50\/60:hover {
  background-color: rgb(240 249 255 / 0.6);
}
.hover\:bg-sky-50\/70:hover {
  background-color: rgb(240 249 255 / 0.7);
}
.hover\:bg-sky-50\/80:hover {
  background-color: rgb(240 249 255 / 0.8);
}
.hover\:bg-sky-50\/90:hover {
  background-color: rgb(240 249 255 / 0.9);
}
.hover\:bg-sky-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(14 165 233 / var(--tw-bg-opacity, 1));
}
.hover\:bg-sky-500\/10:hover {
  background-color: rgb(14 165 233 / 0.1);
}
.hover\:bg-sky-500\/20:hover {
  background-color: rgb(14 165 233 / 0.2);
}
.hover\:bg-sky-500\/30:hover {
  background-color: rgb(14 165 233 / 0.3);
}
.hover\:bg-sky-500\/40:hover {
  background-color: rgb(14 165 233 / 0.4);
}
.hover\:bg-sky-500\/5:hover {
  background-color: rgb(14 165 233 / 0.05);
}
.hover\:bg-sky-500\/50:hover {
  background-color: rgb(14 165 233 / 0.5);
}
.hover\:bg-sky-500\/60:hover {
  background-color: rgb(14 165 233 / 0.6);
}
.hover\:bg-sky-500\/70:hover {
  background-color: rgb(14 165 233 / 0.7);
}
.hover\:bg-sky-500\/80:hover {
  background-color: rgb(14 165 233 / 0.8);
}
.hover\:bg-sky-500\/90:hover {
  background-color: rgb(14 165 233 / 0.9);
}
.hover\:bg-sky-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(2 132 199 / var(--tw-bg-opacity, 1));
}
.hover\:bg-sky-600\/10:hover {
  background-color: rgb(2 132 199 / 0.1);
}
.hover\:bg-sky-600\/20:hover {
  background-color: rgb(2 132 199 / 0.2);
}
.hover\:bg-sky-600\/30:hover {
  background-color: rgb(2 132 199 / 0.3);
}
.hover\:bg-sky-600\/40:hover {
  background-color: rgb(2 132 199 / 0.4);
}
.hover\:bg-sky-600\/5:hover {
  background-color: rgb(2 132 199 / 0.05);
}
.hover\:bg-sky-600\/50:hover {
  background-color: rgb(2 132 199 / 0.5);
}
.hover\:bg-sky-600\/60:hover {
  background-color: rgb(2 132 199 / 0.6);
}
.hover\:bg-sky-600\/70:hover {
  background-color: rgb(2 132 199 / 0.7);
}
.hover\:bg-sky-600\/80:hover {
  background-color: rgb(2 132 199 / 0.8);
}
.hover\:bg-sky-600\/90:hover {
  background-color: rgb(2 132 199 / 0.9);
}
.hover\:bg-sky-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(3 105 161 / var(--tw-bg-opacity, 1));
}
.hover\:bg-sky-700\/10:hover {
  background-color: rgb(3 105 161 / 0.1);
}
.hover\:bg-sky-700\/20:hover {
  background-color: rgb(3 105 161 / 0.2);
}
.hover\:bg-sky-700\/30:hover {
  background-color: rgb(3 105 161 / 0.3);
}
.hover\:bg-sky-700\/40:hover {
  background-color: rgb(3 105 161 / 0.4);
}
.hover\:bg-sky-700\/5:hover {
  background-color: rgb(3 105 161 / 0.05);
}
.hover\:bg-sky-700\/50:hover {
  background-color: rgb(3 105 161 / 0.5);
}
.hover\:bg-sky-700\/60:hover {
  background-color: rgb(3 105 161 / 0.6);
}
.hover\:bg-sky-700\/70:hover {
  background-color: rgb(3 105 161 / 0.7);
}
.hover\:bg-sky-700\/80:hover {
  background-color: rgb(3 105 161 / 0.8);
}
.hover\:bg-sky-700\/90:hover {
  background-color: rgb(3 105 161 / 0.9);
}
.hover\:bg-sky-800:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(7 89 133 / var(--tw-bg-opacity, 1));
}
.hover\:bg-sky-800\/10:hover {
  background-color: rgb(7 89 133 / 0.1);
}
.hover\:bg-sky-800\/20:hover {
  background-color: rgb(7 89 133 / 0.2);
}
.hover\:bg-sky-800\/30:hover {
  background-color: rgb(7 89 133 / 0.3);
}
.hover\:bg-sky-800\/40:hover {
  background-color: rgb(7 89 133 / 0.4);
}
.hover\:bg-sky-800\/5:hover {
  background-color: rgb(7 89 133 / 0.05);
}
.hover\:bg-sky-800\/50:hover {
  background-color: rgb(7 89 133 / 0.5);
}
.hover\:bg-sky-800\/60:hover {
  background-color: rgb(7 89 133 / 0.6);
}
.hover\:bg-sky-800\/70:hover {
  background-color: rgb(7 89 133 / 0.7);
}
.hover\:bg-sky-800\/80:hover {
  background-color: rgb(7 89 133 / 0.8);
}
.hover\:bg-sky-800\/90:hover {
  background-color: rgb(7 89 133 / 0.9);
}
.hover\:bg-sky-900:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(12 74 110 / var(--tw-bg-opacity, 1));
}
.hover\:bg-sky-900\/10:hover {
  background-color: rgb(12 74 110 / 0.1);
}
.hover\:bg-sky-900\/20:hover {
  background-color: rgb(12 74 110 / 0.2);
}
.hover\:bg-sky-900\/30:hover {
  background-color: rgb(12 74 110 / 0.3);
}
.hover\:bg-sky-900\/40:hover {
  background-color: rgb(12 74 110 / 0.4);
}
.hover\:bg-sky-900\/5:hover {
  background-color: rgb(12 74 110 / 0.05);
}
.hover\:bg-sky-900\/50:hover {
  background-color: rgb(12 74 110 / 0.5);
}
.hover\:bg-sky-900\/60:hover {
  background-color: rgb(12 74 110 / 0.6);
}
.hover\:bg-sky-900\/70:hover {
  background-color: rgb(12 74 110 / 0.7);
}
.hover\:bg-sky-900\/80:hover {
  background-color: rgb(12 74 110 / 0.8);
}
.hover\:bg-sky-900\/90:hover {
  background-color: rgb(12 74 110 / 0.9);
}
.hover\:bg-sky-950:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(8 47 73 / var(--tw-bg-opacity, 1));
}
.hover\:bg-sky-950\/10:hover {
  background-color: rgb(8 47 73 / 0.1);
}
.hover\:bg-sky-950\/20:hover {
  background-color: rgb(8 47 73 / 0.2);
}
.hover\:bg-sky-950\/30:hover {
  background-color: rgb(8 47 73 / 0.3);
}
.hover\:bg-sky-950\/40:hover {
  background-color: rgb(8 47 73 / 0.4);
}
.hover\:bg-sky-950\/5:hover {
  background-color: rgb(8 47 73 / 0.05);
}
.hover\:bg-sky-950\/50:hover {
  background-color: rgb(8 47 73 / 0.5);
}
.hover\:bg-sky-950\/60:hover {
  background-color: rgb(8 47 73 / 0.6);
}
.hover\:bg-sky-950\/70:hover {
  background-color: rgb(8 47 73 / 0.7);
}
.hover\:bg-sky-950\/80:hover {
  background-color: rgb(8 47 73 / 0.8);
}
.hover\:bg-sky-950\/90:hover {
  background-color: rgb(8 47 73 / 0.9);
}
.hover\:bg-slate-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
}
.hover\:bg-slate-100\/10:hover {
  background-color: rgb(241 245 249 / 0.1);
}
.hover\:bg-slate-100\/20:hover {
  background-color: rgb(241 245 249 / 0.2);
}
.hover\:bg-slate-100\/30:hover {
  background-color: rgb(241 245 249 / 0.3);
}
.hover\:bg-slate-100\/40:hover {
  background-color: rgb(241 245 249 / 0.4);
}
.hover\:bg-slate-100\/5:hover {
  background-color: rgb(241 245 249 / 0.05);
}
.hover\:bg-slate-100\/50:hover {
  background-color: rgb(241 245 249 / 0.5);
}
.hover\:bg-slate-100\/60:hover {
  background-color: rgb(241 245 249 / 0.6);
}
.hover\:bg-slate-100\/70:hover {
  background-color: rgb(241 245 249 / 0.7);
}
.hover\:bg-slate-100\/80:hover {
  background-color: rgb(241 245 249 / 0.8);
}
.hover\:bg-slate-100\/90:hover {
  background-color: rgb(241 245 249 / 0.9);
}
.hover\:bg-slate-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(226 232 240 / var(--tw-bg-opacity, 1));
}
.hover\:bg-slate-200\/10:hover {
  background-color: rgb(226 232 240 / 0.1);
}
.hover\:bg-slate-200\/20:hover {
  background-color: rgb(226 232 240 / 0.2);
}
.hover\:bg-slate-200\/30:hover {
  background-color: rgb(226 232 240 / 0.3);
}
.hover\:bg-slate-200\/40:hover {
  background-color: rgb(226 232 240 / 0.4);
}
.hover\:bg-slate-200\/5:hover {
  background-color: rgb(226 232 240 / 0.05);
}
.hover\:bg-slate-200\/50:hover {
  background-color: rgb(226 232 240 / 0.5);
}
.hover\:bg-slate-200\/60:hover {
  background-color: rgb(226 232 240 / 0.6);
}
.hover\:bg-slate-200\/70:hover {
  background-color: rgb(226 232 240 / 0.7);
}
.hover\:bg-slate-200\/80:hover {
  background-color: rgb(226 232 240 / 0.8);
}
.hover\:bg-slate-200\/90:hover {
  background-color: rgb(226 232 240 / 0.9);
}
.hover\:bg-slate-300:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(203 213 225 / var(--tw-bg-opacity, 1));
}
.hover\:bg-slate-300\/10:hover {
  background-color: rgb(203 213 225 / 0.1);
}
.hover\:bg-slate-300\/20:hover {
  background-color: rgb(203 213 225 / 0.2);
}
.hover\:bg-slate-300\/30:hover {
  background-color: rgb(203 213 225 / 0.3);
}
.hover\:bg-slate-300\/40:hover {
  background-color: rgb(203 213 225 / 0.4);
}
.hover\:bg-slate-300\/5:hover {
  background-color: rgb(203 213 225 / 0.05);
}
.hover\:bg-slate-300\/50:hover {
  background-color: rgb(203 213 225 / 0.5);
}
.hover\:bg-slate-300\/60:hover {
  background-color: rgb(203 213 225 / 0.6);
}
.hover\:bg-slate-300\/70:hover {
  background-color: rgb(203 213 225 / 0.7);
}
.hover\:bg-slate-300\/80:hover {
  background-color: rgb(203 213 225 / 0.8);
}
.hover\:bg-slate-300\/90:hover {
  background-color: rgb(203 213 225 / 0.9);
}
.hover\:bg-slate-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(148 163 184 / var(--tw-bg-opacity, 1));
}
.hover\:bg-slate-400\/10:hover {
  background-color: rgb(148 163 184 / 0.1);
}
.hover\:bg-slate-400\/20:hover {
  background-color: rgb(148 163 184 / 0.2);
}
.hover\:bg-slate-400\/30:hover {
  background-color: rgb(148 163 184 / 0.3);
}
.hover\:bg-slate-400\/40:hover {
  background-color: rgb(148 163 184 / 0.4);
}
.hover\:bg-slate-400\/5:hover {
  background-color: rgb(148 163 184 / 0.05);
}
.hover\:bg-slate-400\/50:hover {
  background-color: rgb(148 163 184 / 0.5);
}
.hover\:bg-slate-400\/60:hover {
  background-color: rgb(148 163 184 / 0.6);
}
.hover\:bg-slate-400\/70:hover {
  background-color: rgb(148 163 184 / 0.7);
}
.hover\:bg-slate-400\/80:hover {
  background-color: rgb(148 163 184 / 0.8);
}
.hover\:bg-slate-400\/90:hover {
  background-color: rgb(148 163 184 / 0.9);
}
.hover\:bg-slate-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
}
.hover\:bg-slate-50\/10:hover {
  background-color: rgb(248 250 252 / 0.1);
}
.hover\:bg-slate-50\/20:hover {
  background-color: rgb(248 250 252 / 0.2);
}
.hover\:bg-slate-50\/30:hover {
  background-color: rgb(248 250 252 / 0.3);
}
.hover\:bg-slate-50\/40:hover {
  background-color: rgb(248 250 252 / 0.4);
}
.hover\:bg-slate-50\/5:hover {
  background-color: rgb(248 250 252 / 0.05);
}
.hover\:bg-slate-50\/50:hover {
  background-color: rgb(248 250 252 / 0.5);
}
.hover\:bg-slate-50\/60:hover {
  background-color: rgb(248 250 252 / 0.6);
}
.hover\:bg-slate-50\/70:hover {
  background-color: rgb(248 250 252 / 0.7);
}
.hover\:bg-slate-50\/80:hover {
  background-color: rgb(248 250 252 / 0.8);
}
.hover\:bg-slate-50\/90:hover {
  background-color: rgb(248 250 252 / 0.9);
}
.hover\:bg-slate-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(100 116 139 / var(--tw-bg-opacity, 1));
}
.hover\:bg-slate-500\/10:hover {
  background-color: rgb(100 116 139 / 0.1);
}
.hover\:bg-slate-500\/20:hover {
  background-color: rgb(100 116 139 / 0.2);
}
.hover\:bg-slate-500\/30:hover {
  background-color: rgb(100 116 139 / 0.3);
}
.hover\:bg-slate-500\/40:hover {
  background-color: rgb(100 116 139 / 0.4);
}
.hover\:bg-slate-500\/5:hover {
  background-color: rgb(100 116 139 / 0.05);
}
.hover\:bg-slate-500\/50:hover {
  background-color: rgb(100 116 139 / 0.5);
}
.hover\:bg-slate-500\/60:hover {
  background-color: rgb(100 116 139 / 0.6);
}
.hover\:bg-slate-500\/70:hover {
  background-color: rgb(100 116 139 / 0.7);
}
.hover\:bg-slate-500\/80:hover {
  background-color: rgb(100 116 139 / 0.8);
}
.hover\:bg-slate-500\/90:hover {
  background-color: rgb(100 116 139 / 0.9);
}
.hover\:bg-slate-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(71 85 105 / var(--tw-bg-opacity, 1));
}
.hover\:bg-slate-600\/10:hover {
  background-color: rgb(71 85 105 / 0.1);
}
.hover\:bg-slate-600\/20:hover {
  background-color: rgb(71 85 105 / 0.2);
}
.hover\:bg-slate-600\/30:hover {
  background-color: rgb(71 85 105 / 0.3);
}
.hover\:bg-slate-600\/40:hover {
  background-color: rgb(71 85 105 / 0.4);
}
.hover\:bg-slate-600\/5:hover {
  background-color: rgb(71 85 105 / 0.05);
}
.hover\:bg-slate-600\/50:hover {
  background-color: rgb(71 85 105 / 0.5);
}
.hover\:bg-slate-600\/60:hover {
  background-color: rgb(71 85 105 / 0.6);
}
.hover\:bg-slate-600\/70:hover {
  background-color: rgb(71 85 105 / 0.7);
}
.hover\:bg-slate-600\/80:hover {
  background-color: rgb(71 85 105 / 0.8);
}
.hover\:bg-slate-600\/90:hover {
  background-color: rgb(71 85 105 / 0.9);
}
.hover\:bg-slate-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(51 65 85 / var(--tw-bg-opacity, 1));
}
.hover\:bg-slate-700\/10:hover {
  background-color: rgb(51 65 85 / 0.1);
}
.hover\:bg-slate-700\/20:hover {
  background-color: rgb(51 65 85 / 0.2);
}
.hover\:bg-slate-700\/30:hover {
  background-color: rgb(51 65 85 / 0.3);
}
.hover\:bg-slate-700\/40:hover {
  background-color: rgb(51 65 85 / 0.4);
}
.hover\:bg-slate-700\/5:hover {
  background-color: rgb(51 65 85 / 0.05);
}
.hover\:bg-slate-700\/50:hover {
  background-color: rgb(51 65 85 / 0.5);
}
.hover\:bg-slate-700\/60:hover {
  background-color: rgb(51 65 85 / 0.6);
}
.hover\:bg-slate-700\/70:hover {
  background-color: rgb(51 65 85 / 0.7);
}
.hover\:bg-slate-700\/80:hover {
  background-color: rgb(51 65 85 / 0.8);
}
.hover\:bg-slate-700\/90:hover {
  background-color: rgb(51 65 85 / 0.9);
}
.hover\:bg-slate-800:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(30 41 59 / var(--tw-bg-opacity, 1));
}
.hover\:bg-slate-800\/10:hover {
  background-color: rgb(30 41 59 / 0.1);
}
.hover\:bg-slate-800\/20:hover {
  background-color: rgb(30 41 59 / 0.2);
}
.hover\:bg-slate-800\/30:hover {
  background-color: rgb(30 41 59 / 0.3);
}
.hover\:bg-slate-800\/40:hover {
  background-color: rgb(30 41 59 / 0.4);
}
.hover\:bg-slate-800\/5:hover {
  background-color: rgb(30 41 59 / 0.05);
}
.hover\:bg-slate-800\/50:hover {
  background-color: rgb(30 41 59 / 0.5);
}
.hover\:bg-slate-800\/60:hover {
  background-color: rgb(30 41 59 / 0.6);
}
.hover\:bg-slate-800\/70:hover {
  background-color: rgb(30 41 59 / 0.7);
}
.hover\:bg-slate-800\/80:hover {
  background-color: rgb(30 41 59 / 0.8);
}
.hover\:bg-slate-800\/90:hover {
  background-color: rgb(30 41 59 / 0.9);
}
.hover\:bg-slate-900:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(15 23 42 / var(--tw-bg-opacity, 1));
}
.hover\:bg-slate-900\/10:hover {
  background-color: rgb(15 23 42 / 0.1);
}
.hover\:bg-slate-900\/20:hover {
  background-color: rgb(15 23 42 / 0.2);
}
.hover\:bg-slate-900\/30:hover {
  background-color: rgb(15 23 42 / 0.3);
}
.hover\:bg-slate-900\/40:hover {
  background-color: rgb(15 23 42 / 0.4);
}
.hover\:bg-slate-900\/5:hover {
  background-color: rgb(15 23 42 / 0.05);
}
.hover\:bg-slate-900\/50:hover {
  background-color: rgb(15 23 42 / 0.5);
}
.hover\:bg-slate-900\/60:hover {
  background-color: rgb(15 23 42 / 0.6);
}
.hover\:bg-slate-900\/70:hover {
  background-color: rgb(15 23 42 / 0.7);
}
.hover\:bg-slate-900\/80:hover {
  background-color: rgb(15 23 42 / 0.8);
}
.hover\:bg-slate-900\/90:hover {
  background-color: rgb(15 23 42 / 0.9);
}
.hover\:bg-slate-950:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(2 6 23 / var(--tw-bg-opacity, 1));
}
.hover\:bg-slate-950\/10:hover {
  background-color: rgb(2 6 23 / 0.1);
}
.hover\:bg-slate-950\/20:hover {
  background-color: rgb(2 6 23 / 0.2);
}
.hover\:bg-slate-950\/30:hover {
  background-color: rgb(2 6 23 / 0.3);
}
.hover\:bg-slate-950\/40:hover {
  background-color: rgb(2 6 23 / 0.4);
}
.hover\:bg-slate-950\/5:hover {
  background-color: rgb(2 6 23 / 0.05);
}
.hover\:bg-slate-950\/50:hover {
  background-color: rgb(2 6 23 / 0.5);
}
.hover\:bg-slate-950\/60:hover {
  background-color: rgb(2 6 23 / 0.6);
}
.hover\:bg-slate-950\/70:hover {
  background-color: rgb(2 6 23 / 0.7);
}
.hover\:bg-slate-950\/80:hover {
  background-color: rgb(2 6 23 / 0.8);
}
.hover\:bg-slate-950\/90:hover {
  background-color: rgb(2 6 23 / 0.9);
}
.hover\:bg-stone-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 244 / var(--tw-bg-opacity, 1));
}
.hover\:bg-stone-100\/10:hover {
  background-color: rgb(245 245 244 / 0.1);
}
.hover\:bg-stone-100\/20:hover {
  background-color: rgb(245 245 244 / 0.2);
}
.hover\:bg-stone-100\/30:hover {
  background-color: rgb(245 245 244 / 0.3);
}
.hover\:bg-stone-100\/40:hover {
  background-color: rgb(245 245 244 / 0.4);
}
.hover\:bg-stone-100\/5:hover {
  background-color: rgb(245 245 244 / 0.05);
}
.hover\:bg-stone-100\/50:hover {
  background-color: rgb(245 245 244 / 0.5);
}
.hover\:bg-stone-100\/60:hover {
  background-color: rgb(245 245 244 / 0.6);
}
.hover\:bg-stone-100\/70:hover {
  background-color: rgb(245 245 244 / 0.7);
}
.hover\:bg-stone-100\/80:hover {
  background-color: rgb(245 245 244 / 0.8);
}
.hover\:bg-stone-100\/90:hover {
  background-color: rgb(245 245 244 / 0.9);
}
.hover\:bg-stone-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(231 229 228 / var(--tw-bg-opacity, 1));
}
.hover\:bg-stone-200\/10:hover {
  background-color: rgb(231 229 228 / 0.1);
}
.hover\:bg-stone-200\/20:hover {
  background-color: rgb(231 229 228 / 0.2);
}
.hover\:bg-stone-200\/30:hover {
  background-color: rgb(231 229 228 / 0.3);
}
.hover\:bg-stone-200\/40:hover {
  background-color: rgb(231 229 228 / 0.4);
}
.hover\:bg-stone-200\/5:hover {
  background-color: rgb(231 229 228 / 0.05);
}
.hover\:bg-stone-200\/50:hover {
  background-color: rgb(231 229 228 / 0.5);
}
.hover\:bg-stone-200\/60:hover {
  background-color: rgb(231 229 228 / 0.6);
}
.hover\:bg-stone-200\/70:hover {
  background-color: rgb(231 229 228 / 0.7);
}
.hover\:bg-stone-200\/80:hover {
  background-color: rgb(231 229 228 / 0.8);
}
.hover\:bg-stone-200\/90:hover {
  background-color: rgb(231 229 228 / 0.9);
}
.hover\:bg-stone-300:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(214 211 209 / var(--tw-bg-opacity, 1));
}
.hover\:bg-stone-300\/10:hover {
  background-color: rgb(214 211 209 / 0.1);
}
.hover\:bg-stone-300\/20:hover {
  background-color: rgb(214 211 209 / 0.2);
}
.hover\:bg-stone-300\/30:hover {
  background-color: rgb(214 211 209 / 0.3);
}
.hover\:bg-stone-300\/40:hover {
  background-color: rgb(214 211 209 / 0.4);
}
.hover\:bg-stone-300\/5:hover {
  background-color: rgb(214 211 209 / 0.05);
}
.hover\:bg-stone-300\/50:hover {
  background-color: rgb(214 211 209 / 0.5);
}
.hover\:bg-stone-300\/60:hover {
  background-color: rgb(214 211 209 / 0.6);
}
.hover\:bg-stone-300\/70:hover {
  background-color: rgb(214 211 209 / 0.7);
}
.hover\:bg-stone-300\/80:hover {
  background-color: rgb(214 211 209 / 0.8);
}
.hover\:bg-stone-300\/90:hover {
  background-color: rgb(214 211 209 / 0.9);
}
.hover\:bg-stone-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(168 162 158 / var(--tw-bg-opacity, 1));
}
.hover\:bg-stone-400\/10:hover {
  background-color: rgb(168 162 158 / 0.1);
}
.hover\:bg-stone-400\/20:hover {
  background-color: rgb(168 162 158 / 0.2);
}
.hover\:bg-stone-400\/30:hover {
  background-color: rgb(168 162 158 / 0.3);
}
.hover\:bg-stone-400\/40:hover {
  background-color: rgb(168 162 158 / 0.4);
}
.hover\:bg-stone-400\/5:hover {
  background-color: rgb(168 162 158 / 0.05);
}
.hover\:bg-stone-400\/50:hover {
  background-color: rgb(168 162 158 / 0.5);
}
.hover\:bg-stone-400\/60:hover {
  background-color: rgb(168 162 158 / 0.6);
}
.hover\:bg-stone-400\/70:hover {
  background-color: rgb(168 162 158 / 0.7);
}
.hover\:bg-stone-400\/80:hover {
  background-color: rgb(168 162 158 / 0.8);
}
.hover\:bg-stone-400\/90:hover {
  background-color: rgb(168 162 158 / 0.9);
}
.hover\:bg-stone-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 249 / var(--tw-bg-opacity, 1));
}
.hover\:bg-stone-50\/10:hover {
  background-color: rgb(250 250 249 / 0.1);
}
.hover\:bg-stone-50\/20:hover {
  background-color: rgb(250 250 249 / 0.2);
}
.hover\:bg-stone-50\/30:hover {
  background-color: rgb(250 250 249 / 0.3);
}
.hover\:bg-stone-50\/40:hover {
  background-color: rgb(250 250 249 / 0.4);
}
.hover\:bg-stone-50\/5:hover {
  background-color: rgb(250 250 249 / 0.05);
}
.hover\:bg-stone-50\/50:hover {
  background-color: rgb(250 250 249 / 0.5);
}
.hover\:bg-stone-50\/60:hover {
  background-color: rgb(250 250 249 / 0.6);
}
.hover\:bg-stone-50\/70:hover {
  background-color: rgb(250 250 249 / 0.7);
}
.hover\:bg-stone-50\/80:hover {
  background-color: rgb(250 250 249 / 0.8);
}
.hover\:bg-stone-50\/90:hover {
  background-color: rgb(250 250 249 / 0.9);
}
.hover\:bg-stone-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(120 113 108 / var(--tw-bg-opacity, 1));
}
.hover\:bg-stone-500\/10:hover {
  background-color: rgb(120 113 108 / 0.1);
}
.hover\:bg-stone-500\/20:hover {
  background-color: rgb(120 113 108 / 0.2);
}
.hover\:bg-stone-500\/30:hover {
  background-color: rgb(120 113 108 / 0.3);
}
.hover\:bg-stone-500\/40:hover {
  background-color: rgb(120 113 108 / 0.4);
}
.hover\:bg-stone-500\/5:hover {
  background-color: rgb(120 113 108 / 0.05);
}
.hover\:bg-stone-500\/50:hover {
  background-color: rgb(120 113 108 / 0.5);
}
.hover\:bg-stone-500\/60:hover {
  background-color: rgb(120 113 108 / 0.6);
}
.hover\:bg-stone-500\/70:hover {
  background-color: rgb(120 113 108 / 0.7);
}
.hover\:bg-stone-500\/80:hover {
  background-color: rgb(120 113 108 / 0.8);
}
.hover\:bg-stone-500\/90:hover {
  background-color: rgb(120 113 108 / 0.9);
}
.hover\:bg-stone-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(87 83 78 / var(--tw-bg-opacity, 1));
}
.hover\:bg-stone-600\/10:hover {
  background-color: rgb(87 83 78 / 0.1);
}
.hover\:bg-stone-600\/20:hover {
  background-color: rgb(87 83 78 / 0.2);
}
.hover\:bg-stone-600\/30:hover {
  background-color: rgb(87 83 78 / 0.3);
}
.hover\:bg-stone-600\/40:hover {
  background-color: rgb(87 83 78 / 0.4);
}
.hover\:bg-stone-600\/5:hover {
  background-color: rgb(87 83 78 / 0.05);
}
.hover\:bg-stone-600\/50:hover {
  background-color: rgb(87 83 78 / 0.5);
}
.hover\:bg-stone-600\/60:hover {
  background-color: rgb(87 83 78 / 0.6);
}
.hover\:bg-stone-600\/70:hover {
  background-color: rgb(87 83 78 / 0.7);
}
.hover\:bg-stone-600\/80:hover {
  background-color: rgb(87 83 78 / 0.8);
}
.hover\:bg-stone-600\/90:hover {
  background-color: rgb(87 83 78 / 0.9);
}
.hover\:bg-stone-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(68 64 60 / var(--tw-bg-opacity, 1));
}
.hover\:bg-stone-700\/10:hover {
  background-color: rgb(68 64 60 / 0.1);
}
.hover\:bg-stone-700\/20:hover {
  background-color: rgb(68 64 60 / 0.2);
}
.hover\:bg-stone-700\/30:hover {
  background-color: rgb(68 64 60 / 0.3);
}
.hover\:bg-stone-700\/40:hover {
  background-color: rgb(68 64 60 / 0.4);
}
.hover\:bg-stone-700\/5:hover {
  background-color: rgb(68 64 60 / 0.05);
}
.hover\:bg-stone-700\/50:hover {
  background-color: rgb(68 64 60 / 0.5);
}
.hover\:bg-stone-700\/60:hover {
  background-color: rgb(68 64 60 / 0.6);
}
.hover\:bg-stone-700\/70:hover {
  background-color: rgb(68 64 60 / 0.7);
}
.hover\:bg-stone-700\/80:hover {
  background-color: rgb(68 64 60 / 0.8);
}
.hover\:bg-stone-700\/90:hover {
  background-color: rgb(68 64 60 / 0.9);
}
.hover\:bg-stone-800:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(41 37 36 / var(--tw-bg-opacity, 1));
}
.hover\:bg-stone-800\/10:hover {
  background-color: rgb(41 37 36 / 0.1);
}
.hover\:bg-stone-800\/20:hover {
  background-color: rgb(41 37 36 / 0.2);
}
.hover\:bg-stone-800\/30:hover {
  background-color: rgb(41 37 36 / 0.3);
}
.hover\:bg-stone-800\/40:hover {
  background-color: rgb(41 37 36 / 0.4);
}
.hover\:bg-stone-800\/5:hover {
  background-color: rgb(41 37 36 / 0.05);
}
.hover\:bg-stone-800\/50:hover {
  background-color: rgb(41 37 36 / 0.5);
}
.hover\:bg-stone-800\/60:hover {
  background-color: rgb(41 37 36 / 0.6);
}
.hover\:bg-stone-800\/70:hover {
  background-color: rgb(41 37 36 / 0.7);
}
.hover\:bg-stone-800\/80:hover {
  background-color: rgb(41 37 36 / 0.8);
}
.hover\:bg-stone-800\/90:hover {
  background-color: rgb(41 37 36 / 0.9);
}
.hover\:bg-stone-900:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(28 25 23 / var(--tw-bg-opacity, 1));
}
.hover\:bg-stone-900\/10:hover {
  background-color: rgb(28 25 23 / 0.1);
}
.hover\:bg-stone-900\/20:hover {
  background-color: rgb(28 25 23 / 0.2);
}
.hover\:bg-stone-900\/30:hover {
  background-color: rgb(28 25 23 / 0.3);
}
.hover\:bg-stone-900\/40:hover {
  background-color: rgb(28 25 23 / 0.4);
}
.hover\:bg-stone-900\/5:hover {
  background-color: rgb(28 25 23 / 0.05);
}
.hover\:bg-stone-900\/50:hover {
  background-color: rgb(28 25 23 / 0.5);
}
.hover\:bg-stone-900\/60:hover {
  background-color: rgb(28 25 23 / 0.6);
}
.hover\:bg-stone-900\/70:hover {
  background-color: rgb(28 25 23 / 0.7);
}
.hover\:bg-stone-900\/80:hover {
  background-color: rgb(28 25 23 / 0.8);
}
.hover\:bg-stone-900\/90:hover {
  background-color: rgb(28 25 23 / 0.9);
}
.hover\:bg-stone-950:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(12 10 9 / var(--tw-bg-opacity, 1));
}
.hover\:bg-stone-950\/10:hover {
  background-color: rgb(12 10 9 / 0.1);
}
.hover\:bg-stone-950\/20:hover {
  background-color: rgb(12 10 9 / 0.2);
}
.hover\:bg-stone-950\/30:hover {
  background-color: rgb(12 10 9 / 0.3);
}
.hover\:bg-stone-950\/40:hover {
  background-color: rgb(12 10 9 / 0.4);
}
.hover\:bg-stone-950\/5:hover {
  background-color: rgb(12 10 9 / 0.05);
}
.hover\:bg-stone-950\/50:hover {
  background-color: rgb(12 10 9 / 0.5);
}
.hover\:bg-stone-950\/60:hover {
  background-color: rgb(12 10 9 / 0.6);
}
.hover\:bg-stone-950\/70:hover {
  background-color: rgb(12 10 9 / 0.7);
}
.hover\:bg-stone-950\/80:hover {
  background-color: rgb(12 10 9 / 0.8);
}
.hover\:bg-stone-950\/90:hover {
  background-color: rgb(12 10 9 / 0.9);
}
.hover\:bg-teal-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(204 251 241 / var(--tw-bg-opacity, 1));
}
.hover\:bg-teal-100\/10:hover {
  background-color: rgb(204 251 241 / 0.1);
}
.hover\:bg-teal-100\/20:hover {
  background-color: rgb(204 251 241 / 0.2);
}
.hover\:bg-teal-100\/30:hover {
  background-color: rgb(204 251 241 / 0.3);
}
.hover\:bg-teal-100\/40:hover {
  background-color: rgb(204 251 241 / 0.4);
}
.hover\:bg-teal-100\/5:hover {
  background-color: rgb(204 251 241 / 0.05);
}
.hover\:bg-teal-100\/50:hover {
  background-color: rgb(204 251 241 / 0.5);
}
.hover\:bg-teal-100\/60:hover {
  background-color: rgb(204 251 241 / 0.6);
}
.hover\:bg-teal-100\/70:hover {
  background-color: rgb(204 251 241 / 0.7);
}
.hover\:bg-teal-100\/80:hover {
  background-color: rgb(204 251 241 / 0.8);
}
.hover\:bg-teal-100\/90:hover {
  background-color: rgb(204 251 241 / 0.9);
}
.hover\:bg-teal-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(153 246 228 / var(--tw-bg-opacity, 1));
}
.hover\:bg-teal-200\/10:hover {
  background-color: rgb(153 246 228 / 0.1);
}
.hover\:bg-teal-200\/20:hover {
  background-color: rgb(153 246 228 / 0.2);
}
.hover\:bg-teal-200\/30:hover {
  background-color: rgb(153 246 228 / 0.3);
}
.hover\:bg-teal-200\/40:hover {
  background-color: rgb(153 246 228 / 0.4);
}
.hover\:bg-teal-200\/5:hover {
  background-color: rgb(153 246 228 / 0.05);
}
.hover\:bg-teal-200\/50:hover {
  background-color: rgb(153 246 228 / 0.5);
}
.hover\:bg-teal-200\/60:hover {
  background-color: rgb(153 246 228 / 0.6);
}
.hover\:bg-teal-200\/70:hover {
  background-color: rgb(153 246 228 / 0.7);
}
.hover\:bg-teal-200\/80:hover {
  background-color: rgb(153 246 228 / 0.8);
}
.hover\:bg-teal-200\/90:hover {
  background-color: rgb(153 246 228 / 0.9);
}
.hover\:bg-teal-300:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(94 234 212 / var(--tw-bg-opacity, 1));
}
.hover\:bg-teal-300\/10:hover {
  background-color: rgb(94 234 212 / 0.1);
}
.hover\:bg-teal-300\/20:hover {
  background-color: rgb(94 234 212 / 0.2);
}
.hover\:bg-teal-300\/30:hover {
  background-color: rgb(94 234 212 / 0.3);
}
.hover\:bg-teal-300\/40:hover {
  background-color: rgb(94 234 212 / 0.4);
}
.hover\:bg-teal-300\/5:hover {
  background-color: rgb(94 234 212 / 0.05);
}
.hover\:bg-teal-300\/50:hover {
  background-color: rgb(94 234 212 / 0.5);
}
.hover\:bg-teal-300\/60:hover {
  background-color: rgb(94 234 212 / 0.6);
}
.hover\:bg-teal-300\/70:hover {
  background-color: rgb(94 234 212 / 0.7);
}
.hover\:bg-teal-300\/80:hover {
  background-color: rgb(94 234 212 / 0.8);
}
.hover\:bg-teal-300\/90:hover {
  background-color: rgb(94 234 212 / 0.9);
}
.hover\:bg-teal-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(45 212 191 / var(--tw-bg-opacity, 1));
}
.hover\:bg-teal-400\/10:hover {
  background-color: rgb(45 212 191 / 0.1);
}
.hover\:bg-teal-400\/20:hover {
  background-color: rgb(45 212 191 / 0.2);
}
.hover\:bg-teal-400\/30:hover {
  background-color: rgb(45 212 191 / 0.3);
}
.hover\:bg-teal-400\/40:hover {
  background-color: rgb(45 212 191 / 0.4);
}
.hover\:bg-teal-400\/5:hover {
  background-color: rgb(45 212 191 / 0.05);
}
.hover\:bg-teal-400\/50:hover {
  background-color: rgb(45 212 191 / 0.5);
}
.hover\:bg-teal-400\/60:hover {
  background-color: rgb(45 212 191 / 0.6);
}
.hover\:bg-teal-400\/70:hover {
  background-color: rgb(45 212 191 / 0.7);
}
.hover\:bg-teal-400\/80:hover {
  background-color: rgb(45 212 191 / 0.8);
}
.hover\:bg-teal-400\/90:hover {
  background-color: rgb(45 212 191 / 0.9);
}
.hover\:bg-teal-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 250 / var(--tw-bg-opacity, 1));
}
.hover\:bg-teal-50\/10:hover {
  background-color: rgb(240 253 250 / 0.1);
}
.hover\:bg-teal-50\/20:hover {
  background-color: rgb(240 253 250 / 0.2);
}
.hover\:bg-teal-50\/30:hover {
  background-color: rgb(240 253 250 / 0.3);
}
.hover\:bg-teal-50\/40:hover {
  background-color: rgb(240 253 250 / 0.4);
}
.hover\:bg-teal-50\/5:hover {
  background-color: rgb(240 253 250 / 0.05);
}
.hover\:bg-teal-50\/50:hover {
  background-color: rgb(240 253 250 / 0.5);
}
.hover\:bg-teal-50\/60:hover {
  background-color: rgb(240 253 250 / 0.6);
}
.hover\:bg-teal-50\/70:hover {
  background-color: rgb(240 253 250 / 0.7);
}
.hover\:bg-teal-50\/80:hover {
  background-color: rgb(240 253 250 / 0.8);
}
.hover\:bg-teal-50\/90:hover {
  background-color: rgb(240 253 250 / 0.9);
}
.hover\:bg-teal-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(20 184 166 / var(--tw-bg-opacity, 1));
}
.hover\:bg-teal-500\/10:hover {
  background-color: rgb(20 184 166 / 0.1);
}
.hover\:bg-teal-500\/20:hover {
  background-color: rgb(20 184 166 / 0.2);
}
.hover\:bg-teal-500\/30:hover {
  background-color: rgb(20 184 166 / 0.3);
}
.hover\:bg-teal-500\/40:hover {
  background-color: rgb(20 184 166 / 0.4);
}
.hover\:bg-teal-500\/5:hover {
  background-color: rgb(20 184 166 / 0.05);
}
.hover\:bg-teal-500\/50:hover {
  background-color: rgb(20 184 166 / 0.5);
}
.hover\:bg-teal-500\/60:hover {
  background-color: rgb(20 184 166 / 0.6);
}
.hover\:bg-teal-500\/70:hover {
  background-color: rgb(20 184 166 / 0.7);
}
.hover\:bg-teal-500\/80:hover {
  background-color: rgb(20 184 166 / 0.8);
}
.hover\:bg-teal-500\/90:hover {
  background-color: rgb(20 184 166 / 0.9);
}
.hover\:bg-teal-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(13 148 136 / var(--tw-bg-opacity, 1));
}
.hover\:bg-teal-600\/10:hover {
  background-color: rgb(13 148 136 / 0.1);
}
.hover\:bg-teal-600\/20:hover {
  background-color: rgb(13 148 136 / 0.2);
}
.hover\:bg-teal-600\/30:hover {
  background-color: rgb(13 148 136 / 0.3);
}
.hover\:bg-teal-600\/40:hover {
  background-color: rgb(13 148 136 / 0.4);
}
.hover\:bg-teal-600\/5:hover {
  background-color: rgb(13 148 136 / 0.05);
}
.hover\:bg-teal-600\/50:hover {
  background-color: rgb(13 148 136 / 0.5);
}
.hover\:bg-teal-600\/60:hover {
  background-color: rgb(13 148 136 / 0.6);
}
.hover\:bg-teal-600\/70:hover {
  background-color: rgb(13 148 136 / 0.7);
}
.hover\:bg-teal-600\/80:hover {
  background-color: rgb(13 148 136 / 0.8);
}
.hover\:bg-teal-600\/90:hover {
  background-color: rgb(13 148 136 / 0.9);
}
.hover\:bg-teal-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(15 118 110 / var(--tw-bg-opacity, 1));
}
.hover\:bg-teal-700\/10:hover {
  background-color: rgb(15 118 110 / 0.1);
}
.hover\:bg-teal-700\/20:hover {
  background-color: rgb(15 118 110 / 0.2);
}
.hover\:bg-teal-700\/30:hover {
  background-color: rgb(15 118 110 / 0.3);
}
.hover\:bg-teal-700\/40:hover {
  background-color: rgb(15 118 110 / 0.4);
}
.hover\:bg-teal-700\/5:hover {
  background-color: rgb(15 118 110 / 0.05);
}
.hover\:bg-teal-700\/50:hover {
  background-color: rgb(15 118 110 / 0.5);
}
.hover\:bg-teal-700\/60:hover {
  background-color: rgb(15 118 110 / 0.6);
}
.hover\:bg-teal-700\/70:hover {
  background-color: rgb(15 118 110 / 0.7);
}
.hover\:bg-teal-700\/80:hover {
  background-color: rgb(15 118 110 / 0.8);
}
.hover\:bg-teal-700\/90:hover {
  background-color: rgb(15 118 110 / 0.9);
}
.hover\:bg-teal-800:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(17 94 89 / var(--tw-bg-opacity, 1));
}
.hover\:bg-teal-800\/10:hover {
  background-color: rgb(17 94 89 / 0.1);
}
.hover\:bg-teal-800\/20:hover {
  background-color: rgb(17 94 89 / 0.2);
}
.hover\:bg-teal-800\/30:hover {
  background-color: rgb(17 94 89 / 0.3);
}
.hover\:bg-teal-800\/40:hover {
  background-color: rgb(17 94 89 / 0.4);
}
.hover\:bg-teal-800\/5:hover {
  background-color: rgb(17 94 89 / 0.05);
}
.hover\:bg-teal-800\/50:hover {
  background-color: rgb(17 94 89 / 0.5);
}
.hover\:bg-teal-800\/60:hover {
  background-color: rgb(17 94 89 / 0.6);
}
.hover\:bg-teal-800\/70:hover {
  background-color: rgb(17 94 89 / 0.7);
}
.hover\:bg-teal-800\/80:hover {
  background-color: rgb(17 94 89 / 0.8);
}
.hover\:bg-teal-800\/90:hover {
  background-color: rgb(17 94 89 / 0.9);
}
.hover\:bg-teal-900:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(19 78 74 / var(--tw-bg-opacity, 1));
}
.hover\:bg-teal-900\/10:hover {
  background-color: rgb(19 78 74 / 0.1);
}
.hover\:bg-teal-900\/20:hover {
  background-color: rgb(19 78 74 / 0.2);
}
.hover\:bg-teal-900\/30:hover {
  background-color: rgb(19 78 74 / 0.3);
}
.hover\:bg-teal-900\/40:hover {
  background-color: rgb(19 78 74 / 0.4);
}
.hover\:bg-teal-900\/5:hover {
  background-color: rgb(19 78 74 / 0.05);
}
.hover\:bg-teal-900\/50:hover {
  background-color: rgb(19 78 74 / 0.5);
}
.hover\:bg-teal-900\/60:hover {
  background-color: rgb(19 78 74 / 0.6);
}
.hover\:bg-teal-900\/70:hover {
  background-color: rgb(19 78 74 / 0.7);
}
.hover\:bg-teal-900\/80:hover {
  background-color: rgb(19 78 74 / 0.8);
}
.hover\:bg-teal-900\/90:hover {
  background-color: rgb(19 78 74 / 0.9);
}
.hover\:bg-teal-950:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(4 47 46 / var(--tw-bg-opacity, 1));
}
.hover\:bg-teal-950\/10:hover {
  background-color: rgb(4 47 46 / 0.1);
}
.hover\:bg-teal-950\/20:hover {
  background-color: rgb(4 47 46 / 0.2);
}
.hover\:bg-teal-950\/30:hover {
  background-color: rgb(4 47 46 / 0.3);
}
.hover\:bg-teal-950\/40:hover {
  background-color: rgb(4 47 46 / 0.4);
}
.hover\:bg-teal-950\/5:hover {
  background-color: rgb(4 47 46 / 0.05);
}
.hover\:bg-teal-950\/50:hover {
  background-color: rgb(4 47 46 / 0.5);
}
.hover\:bg-teal-950\/60:hover {
  background-color: rgb(4 47 46 / 0.6);
}
.hover\:bg-teal-950\/70:hover {
  background-color: rgb(4 47 46 / 0.7);
}
.hover\:bg-teal-950\/80:hover {
  background-color: rgb(4 47 46 / 0.8);
}
.hover\:bg-teal-950\/90:hover {
  background-color: rgb(4 47 46 / 0.9);
}
.hover\:bg-violet-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(237 233 254 / var(--tw-bg-opacity, 1));
}
.hover\:bg-violet-100\/10:hover {
  background-color: rgb(237 233 254 / 0.1);
}
.hover\:bg-violet-100\/20:hover {
  background-color: rgb(237 233 254 / 0.2);
}
.hover\:bg-violet-100\/30:hover {
  background-color: rgb(237 233 254 / 0.3);
}
.hover\:bg-violet-100\/40:hover {
  background-color: rgb(237 233 254 / 0.4);
}
.hover\:bg-violet-100\/5:hover {
  background-color: rgb(237 233 254 / 0.05);
}
.hover\:bg-violet-100\/50:hover {
  background-color: rgb(237 233 254 / 0.5);
}
.hover\:bg-violet-100\/60:hover {
  background-color: rgb(237 233 254 / 0.6);
}
.hover\:bg-violet-100\/70:hover {
  background-color: rgb(237 233 254 / 0.7);
}
.hover\:bg-violet-100\/80:hover {
  background-color: rgb(237 233 254 / 0.8);
}
.hover\:bg-violet-100\/90:hover {
  background-color: rgb(237 233 254 / 0.9);
}
.hover\:bg-violet-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(221 214 254 / var(--tw-bg-opacity, 1));
}
.hover\:bg-violet-200\/10:hover {
  background-color: rgb(221 214 254 / 0.1);
}
.hover\:bg-violet-200\/20:hover {
  background-color: rgb(221 214 254 / 0.2);
}
.hover\:bg-violet-200\/30:hover {
  background-color: rgb(221 214 254 / 0.3);
}
.hover\:bg-violet-200\/40:hover {
  background-color: rgb(221 214 254 / 0.4);
}
.hover\:bg-violet-200\/5:hover {
  background-color: rgb(221 214 254 / 0.05);
}
.hover\:bg-violet-200\/50:hover {
  background-color: rgb(221 214 254 / 0.5);
}
.hover\:bg-violet-200\/60:hover {
  background-color: rgb(221 214 254 / 0.6);
}
.hover\:bg-violet-200\/70:hover {
  background-color: rgb(221 214 254 / 0.7);
}
.hover\:bg-violet-200\/80:hover {
  background-color: rgb(221 214 254 / 0.8);
}
.hover\:bg-violet-200\/90:hover {
  background-color: rgb(221 214 254 / 0.9);
}
.hover\:bg-violet-300:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(196 181 253 / var(--tw-bg-opacity, 1));
}
.hover\:bg-violet-300\/10:hover {
  background-color: rgb(196 181 253 / 0.1);
}
.hover\:bg-violet-300\/20:hover {
  background-color: rgb(196 181 253 / 0.2);
}
.hover\:bg-violet-300\/30:hover {
  background-color: rgb(196 181 253 / 0.3);
}
.hover\:bg-violet-300\/40:hover {
  background-color: rgb(196 181 253 / 0.4);
}
.hover\:bg-violet-300\/5:hover {
  background-color: rgb(196 181 253 / 0.05);
}
.hover\:bg-violet-300\/50:hover {
  background-color: rgb(196 181 253 / 0.5);
}
.hover\:bg-violet-300\/60:hover {
  background-color: rgb(196 181 253 / 0.6);
}
.hover\:bg-violet-300\/70:hover {
  background-color: rgb(196 181 253 / 0.7);
}
.hover\:bg-violet-300\/80:hover {
  background-color: rgb(196 181 253 / 0.8);
}
.hover\:bg-violet-300\/90:hover {
  background-color: rgb(196 181 253 / 0.9);
}
.hover\:bg-violet-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(167 139 250 / var(--tw-bg-opacity, 1));
}
.hover\:bg-violet-400\/10:hover {
  background-color: rgb(167 139 250 / 0.1);
}
.hover\:bg-violet-400\/20:hover {
  background-color: rgb(167 139 250 / 0.2);
}
.hover\:bg-violet-400\/30:hover {
  background-color: rgb(167 139 250 / 0.3);
}
.hover\:bg-violet-400\/40:hover {
  background-color: rgb(167 139 250 / 0.4);
}
.hover\:bg-violet-400\/5:hover {
  background-color: rgb(167 139 250 / 0.05);
}
.hover\:bg-violet-400\/50:hover {
  background-color: rgb(167 139 250 / 0.5);
}
.hover\:bg-violet-400\/60:hover {
  background-color: rgb(167 139 250 / 0.6);
}
.hover\:bg-violet-400\/70:hover {
  background-color: rgb(167 139 250 / 0.7);
}
.hover\:bg-violet-400\/80:hover {
  background-color: rgb(167 139 250 / 0.8);
}
.hover\:bg-violet-400\/90:hover {
  background-color: rgb(167 139 250 / 0.9);
}
.hover\:bg-violet-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(245 243 255 / var(--tw-bg-opacity, 1));
}
.hover\:bg-violet-50\/10:hover {
  background-color: rgb(245 243 255 / 0.1);
}
.hover\:bg-violet-50\/20:hover {
  background-color: rgb(245 243 255 / 0.2);
}
.hover\:bg-violet-50\/30:hover {
  background-color: rgb(245 243 255 / 0.3);
}
.hover\:bg-violet-50\/40:hover {
  background-color: rgb(245 243 255 / 0.4);
}
.hover\:bg-violet-50\/5:hover {
  background-color: rgb(245 243 255 / 0.05);
}
.hover\:bg-violet-50\/50:hover {
  background-color: rgb(245 243 255 / 0.5);
}
.hover\:bg-violet-50\/60:hover {
  background-color: rgb(245 243 255 / 0.6);
}
.hover\:bg-violet-50\/70:hover {
  background-color: rgb(245 243 255 / 0.7);
}
.hover\:bg-violet-50\/80:hover {
  background-color: rgb(245 243 255 / 0.8);
}
.hover\:bg-violet-50\/90:hover {
  background-color: rgb(245 243 255 / 0.9);
}
.hover\:bg-violet-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(139 92 246 / var(--tw-bg-opacity, 1));
}
.hover\:bg-violet-500\/10:hover {
  background-color: rgb(139 92 246 / 0.1);
}
.hover\:bg-violet-500\/20:hover {
  background-color: rgb(139 92 246 / 0.2);
}
.hover\:bg-violet-500\/30:hover {
  background-color: rgb(139 92 246 / 0.3);
}
.hover\:bg-violet-500\/40:hover {
  background-color: rgb(139 92 246 / 0.4);
}
.hover\:bg-violet-500\/5:hover {
  background-color: rgb(139 92 246 / 0.05);
}
.hover\:bg-violet-500\/50:hover {
  background-color: rgb(139 92 246 / 0.5);
}
.hover\:bg-violet-500\/60:hover {
  background-color: rgb(139 92 246 / 0.6);
}
.hover\:bg-violet-500\/70:hover {
  background-color: rgb(139 92 246 / 0.7);
}
.hover\:bg-violet-500\/80:hover {
  background-color: rgb(139 92 246 / 0.8);
}
.hover\:bg-violet-500\/90:hover {
  background-color: rgb(139 92 246 / 0.9);
}
.hover\:bg-violet-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(124 58 237 / var(--tw-bg-opacity, 1));
}
.hover\:bg-violet-600\/10:hover {
  background-color: rgb(124 58 237 / 0.1);
}
.hover\:bg-violet-600\/20:hover {
  background-color: rgb(124 58 237 / 0.2);
}
.hover\:bg-violet-600\/30:hover {
  background-color: rgb(124 58 237 / 0.3);
}
.hover\:bg-violet-600\/40:hover {
  background-color: rgb(124 58 237 / 0.4);
}
.hover\:bg-violet-600\/5:hover {
  background-color: rgb(124 58 237 / 0.05);
}
.hover\:bg-violet-600\/50:hover {
  background-color: rgb(124 58 237 / 0.5);
}
.hover\:bg-violet-600\/60:hover {
  background-color: rgb(124 58 237 / 0.6);
}
.hover\:bg-violet-600\/70:hover {
  background-color: rgb(124 58 237 / 0.7);
}
.hover\:bg-violet-600\/80:hover {
  background-color: rgb(124 58 237 / 0.8);
}
.hover\:bg-violet-600\/90:hover {
  background-color: rgb(124 58 237 / 0.9);
}
.hover\:bg-violet-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(109 40 217 / var(--tw-bg-opacity, 1));
}
.hover\:bg-violet-700\/10:hover {
  background-color: rgb(109 40 217 / 0.1);
}
.hover\:bg-violet-700\/20:hover {
  background-color: rgb(109 40 217 / 0.2);
}
.hover\:bg-violet-700\/30:hover {
  background-color: rgb(109 40 217 / 0.3);
}
.hover\:bg-violet-700\/40:hover {
  background-color: rgb(109 40 217 / 0.4);
}
.hover\:bg-violet-700\/5:hover {
  background-color: rgb(109 40 217 / 0.05);
}
.hover\:bg-violet-700\/50:hover {
  background-color: rgb(109 40 217 / 0.5);
}
.hover\:bg-violet-700\/60:hover {
  background-color: rgb(109 40 217 / 0.6);
}
.hover\:bg-violet-700\/70:hover {
  background-color: rgb(109 40 217 / 0.7);
}
.hover\:bg-violet-700\/80:hover {
  background-color: rgb(109 40 217 / 0.8);
}
.hover\:bg-violet-700\/90:hover {
  background-color: rgb(109 40 217 / 0.9);
}
.hover\:bg-violet-800:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(91 33 182 / var(--tw-bg-opacity, 1));
}
.hover\:bg-violet-800\/10:hover {
  background-color: rgb(91 33 182 / 0.1);
}
.hover\:bg-violet-800\/20:hover {
  background-color: rgb(91 33 182 / 0.2);
}
.hover\:bg-violet-800\/30:hover {
  background-color: rgb(91 33 182 / 0.3);
}
.hover\:bg-violet-800\/40:hover {
  background-color: rgb(91 33 182 / 0.4);
}
.hover\:bg-violet-800\/5:hover {
  background-color: rgb(91 33 182 / 0.05);
}
.hover\:bg-violet-800\/50:hover {
  background-color: rgb(91 33 182 / 0.5);
}
.hover\:bg-violet-800\/60:hover {
  background-color: rgb(91 33 182 / 0.6);
}
.hover\:bg-violet-800\/70:hover {
  background-color: rgb(91 33 182 / 0.7);
}
.hover\:bg-violet-800\/80:hover {
  background-color: rgb(91 33 182 / 0.8);
}
.hover\:bg-violet-800\/90:hover {
  background-color: rgb(91 33 182 / 0.9);
}
.hover\:bg-violet-900:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(76 29 149 / var(--tw-bg-opacity, 1));
}
.hover\:bg-violet-900\/10:hover {
  background-color: rgb(76 29 149 / 0.1);
}
.hover\:bg-violet-900\/20:hover {
  background-color: rgb(76 29 149 / 0.2);
}
.hover\:bg-violet-900\/30:hover {
  background-color: rgb(76 29 149 / 0.3);
}
.hover\:bg-violet-900\/40:hover {
  background-color: rgb(76 29 149 / 0.4);
}
.hover\:bg-violet-900\/5:hover {
  background-color: rgb(76 29 149 / 0.05);
}
.hover\:bg-violet-900\/50:hover {
  background-color: rgb(76 29 149 / 0.5);
}
.hover\:bg-violet-900\/60:hover {
  background-color: rgb(76 29 149 / 0.6);
}
.hover\:bg-violet-900\/70:hover {
  background-color: rgb(76 29 149 / 0.7);
}
.hover\:bg-violet-900\/80:hover {
  background-color: rgb(76 29 149 / 0.8);
}
.hover\:bg-violet-900\/90:hover {
  background-color: rgb(76 29 149 / 0.9);
}
.hover\:bg-violet-950:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(46 16 101 / var(--tw-bg-opacity, 1));
}
.hover\:bg-violet-950\/10:hover {
  background-color: rgb(46 16 101 / 0.1);
}
.hover\:bg-violet-950\/20:hover {
  background-color: rgb(46 16 101 / 0.2);
}
.hover\:bg-violet-950\/30:hover {
  background-color: rgb(46 16 101 / 0.3);
}
.hover\:bg-violet-950\/40:hover {
  background-color: rgb(46 16 101 / 0.4);
}
.hover\:bg-violet-950\/5:hover {
  background-color: rgb(46 16 101 / 0.05);
}
.hover\:bg-violet-950\/50:hover {
  background-color: rgb(46 16 101 / 0.5);
}
.hover\:bg-violet-950\/60:hover {
  background-color: rgb(46 16 101 / 0.6);
}
.hover\:bg-violet-950\/70:hover {
  background-color: rgb(46 16 101 / 0.7);
}
.hover\:bg-violet-950\/80:hover {
  background-color: rgb(46 16 101 / 0.8);
}
.hover\:bg-violet-950\/90:hover {
  background-color: rgb(46 16 101 / 0.9);
}
.hover\:bg-white\/0:hover {
  background-color: rgb(255 255 255 / 0);
}
.hover\:bg-white\/10:hover {
  background-color: rgb(255 255 255 / 0.1);
}
.hover\:bg-yellow-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1));
}
.hover\:bg-yellow-100\/10:hover {
  background-color: rgb(254 249 195 / 0.1);
}
.hover\:bg-yellow-100\/20:hover {
  background-color: rgb(254 249 195 / 0.2);
}
.hover\:bg-yellow-100\/30:hover {
  background-color: rgb(254 249 195 / 0.3);
}
.hover\:bg-yellow-100\/40:hover {
  background-color: rgb(254 249 195 / 0.4);
}
.hover\:bg-yellow-100\/5:hover {
  background-color: rgb(254 249 195 / 0.05);
}
.hover\:bg-yellow-100\/50:hover {
  background-color: rgb(254 249 195 / 0.5);
}
.hover\:bg-yellow-100\/60:hover {
  background-color: rgb(254 249 195 / 0.6);
}
.hover\:bg-yellow-100\/70:hover {
  background-color: rgb(254 249 195 / 0.7);
}
.hover\:bg-yellow-100\/80:hover {
  background-color: rgb(254 249 195 / 0.8);
}
.hover\:bg-yellow-100\/90:hover {
  background-color: rgb(254 249 195 / 0.9);
}
.hover\:bg-yellow-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(254 240 138 / var(--tw-bg-opacity, 1));
}
.hover\:bg-yellow-200\/10:hover {
  background-color: rgb(254 240 138 / 0.1);
}
.hover\:bg-yellow-200\/20:hover {
  background-color: rgb(254 240 138 / 0.2);
}
.hover\:bg-yellow-200\/30:hover {
  background-color: rgb(254 240 138 / 0.3);
}
.hover\:bg-yellow-200\/40:hover {
  background-color: rgb(254 240 138 / 0.4);
}
.hover\:bg-yellow-200\/5:hover {
  background-color: rgb(254 240 138 / 0.05);
}
.hover\:bg-yellow-200\/50:hover {
  background-color: rgb(254 240 138 / 0.5);
}
.hover\:bg-yellow-200\/60:hover {
  background-color: rgb(254 240 138 / 0.6);
}
.hover\:bg-yellow-200\/70:hover {
  background-color: rgb(254 240 138 / 0.7);
}
.hover\:bg-yellow-200\/80:hover {
  background-color: rgb(254 240 138 / 0.8);
}
.hover\:bg-yellow-200\/90:hover {
  background-color: rgb(254 240 138 / 0.9);
}
.hover\:bg-yellow-300:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(253 224 71 / var(--tw-bg-opacity, 1));
}
.hover\:bg-yellow-300\/10:hover {
  background-color: rgb(253 224 71 / 0.1);
}
.hover\:bg-yellow-300\/20:hover {
  background-color: rgb(253 224 71 / 0.2);
}
.hover\:bg-yellow-300\/30:hover {
  background-color: rgb(253 224 71 / 0.3);
}
.hover\:bg-yellow-300\/40:hover {
  background-color: rgb(253 224 71 / 0.4);
}
.hover\:bg-yellow-300\/5:hover {
  background-color: rgb(253 224 71 / 0.05);
}
.hover\:bg-yellow-300\/50:hover {
  background-color: rgb(253 224 71 / 0.5);
}
.hover\:bg-yellow-300\/60:hover {
  background-color: rgb(253 224 71 / 0.6);
}
.hover\:bg-yellow-300\/70:hover {
  background-color: rgb(253 224 71 / 0.7);
}
.hover\:bg-yellow-300\/80:hover {
  background-color: rgb(253 224 71 / 0.8);
}
.hover\:bg-yellow-300\/90:hover {
  background-color: rgb(253 224 71 / 0.9);
}
.hover\:bg-yellow-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(250 204 21 / var(--tw-bg-opacity, 1));
}
.hover\:bg-yellow-400\/10:hover {
  background-color: rgb(250 204 21 / 0.1);
}
.hover\:bg-yellow-400\/20:hover {
  background-color: rgb(250 204 21 / 0.2);
}
.hover\:bg-yellow-400\/30:hover {
  background-color: rgb(250 204 21 / 0.3);
}
.hover\:bg-yellow-400\/40:hover {
  background-color: rgb(250 204 21 / 0.4);
}
.hover\:bg-yellow-400\/5:hover {
  background-color: rgb(250 204 21 / 0.05);
}
.hover\:bg-yellow-400\/50:hover {
  background-color: rgb(250 204 21 / 0.5);
}
.hover\:bg-yellow-400\/60:hover {
  background-color: rgb(250 204 21 / 0.6);
}
.hover\:bg-yellow-400\/70:hover {
  background-color: rgb(250 204 21 / 0.7);
}
.hover\:bg-yellow-400\/80:hover {
  background-color: rgb(250 204 21 / 0.8);
}
.hover\:bg-yellow-400\/90:hover {
  background-color: rgb(250 204 21 / 0.9);
}
.hover\:bg-yellow-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1));
}
.hover\:bg-yellow-50\/10:hover {
  background-color: rgb(254 252 232 / 0.1);
}
.hover\:bg-yellow-50\/20:hover {
  background-color: rgb(254 252 232 / 0.2);
}
.hover\:bg-yellow-50\/30:hover {
  background-color: rgb(254 252 232 / 0.3);
}
.hover\:bg-yellow-50\/40:hover {
  background-color: rgb(254 252 232 / 0.4);
}
.hover\:bg-yellow-50\/5:hover {
  background-color: rgb(254 252 232 / 0.05);
}
.hover\:bg-yellow-50\/50:hover {
  background-color: rgb(254 252 232 / 0.5);
}
.hover\:bg-yellow-50\/60:hover {
  background-color: rgb(254 252 232 / 0.6);
}
.hover\:bg-yellow-50\/70:hover {
  background-color: rgb(254 252 232 / 0.7);
}
.hover\:bg-yellow-50\/80:hover {
  background-color: rgb(254 252 232 / 0.8);
}
.hover\:bg-yellow-50\/90:hover {
  background-color: rgb(254 252 232 / 0.9);
}
.hover\:bg-yellow-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(234 179 8 / var(--tw-bg-opacity, 1));
}
.hover\:bg-yellow-500\/10:hover {
  background-color: rgb(234 179 8 / 0.1);
}
.hover\:bg-yellow-500\/20:hover {
  background-color: rgb(234 179 8 / 0.2);
}
.hover\:bg-yellow-500\/30:hover {
  background-color: rgb(234 179 8 / 0.3);
}
.hover\:bg-yellow-500\/40:hover {
  background-color: rgb(234 179 8 / 0.4);
}
.hover\:bg-yellow-500\/5:hover {
  background-color: rgb(234 179 8 / 0.05);
}
.hover\:bg-yellow-500\/50:hover {
  background-color: rgb(234 179 8 / 0.5);
}
.hover\:bg-yellow-500\/60:hover {
  background-color: rgb(234 179 8 / 0.6);
}
.hover\:bg-yellow-500\/70:hover {
  background-color: rgb(234 179 8 / 0.7);
}
.hover\:bg-yellow-500\/80:hover {
  background-color: rgb(234 179 8 / 0.8);
}
.hover\:bg-yellow-500\/90:hover {
  background-color: rgb(234 179 8 / 0.9);
}
.hover\:bg-yellow-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(202 138 4 / var(--tw-bg-opacity, 1));
}
.hover\:bg-yellow-600\/10:hover {
  background-color: rgb(202 138 4 / 0.1);
}
.hover\:bg-yellow-600\/20:hover {
  background-color: rgb(202 138 4 / 0.2);
}
.hover\:bg-yellow-600\/30:hover {
  background-color: rgb(202 138 4 / 0.3);
}
.hover\:bg-yellow-600\/40:hover {
  background-color: rgb(202 138 4 / 0.4);
}
.hover\:bg-yellow-600\/5:hover {
  background-color: rgb(202 138 4 / 0.05);
}
.hover\:bg-yellow-600\/50:hover {
  background-color: rgb(202 138 4 / 0.5);
}
.hover\:bg-yellow-600\/60:hover {
  background-color: rgb(202 138 4 / 0.6);
}
.hover\:bg-yellow-600\/70:hover {
  background-color: rgb(202 138 4 / 0.7);
}
.hover\:bg-yellow-600\/80:hover {
  background-color: rgb(202 138 4 / 0.8);
}
.hover\:bg-yellow-600\/90:hover {
  background-color: rgb(202 138 4 / 0.9);
}
.hover\:bg-yellow-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(161 98 7 / var(--tw-bg-opacity, 1));
}
.hover\:bg-yellow-700\/10:hover {
  background-color: rgb(161 98 7 / 0.1);
}
.hover\:bg-yellow-700\/20:hover {
  background-color: rgb(161 98 7 / 0.2);
}
.hover\:bg-yellow-700\/30:hover {
  background-color: rgb(161 98 7 / 0.3);
}
.hover\:bg-yellow-700\/40:hover {
  background-color: rgb(161 98 7 / 0.4);
}
.hover\:bg-yellow-700\/5:hover {
  background-color: rgb(161 98 7 / 0.05);
}
.hover\:bg-yellow-700\/50:hover {
  background-color: rgb(161 98 7 / 0.5);
}
.hover\:bg-yellow-700\/60:hover {
  background-color: rgb(161 98 7 / 0.6);
}
.hover\:bg-yellow-700\/70:hover {
  background-color: rgb(161 98 7 / 0.7);
}
.hover\:bg-yellow-700\/80:hover {
  background-color: rgb(161 98 7 / 0.8);
}
.hover\:bg-yellow-700\/90:hover {
  background-color: rgb(161 98 7 / 0.9);
}
.hover\:bg-yellow-800:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(133 77 14 / var(--tw-bg-opacity, 1));
}
.hover\:bg-yellow-800\/10:hover {
  background-color: rgb(133 77 14 / 0.1);
}
.hover\:bg-yellow-800\/20:hover {
  background-color: rgb(133 77 14 / 0.2);
}
.hover\:bg-yellow-800\/30:hover {
  background-color: rgb(133 77 14 / 0.3);
}
.hover\:bg-yellow-800\/40:hover {
  background-color: rgb(133 77 14 / 0.4);
}
.hover\:bg-yellow-800\/5:hover {
  background-color: rgb(133 77 14 / 0.05);
}
.hover\:bg-yellow-800\/50:hover {
  background-color: rgb(133 77 14 / 0.5);
}
.hover\:bg-yellow-800\/60:hover {
  background-color: rgb(133 77 14 / 0.6);
}
.hover\:bg-yellow-800\/70:hover {
  background-color: rgb(133 77 14 / 0.7);
}
.hover\:bg-yellow-800\/80:hover {
  background-color: rgb(133 77 14 / 0.8);
}
.hover\:bg-yellow-800\/90:hover {
  background-color: rgb(133 77 14 / 0.9);
}
.hover\:bg-yellow-900:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(113 63 18 / var(--tw-bg-opacity, 1));
}
.hover\:bg-yellow-900\/10:hover {
  background-color: rgb(113 63 18 / 0.1);
}
.hover\:bg-yellow-900\/20:hover {
  background-color: rgb(113 63 18 / 0.2);
}
.hover\:bg-yellow-900\/30:hover {
  background-color: rgb(113 63 18 / 0.3);
}
.hover\:bg-yellow-900\/40:hover {
  background-color: rgb(113 63 18 / 0.4);
}
.hover\:bg-yellow-900\/5:hover {
  background-color: rgb(113 63 18 / 0.05);
}
.hover\:bg-yellow-900\/50:hover {
  background-color: rgb(113 63 18 / 0.5);
}
.hover\:bg-yellow-900\/60:hover {
  background-color: rgb(113 63 18 / 0.6);
}
.hover\:bg-yellow-900\/70:hover {
  background-color: rgb(113 63 18 / 0.7);
}
.hover\:bg-yellow-900\/80:hover {
  background-color: rgb(113 63 18 / 0.8);
}
.hover\:bg-yellow-900\/90:hover {
  background-color: rgb(113 63 18 / 0.9);
}
.hover\:bg-yellow-950:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(66 32 6 / var(--tw-bg-opacity, 1));
}
.hover\:bg-yellow-950\/10:hover {
  background-color: rgb(66 32 6 / 0.1);
}
.hover\:bg-yellow-950\/20:hover {
  background-color: rgb(66 32 6 / 0.2);
}
.hover\:bg-yellow-950\/30:hover {
  background-color: rgb(66 32 6 / 0.3);
}
.hover\:bg-yellow-950\/40:hover {
  background-color: rgb(66 32 6 / 0.4);
}
.hover\:bg-yellow-950\/5:hover {
  background-color: rgb(66 32 6 / 0.05);
}
.hover\:bg-yellow-950\/50:hover {
  background-color: rgb(66 32 6 / 0.5);
}
.hover\:bg-yellow-950\/60:hover {
  background-color: rgb(66 32 6 / 0.6);
}
.hover\:bg-yellow-950\/70:hover {
  background-color: rgb(66 32 6 / 0.7);
}
.hover\:bg-yellow-950\/80:hover {
  background-color: rgb(66 32 6 / 0.8);
}
.hover\:bg-yellow-950\/90:hover {
  background-color: rgb(66 32 6 / 0.9);
}
.hover\:bg-zinc-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(244 244 245 / var(--tw-bg-opacity, 1));
}
.hover\:bg-zinc-100\/10:hover {
  background-color: rgb(244 244 245 / 0.1);
}
.hover\:bg-zinc-100\/20:hover {
  background-color: rgb(244 244 245 / 0.2);
}
.hover\:bg-zinc-100\/30:hover {
  background-color: rgb(244 244 245 / 0.3);
}
.hover\:bg-zinc-100\/40:hover {
  background-color: rgb(244 244 245 / 0.4);
}
.hover\:bg-zinc-100\/5:hover {
  background-color: rgb(244 244 245 / 0.05);
}
.hover\:bg-zinc-100\/50:hover {
  background-color: rgb(244 244 245 / 0.5);
}
.hover\:bg-zinc-100\/60:hover {
  background-color: rgb(244 244 245 / 0.6);
}
.hover\:bg-zinc-100\/70:hover {
  background-color: rgb(244 244 245 / 0.7);
}
.hover\:bg-zinc-100\/80:hover {
  background-color: rgb(244 244 245 / 0.8);
}
.hover\:bg-zinc-100\/90:hover {
  background-color: rgb(244 244 245 / 0.9);
}
.hover\:bg-zinc-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(228 228 231 / var(--tw-bg-opacity, 1));
}
.hover\:bg-zinc-200\/10:hover {
  background-color: rgb(228 228 231 / 0.1);
}
.hover\:bg-zinc-200\/20:hover {
  background-color: rgb(228 228 231 / 0.2);
}
.hover\:bg-zinc-200\/30:hover {
  background-color: rgb(228 228 231 / 0.3);
}
.hover\:bg-zinc-200\/40:hover {
  background-color: rgb(228 228 231 / 0.4);
}
.hover\:bg-zinc-200\/5:hover {
  background-color: rgb(228 228 231 / 0.05);
}
.hover\:bg-zinc-200\/50:hover {
  background-color: rgb(228 228 231 / 0.5);
}
.hover\:bg-zinc-200\/60:hover {
  background-color: rgb(228 228 231 / 0.6);
}
.hover\:bg-zinc-200\/70:hover {
  background-color: rgb(228 228 231 / 0.7);
}
.hover\:bg-zinc-200\/80:hover {
  background-color: rgb(228 228 231 / 0.8);
}
.hover\:bg-zinc-200\/90:hover {
  background-color: rgb(228 228 231 / 0.9);
}
.hover\:bg-zinc-300:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(212 212 216 / var(--tw-bg-opacity, 1));
}
.hover\:bg-zinc-300\/10:hover {
  background-color: rgb(212 212 216 / 0.1);
}
.hover\:bg-zinc-300\/20:hover {
  background-color: rgb(212 212 216 / 0.2);
}
.hover\:bg-zinc-300\/30:hover {
  background-color: rgb(212 212 216 / 0.3);
}
.hover\:bg-zinc-300\/40:hover {
  background-color: rgb(212 212 216 / 0.4);
}
.hover\:bg-zinc-300\/5:hover {
  background-color: rgb(212 212 216 / 0.05);
}
.hover\:bg-zinc-300\/50:hover {
  background-color: rgb(212 212 216 / 0.5);
}
.hover\:bg-zinc-300\/60:hover {
  background-color: rgb(212 212 216 / 0.6);
}
.hover\:bg-zinc-300\/70:hover {
  background-color: rgb(212 212 216 / 0.7);
}
.hover\:bg-zinc-300\/80:hover {
  background-color: rgb(212 212 216 / 0.8);
}
.hover\:bg-zinc-300\/90:hover {
  background-color: rgb(212 212 216 / 0.9);
}
.hover\:bg-zinc-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(161 161 170 / var(--tw-bg-opacity, 1));
}
.hover\:bg-zinc-400\/10:hover {
  background-color: rgb(161 161 170 / 0.1);
}
.hover\:bg-zinc-400\/20:hover {
  background-color: rgb(161 161 170 / 0.2);
}
.hover\:bg-zinc-400\/30:hover {
  background-color: rgb(161 161 170 / 0.3);
}
.hover\:bg-zinc-400\/40:hover {
  background-color: rgb(161 161 170 / 0.4);
}
.hover\:bg-zinc-400\/5:hover {
  background-color: rgb(161 161 170 / 0.05);
}
.hover\:bg-zinc-400\/50:hover {
  background-color: rgb(161 161 170 / 0.5);
}
.hover\:bg-zinc-400\/60:hover {
  background-color: rgb(161 161 170 / 0.6);
}
.hover\:bg-zinc-400\/70:hover {
  background-color: rgb(161 161 170 / 0.7);
}
.hover\:bg-zinc-400\/80:hover {
  background-color: rgb(161 161 170 / 0.8);
}
.hover\:bg-zinc-400\/90:hover {
  background-color: rgb(161 161 170 / 0.9);
}
.hover\:bg-zinc-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
}
.hover\:bg-zinc-50\/10:hover {
  background-color: rgb(250 250 250 / 0.1);
}
.hover\:bg-zinc-50\/20:hover {
  background-color: rgb(250 250 250 / 0.2);
}
.hover\:bg-zinc-50\/30:hover {
  background-color: rgb(250 250 250 / 0.3);
}
.hover\:bg-zinc-50\/40:hover {
  background-color: rgb(250 250 250 / 0.4);
}
.hover\:bg-zinc-50\/5:hover {
  background-color: rgb(250 250 250 / 0.05);
}
.hover\:bg-zinc-50\/50:hover {
  background-color: rgb(250 250 250 / 0.5);
}
.hover\:bg-zinc-50\/60:hover {
  background-color: rgb(250 250 250 / 0.6);
}
.hover\:bg-zinc-50\/70:hover {
  background-color: rgb(250 250 250 / 0.7);
}
.hover\:bg-zinc-50\/80:hover {
  background-color: rgb(250 250 250 / 0.8);
}
.hover\:bg-zinc-50\/90:hover {
  background-color: rgb(250 250 250 / 0.9);
}
.hover\:bg-zinc-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(113 113 122 / var(--tw-bg-opacity, 1));
}
.hover\:bg-zinc-500\/10:hover {
  background-color: rgb(113 113 122 / 0.1);
}
.hover\:bg-zinc-500\/20:hover {
  background-color: rgb(113 113 122 / 0.2);
}
.hover\:bg-zinc-500\/30:hover {
  background-color: rgb(113 113 122 / 0.3);
}
.hover\:bg-zinc-500\/40:hover {
  background-color: rgb(113 113 122 / 0.4);
}
.hover\:bg-zinc-500\/5:hover {
  background-color: rgb(113 113 122 / 0.05);
}
.hover\:bg-zinc-500\/50:hover {
  background-color: rgb(113 113 122 / 0.5);
}
.hover\:bg-zinc-500\/60:hover {
  background-color: rgb(113 113 122 / 0.6);
}
.hover\:bg-zinc-500\/70:hover {
  background-color: rgb(113 113 122 / 0.7);
}
.hover\:bg-zinc-500\/80:hover {
  background-color: rgb(113 113 122 / 0.8);
}
.hover\:bg-zinc-500\/90:hover {
  background-color: rgb(113 113 122 / 0.9);
}
.hover\:bg-zinc-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(82 82 91 / var(--tw-bg-opacity, 1));
}
.hover\:bg-zinc-600\/10:hover {
  background-color: rgb(82 82 91 / 0.1);
}
.hover\:bg-zinc-600\/20:hover {
  background-color: rgb(82 82 91 / 0.2);
}
.hover\:bg-zinc-600\/30:hover {
  background-color: rgb(82 82 91 / 0.3);
}
.hover\:bg-zinc-600\/40:hover {
  background-color: rgb(82 82 91 / 0.4);
}
.hover\:bg-zinc-600\/5:hover {
  background-color: rgb(82 82 91 / 0.05);
}
.hover\:bg-zinc-600\/50:hover {
  background-color: rgb(82 82 91 / 0.5);
}
.hover\:bg-zinc-600\/60:hover {
  background-color: rgb(82 82 91 / 0.6);
}
.hover\:bg-zinc-600\/70:hover {
  background-color: rgb(82 82 91 / 0.7);
}
.hover\:bg-zinc-600\/80:hover {
  background-color: rgb(82 82 91 / 0.8);
}
.hover\:bg-zinc-600\/90:hover {
  background-color: rgb(82 82 91 / 0.9);
}
.hover\:bg-zinc-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(63 63 70 / var(--tw-bg-opacity, 1));
}
.hover\:bg-zinc-700\/10:hover {
  background-color: rgb(63 63 70 / 0.1);
}
.hover\:bg-zinc-700\/20:hover {
  background-color: rgb(63 63 70 / 0.2);
}
.hover\:bg-zinc-700\/30:hover {
  background-color: rgb(63 63 70 / 0.3);
}
.hover\:bg-zinc-700\/40:hover {
  background-color: rgb(63 63 70 / 0.4);
}
.hover\:bg-zinc-700\/5:hover {
  background-color: rgb(63 63 70 / 0.05);
}
.hover\:bg-zinc-700\/50:hover {
  background-color: rgb(63 63 70 / 0.5);
}
.hover\:bg-zinc-700\/60:hover {
  background-color: rgb(63 63 70 / 0.6);
}
.hover\:bg-zinc-700\/70:hover {
  background-color: rgb(63 63 70 / 0.7);
}
.hover\:bg-zinc-700\/80:hover {
  background-color: rgb(63 63 70 / 0.8);
}
.hover\:bg-zinc-700\/90:hover {
  background-color: rgb(63 63 70 / 0.9);
}
.hover\:bg-zinc-800:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(39 39 42 / var(--tw-bg-opacity, 1));
}
.hover\:bg-zinc-800\/10:hover {
  background-color: rgb(39 39 42 / 0.1);
}
.hover\:bg-zinc-800\/20:hover {
  background-color: rgb(39 39 42 / 0.2);
}
.hover\:bg-zinc-800\/30:hover {
  background-color: rgb(39 39 42 / 0.3);
}
.hover\:bg-zinc-800\/40:hover {
  background-color: rgb(39 39 42 / 0.4);
}
.hover\:bg-zinc-800\/5:hover {
  background-color: rgb(39 39 42 / 0.05);
}
.hover\:bg-zinc-800\/50:hover {
  background-color: rgb(39 39 42 / 0.5);
}
.hover\:bg-zinc-800\/60:hover {
  background-color: rgb(39 39 42 / 0.6);
}
.hover\:bg-zinc-800\/70:hover {
  background-color: rgb(39 39 42 / 0.7);
}
.hover\:bg-zinc-800\/80:hover {
  background-color: rgb(39 39 42 / 0.8);
}
.hover\:bg-zinc-800\/90:hover {
  background-color: rgb(39 39 42 / 0.9);
}
.hover\:bg-zinc-900:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(24 24 27 / var(--tw-bg-opacity, 1));
}
.hover\:bg-zinc-900\/10:hover {
  background-color: rgb(24 24 27 / 0.1);
}
.hover\:bg-zinc-900\/20:hover {
  background-color: rgb(24 24 27 / 0.2);
}
.hover\:bg-zinc-900\/30:hover {
  background-color: rgb(24 24 27 / 0.3);
}
.hover\:bg-zinc-900\/40:hover {
  background-color: rgb(24 24 27 / 0.4);
}
.hover\:bg-zinc-900\/5:hover {
  background-color: rgb(24 24 27 / 0.05);
}
.hover\:bg-zinc-900\/50:hover {
  background-color: rgb(24 24 27 / 0.5);
}
.hover\:bg-zinc-900\/60:hover {
  background-color: rgb(24 24 27 / 0.6);
}
.hover\:bg-zinc-900\/70:hover {
  background-color: rgb(24 24 27 / 0.7);
}
.hover\:bg-zinc-900\/80:hover {
  background-color: rgb(24 24 27 / 0.8);
}
.hover\:bg-zinc-900\/90:hover {
  background-color: rgb(24 24 27 / 0.9);
}
.hover\:bg-zinc-950:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(9 9 11 / var(--tw-bg-opacity, 1));
}
.hover\:bg-zinc-950\/10:hover {
  background-color: rgb(9 9 11 / 0.1);
}
.hover\:bg-zinc-950\/20:hover {
  background-color: rgb(9 9 11 / 0.2);
}
.hover\:bg-zinc-950\/30:hover {
  background-color: rgb(9 9 11 / 0.3);
}
.hover\:bg-zinc-950\/40:hover {
  background-color: rgb(9 9 11 / 0.4);
}
.hover\:bg-zinc-950\/5:hover {
  background-color: rgb(9 9 11 / 0.05);
}
.hover\:bg-zinc-950\/50:hover {
  background-color: rgb(9 9 11 / 0.5);
}
.hover\:bg-zinc-950\/60:hover {
  background-color: rgb(9 9 11 / 0.6);
}
.hover\:bg-zinc-950\/70:hover {
  background-color: rgb(9 9 11 / 0.7);
}
.hover\:bg-zinc-950\/80:hover {
  background-color: rgb(9 9 11 / 0.8);
}
.hover\:bg-zinc-950\/90:hover {
  background-color: rgb(9 9 11 / 0.9);
}
.hover\:p-0:hover {
  padding: 0px;
}
.hover\:p-1:hover {
  padding: 0.25rem;
}
.hover\:p-10:hover {
  padding: 2.5rem;
}
.hover\:p-11:hover {
  padding: 2.75rem;
}
.hover\:p-12:hover {
  padding: 3rem;
}
.hover\:p-14:hover {
  padding: 3.5rem;
}
.hover\:p-16:hover {
  padding: 4rem;
}
.hover\:p-2:hover {
  padding: 0.5rem;
}
.hover\:p-20:hover {
  padding: 5rem;
}
.hover\:p-24:hover {
  padding: 6rem;
}
.hover\:p-28:hover {
  padding: 7rem;
}
.hover\:p-3:hover {
  padding: 0.75rem;
}
.hover\:p-32:hover {
  padding: 8rem;
}
.hover\:p-36:hover {
  padding: 9rem;
}
.hover\:p-4:hover {
  padding: 1rem;
}
.hover\:p-40:hover {
  padding: 10rem;
}
.hover\:p-44:hover {
  padding: 11rem;
}
.hover\:p-48:hover {
  padding: 12rem;
}
.hover\:p-5:hover {
  padding: 1.25rem;
}
.hover\:p-52:hover {
  padding: 13rem;
}
.hover\:p-56:hover {
  padding: 14rem;
}
.hover\:p-6:hover {
  padding: 1.5rem;
}
.hover\:p-60:hover {
  padding: 15rem;
}
.hover\:p-64:hover {
  padding: 16rem;
}
.hover\:p-7:hover {
  padding: 1.75rem;
}
.hover\:p-72:hover {
  padding: 18rem;
}
.hover\:p-8:hover {
  padding: 2rem;
}
.hover\:p-80:hover {
  padding: 20rem;
}
.hover\:p-9:hover {
  padding: 2.25rem;
}
.hover\:p-96:hover {
  padding: 24rem;
}
.hover\:px-0:hover {
  padding-left: 0px;
  padding-right: 0px;
}
.hover\:px-1:hover {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.hover\:px-10:hover {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.hover\:px-11:hover {
  padding-left: 2.75rem;
  padding-right: 2.75rem;
}
.hover\:px-12:hover {
  padding-left: 3rem;
  padding-right: 3rem;
}
.hover\:px-14:hover {
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}
.hover\:px-16:hover {
  padding-left: 4rem;
  padding-right: 4rem;
}
.hover\:px-2:hover {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.hover\:px-20:hover {
  padding-left: 5rem;
  padding-right: 5rem;
}
.hover\:px-24:hover {
  padding-left: 6rem;
  padding-right: 6rem;
}
.hover\:px-28:hover {
  padding-left: 7rem;
  padding-right: 7rem;
}
.hover\:px-3:hover {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.hover\:px-32:hover {
  padding-left: 8rem;
  padding-right: 8rem;
}
.hover\:px-36:hover {
  padding-left: 9rem;
  padding-right: 9rem;
}
.hover\:px-4:hover {
  padding-left: 1rem;
  padding-right: 1rem;
}
.hover\:px-40:hover {
  padding-left: 10rem;
  padding-right: 10rem;
}
.hover\:px-44:hover {
  padding-left: 11rem;
  padding-right: 11rem;
}
.hover\:px-48:hover {
  padding-left: 12rem;
  padding-right: 12rem;
}
.hover\:px-5:hover {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.hover\:px-52:hover {
  padding-left: 13rem;
  padding-right: 13rem;
}
.hover\:px-56:hover {
  padding-left: 14rem;
  padding-right: 14rem;
}
.hover\:px-6:hover {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.hover\:px-60:hover {
  padding-left: 15rem;
  padding-right: 15rem;
}
.hover\:px-64:hover {
  padding-left: 16rem;
  padding-right: 16rem;
}
.hover\:px-7:hover {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}
.hover\:px-72:hover {
  padding-left: 18rem;
  padding-right: 18rem;
}
.hover\:px-8:hover {
  padding-left: 2rem;
  padding-right: 2rem;
}
.hover\:px-80:hover {
  padding-left: 20rem;
  padding-right: 20rem;
}
.hover\:px-9:hover {
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}
.hover\:px-96:hover {
  padding-left: 24rem;
  padding-right: 24rem;
}
.hover\:py-0:hover {
  padding-top: 0px;
  padding-bottom: 0px;
}
.hover\:py-1:hover {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.hover\:py-10:hover {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.hover\:py-11:hover {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}
.hover\:py-12:hover {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.hover\:py-14:hover {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.hover\:py-16:hover {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.hover\:py-2:hover {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.hover\:py-20:hover {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.hover\:py-24:hover {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.hover\:py-28:hover {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
.hover\:py-3:hover {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.hover\:py-32:hover {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.hover\:py-36:hover {
  padding-top: 9rem;
  padding-bottom: 9rem;
}
.hover\:py-4:hover {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.hover\:py-40:hover {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.hover\:py-44:hover {
  padding-top: 11rem;
  padding-bottom: 11rem;
}
.hover\:py-48:hover {
  padding-top: 12rem;
  padding-bottom: 12rem;
}
.hover\:py-5:hover {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.hover\:py-52:hover {
  padding-top: 13rem;
  padding-bottom: 13rem;
}
.hover\:py-56:hover {
  padding-top: 14rem;
  padding-bottom: 14rem;
}
.hover\:py-6:hover {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.hover\:py-60:hover {
  padding-top: 15rem;
  padding-bottom: 15rem;
}
.hover\:py-64:hover {
  padding-top: 16rem;
  padding-bottom: 16rem;
}
.hover\:py-7:hover {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}
.hover\:py-72:hover {
  padding-top: 18rem;
  padding-bottom: 18rem;
}
.hover\:py-8:hover {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.hover\:py-80:hover {
  padding-top: 20rem;
  padding-bottom: 20rem;
}
.hover\:py-9:hover {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}
.hover\:py-96:hover {
  padding-top: 24rem;
  padding-bottom: 24rem;
}
.hover\:pb-0:hover {
  padding-bottom: 0px;
}
.hover\:pb-1:hover {
  padding-bottom: 0.25rem;
}
.hover\:pb-10:hover {
  padding-bottom: 2.5rem;
}
.hover\:pb-11:hover {
  padding-bottom: 2.75rem;
}
.hover\:pb-12:hover {
  padding-bottom: 3rem;
}
.hover\:pb-14:hover {
  padding-bottom: 3.5rem;
}
.hover\:pb-16:hover {
  padding-bottom: 4rem;
}
.hover\:pb-2:hover {
  padding-bottom: 0.5rem;
}
.hover\:pb-20:hover {
  padding-bottom: 5rem;
}
.hover\:pb-24:hover {
  padding-bottom: 6rem;
}
.hover\:pb-28:hover {
  padding-bottom: 7rem;
}
.hover\:pb-3:hover {
  padding-bottom: 0.75rem;
}
.hover\:pb-32:hover {
  padding-bottom: 8rem;
}
.hover\:pb-36:hover {
  padding-bottom: 9rem;
}
.hover\:pb-4:hover {
  padding-bottom: 1rem;
}
.hover\:pb-40:hover {
  padding-bottom: 10rem;
}
.hover\:pb-44:hover {
  padding-bottom: 11rem;
}
.hover\:pb-48:hover {
  padding-bottom: 12rem;
}
.hover\:pb-5:hover {
  padding-bottom: 1.25rem;
}
.hover\:pb-52:hover {
  padding-bottom: 13rem;
}
.hover\:pb-56:hover {
  padding-bottom: 14rem;
}
.hover\:pb-6:hover {
  padding-bottom: 1.5rem;
}
.hover\:pb-60:hover {
  padding-bottom: 15rem;
}
.hover\:pb-64:hover {
  padding-bottom: 16rem;
}
.hover\:pb-7:hover {
  padding-bottom: 1.75rem;
}
.hover\:pb-72:hover {
  padding-bottom: 18rem;
}
.hover\:pb-8:hover {
  padding-bottom: 2rem;
}
.hover\:pb-80:hover {
  padding-bottom: 20rem;
}
.hover\:pb-9:hover {
  padding-bottom: 2.25rem;
}
.hover\:pb-96:hover {
  padding-bottom: 24rem;
}
.hover\:pl-0:hover {
  padding-left: 0px;
}
.hover\:pl-1:hover {
  padding-left: 0.25rem;
}
.hover\:pl-10:hover {
  padding-left: 2.5rem;
}
.hover\:pl-11:hover {
  padding-left: 2.75rem;
}
.hover\:pl-12:hover {
  padding-left: 3rem;
}
.hover\:pl-14:hover {
  padding-left: 3.5rem;
}
.hover\:pl-16:hover {
  padding-left: 4rem;
}
.hover\:pl-2:hover {
  padding-left: 0.5rem;
}
.hover\:pl-20:hover {
  padding-left: 5rem;
}
.hover\:pl-24:hover {
  padding-left: 6rem;
}
.hover\:pl-28:hover {
  padding-left: 7rem;
}
.hover\:pl-3:hover {
  padding-left: 0.75rem;
}
.hover\:pl-32:hover {
  padding-left: 8rem;
}
.hover\:pl-36:hover {
  padding-left: 9rem;
}
.hover\:pl-4:hover {
  padding-left: 1rem;
}
.hover\:pl-40:hover {
  padding-left: 10rem;
}
.hover\:pl-44:hover {
  padding-left: 11rem;
}
.hover\:pl-48:hover {
  padding-left: 12rem;
}
.hover\:pl-5:hover {
  padding-left: 1.25rem;
}
.hover\:pl-52:hover {
  padding-left: 13rem;
}
.hover\:pl-56:hover {
  padding-left: 14rem;
}
.hover\:pl-6:hover {
  padding-left: 1.5rem;
}
.hover\:pl-60:hover {
  padding-left: 15rem;
}
.hover\:pl-64:hover {
  padding-left: 16rem;
}
.hover\:pl-7:hover {
  padding-left: 1.75rem;
}
.hover\:pl-72:hover {
  padding-left: 18rem;
}
.hover\:pl-8:hover {
  padding-left: 2rem;
}
.hover\:pl-80:hover {
  padding-left: 20rem;
}
.hover\:pl-9:hover {
  padding-left: 2.25rem;
}
.hover\:pl-96:hover {
  padding-left: 24rem;
}
.hover\:pr-0:hover {
  padding-right: 0px;
}
.hover\:pr-1:hover {
  padding-right: 0.25rem;
}
.hover\:pr-10:hover {
  padding-right: 2.5rem;
}
.hover\:pr-11:hover {
  padding-right: 2.75rem;
}
.hover\:pr-12:hover {
  padding-right: 3rem;
}
.hover\:pr-14:hover {
  padding-right: 3.5rem;
}
.hover\:pr-16:hover {
  padding-right: 4rem;
}
.hover\:pr-2:hover {
  padding-right: 0.5rem;
}
.hover\:pr-20:hover {
  padding-right: 5rem;
}
.hover\:pr-24:hover {
  padding-right: 6rem;
}
.hover\:pr-28:hover {
  padding-right: 7rem;
}
.hover\:pr-3:hover {
  padding-right: 0.75rem;
}
.hover\:pr-32:hover {
  padding-right: 8rem;
}
.hover\:pr-36:hover {
  padding-right: 9rem;
}
.hover\:pr-4:hover {
  padding-right: 1rem;
}
.hover\:pr-40:hover {
  padding-right: 10rem;
}
.hover\:pr-44:hover {
  padding-right: 11rem;
}
.hover\:pr-48:hover {
  padding-right: 12rem;
}
.hover\:pr-5:hover {
  padding-right: 1.25rem;
}
.hover\:pr-52:hover {
  padding-right: 13rem;
}
.hover\:pr-56:hover {
  padding-right: 14rem;
}
.hover\:pr-6:hover {
  padding-right: 1.5rem;
}
.hover\:pr-60:hover {
  padding-right: 15rem;
}
.hover\:pr-64:hover {
  padding-right: 16rem;
}
.hover\:pr-7:hover {
  padding-right: 1.75rem;
}
.hover\:pr-72:hover {
  padding-right: 18rem;
}
.hover\:pr-8:hover {
  padding-right: 2rem;
}
.hover\:pr-80:hover {
  padding-right: 20rem;
}
.hover\:pr-9:hover {
  padding-right: 2.25rem;
}
.hover\:pr-96:hover {
  padding-right: 24rem;
}
.hover\:pt-0:hover {
  padding-top: 0px;
}
.hover\:pt-1:hover {
  padding-top: 0.25rem;
}
.hover\:pt-10:hover {
  padding-top: 2.5rem;
}
.hover\:pt-11:hover {
  padding-top: 2.75rem;
}
.hover\:pt-12:hover {
  padding-top: 3rem;
}
.hover\:pt-14:hover {
  padding-top: 3.5rem;
}
.hover\:pt-16:hover {
  padding-top: 4rem;
}
.hover\:pt-2:hover {
  padding-top: 0.5rem;
}
.hover\:pt-20:hover {
  padding-top: 5rem;
}
.hover\:pt-24:hover {
  padding-top: 6rem;
}
.hover\:pt-28:hover {
  padding-top: 7rem;
}
.hover\:pt-3:hover {
  padding-top: 0.75rem;
}
.hover\:pt-32:hover {
  padding-top: 8rem;
}
.hover\:pt-36:hover {
  padding-top: 9rem;
}
.hover\:pt-4:hover {
  padding-top: 1rem;
}
.hover\:pt-40:hover {
  padding-top: 10rem;
}
.hover\:pt-44:hover {
  padding-top: 11rem;
}
.hover\:pt-48:hover {
  padding-top: 12rem;
}
.hover\:pt-5:hover {
  padding-top: 1.25rem;
}
.hover\:pt-52:hover {
  padding-top: 13rem;
}
.hover\:pt-56:hover {
  padding-top: 14rem;
}
.hover\:pt-6:hover {
  padding-top: 1.5rem;
}
.hover\:pt-60:hover {
  padding-top: 15rem;
}
.hover\:pt-64:hover {
  padding-top: 16rem;
}
.hover\:pt-7:hover {
  padding-top: 1.75rem;
}
.hover\:pt-72:hover {
  padding-top: 18rem;
}
.hover\:pt-8:hover {
  padding-top: 2rem;
}
.hover\:pt-80:hover {
  padding-top: 20rem;
}
.hover\:pt-9:hover {
  padding-top: 2.25rem;
}
.hover\:pt-96:hover {
  padding-top: 24rem;
}
.hover\:font-arial:hover {
  font-family: Arial, Helvetica, sans-serif;
}
.hover\:font-assistant:hover {
  font-family: Assistant, sans-serif;
}
.hover\:font-dancingscript:hover {
  font-family: Dancing Script, cursive;
}
.hover\:font-firacode:hover {
  font-family: Fira Code, monospace;
}
.hover\:font-frankRuhlLibre:hover {
  font-family: Frank Ruhl Libre, serif;
}
.hover\:font-jetbrains:hover {
  font-family: JetBrains Mono, monospace;
}
.hover\:font-lato:hover {
  font-family: Lato, sans-serif;
}
.hover\:font-lobster:hover {
  font-family: Lobster, cursive;
}
.hover\:font-lobsterTwo:hover {
  font-family: Lobster Two, cursive;
}
.hover\:font-lora:hover {
  font-family: Lora, serif;
}
.hover\:font-montserrat:hover {
  font-family: Montserrat, sans-serif;
}
.hover\:font-opensans:hover {
  font-family: Open Sans, sans-serif;
}
.hover\:font-oswald:hover {
  font-family: Oswald, sans-serif;
}
.hover\:font-pacifico:hover {
  font-family: Pacifico, cursive;
}
.hover\:font-poppins:hover {
  font-family: Poppins, sans-serif;
}
.hover\:font-raleway:hover {
  font-family: Raleway, sans-serif;
}
.hover\:font-roboto:hover {
  font-family: Roboto, sans-serif;
}
.hover\:text-lg:hover {
  font-size: 1.125rem;
}
.hover\:text-accent-foreground:hover {
  color: var(--accent-foreground);
}
.hover\:text-amber-100:hover {
  --tw-text-opacity: 1;
  color: rgb(254 243 199 / var(--tw-text-opacity, 1));
}
.hover\:text-amber-200:hover {
  --tw-text-opacity: 1;
  color: rgb(253 230 138 / var(--tw-text-opacity, 1));
}
.hover\:text-amber-300:hover {
  --tw-text-opacity: 1;
  color: rgb(252 211 77 / var(--tw-text-opacity, 1));
}
.hover\:text-amber-400:hover {
  --tw-text-opacity: 1;
  color: rgb(251 191 36 / var(--tw-text-opacity, 1));
}
.hover\:text-amber-50:hover {
  --tw-text-opacity: 1;
  color: rgb(255 251 235 / var(--tw-text-opacity, 1));
}
.hover\:text-amber-500:hover {
  --tw-text-opacity: 1;
  color: rgb(245 158 11 / var(--tw-text-opacity, 1));
}
.hover\:text-amber-600:hover {
  --tw-text-opacity: 1;
  color: rgb(217 119 6 / var(--tw-text-opacity, 1));
}
.hover\:text-amber-700:hover {
  --tw-text-opacity: 1;
  color: rgb(180 83 9 / var(--tw-text-opacity, 1));
}
.hover\:text-amber-800:hover {
  --tw-text-opacity: 1;
  color: rgb(146 64 14 / var(--tw-text-opacity, 1));
}
.hover\:text-amber-900:hover {
  --tw-text-opacity: 1;
  color: rgb(120 53 15 / var(--tw-text-opacity, 1));
}
.hover\:text-amber-950:hover {
  --tw-text-opacity: 1;
  color: rgb(69 26 3 / var(--tw-text-opacity, 1));
}
.hover\:text-blue-100:hover {
  --tw-text-opacity: 1;
  color: rgb(219 234 254 / var(--tw-text-opacity, 1));
}
.hover\:text-blue-200:hover {
  --tw-text-opacity: 1;
  color: rgb(191 219 254 / var(--tw-text-opacity, 1));
}
.hover\:text-blue-300:hover {
  --tw-text-opacity: 1;
  color: rgb(147 197 253 / var(--tw-text-opacity, 1));
}
.hover\:text-blue-400:hover {
  --tw-text-opacity: 1;
  color: rgb(96 165 250 / var(--tw-text-opacity, 1));
}
.hover\:text-blue-50:hover {
  --tw-text-opacity: 1;
  color: rgb(239 246 255 / var(--tw-text-opacity, 1));
}
.hover\:text-blue-500:hover {
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / var(--tw-text-opacity, 1));
}
.hover\:text-blue-600:hover {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.hover\:text-blue-700:hover {
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / var(--tw-text-opacity, 1));
}
.hover\:text-blue-800:hover {
  --tw-text-opacity: 1;
  color: rgb(30 64 175 / var(--tw-text-opacity, 1));
}
.hover\:text-blue-900:hover {
  --tw-text-opacity: 1;
  color: rgb(30 58 138 / var(--tw-text-opacity, 1));
}
.hover\:text-blue-950:hover {
  --tw-text-opacity: 1;
  color: rgb(23 37 84 / var(--tw-text-opacity, 1));
}
.hover\:text-cyan-100:hover {
  --tw-text-opacity: 1;
  color: rgb(207 250 254 / var(--tw-text-opacity, 1));
}
.hover\:text-cyan-200:hover {
  --tw-text-opacity: 1;
  color: rgb(165 243 252 / var(--tw-text-opacity, 1));
}
.hover\:text-cyan-300:hover {
  --tw-text-opacity: 1;
  color: rgb(103 232 249 / var(--tw-text-opacity, 1));
}
.hover\:text-cyan-400:hover {
  --tw-text-opacity: 1;
  color: rgb(34 211 238 / var(--tw-text-opacity, 1));
}
.hover\:text-cyan-50:hover {
  --tw-text-opacity: 1;
  color: rgb(236 254 255 / var(--tw-text-opacity, 1));
}
.hover\:text-cyan-500:hover {
  --tw-text-opacity: 1;
  color: rgb(6 182 212 / var(--tw-text-opacity, 1));
}
.hover\:text-cyan-600:hover {
  --tw-text-opacity: 1;
  color: rgb(8 145 178 / var(--tw-text-opacity, 1));
}
.hover\:text-cyan-700:hover {
  --tw-text-opacity: 1;
  color: rgb(14 116 144 / var(--tw-text-opacity, 1));
}
.hover\:text-cyan-800:hover {
  --tw-text-opacity: 1;
  color: rgb(21 94 117 / var(--tw-text-opacity, 1));
}
.hover\:text-cyan-900:hover {
  --tw-text-opacity: 1;
  color: rgb(22 78 99 / var(--tw-text-opacity, 1));
}
.hover\:text-cyan-950:hover {
  --tw-text-opacity: 1;
  color: rgb(8 51 68 / var(--tw-text-opacity, 1));
}
.hover\:text-emerald-100:hover {
  --tw-text-opacity: 1;
  color: rgb(209 250 229 / var(--tw-text-opacity, 1));
}
.hover\:text-emerald-200:hover {
  --tw-text-opacity: 1;
  color: rgb(167 243 208 / var(--tw-text-opacity, 1));
}
.hover\:text-emerald-300:hover {
  --tw-text-opacity: 1;
  color: rgb(110 231 183 / var(--tw-text-opacity, 1));
}
.hover\:text-emerald-400:hover {
  --tw-text-opacity: 1;
  color: rgb(52 211 153 / var(--tw-text-opacity, 1));
}
.hover\:text-emerald-50:hover {
  --tw-text-opacity: 1;
  color: rgb(236 253 245 / var(--tw-text-opacity, 1));
}
.hover\:text-emerald-500:hover {
  --tw-text-opacity: 1;
  color: rgb(16 185 129 / var(--tw-text-opacity, 1));
}
.hover\:text-emerald-600:hover {
  --tw-text-opacity: 1;
  color: rgb(5 150 105 / var(--tw-text-opacity, 1));
}
.hover\:text-emerald-700:hover {
  --tw-text-opacity: 1;
  color: rgb(4 120 87 / var(--tw-text-opacity, 1));
}
.hover\:text-emerald-800:hover {
  --tw-text-opacity: 1;
  color: rgb(6 95 70 / var(--tw-text-opacity, 1));
}
.hover\:text-emerald-900:hover {
  --tw-text-opacity: 1;
  color: rgb(6 78 59 / var(--tw-text-opacity, 1));
}
.hover\:text-emerald-950:hover {
  --tw-text-opacity: 1;
  color: rgb(2 44 34 / var(--tw-text-opacity, 1));
}
.hover\:text-foreground:hover {
  color: var(--foreground);
}
.hover\:text-fuchsia-100:hover {
  --tw-text-opacity: 1;
  color: rgb(250 232 255 / var(--tw-text-opacity, 1));
}
.hover\:text-fuchsia-200:hover {
  --tw-text-opacity: 1;
  color: rgb(245 208 254 / var(--tw-text-opacity, 1));
}
.hover\:text-fuchsia-300:hover {
  --tw-text-opacity: 1;
  color: rgb(240 171 252 / var(--tw-text-opacity, 1));
}
.hover\:text-fuchsia-400:hover {
  --tw-text-opacity: 1;
  color: rgb(232 121 249 / var(--tw-text-opacity, 1));
}
.hover\:text-fuchsia-50:hover {
  --tw-text-opacity: 1;
  color: rgb(253 244 255 / var(--tw-text-opacity, 1));
}
.hover\:text-fuchsia-500:hover {
  --tw-text-opacity: 1;
  color: rgb(217 70 239 / var(--tw-text-opacity, 1));
}
.hover\:text-fuchsia-600:hover {
  --tw-text-opacity: 1;
  color: rgb(192 38 211 / var(--tw-text-opacity, 1));
}
.hover\:text-fuchsia-700:hover {
  --tw-text-opacity: 1;
  color: rgb(162 28 175 / var(--tw-text-opacity, 1));
}
.hover\:text-fuchsia-800:hover {
  --tw-text-opacity: 1;
  color: rgb(134 25 143 / var(--tw-text-opacity, 1));
}
.hover\:text-fuchsia-900:hover {
  --tw-text-opacity: 1;
  color: rgb(112 26 117 / var(--tw-text-opacity, 1));
}
.hover\:text-fuchsia-950:hover {
  --tw-text-opacity: 1;
  color: rgb(74 4 78 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-100:hover {
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-200:hover {
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-300:hover {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-400:hover {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-50:hover {
  --tw-text-opacity: 1;
  color: rgb(249 250 251 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-500:hover {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-600:hover {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-700:hover {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-800:hover {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-900:hover {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-950:hover {
  --tw-text-opacity: 1;
  color: rgb(3 7 18 / var(--tw-text-opacity, 1));
}
.hover\:text-green-100:hover {
  --tw-text-opacity: 1;
  color: rgb(220 252 231 / var(--tw-text-opacity, 1));
}
.hover\:text-green-200:hover {
  --tw-text-opacity: 1;
  color: rgb(187 247 208 / var(--tw-text-opacity, 1));
}
.hover\:text-green-300:hover {
  --tw-text-opacity: 1;
  color: rgb(134 239 172 / var(--tw-text-opacity, 1));
}
.hover\:text-green-400:hover {
  --tw-text-opacity: 1;
  color: rgb(74 222 128 / var(--tw-text-opacity, 1));
}
.hover\:text-green-50:hover {
  --tw-text-opacity: 1;
  color: rgb(240 253 244 / var(--tw-text-opacity, 1));
}
.hover\:text-green-500:hover {
  --tw-text-opacity: 1;
  color: rgb(34 197 94 / var(--tw-text-opacity, 1));
}
.hover\:text-green-600:hover {
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}
.hover\:text-green-700:hover {
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / var(--tw-text-opacity, 1));
}
.hover\:text-green-800:hover {
  --tw-text-opacity: 1;
  color: rgb(22 101 52 / var(--tw-text-opacity, 1));
}
.hover\:text-green-900:hover {
  --tw-text-opacity: 1;
  color: rgb(20 83 45 / var(--tw-text-opacity, 1));
}
.hover\:text-green-950:hover {
  --tw-text-opacity: 1;
  color: rgb(5 46 22 / var(--tw-text-opacity, 1));
}
.hover\:text-indigo-100:hover {
  --tw-text-opacity: 1;
  color: rgb(224 231 255 / var(--tw-text-opacity, 1));
}
.hover\:text-indigo-200:hover {
  --tw-text-opacity: 1;
  color: rgb(199 210 254 / var(--tw-text-opacity, 1));
}
.hover\:text-indigo-300:hover {
  --tw-text-opacity: 1;
  color: rgb(165 180 252 / var(--tw-text-opacity, 1));
}
.hover\:text-indigo-400:hover {
  --tw-text-opacity: 1;
  color: rgb(129 140 248 / var(--tw-text-opacity, 1));
}
.hover\:text-indigo-50:hover {
  --tw-text-opacity: 1;
  color: rgb(238 242 255 / var(--tw-text-opacity, 1));
}
.hover\:text-indigo-500:hover {
  --tw-text-opacity: 1;
  color: rgb(99 102 241 / var(--tw-text-opacity, 1));
}
.hover\:text-indigo-600:hover {
  --tw-text-opacity: 1;
  color: rgb(79 70 229 / var(--tw-text-opacity, 1));
}
.hover\:text-indigo-700:hover {
  --tw-text-opacity: 1;
  color: rgb(67 56 202 / var(--tw-text-opacity, 1));
}
.hover\:text-indigo-800:hover {
  --tw-text-opacity: 1;
  color: rgb(55 48 163 / var(--tw-text-opacity, 1));
}
.hover\:text-indigo-900:hover {
  --tw-text-opacity: 1;
  color: rgb(49 46 129 / var(--tw-text-opacity, 1));
}
.hover\:text-indigo-950:hover {
  --tw-text-opacity: 1;
  color: rgb(30 27 75 / var(--tw-text-opacity, 1));
}
.hover\:text-lime-100:hover {
  --tw-text-opacity: 1;
  color: rgb(236 252 203 / var(--tw-text-opacity, 1));
}
.hover\:text-lime-200:hover {
  --tw-text-opacity: 1;
  color: rgb(217 249 157 / var(--tw-text-opacity, 1));
}
.hover\:text-lime-300:hover {
  --tw-text-opacity: 1;
  color: rgb(190 242 100 / var(--tw-text-opacity, 1));
}
.hover\:text-lime-400:hover {
  --tw-text-opacity: 1;
  color: rgb(163 230 53 / var(--tw-text-opacity, 1));
}
.hover\:text-lime-50:hover {
  --tw-text-opacity: 1;
  color: rgb(247 254 231 / var(--tw-text-opacity, 1));
}
.hover\:text-lime-500:hover {
  --tw-text-opacity: 1;
  color: rgb(132 204 22 / var(--tw-text-opacity, 1));
}
.hover\:text-lime-600:hover {
  --tw-text-opacity: 1;
  color: rgb(101 163 13 / var(--tw-text-opacity, 1));
}
.hover\:text-lime-700:hover {
  --tw-text-opacity: 1;
  color: rgb(77 124 15 / var(--tw-text-opacity, 1));
}
.hover\:text-lime-800:hover {
  --tw-text-opacity: 1;
  color: rgb(63 98 18 / var(--tw-text-opacity, 1));
}
.hover\:text-lime-900:hover {
  --tw-text-opacity: 1;
  color: rgb(54 83 20 / var(--tw-text-opacity, 1));
}
.hover\:text-lime-950:hover {
  --tw-text-opacity: 1;
  color: rgb(26 46 5 / var(--tw-text-opacity, 1));
}
.hover\:text-neutral-100:hover {
  --tw-text-opacity: 1;
  color: rgb(245 245 245 / var(--tw-text-opacity, 1));
}
.hover\:text-neutral-200:hover {
  --tw-text-opacity: 1;
  color: rgb(229 229 229 / var(--tw-text-opacity, 1));
}
.hover\:text-neutral-300:hover {
  --tw-text-opacity: 1;
  color: rgb(212 212 212 / var(--tw-text-opacity, 1));
}
.hover\:text-neutral-400:hover {
  --tw-text-opacity: 1;
  color: rgb(163 163 163 / var(--tw-text-opacity, 1));
}
.hover\:text-neutral-50:hover {
  --tw-text-opacity: 1;
  color: rgb(250 250 250 / var(--tw-text-opacity, 1));
}
.hover\:text-neutral-500:hover {
  --tw-text-opacity: 1;
  color: rgb(115 115 115 / var(--tw-text-opacity, 1));
}
.hover\:text-neutral-600:hover {
  --tw-text-opacity: 1;
  color: rgb(82 82 82 / var(--tw-text-opacity, 1));
}
.hover\:text-neutral-700:hover {
  --tw-text-opacity: 1;
  color: rgb(64 64 64 / var(--tw-text-opacity, 1));
}
.hover\:text-neutral-800:hover {
  --tw-text-opacity: 1;
  color: rgb(38 38 38 / var(--tw-text-opacity, 1));
}
.hover\:text-neutral-900:hover {
  --tw-text-opacity: 1;
  color: rgb(23 23 23 / var(--tw-text-opacity, 1));
}
.hover\:text-neutral-950:hover {
  --tw-text-opacity: 1;
  color: rgb(10 10 10 / var(--tw-text-opacity, 1));
}
.hover\:text-orange-100:hover {
  --tw-text-opacity: 1;
  color: rgb(255 237 213 / var(--tw-text-opacity, 1));
}
.hover\:text-orange-200:hover {
  --tw-text-opacity: 1;
  color: rgb(254 215 170 / var(--tw-text-opacity, 1));
}
.hover\:text-orange-300:hover {
  --tw-text-opacity: 1;
  color: rgb(253 186 116 / var(--tw-text-opacity, 1));
}
.hover\:text-orange-400:hover {
  --tw-text-opacity: 1;
  color: rgb(251 146 60 / var(--tw-text-opacity, 1));
}
.hover\:text-orange-50:hover {
  --tw-text-opacity: 1;
  color: rgb(255 247 237 / var(--tw-text-opacity, 1));
}
.hover\:text-orange-500:hover {
  --tw-text-opacity: 1;
  color: rgb(249 115 22 / var(--tw-text-opacity, 1));
}
.hover\:text-orange-600:hover {
  --tw-text-opacity: 1;
  color: rgb(234 88 12 / var(--tw-text-opacity, 1));
}
.hover\:text-orange-700:hover {
  --tw-text-opacity: 1;
  color: rgb(194 65 12 / var(--tw-text-opacity, 1));
}
.hover\:text-orange-800:hover {
  --tw-text-opacity: 1;
  color: rgb(154 52 18 / var(--tw-text-opacity, 1));
}
.hover\:text-orange-900:hover {
  --tw-text-opacity: 1;
  color: rgb(124 45 18 / var(--tw-text-opacity, 1));
}
.hover\:text-orange-950:hover {
  --tw-text-opacity: 1;
  color: rgb(67 20 7 / var(--tw-text-opacity, 1));
}
.hover\:text-pink-100:hover {
  --tw-text-opacity: 1;
  color: rgb(252 231 243 / var(--tw-text-opacity, 1));
}
.hover\:text-pink-200:hover {
  --tw-text-opacity: 1;
  color: rgb(251 207 232 / var(--tw-text-opacity, 1));
}
.hover\:text-pink-300:hover {
  --tw-text-opacity: 1;
  color: rgb(249 168 212 / var(--tw-text-opacity, 1));
}
.hover\:text-pink-400:hover {
  --tw-text-opacity: 1;
  color: rgb(244 114 182 / var(--tw-text-opacity, 1));
}
.hover\:text-pink-50:hover {
  --tw-text-opacity: 1;
  color: rgb(253 242 248 / var(--tw-text-opacity, 1));
}
.hover\:text-pink-500:hover {
  --tw-text-opacity: 1;
  color: rgb(236 72 153 / var(--tw-text-opacity, 1));
}
.hover\:text-pink-600:hover {
  --tw-text-opacity: 1;
  color: rgb(219 39 119 / var(--tw-text-opacity, 1));
}
.hover\:text-pink-700:hover {
  --tw-text-opacity: 1;
  color: rgb(190 24 93 / var(--tw-text-opacity, 1));
}
.hover\:text-pink-800:hover {
  --tw-text-opacity: 1;
  color: rgb(157 23 77 / var(--tw-text-opacity, 1));
}
.hover\:text-pink-900:hover {
  --tw-text-opacity: 1;
  color: rgb(131 24 67 / var(--tw-text-opacity, 1));
}
.hover\:text-pink-950:hover {
  --tw-text-opacity: 1;
  color: rgb(80 7 36 / var(--tw-text-opacity, 1));
}
.hover\:text-primary:hover {
  color: var(--primary);
}
.hover\:text-primary-foreground:hover {
  color: var(--primary-foreground);
}
.hover\:text-purple-100:hover {
  --tw-text-opacity: 1;
  color: rgb(243 232 255 / var(--tw-text-opacity, 1));
}
.hover\:text-purple-200:hover {
  --tw-text-opacity: 1;
  color: rgb(233 213 255 / var(--tw-text-opacity, 1));
}
.hover\:text-purple-300:hover {
  --tw-text-opacity: 1;
  color: rgb(216 180 254 / var(--tw-text-opacity, 1));
}
.hover\:text-purple-400:hover {
  --tw-text-opacity: 1;
  color: rgb(192 132 252 / var(--tw-text-opacity, 1));
}
.hover\:text-purple-50:hover {
  --tw-text-opacity: 1;
  color: rgb(250 245 255 / var(--tw-text-opacity, 1));
}
.hover\:text-purple-500:hover {
  --tw-text-opacity: 1;
  color: rgb(168 85 247 / var(--tw-text-opacity, 1));
}
.hover\:text-purple-600:hover {
  --tw-text-opacity: 1;
  color: rgb(147 51 234 / var(--tw-text-opacity, 1));
}
.hover\:text-purple-700:hover {
  --tw-text-opacity: 1;
  color: rgb(126 34 206 / var(--tw-text-opacity, 1));
}
.hover\:text-purple-800:hover {
  --tw-text-opacity: 1;
  color: rgb(107 33 168 / var(--tw-text-opacity, 1));
}
.hover\:text-purple-900:hover {
  --tw-text-opacity: 1;
  color: rgb(88 28 135 / var(--tw-text-opacity, 1));
}
.hover\:text-purple-950:hover {
  --tw-text-opacity: 1;
  color: rgb(59 7 100 / var(--tw-text-opacity, 1));
}
.hover\:text-red-100:hover {
  --tw-text-opacity: 1;
  color: rgb(254 226 226 / var(--tw-text-opacity, 1));
}
.hover\:text-red-200:hover {
  --tw-text-opacity: 1;
  color: rgb(254 202 202 / var(--tw-text-opacity, 1));
}
.hover\:text-red-300:hover {
  --tw-text-opacity: 1;
  color: rgb(252 165 165 / var(--tw-text-opacity, 1));
}
.hover\:text-red-400:hover {
  --tw-text-opacity: 1;
  color: rgb(248 113 113 / var(--tw-text-opacity, 1));
}
.hover\:text-red-50:hover {
  --tw-text-opacity: 1;
  color: rgb(254 242 242 / var(--tw-text-opacity, 1));
}
.hover\:text-red-500:hover {
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.hover\:text-red-600:hover {
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.hover\:text-red-700:hover {
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity, 1));
}
.hover\:text-red-800:hover {
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / var(--tw-text-opacity, 1));
}
.hover\:text-red-900:hover {
  --tw-text-opacity: 1;
  color: rgb(127 29 29 / var(--tw-text-opacity, 1));
}
.hover\:text-red-950:hover {
  --tw-text-opacity: 1;
  color: rgb(69 10 10 / var(--tw-text-opacity, 1));
}
.hover\:text-rose-100:hover {
  --tw-text-opacity: 1;
  color: rgb(255 228 230 / var(--tw-text-opacity, 1));
}
.hover\:text-rose-200:hover {
  --tw-text-opacity: 1;
  color: rgb(254 205 211 / var(--tw-text-opacity, 1));
}
.hover\:text-rose-300:hover {
  --tw-text-opacity: 1;
  color: rgb(253 164 175 / var(--tw-text-opacity, 1));
}
.hover\:text-rose-400:hover {
  --tw-text-opacity: 1;
  color: rgb(251 113 133 / var(--tw-text-opacity, 1));
}
.hover\:text-rose-50:hover {
  --tw-text-opacity: 1;
  color: rgb(255 241 242 / var(--tw-text-opacity, 1));
}
.hover\:text-rose-500:hover {
  --tw-text-opacity: 1;
  color: rgb(244 63 94 / var(--tw-text-opacity, 1));
}
.hover\:text-rose-600:hover {
  --tw-text-opacity: 1;
  color: rgb(225 29 72 / var(--tw-text-opacity, 1));
}
.hover\:text-rose-700:hover {
  --tw-text-opacity: 1;
  color: rgb(190 18 60 / var(--tw-text-opacity, 1));
}
.hover\:text-rose-800:hover {
  --tw-text-opacity: 1;
  color: rgb(159 18 57 / var(--tw-text-opacity, 1));
}
.hover\:text-rose-900:hover {
  --tw-text-opacity: 1;
  color: rgb(136 19 55 / var(--tw-text-opacity, 1));
}
.hover\:text-rose-950:hover {
  --tw-text-opacity: 1;
  color: rgb(76 5 25 / var(--tw-text-opacity, 1));
}
.hover\:text-sky-100:hover {
  --tw-text-opacity: 1;
  color: rgb(224 242 254 / var(--tw-text-opacity, 1));
}
.hover\:text-sky-200:hover {
  --tw-text-opacity: 1;
  color: rgb(186 230 253 / var(--tw-text-opacity, 1));
}
.hover\:text-sky-300:hover {
  --tw-text-opacity: 1;
  color: rgb(125 211 252 / var(--tw-text-opacity, 1));
}
.hover\:text-sky-400:hover {
  --tw-text-opacity: 1;
  color: rgb(56 189 248 / var(--tw-text-opacity, 1));
}
.hover\:text-sky-50:hover {
  --tw-text-opacity: 1;
  color: rgb(240 249 255 / var(--tw-text-opacity, 1));
}
.hover\:text-sky-500:hover {
  --tw-text-opacity: 1;
  color: rgb(14 165 233 / var(--tw-text-opacity, 1));
}
.hover\:text-sky-600:hover {
  --tw-text-opacity: 1;
  color: rgb(2 132 199 / var(--tw-text-opacity, 1));
}
.hover\:text-sky-700:hover {
  --tw-text-opacity: 1;
  color: rgb(3 105 161 / var(--tw-text-opacity, 1));
}
.hover\:text-sky-800:hover {
  --tw-text-opacity: 1;
  color: rgb(7 89 133 / var(--tw-text-opacity, 1));
}
.hover\:text-sky-900:hover {
  --tw-text-opacity: 1;
  color: rgb(12 74 110 / var(--tw-text-opacity, 1));
}
.hover\:text-sky-950:hover {
  --tw-text-opacity: 1;
  color: rgb(8 47 73 / var(--tw-text-opacity, 1));
}
.hover\:text-slate-100:hover {
  --tw-text-opacity: 1;
  color: rgb(241 245 249 / var(--tw-text-opacity, 1));
}
.hover\:text-slate-200:hover {
  --tw-text-opacity: 1;
  color: rgb(226 232 240 / var(--tw-text-opacity, 1));
}
.hover\:text-slate-300:hover {
  --tw-text-opacity: 1;
  color: rgb(203 213 225 / var(--tw-text-opacity, 1));
}
.hover\:text-slate-400:hover {
  --tw-text-opacity: 1;
  color: rgb(148 163 184 / var(--tw-text-opacity, 1));
}
.hover\:text-slate-50:hover {
  --tw-text-opacity: 1;
  color: rgb(248 250 252 / var(--tw-text-opacity, 1));
}
.hover\:text-slate-500:hover {
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}
.hover\:text-slate-600:hover {
  --tw-text-opacity: 1;
  color: rgb(71 85 105 / var(--tw-text-opacity, 1));
}
.hover\:text-slate-700:hover {
  --tw-text-opacity: 1;
  color: rgb(51 65 85 / var(--tw-text-opacity, 1));
}
.hover\:text-slate-800:hover {
  --tw-text-opacity: 1;
  color: rgb(30 41 59 / var(--tw-text-opacity, 1));
}
.hover\:text-slate-900:hover {
  --tw-text-opacity: 1;
  color: rgb(15 23 42 / var(--tw-text-opacity, 1));
}
.hover\:text-slate-950:hover {
  --tw-text-opacity: 1;
  color: rgb(2 6 23 / var(--tw-text-opacity, 1));
}
.hover\:text-stone-100:hover {
  --tw-text-opacity: 1;
  color: rgb(245 245 244 / var(--tw-text-opacity, 1));
}
.hover\:text-stone-200:hover {
  --tw-text-opacity: 1;
  color: rgb(231 229 228 / var(--tw-text-opacity, 1));
}
.hover\:text-stone-300:hover {
  --tw-text-opacity: 1;
  color: rgb(214 211 209 / var(--tw-text-opacity, 1));
}
.hover\:text-stone-400:hover {
  --tw-text-opacity: 1;
  color: rgb(168 162 158 / var(--tw-text-opacity, 1));
}
.hover\:text-stone-50:hover {
  --tw-text-opacity: 1;
  color: rgb(250 250 249 / var(--tw-text-opacity, 1));
}
.hover\:text-stone-500:hover {
  --tw-text-opacity: 1;
  color: rgb(120 113 108 / var(--tw-text-opacity, 1));
}
.hover\:text-stone-600:hover {
  --tw-text-opacity: 1;
  color: rgb(87 83 78 / var(--tw-text-opacity, 1));
}
.hover\:text-stone-700:hover {
  --tw-text-opacity: 1;
  color: rgb(68 64 60 / var(--tw-text-opacity, 1));
}
.hover\:text-stone-800:hover {
  --tw-text-opacity: 1;
  color: rgb(41 37 36 / var(--tw-text-opacity, 1));
}
.hover\:text-stone-900:hover {
  --tw-text-opacity: 1;
  color: rgb(28 25 23 / var(--tw-text-opacity, 1));
}
.hover\:text-stone-950:hover {
  --tw-text-opacity: 1;
  color: rgb(12 10 9 / var(--tw-text-opacity, 1));
}
.hover\:text-teal-100:hover {
  --tw-text-opacity: 1;
  color: rgb(204 251 241 / var(--tw-text-opacity, 1));
}
.hover\:text-teal-200:hover {
  --tw-text-opacity: 1;
  color: rgb(153 246 228 / var(--tw-text-opacity, 1));
}
.hover\:text-teal-300:hover {
  --tw-text-opacity: 1;
  color: rgb(94 234 212 / var(--tw-text-opacity, 1));
}
.hover\:text-teal-400:hover {
  --tw-text-opacity: 1;
  color: rgb(45 212 191 / var(--tw-text-opacity, 1));
}
.hover\:text-teal-50:hover {
  --tw-text-opacity: 1;
  color: rgb(240 253 250 / var(--tw-text-opacity, 1));
}
.hover\:text-teal-500:hover {
  --tw-text-opacity: 1;
  color: rgb(20 184 166 / var(--tw-text-opacity, 1));
}
.hover\:text-teal-600:hover {
  --tw-text-opacity: 1;
  color: rgb(13 148 136 / var(--tw-text-opacity, 1));
}
.hover\:text-teal-700:hover {
  --tw-text-opacity: 1;
  color: rgb(15 118 110 / var(--tw-text-opacity, 1));
}
.hover\:text-teal-800:hover {
  --tw-text-opacity: 1;
  color: rgb(17 94 89 / var(--tw-text-opacity, 1));
}
.hover\:text-teal-900:hover {
  --tw-text-opacity: 1;
  color: rgb(19 78 74 / var(--tw-text-opacity, 1));
}
.hover\:text-teal-950:hover {
  --tw-text-opacity: 1;
  color: rgb(4 47 46 / var(--tw-text-opacity, 1));
}
.hover\:text-violet-100:hover {
  --tw-text-opacity: 1;
  color: rgb(237 233 254 / var(--tw-text-opacity, 1));
}
.hover\:text-violet-200:hover {
  --tw-text-opacity: 1;
  color: rgb(221 214 254 / var(--tw-text-opacity, 1));
}
.hover\:text-violet-300:hover {
  --tw-text-opacity: 1;
  color: rgb(196 181 253 / var(--tw-text-opacity, 1));
}
.hover\:text-violet-400:hover {
  --tw-text-opacity: 1;
  color: rgb(167 139 250 / var(--tw-text-opacity, 1));
}
.hover\:text-violet-50:hover {
  --tw-text-opacity: 1;
  color: rgb(245 243 255 / var(--tw-text-opacity, 1));
}
.hover\:text-violet-500:hover {
  --tw-text-opacity: 1;
  color: rgb(139 92 246 / var(--tw-text-opacity, 1));
}
.hover\:text-violet-600:hover {
  --tw-text-opacity: 1;
  color: rgb(124 58 237 / var(--tw-text-opacity, 1));
}
.hover\:text-violet-700:hover {
  --tw-text-opacity: 1;
  color: rgb(109 40 217 / var(--tw-text-opacity, 1));
}
.hover\:text-violet-800:hover {
  --tw-text-opacity: 1;
  color: rgb(91 33 182 / var(--tw-text-opacity, 1));
}
.hover\:text-violet-900:hover {
  --tw-text-opacity: 1;
  color: rgb(76 29 149 / var(--tw-text-opacity, 1));
}
.hover\:text-violet-950:hover {
  --tw-text-opacity: 1;
  color: rgb(46 16 101 / var(--tw-text-opacity, 1));
}
.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.hover\:text-yellow-100:hover {
  --tw-text-opacity: 1;
  color: rgb(254 249 195 / var(--tw-text-opacity, 1));
}
.hover\:text-yellow-200:hover {
  --tw-text-opacity: 1;
  color: rgb(254 240 138 / var(--tw-text-opacity, 1));
}
.hover\:text-yellow-300:hover {
  --tw-text-opacity: 1;
  color: rgb(253 224 71 / var(--tw-text-opacity, 1));
}
.hover\:text-yellow-400:hover {
  --tw-text-opacity: 1;
  color: rgb(250 204 21 / var(--tw-text-opacity, 1));
}
.hover\:text-yellow-50:hover {
  --tw-text-opacity: 1;
  color: rgb(254 252 232 / var(--tw-text-opacity, 1));
}
.hover\:text-yellow-500:hover {
  --tw-text-opacity: 1;
  color: rgb(234 179 8 / var(--tw-text-opacity, 1));
}
.hover\:text-yellow-600:hover {
  --tw-text-opacity: 1;
  color: rgb(202 138 4 / var(--tw-text-opacity, 1));
}
.hover\:text-yellow-700:hover {
  --tw-text-opacity: 1;
  color: rgb(161 98 7 / var(--tw-text-opacity, 1));
}
.hover\:text-yellow-800:hover {
  --tw-text-opacity: 1;
  color: rgb(133 77 14 / var(--tw-text-opacity, 1));
}
.hover\:text-yellow-900:hover {
  --tw-text-opacity: 1;
  color: rgb(113 63 18 / var(--tw-text-opacity, 1));
}
.hover\:text-yellow-950:hover {
  --tw-text-opacity: 1;
  color: rgb(66 32 6 / var(--tw-text-opacity, 1));
}
.hover\:text-zinc-100:hover {
  --tw-text-opacity: 1;
  color: rgb(244 244 245 / var(--tw-text-opacity, 1));
}
.hover\:text-zinc-200:hover {
  --tw-text-opacity: 1;
  color: rgb(228 228 231 / var(--tw-text-opacity, 1));
}
.hover\:text-zinc-300:hover {
  --tw-text-opacity: 1;
  color: rgb(212 212 216 / var(--tw-text-opacity, 1));
}
.hover\:text-zinc-400:hover {
  --tw-text-opacity: 1;
  color: rgb(161 161 170 / var(--tw-text-opacity, 1));
}
.hover\:text-zinc-50:hover {
  --tw-text-opacity: 1;
  color: rgb(250 250 250 / var(--tw-text-opacity, 1));
}
.hover\:text-zinc-500:hover {
  --tw-text-opacity: 1;
  color: rgb(113 113 122 / var(--tw-text-opacity, 1));
}
.hover\:text-zinc-600:hover {
  --tw-text-opacity: 1;
  color: rgb(82 82 91 / var(--tw-text-opacity, 1));
}
.hover\:text-zinc-700:hover {
  --tw-text-opacity: 1;
  color: rgb(63 63 70 / var(--tw-text-opacity, 1));
}
.hover\:text-zinc-800:hover {
  --tw-text-opacity: 1;
  color: rgb(39 39 42 / var(--tw-text-opacity, 1));
}
.hover\:text-zinc-900:hover {
  --tw-text-opacity: 1;
  color: rgb(24 24 27 / var(--tw-text-opacity, 1));
}
.hover\:text-zinc-950:hover {
  --tw-text-opacity: 1;
  color: rgb(9 9 11 / var(--tw-text-opacity, 1));
}
.hover\:underline:hover {
  text-decoration-line: underline;
}
.hover\:shadow-lg:hover {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow-md:hover {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow-sm:hover {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow-xl:hover {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow-amber-100:hover {
  --tw-shadow-color: #fef3c7;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-100\/10:hover {
  --tw-shadow-color: rgb(254 243 199 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-100\/20:hover {
  --tw-shadow-color: rgb(254 243 199 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-100\/30:hover {
  --tw-shadow-color: rgb(254 243 199 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-100\/40:hover {
  --tw-shadow-color: rgb(254 243 199 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-100\/5:hover {
  --tw-shadow-color: rgb(254 243 199 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-100\/50:hover {
  --tw-shadow-color: rgb(254 243 199 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-100\/60:hover {
  --tw-shadow-color: rgb(254 243 199 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-100\/70:hover {
  --tw-shadow-color: rgb(254 243 199 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-100\/80:hover {
  --tw-shadow-color: rgb(254 243 199 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-100\/90:hover {
  --tw-shadow-color: rgb(254 243 199 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-200:hover {
  --tw-shadow-color: #fde68a;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-200\/10:hover {
  --tw-shadow-color: rgb(253 230 138 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-200\/20:hover {
  --tw-shadow-color: rgb(253 230 138 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-200\/30:hover {
  --tw-shadow-color: rgb(253 230 138 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-200\/40:hover {
  --tw-shadow-color: rgb(253 230 138 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-200\/5:hover {
  --tw-shadow-color: rgb(253 230 138 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-200\/50:hover {
  --tw-shadow-color: rgb(253 230 138 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-200\/60:hover {
  --tw-shadow-color: rgb(253 230 138 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-200\/70:hover {
  --tw-shadow-color: rgb(253 230 138 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-200\/80:hover {
  --tw-shadow-color: rgb(253 230 138 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-200\/90:hover {
  --tw-shadow-color: rgb(253 230 138 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-300:hover {
  --tw-shadow-color: #fcd34d;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-300\/10:hover {
  --tw-shadow-color: rgb(252 211 77 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-300\/20:hover {
  --tw-shadow-color: rgb(252 211 77 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-300\/30:hover {
  --tw-shadow-color: rgb(252 211 77 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-300\/40:hover {
  --tw-shadow-color: rgb(252 211 77 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-300\/5:hover {
  --tw-shadow-color: rgb(252 211 77 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-300\/50:hover {
  --tw-shadow-color: rgb(252 211 77 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-300\/60:hover {
  --tw-shadow-color: rgb(252 211 77 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-300\/70:hover {
  --tw-shadow-color: rgb(252 211 77 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-300\/80:hover {
  --tw-shadow-color: rgb(252 211 77 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-300\/90:hover {
  --tw-shadow-color: rgb(252 211 77 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-400:hover {
  --tw-shadow-color: #fbbf24;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-400\/10:hover {
  --tw-shadow-color: rgb(251 191 36 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-400\/20:hover {
  --tw-shadow-color: rgb(251 191 36 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-400\/30:hover {
  --tw-shadow-color: rgb(251 191 36 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-400\/40:hover {
  --tw-shadow-color: rgb(251 191 36 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-400\/5:hover {
  --tw-shadow-color: rgb(251 191 36 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-400\/50:hover {
  --tw-shadow-color: rgb(251 191 36 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-400\/60:hover {
  --tw-shadow-color: rgb(251 191 36 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-400\/70:hover {
  --tw-shadow-color: rgb(251 191 36 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-400\/80:hover {
  --tw-shadow-color: rgb(251 191 36 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-400\/90:hover {
  --tw-shadow-color: rgb(251 191 36 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-50:hover {
  --tw-shadow-color: #fffbeb;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-50\/10:hover {
  --tw-shadow-color: rgb(255 251 235 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-50\/20:hover {
  --tw-shadow-color: rgb(255 251 235 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-50\/30:hover {
  --tw-shadow-color: rgb(255 251 235 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-50\/40:hover {
  --tw-shadow-color: rgb(255 251 235 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-50\/5:hover {
  --tw-shadow-color: rgb(255 251 235 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-50\/50:hover {
  --tw-shadow-color: rgb(255 251 235 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-50\/60:hover {
  --tw-shadow-color: rgb(255 251 235 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-50\/70:hover {
  --tw-shadow-color: rgb(255 251 235 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-50\/80:hover {
  --tw-shadow-color: rgb(255 251 235 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-50\/90:hover {
  --tw-shadow-color: rgb(255 251 235 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-500:hover {
  --tw-shadow-color: #f59e0b;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-500\/10:hover {
  --tw-shadow-color: rgb(245 158 11 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-500\/20:hover {
  --tw-shadow-color: rgb(245 158 11 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-500\/30:hover {
  --tw-shadow-color: rgb(245 158 11 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-500\/40:hover {
  --tw-shadow-color: rgb(245 158 11 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-500\/5:hover {
  --tw-shadow-color: rgb(245 158 11 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-500\/50:hover {
  --tw-shadow-color: rgb(245 158 11 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-500\/60:hover {
  --tw-shadow-color: rgb(245 158 11 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-500\/70:hover {
  --tw-shadow-color: rgb(245 158 11 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-500\/80:hover {
  --tw-shadow-color: rgb(245 158 11 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-500\/90:hover {
  --tw-shadow-color: rgb(245 158 11 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-600:hover {
  --tw-shadow-color: #d97706;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-600\/10:hover {
  --tw-shadow-color: rgb(217 119 6 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-600\/20:hover {
  --tw-shadow-color: rgb(217 119 6 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-600\/30:hover {
  --tw-shadow-color: rgb(217 119 6 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-600\/40:hover {
  --tw-shadow-color: rgb(217 119 6 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-600\/5:hover {
  --tw-shadow-color: rgb(217 119 6 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-600\/50:hover {
  --tw-shadow-color: rgb(217 119 6 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-600\/60:hover {
  --tw-shadow-color: rgb(217 119 6 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-600\/70:hover {
  --tw-shadow-color: rgb(217 119 6 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-600\/80:hover {
  --tw-shadow-color: rgb(217 119 6 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-600\/90:hover {
  --tw-shadow-color: rgb(217 119 6 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-700:hover {
  --tw-shadow-color: #b45309;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-700\/10:hover {
  --tw-shadow-color: rgb(180 83 9 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-700\/20:hover {
  --tw-shadow-color: rgb(180 83 9 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-700\/30:hover {
  --tw-shadow-color: rgb(180 83 9 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-700\/40:hover {
  --tw-shadow-color: rgb(180 83 9 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-700\/5:hover {
  --tw-shadow-color: rgb(180 83 9 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-700\/50:hover {
  --tw-shadow-color: rgb(180 83 9 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-700\/60:hover {
  --tw-shadow-color: rgb(180 83 9 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-700\/70:hover {
  --tw-shadow-color: rgb(180 83 9 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-700\/80:hover {
  --tw-shadow-color: rgb(180 83 9 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-700\/90:hover {
  --tw-shadow-color: rgb(180 83 9 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-800:hover {
  --tw-shadow-color: #92400e;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-800\/10:hover {
  --tw-shadow-color: rgb(146 64 14 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-800\/20:hover {
  --tw-shadow-color: rgb(146 64 14 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-800\/30:hover {
  --tw-shadow-color: rgb(146 64 14 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-800\/40:hover {
  --tw-shadow-color: rgb(146 64 14 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-800\/5:hover {
  --tw-shadow-color: rgb(146 64 14 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-800\/50:hover {
  --tw-shadow-color: rgb(146 64 14 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-800\/60:hover {
  --tw-shadow-color: rgb(146 64 14 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-800\/70:hover {
  --tw-shadow-color: rgb(146 64 14 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-800\/80:hover {
  --tw-shadow-color: rgb(146 64 14 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-800\/90:hover {
  --tw-shadow-color: rgb(146 64 14 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-900:hover {
  --tw-shadow-color: #78350f;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-900\/10:hover {
  --tw-shadow-color: rgb(120 53 15 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-900\/20:hover {
  --tw-shadow-color: rgb(120 53 15 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-900\/30:hover {
  --tw-shadow-color: rgb(120 53 15 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-900\/40:hover {
  --tw-shadow-color: rgb(120 53 15 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-900\/5:hover {
  --tw-shadow-color: rgb(120 53 15 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-900\/50:hover {
  --tw-shadow-color: rgb(120 53 15 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-900\/60:hover {
  --tw-shadow-color: rgb(120 53 15 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-900\/70:hover {
  --tw-shadow-color: rgb(120 53 15 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-900\/80:hover {
  --tw-shadow-color: rgb(120 53 15 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-900\/90:hover {
  --tw-shadow-color: rgb(120 53 15 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-950:hover {
  --tw-shadow-color: #451a03;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-950\/10:hover {
  --tw-shadow-color: rgb(69 26 3 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-950\/20:hover {
  --tw-shadow-color: rgb(69 26 3 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-950\/30:hover {
  --tw-shadow-color: rgb(69 26 3 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-950\/40:hover {
  --tw-shadow-color: rgb(69 26 3 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-950\/5:hover {
  --tw-shadow-color: rgb(69 26 3 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-950\/50:hover {
  --tw-shadow-color: rgb(69 26 3 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-950\/60:hover {
  --tw-shadow-color: rgb(69 26 3 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-950\/70:hover {
  --tw-shadow-color: rgb(69 26 3 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-950\/80:hover {
  --tw-shadow-color: rgb(69 26 3 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-amber-950\/90:hover {
  --tw-shadow-color: rgb(69 26 3 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-100:hover {
  --tw-shadow-color: #dbeafe;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-100\/10:hover {
  --tw-shadow-color: rgb(219 234 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-100\/20:hover {
  --tw-shadow-color: rgb(219 234 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-100\/30:hover {
  --tw-shadow-color: rgb(219 234 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-100\/40:hover {
  --tw-shadow-color: rgb(219 234 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-100\/5:hover {
  --tw-shadow-color: rgb(219 234 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-100\/50:hover {
  --tw-shadow-color: rgb(219 234 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-100\/60:hover {
  --tw-shadow-color: rgb(219 234 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-100\/70:hover {
  --tw-shadow-color: rgb(219 234 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-100\/80:hover {
  --tw-shadow-color: rgb(219 234 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-100\/90:hover {
  --tw-shadow-color: rgb(219 234 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-200:hover {
  --tw-shadow-color: #bfdbfe;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-200\/10:hover {
  --tw-shadow-color: rgb(191 219 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-200\/20:hover {
  --tw-shadow-color: rgb(191 219 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-200\/30:hover {
  --tw-shadow-color: rgb(191 219 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-200\/40:hover {
  --tw-shadow-color: rgb(191 219 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-200\/5:hover {
  --tw-shadow-color: rgb(191 219 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-200\/50:hover {
  --tw-shadow-color: rgb(191 219 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-200\/60:hover {
  --tw-shadow-color: rgb(191 219 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-200\/70:hover {
  --tw-shadow-color: rgb(191 219 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-200\/80:hover {
  --tw-shadow-color: rgb(191 219 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-200\/90:hover {
  --tw-shadow-color: rgb(191 219 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-300:hover {
  --tw-shadow-color: #93c5fd;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-300\/10:hover {
  --tw-shadow-color: rgb(147 197 253 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-300\/20:hover {
  --tw-shadow-color: rgb(147 197 253 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-300\/30:hover {
  --tw-shadow-color: rgb(147 197 253 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-300\/40:hover {
  --tw-shadow-color: rgb(147 197 253 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-300\/5:hover {
  --tw-shadow-color: rgb(147 197 253 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-300\/50:hover {
  --tw-shadow-color: rgb(147 197 253 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-300\/60:hover {
  --tw-shadow-color: rgb(147 197 253 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-300\/70:hover {
  --tw-shadow-color: rgb(147 197 253 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-300\/80:hover {
  --tw-shadow-color: rgb(147 197 253 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-300\/90:hover {
  --tw-shadow-color: rgb(147 197 253 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-400:hover {
  --tw-shadow-color: #60a5fa;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-400\/10:hover {
  --tw-shadow-color: rgb(96 165 250 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-400\/20:hover {
  --tw-shadow-color: rgb(96 165 250 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-400\/30:hover {
  --tw-shadow-color: rgb(96 165 250 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-400\/40:hover {
  --tw-shadow-color: rgb(96 165 250 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-400\/5:hover {
  --tw-shadow-color: rgb(96 165 250 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-400\/50:hover {
  --tw-shadow-color: rgb(96 165 250 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-400\/60:hover {
  --tw-shadow-color: rgb(96 165 250 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-400\/70:hover {
  --tw-shadow-color: rgb(96 165 250 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-400\/80:hover {
  --tw-shadow-color: rgb(96 165 250 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-400\/90:hover {
  --tw-shadow-color: rgb(96 165 250 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-50:hover {
  --tw-shadow-color: #eff6ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-50\/10:hover {
  --tw-shadow-color: rgb(239 246 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-50\/20:hover {
  --tw-shadow-color: rgb(239 246 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-50\/30:hover {
  --tw-shadow-color: rgb(239 246 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-50\/40:hover {
  --tw-shadow-color: rgb(239 246 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-50\/5:hover {
  --tw-shadow-color: rgb(239 246 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-50\/50:hover {
  --tw-shadow-color: rgb(239 246 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-50\/60:hover {
  --tw-shadow-color: rgb(239 246 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-50\/70:hover {
  --tw-shadow-color: rgb(239 246 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-50\/80:hover {
  --tw-shadow-color: rgb(239 246 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-50\/90:hover {
  --tw-shadow-color: rgb(239 246 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-500:hover {
  --tw-shadow-color: #3b82f6;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-500\/10:hover {
  --tw-shadow-color: rgb(59 130 246 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-500\/20:hover {
  --tw-shadow-color: rgb(59 130 246 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-500\/30:hover {
  --tw-shadow-color: rgb(59 130 246 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-500\/40:hover {
  --tw-shadow-color: rgb(59 130 246 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-500\/5:hover {
  --tw-shadow-color: rgb(59 130 246 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-500\/50:hover {
  --tw-shadow-color: rgb(59 130 246 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-500\/60:hover {
  --tw-shadow-color: rgb(59 130 246 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-500\/70:hover {
  --tw-shadow-color: rgb(59 130 246 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-500\/80:hover {
  --tw-shadow-color: rgb(59 130 246 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-500\/90:hover {
  --tw-shadow-color: rgb(59 130 246 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-600:hover {
  --tw-shadow-color: #2563eb;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-600\/10:hover {
  --tw-shadow-color: rgb(37 99 235 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-600\/20:hover {
  --tw-shadow-color: rgb(37 99 235 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-600\/30:hover {
  --tw-shadow-color: rgb(37 99 235 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-600\/40:hover {
  --tw-shadow-color: rgb(37 99 235 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-600\/5:hover {
  --tw-shadow-color: rgb(37 99 235 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-600\/50:hover {
  --tw-shadow-color: rgb(37 99 235 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-600\/60:hover {
  --tw-shadow-color: rgb(37 99 235 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-600\/70:hover {
  --tw-shadow-color: rgb(37 99 235 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-600\/80:hover {
  --tw-shadow-color: rgb(37 99 235 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-600\/90:hover {
  --tw-shadow-color: rgb(37 99 235 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-700:hover {
  --tw-shadow-color: #1d4ed8;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-700\/10:hover {
  --tw-shadow-color: rgb(29 78 216 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-700\/20:hover {
  --tw-shadow-color: rgb(29 78 216 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-700\/30:hover {
  --tw-shadow-color: rgb(29 78 216 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-700\/40:hover {
  --tw-shadow-color: rgb(29 78 216 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-700\/5:hover {
  --tw-shadow-color: rgb(29 78 216 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-700\/50:hover {
  --tw-shadow-color: rgb(29 78 216 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-700\/60:hover {
  --tw-shadow-color: rgb(29 78 216 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-700\/70:hover {
  --tw-shadow-color: rgb(29 78 216 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-700\/80:hover {
  --tw-shadow-color: rgb(29 78 216 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-700\/90:hover {
  --tw-shadow-color: rgb(29 78 216 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-800:hover {
  --tw-shadow-color: #1e40af;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-800\/10:hover {
  --tw-shadow-color: rgb(30 64 175 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-800\/20:hover {
  --tw-shadow-color: rgb(30 64 175 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-800\/30:hover {
  --tw-shadow-color: rgb(30 64 175 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-800\/40:hover {
  --tw-shadow-color: rgb(30 64 175 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-800\/5:hover {
  --tw-shadow-color: rgb(30 64 175 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-800\/50:hover {
  --tw-shadow-color: rgb(30 64 175 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-800\/60:hover {
  --tw-shadow-color: rgb(30 64 175 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-800\/70:hover {
  --tw-shadow-color: rgb(30 64 175 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-800\/80:hover {
  --tw-shadow-color: rgb(30 64 175 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-800\/90:hover {
  --tw-shadow-color: rgb(30 64 175 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-900:hover {
  --tw-shadow-color: #1e3a8a;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-900\/10:hover {
  --tw-shadow-color: rgb(30 58 138 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-900\/20:hover {
  --tw-shadow-color: rgb(30 58 138 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-900\/30:hover {
  --tw-shadow-color: rgb(30 58 138 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-900\/40:hover {
  --tw-shadow-color: rgb(30 58 138 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-900\/5:hover {
  --tw-shadow-color: rgb(30 58 138 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-900\/50:hover {
  --tw-shadow-color: rgb(30 58 138 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-900\/60:hover {
  --tw-shadow-color: rgb(30 58 138 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-900\/70:hover {
  --tw-shadow-color: rgb(30 58 138 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-900\/80:hover {
  --tw-shadow-color: rgb(30 58 138 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-900\/90:hover {
  --tw-shadow-color: rgb(30 58 138 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-950:hover {
  --tw-shadow-color: #172554;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-950\/10:hover {
  --tw-shadow-color: rgb(23 37 84 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-950\/20:hover {
  --tw-shadow-color: rgb(23 37 84 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-950\/30:hover {
  --tw-shadow-color: rgb(23 37 84 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-950\/40:hover {
  --tw-shadow-color: rgb(23 37 84 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-950\/5:hover {
  --tw-shadow-color: rgb(23 37 84 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-950\/50:hover {
  --tw-shadow-color: rgb(23 37 84 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-950\/60:hover {
  --tw-shadow-color: rgb(23 37 84 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-950\/70:hover {
  --tw-shadow-color: rgb(23 37 84 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-950\/80:hover {
  --tw-shadow-color: rgb(23 37 84 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-blue-950\/90:hover {
  --tw-shadow-color: rgb(23 37 84 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-100:hover {
  --tw-shadow-color: #cffafe;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-100\/10:hover {
  --tw-shadow-color: rgb(207 250 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-100\/20:hover {
  --tw-shadow-color: rgb(207 250 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-100\/30:hover {
  --tw-shadow-color: rgb(207 250 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-100\/40:hover {
  --tw-shadow-color: rgb(207 250 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-100\/5:hover {
  --tw-shadow-color: rgb(207 250 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-100\/50:hover {
  --tw-shadow-color: rgb(207 250 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-100\/60:hover {
  --tw-shadow-color: rgb(207 250 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-100\/70:hover {
  --tw-shadow-color: rgb(207 250 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-100\/80:hover {
  --tw-shadow-color: rgb(207 250 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-100\/90:hover {
  --tw-shadow-color: rgb(207 250 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-200:hover {
  --tw-shadow-color: #a5f3fc;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-200\/10:hover {
  --tw-shadow-color: rgb(165 243 252 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-200\/20:hover {
  --tw-shadow-color: rgb(165 243 252 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-200\/30:hover {
  --tw-shadow-color: rgb(165 243 252 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-200\/40:hover {
  --tw-shadow-color: rgb(165 243 252 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-200\/5:hover {
  --tw-shadow-color: rgb(165 243 252 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-200\/50:hover {
  --tw-shadow-color: rgb(165 243 252 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-200\/60:hover {
  --tw-shadow-color: rgb(165 243 252 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-200\/70:hover {
  --tw-shadow-color: rgb(165 243 252 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-200\/80:hover {
  --tw-shadow-color: rgb(165 243 252 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-200\/90:hover {
  --tw-shadow-color: rgb(165 243 252 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-300:hover {
  --tw-shadow-color: #67e8f9;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-300\/10:hover {
  --tw-shadow-color: rgb(103 232 249 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-300\/20:hover {
  --tw-shadow-color: rgb(103 232 249 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-300\/30:hover {
  --tw-shadow-color: rgb(103 232 249 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-300\/40:hover {
  --tw-shadow-color: rgb(103 232 249 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-300\/5:hover {
  --tw-shadow-color: rgb(103 232 249 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-300\/50:hover {
  --tw-shadow-color: rgb(103 232 249 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-300\/60:hover {
  --tw-shadow-color: rgb(103 232 249 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-300\/70:hover {
  --tw-shadow-color: rgb(103 232 249 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-300\/80:hover {
  --tw-shadow-color: rgb(103 232 249 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-300\/90:hover {
  --tw-shadow-color: rgb(103 232 249 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-400:hover {
  --tw-shadow-color: #22d3ee;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-400\/10:hover {
  --tw-shadow-color: rgb(34 211 238 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-400\/20:hover {
  --tw-shadow-color: rgb(34 211 238 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-400\/30:hover {
  --tw-shadow-color: rgb(34 211 238 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-400\/40:hover {
  --tw-shadow-color: rgb(34 211 238 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-400\/5:hover {
  --tw-shadow-color: rgb(34 211 238 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-400\/50:hover {
  --tw-shadow-color: rgb(34 211 238 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-400\/60:hover {
  --tw-shadow-color: rgb(34 211 238 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-400\/70:hover {
  --tw-shadow-color: rgb(34 211 238 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-400\/80:hover {
  --tw-shadow-color: rgb(34 211 238 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-400\/90:hover {
  --tw-shadow-color: rgb(34 211 238 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-50:hover {
  --tw-shadow-color: #ecfeff;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-50\/10:hover {
  --tw-shadow-color: rgb(236 254 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-50\/20:hover {
  --tw-shadow-color: rgb(236 254 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-50\/30:hover {
  --tw-shadow-color: rgb(236 254 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-50\/40:hover {
  --tw-shadow-color: rgb(236 254 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-50\/5:hover {
  --tw-shadow-color: rgb(236 254 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-50\/50:hover {
  --tw-shadow-color: rgb(236 254 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-50\/60:hover {
  --tw-shadow-color: rgb(236 254 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-50\/70:hover {
  --tw-shadow-color: rgb(236 254 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-50\/80:hover {
  --tw-shadow-color: rgb(236 254 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-50\/90:hover {
  --tw-shadow-color: rgb(236 254 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-500:hover {
  --tw-shadow-color: #06b6d4;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-500\/10:hover {
  --tw-shadow-color: rgb(6 182 212 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-500\/20:hover {
  --tw-shadow-color: rgb(6 182 212 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-500\/30:hover {
  --tw-shadow-color: rgb(6 182 212 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-500\/40:hover {
  --tw-shadow-color: rgb(6 182 212 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-500\/5:hover {
  --tw-shadow-color: rgb(6 182 212 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-500\/50:hover {
  --tw-shadow-color: rgb(6 182 212 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-500\/60:hover {
  --tw-shadow-color: rgb(6 182 212 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-500\/70:hover {
  --tw-shadow-color: rgb(6 182 212 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-500\/80:hover {
  --tw-shadow-color: rgb(6 182 212 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-500\/90:hover {
  --tw-shadow-color: rgb(6 182 212 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-600:hover {
  --tw-shadow-color: #0891b2;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-600\/10:hover {
  --tw-shadow-color: rgb(8 145 178 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-600\/20:hover {
  --tw-shadow-color: rgb(8 145 178 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-600\/30:hover {
  --tw-shadow-color: rgb(8 145 178 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-600\/40:hover {
  --tw-shadow-color: rgb(8 145 178 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-600\/5:hover {
  --tw-shadow-color: rgb(8 145 178 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-600\/50:hover {
  --tw-shadow-color: rgb(8 145 178 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-600\/60:hover {
  --tw-shadow-color: rgb(8 145 178 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-600\/70:hover {
  --tw-shadow-color: rgb(8 145 178 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-600\/80:hover {
  --tw-shadow-color: rgb(8 145 178 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-600\/90:hover {
  --tw-shadow-color: rgb(8 145 178 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-700:hover {
  --tw-shadow-color: #0e7490;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-700\/10:hover {
  --tw-shadow-color: rgb(14 116 144 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-700\/20:hover {
  --tw-shadow-color: rgb(14 116 144 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-700\/30:hover {
  --tw-shadow-color: rgb(14 116 144 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-700\/40:hover {
  --tw-shadow-color: rgb(14 116 144 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-700\/5:hover {
  --tw-shadow-color: rgb(14 116 144 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-700\/50:hover {
  --tw-shadow-color: rgb(14 116 144 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-700\/60:hover {
  --tw-shadow-color: rgb(14 116 144 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-700\/70:hover {
  --tw-shadow-color: rgb(14 116 144 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-700\/80:hover {
  --tw-shadow-color: rgb(14 116 144 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-700\/90:hover {
  --tw-shadow-color: rgb(14 116 144 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-800:hover {
  --tw-shadow-color: #155e75;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-800\/10:hover {
  --tw-shadow-color: rgb(21 94 117 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-800\/20:hover {
  --tw-shadow-color: rgb(21 94 117 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-800\/30:hover {
  --tw-shadow-color: rgb(21 94 117 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-800\/40:hover {
  --tw-shadow-color: rgb(21 94 117 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-800\/5:hover {
  --tw-shadow-color: rgb(21 94 117 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-800\/50:hover {
  --tw-shadow-color: rgb(21 94 117 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-800\/60:hover {
  --tw-shadow-color: rgb(21 94 117 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-800\/70:hover {
  --tw-shadow-color: rgb(21 94 117 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-800\/80:hover {
  --tw-shadow-color: rgb(21 94 117 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-800\/90:hover {
  --tw-shadow-color: rgb(21 94 117 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-900:hover {
  --tw-shadow-color: #164e63;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-900\/10:hover {
  --tw-shadow-color: rgb(22 78 99 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-900\/20:hover {
  --tw-shadow-color: rgb(22 78 99 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-900\/30:hover {
  --tw-shadow-color: rgb(22 78 99 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-900\/40:hover {
  --tw-shadow-color: rgb(22 78 99 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-900\/5:hover {
  --tw-shadow-color: rgb(22 78 99 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-900\/50:hover {
  --tw-shadow-color: rgb(22 78 99 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-900\/60:hover {
  --tw-shadow-color: rgb(22 78 99 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-900\/70:hover {
  --tw-shadow-color: rgb(22 78 99 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-900\/80:hover {
  --tw-shadow-color: rgb(22 78 99 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-900\/90:hover {
  --tw-shadow-color: rgb(22 78 99 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-950:hover {
  --tw-shadow-color: #083344;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-950\/10:hover {
  --tw-shadow-color: rgb(8 51 68 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-950\/20:hover {
  --tw-shadow-color: rgb(8 51 68 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-950\/30:hover {
  --tw-shadow-color: rgb(8 51 68 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-950\/40:hover {
  --tw-shadow-color: rgb(8 51 68 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-950\/5:hover {
  --tw-shadow-color: rgb(8 51 68 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-950\/50:hover {
  --tw-shadow-color: rgb(8 51 68 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-950\/60:hover {
  --tw-shadow-color: rgb(8 51 68 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-950\/70:hover {
  --tw-shadow-color: rgb(8 51 68 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-950\/80:hover {
  --tw-shadow-color: rgb(8 51 68 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-950\/90:hover {
  --tw-shadow-color: rgb(8 51 68 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-100:hover {
  --tw-shadow-color: #d1fae5;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-100\/10:hover {
  --tw-shadow-color: rgb(209 250 229 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-100\/20:hover {
  --tw-shadow-color: rgb(209 250 229 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-100\/30:hover {
  --tw-shadow-color: rgb(209 250 229 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-100\/40:hover {
  --tw-shadow-color: rgb(209 250 229 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-100\/5:hover {
  --tw-shadow-color: rgb(209 250 229 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-100\/50:hover {
  --tw-shadow-color: rgb(209 250 229 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-100\/60:hover {
  --tw-shadow-color: rgb(209 250 229 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-100\/70:hover {
  --tw-shadow-color: rgb(209 250 229 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-100\/80:hover {
  --tw-shadow-color: rgb(209 250 229 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-100\/90:hover {
  --tw-shadow-color: rgb(209 250 229 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-200:hover {
  --tw-shadow-color: #a7f3d0;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-200\/10:hover {
  --tw-shadow-color: rgb(167 243 208 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-200\/20:hover {
  --tw-shadow-color: rgb(167 243 208 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-200\/30:hover {
  --tw-shadow-color: rgb(167 243 208 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-200\/40:hover {
  --tw-shadow-color: rgb(167 243 208 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-200\/5:hover {
  --tw-shadow-color: rgb(167 243 208 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-200\/50:hover {
  --tw-shadow-color: rgb(167 243 208 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-200\/60:hover {
  --tw-shadow-color: rgb(167 243 208 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-200\/70:hover {
  --tw-shadow-color: rgb(167 243 208 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-200\/80:hover {
  --tw-shadow-color: rgb(167 243 208 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-200\/90:hover {
  --tw-shadow-color: rgb(167 243 208 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-300:hover {
  --tw-shadow-color: #6ee7b7;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-300\/10:hover {
  --tw-shadow-color: rgb(110 231 183 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-300\/20:hover {
  --tw-shadow-color: rgb(110 231 183 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-300\/30:hover {
  --tw-shadow-color: rgb(110 231 183 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-300\/40:hover {
  --tw-shadow-color: rgb(110 231 183 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-300\/5:hover {
  --tw-shadow-color: rgb(110 231 183 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-300\/50:hover {
  --tw-shadow-color: rgb(110 231 183 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-300\/60:hover {
  --tw-shadow-color: rgb(110 231 183 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-300\/70:hover {
  --tw-shadow-color: rgb(110 231 183 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-300\/80:hover {
  --tw-shadow-color: rgb(110 231 183 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-300\/90:hover {
  --tw-shadow-color: rgb(110 231 183 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-400:hover {
  --tw-shadow-color: #34d399;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-400\/10:hover {
  --tw-shadow-color: rgb(52 211 153 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-400\/20:hover {
  --tw-shadow-color: rgb(52 211 153 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-400\/30:hover {
  --tw-shadow-color: rgb(52 211 153 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-400\/40:hover {
  --tw-shadow-color: rgb(52 211 153 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-400\/5:hover {
  --tw-shadow-color: rgb(52 211 153 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-400\/50:hover {
  --tw-shadow-color: rgb(52 211 153 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-400\/60:hover {
  --tw-shadow-color: rgb(52 211 153 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-400\/70:hover {
  --tw-shadow-color: rgb(52 211 153 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-400\/80:hover {
  --tw-shadow-color: rgb(52 211 153 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-400\/90:hover {
  --tw-shadow-color: rgb(52 211 153 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-50:hover {
  --tw-shadow-color: #ecfdf5;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-50\/10:hover {
  --tw-shadow-color: rgb(236 253 245 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-50\/20:hover {
  --tw-shadow-color: rgb(236 253 245 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-50\/30:hover {
  --tw-shadow-color: rgb(236 253 245 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-50\/40:hover {
  --tw-shadow-color: rgb(236 253 245 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-50\/5:hover {
  --tw-shadow-color: rgb(236 253 245 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-50\/50:hover {
  --tw-shadow-color: rgb(236 253 245 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-50\/60:hover {
  --tw-shadow-color: rgb(236 253 245 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-50\/70:hover {
  --tw-shadow-color: rgb(236 253 245 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-50\/80:hover {
  --tw-shadow-color: rgb(236 253 245 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-50\/90:hover {
  --tw-shadow-color: rgb(236 253 245 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-500:hover {
  --tw-shadow-color: #10b981;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-500\/10:hover {
  --tw-shadow-color: rgb(16 185 129 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-500\/20:hover {
  --tw-shadow-color: rgb(16 185 129 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-500\/30:hover {
  --tw-shadow-color: rgb(16 185 129 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-500\/40:hover {
  --tw-shadow-color: rgb(16 185 129 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-500\/5:hover {
  --tw-shadow-color: rgb(16 185 129 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-500\/50:hover {
  --tw-shadow-color: rgb(16 185 129 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-500\/60:hover {
  --tw-shadow-color: rgb(16 185 129 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-500\/70:hover {
  --tw-shadow-color: rgb(16 185 129 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-500\/80:hover {
  --tw-shadow-color: rgb(16 185 129 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-500\/90:hover {
  --tw-shadow-color: rgb(16 185 129 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-600:hover {
  --tw-shadow-color: #059669;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-600\/10:hover {
  --tw-shadow-color: rgb(5 150 105 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-600\/20:hover {
  --tw-shadow-color: rgb(5 150 105 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-600\/30:hover {
  --tw-shadow-color: rgb(5 150 105 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-600\/40:hover {
  --tw-shadow-color: rgb(5 150 105 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-600\/5:hover {
  --tw-shadow-color: rgb(5 150 105 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-600\/50:hover {
  --tw-shadow-color: rgb(5 150 105 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-600\/60:hover {
  --tw-shadow-color: rgb(5 150 105 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-600\/70:hover {
  --tw-shadow-color: rgb(5 150 105 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-600\/80:hover {
  --tw-shadow-color: rgb(5 150 105 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-600\/90:hover {
  --tw-shadow-color: rgb(5 150 105 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-700:hover {
  --tw-shadow-color: #047857;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-700\/10:hover {
  --tw-shadow-color: rgb(4 120 87 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-700\/20:hover {
  --tw-shadow-color: rgb(4 120 87 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-700\/30:hover {
  --tw-shadow-color: rgb(4 120 87 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-700\/40:hover {
  --tw-shadow-color: rgb(4 120 87 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-700\/5:hover {
  --tw-shadow-color: rgb(4 120 87 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-700\/50:hover {
  --tw-shadow-color: rgb(4 120 87 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-700\/60:hover {
  --tw-shadow-color: rgb(4 120 87 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-700\/70:hover {
  --tw-shadow-color: rgb(4 120 87 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-700\/80:hover {
  --tw-shadow-color: rgb(4 120 87 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-700\/90:hover {
  --tw-shadow-color: rgb(4 120 87 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-800:hover {
  --tw-shadow-color: #065f46;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-800\/10:hover {
  --tw-shadow-color: rgb(6 95 70 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-800\/20:hover {
  --tw-shadow-color: rgb(6 95 70 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-800\/30:hover {
  --tw-shadow-color: rgb(6 95 70 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-800\/40:hover {
  --tw-shadow-color: rgb(6 95 70 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-800\/5:hover {
  --tw-shadow-color: rgb(6 95 70 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-800\/50:hover {
  --tw-shadow-color: rgb(6 95 70 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-800\/60:hover {
  --tw-shadow-color: rgb(6 95 70 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-800\/70:hover {
  --tw-shadow-color: rgb(6 95 70 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-800\/80:hover {
  --tw-shadow-color: rgb(6 95 70 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-800\/90:hover {
  --tw-shadow-color: rgb(6 95 70 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-900:hover {
  --tw-shadow-color: #064e3b;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-900\/10:hover {
  --tw-shadow-color: rgb(6 78 59 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-900\/20:hover {
  --tw-shadow-color: rgb(6 78 59 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-900\/30:hover {
  --tw-shadow-color: rgb(6 78 59 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-900\/40:hover {
  --tw-shadow-color: rgb(6 78 59 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-900\/5:hover {
  --tw-shadow-color: rgb(6 78 59 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-900\/50:hover {
  --tw-shadow-color: rgb(6 78 59 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-900\/60:hover {
  --tw-shadow-color: rgb(6 78 59 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-900\/70:hover {
  --tw-shadow-color: rgb(6 78 59 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-900\/80:hover {
  --tw-shadow-color: rgb(6 78 59 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-900\/90:hover {
  --tw-shadow-color: rgb(6 78 59 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-950:hover {
  --tw-shadow-color: #022c22;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-950\/10:hover {
  --tw-shadow-color: rgb(2 44 34 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-950\/20:hover {
  --tw-shadow-color: rgb(2 44 34 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-950\/30:hover {
  --tw-shadow-color: rgb(2 44 34 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-950\/40:hover {
  --tw-shadow-color: rgb(2 44 34 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-950\/5:hover {
  --tw-shadow-color: rgb(2 44 34 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-950\/50:hover {
  --tw-shadow-color: rgb(2 44 34 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-950\/60:hover {
  --tw-shadow-color: rgb(2 44 34 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-950\/70:hover {
  --tw-shadow-color: rgb(2 44 34 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-950\/80:hover {
  --tw-shadow-color: rgb(2 44 34 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-emerald-950\/90:hover {
  --tw-shadow-color: rgb(2 44 34 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-100:hover {
  --tw-shadow-color: #fae8ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-100\/10:hover {
  --tw-shadow-color: rgb(250 232 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-100\/20:hover {
  --tw-shadow-color: rgb(250 232 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-100\/30:hover {
  --tw-shadow-color: rgb(250 232 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-100\/40:hover {
  --tw-shadow-color: rgb(250 232 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-100\/5:hover {
  --tw-shadow-color: rgb(250 232 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-100\/50:hover {
  --tw-shadow-color: rgb(250 232 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-100\/60:hover {
  --tw-shadow-color: rgb(250 232 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-100\/70:hover {
  --tw-shadow-color: rgb(250 232 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-100\/80:hover {
  --tw-shadow-color: rgb(250 232 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-100\/90:hover {
  --tw-shadow-color: rgb(250 232 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-200:hover {
  --tw-shadow-color: #f5d0fe;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-200\/10:hover {
  --tw-shadow-color: rgb(245 208 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-200\/20:hover {
  --tw-shadow-color: rgb(245 208 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-200\/30:hover {
  --tw-shadow-color: rgb(245 208 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-200\/40:hover {
  --tw-shadow-color: rgb(245 208 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-200\/5:hover {
  --tw-shadow-color: rgb(245 208 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-200\/50:hover {
  --tw-shadow-color: rgb(245 208 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-200\/60:hover {
  --tw-shadow-color: rgb(245 208 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-200\/70:hover {
  --tw-shadow-color: rgb(245 208 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-200\/80:hover {
  --tw-shadow-color: rgb(245 208 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-200\/90:hover {
  --tw-shadow-color: rgb(245 208 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-300:hover {
  --tw-shadow-color: #f0abfc;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-300\/10:hover {
  --tw-shadow-color: rgb(240 171 252 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-300\/20:hover {
  --tw-shadow-color: rgb(240 171 252 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-300\/30:hover {
  --tw-shadow-color: rgb(240 171 252 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-300\/40:hover {
  --tw-shadow-color: rgb(240 171 252 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-300\/5:hover {
  --tw-shadow-color: rgb(240 171 252 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-300\/50:hover {
  --tw-shadow-color: rgb(240 171 252 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-300\/60:hover {
  --tw-shadow-color: rgb(240 171 252 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-300\/70:hover {
  --tw-shadow-color: rgb(240 171 252 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-300\/80:hover {
  --tw-shadow-color: rgb(240 171 252 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-300\/90:hover {
  --tw-shadow-color: rgb(240 171 252 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-400:hover {
  --tw-shadow-color: #e879f9;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-400\/10:hover {
  --tw-shadow-color: rgb(232 121 249 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-400\/20:hover {
  --tw-shadow-color: rgb(232 121 249 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-400\/30:hover {
  --tw-shadow-color: rgb(232 121 249 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-400\/40:hover {
  --tw-shadow-color: rgb(232 121 249 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-400\/5:hover {
  --tw-shadow-color: rgb(232 121 249 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-400\/50:hover {
  --tw-shadow-color: rgb(232 121 249 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-400\/60:hover {
  --tw-shadow-color: rgb(232 121 249 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-400\/70:hover {
  --tw-shadow-color: rgb(232 121 249 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-400\/80:hover {
  --tw-shadow-color: rgb(232 121 249 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-400\/90:hover {
  --tw-shadow-color: rgb(232 121 249 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-50:hover {
  --tw-shadow-color: #fdf4ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-50\/10:hover {
  --tw-shadow-color: rgb(253 244 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-50\/20:hover {
  --tw-shadow-color: rgb(253 244 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-50\/30:hover {
  --tw-shadow-color: rgb(253 244 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-50\/40:hover {
  --tw-shadow-color: rgb(253 244 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-50\/5:hover {
  --tw-shadow-color: rgb(253 244 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-50\/50:hover {
  --tw-shadow-color: rgb(253 244 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-50\/60:hover {
  --tw-shadow-color: rgb(253 244 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-50\/70:hover {
  --tw-shadow-color: rgb(253 244 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-50\/80:hover {
  --tw-shadow-color: rgb(253 244 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-50\/90:hover {
  --tw-shadow-color: rgb(253 244 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-500:hover {
  --tw-shadow-color: #d946ef;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-500\/10:hover {
  --tw-shadow-color: rgb(217 70 239 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-500\/20:hover {
  --tw-shadow-color: rgb(217 70 239 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-500\/30:hover {
  --tw-shadow-color: rgb(217 70 239 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-500\/40:hover {
  --tw-shadow-color: rgb(217 70 239 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-500\/5:hover {
  --tw-shadow-color: rgb(217 70 239 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-500\/50:hover {
  --tw-shadow-color: rgb(217 70 239 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-500\/60:hover {
  --tw-shadow-color: rgb(217 70 239 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-500\/70:hover {
  --tw-shadow-color: rgb(217 70 239 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-500\/80:hover {
  --tw-shadow-color: rgb(217 70 239 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-500\/90:hover {
  --tw-shadow-color: rgb(217 70 239 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-600:hover {
  --tw-shadow-color: #c026d3;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-600\/10:hover {
  --tw-shadow-color: rgb(192 38 211 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-600\/20:hover {
  --tw-shadow-color: rgb(192 38 211 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-600\/30:hover {
  --tw-shadow-color: rgb(192 38 211 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-600\/40:hover {
  --tw-shadow-color: rgb(192 38 211 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-600\/5:hover {
  --tw-shadow-color: rgb(192 38 211 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-600\/50:hover {
  --tw-shadow-color: rgb(192 38 211 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-600\/60:hover {
  --tw-shadow-color: rgb(192 38 211 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-600\/70:hover {
  --tw-shadow-color: rgb(192 38 211 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-600\/80:hover {
  --tw-shadow-color: rgb(192 38 211 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-600\/90:hover {
  --tw-shadow-color: rgb(192 38 211 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-700:hover {
  --tw-shadow-color: #a21caf;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-700\/10:hover {
  --tw-shadow-color: rgb(162 28 175 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-700\/20:hover {
  --tw-shadow-color: rgb(162 28 175 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-700\/30:hover {
  --tw-shadow-color: rgb(162 28 175 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-700\/40:hover {
  --tw-shadow-color: rgb(162 28 175 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-700\/5:hover {
  --tw-shadow-color: rgb(162 28 175 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-700\/50:hover {
  --tw-shadow-color: rgb(162 28 175 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-700\/60:hover {
  --tw-shadow-color: rgb(162 28 175 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-700\/70:hover {
  --tw-shadow-color: rgb(162 28 175 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-700\/80:hover {
  --tw-shadow-color: rgb(162 28 175 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-700\/90:hover {
  --tw-shadow-color: rgb(162 28 175 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-800:hover {
  --tw-shadow-color: #86198f;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-800\/10:hover {
  --tw-shadow-color: rgb(134 25 143 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-800\/20:hover {
  --tw-shadow-color: rgb(134 25 143 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-800\/30:hover {
  --tw-shadow-color: rgb(134 25 143 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-800\/40:hover {
  --tw-shadow-color: rgb(134 25 143 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-800\/5:hover {
  --tw-shadow-color: rgb(134 25 143 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-800\/50:hover {
  --tw-shadow-color: rgb(134 25 143 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-800\/60:hover {
  --tw-shadow-color: rgb(134 25 143 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-800\/70:hover {
  --tw-shadow-color: rgb(134 25 143 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-800\/80:hover {
  --tw-shadow-color: rgb(134 25 143 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-800\/90:hover {
  --tw-shadow-color: rgb(134 25 143 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-900:hover {
  --tw-shadow-color: #701a75;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-900\/10:hover {
  --tw-shadow-color: rgb(112 26 117 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-900\/20:hover {
  --tw-shadow-color: rgb(112 26 117 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-900\/30:hover {
  --tw-shadow-color: rgb(112 26 117 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-900\/40:hover {
  --tw-shadow-color: rgb(112 26 117 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-900\/5:hover {
  --tw-shadow-color: rgb(112 26 117 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-900\/50:hover {
  --tw-shadow-color: rgb(112 26 117 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-900\/60:hover {
  --tw-shadow-color: rgb(112 26 117 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-900\/70:hover {
  --tw-shadow-color: rgb(112 26 117 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-900\/80:hover {
  --tw-shadow-color: rgb(112 26 117 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-900\/90:hover {
  --tw-shadow-color: rgb(112 26 117 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-950:hover {
  --tw-shadow-color: #4a044e;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-950\/10:hover {
  --tw-shadow-color: rgb(74 4 78 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-950\/20:hover {
  --tw-shadow-color: rgb(74 4 78 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-950\/30:hover {
  --tw-shadow-color: rgb(74 4 78 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-950\/40:hover {
  --tw-shadow-color: rgb(74 4 78 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-950\/5:hover {
  --tw-shadow-color: rgb(74 4 78 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-950\/50:hover {
  --tw-shadow-color: rgb(74 4 78 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-950\/60:hover {
  --tw-shadow-color: rgb(74 4 78 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-950\/70:hover {
  --tw-shadow-color: rgb(74 4 78 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-950\/80:hover {
  --tw-shadow-color: rgb(74 4 78 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-fuchsia-950\/90:hover {
  --tw-shadow-color: rgb(74 4 78 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-100:hover {
  --tw-shadow-color: #f3f4f6;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-100\/10:hover {
  --tw-shadow-color: rgb(243 244 246 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-100\/20:hover {
  --tw-shadow-color: rgb(243 244 246 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-100\/30:hover {
  --tw-shadow-color: rgb(243 244 246 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-100\/40:hover {
  --tw-shadow-color: rgb(243 244 246 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-100\/5:hover {
  --tw-shadow-color: rgb(243 244 246 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-100\/50:hover {
  --tw-shadow-color: rgb(243 244 246 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-100\/60:hover {
  --tw-shadow-color: rgb(243 244 246 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-100\/70:hover {
  --tw-shadow-color: rgb(243 244 246 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-100\/80:hover {
  --tw-shadow-color: rgb(243 244 246 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-100\/90:hover {
  --tw-shadow-color: rgb(243 244 246 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-200:hover {
  --tw-shadow-color: #e5e7eb;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-200\/10:hover {
  --tw-shadow-color: rgb(229 231 235 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-200\/20:hover {
  --tw-shadow-color: rgb(229 231 235 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-200\/30:hover {
  --tw-shadow-color: rgb(229 231 235 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-200\/40:hover {
  --tw-shadow-color: rgb(229 231 235 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-200\/5:hover {
  --tw-shadow-color: rgb(229 231 235 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-200\/50:hover {
  --tw-shadow-color: rgb(229 231 235 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-200\/60:hover {
  --tw-shadow-color: rgb(229 231 235 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-200\/70:hover {
  --tw-shadow-color: rgb(229 231 235 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-200\/80:hover {
  --tw-shadow-color: rgb(229 231 235 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-200\/90:hover {
  --tw-shadow-color: rgb(229 231 235 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-300:hover {
  --tw-shadow-color: #d1d5db;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-300\/10:hover {
  --tw-shadow-color: rgb(209 213 219 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-300\/20:hover {
  --tw-shadow-color: rgb(209 213 219 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-300\/30:hover {
  --tw-shadow-color: rgb(209 213 219 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-300\/40:hover {
  --tw-shadow-color: rgb(209 213 219 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-300\/5:hover {
  --tw-shadow-color: rgb(209 213 219 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-300\/50:hover {
  --tw-shadow-color: rgb(209 213 219 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-300\/60:hover {
  --tw-shadow-color: rgb(209 213 219 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-300\/70:hover {
  --tw-shadow-color: rgb(209 213 219 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-300\/80:hover {
  --tw-shadow-color: rgb(209 213 219 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-300\/90:hover {
  --tw-shadow-color: rgb(209 213 219 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-400:hover {
  --tw-shadow-color: #9ca3af;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-400\/10:hover {
  --tw-shadow-color: rgb(156 163 175 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-400\/20:hover {
  --tw-shadow-color: rgb(156 163 175 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-400\/30:hover {
  --tw-shadow-color: rgb(156 163 175 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-400\/40:hover {
  --tw-shadow-color: rgb(156 163 175 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-400\/5:hover {
  --tw-shadow-color: rgb(156 163 175 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-400\/50:hover {
  --tw-shadow-color: rgb(156 163 175 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-400\/60:hover {
  --tw-shadow-color: rgb(156 163 175 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-400\/70:hover {
  --tw-shadow-color: rgb(156 163 175 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-400\/80:hover {
  --tw-shadow-color: rgb(156 163 175 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-400\/90:hover {
  --tw-shadow-color: rgb(156 163 175 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-50:hover {
  --tw-shadow-color: #f9fafb;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-50\/10:hover {
  --tw-shadow-color: rgb(249 250 251 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-50\/20:hover {
  --tw-shadow-color: rgb(249 250 251 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-50\/30:hover {
  --tw-shadow-color: rgb(249 250 251 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-50\/40:hover {
  --tw-shadow-color: rgb(249 250 251 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-50\/5:hover {
  --tw-shadow-color: rgb(249 250 251 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-50\/50:hover {
  --tw-shadow-color: rgb(249 250 251 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-50\/60:hover {
  --tw-shadow-color: rgb(249 250 251 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-50\/70:hover {
  --tw-shadow-color: rgb(249 250 251 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-50\/80:hover {
  --tw-shadow-color: rgb(249 250 251 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-50\/90:hover {
  --tw-shadow-color: rgb(249 250 251 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-500:hover {
  --tw-shadow-color: #6b7280;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-500\/10:hover {
  --tw-shadow-color: rgb(107 114 128 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-500\/20:hover {
  --tw-shadow-color: rgb(107 114 128 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-500\/30:hover {
  --tw-shadow-color: rgb(107 114 128 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-500\/40:hover {
  --tw-shadow-color: rgb(107 114 128 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-500\/5:hover {
  --tw-shadow-color: rgb(107 114 128 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-500\/50:hover {
  --tw-shadow-color: rgb(107 114 128 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-500\/60:hover {
  --tw-shadow-color: rgb(107 114 128 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-500\/70:hover {
  --tw-shadow-color: rgb(107 114 128 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-500\/80:hover {
  --tw-shadow-color: rgb(107 114 128 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-500\/90:hover {
  --tw-shadow-color: rgb(107 114 128 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-600:hover {
  --tw-shadow-color: #4b5563;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-600\/10:hover {
  --tw-shadow-color: rgb(75 85 99 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-600\/20:hover {
  --tw-shadow-color: rgb(75 85 99 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-600\/30:hover {
  --tw-shadow-color: rgb(75 85 99 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-600\/40:hover {
  --tw-shadow-color: rgb(75 85 99 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-600\/5:hover {
  --tw-shadow-color: rgb(75 85 99 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-600\/50:hover {
  --tw-shadow-color: rgb(75 85 99 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-600\/60:hover {
  --tw-shadow-color: rgb(75 85 99 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-600\/70:hover {
  --tw-shadow-color: rgb(75 85 99 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-600\/80:hover {
  --tw-shadow-color: rgb(75 85 99 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-600\/90:hover {
  --tw-shadow-color: rgb(75 85 99 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-700:hover {
  --tw-shadow-color: #374151;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-700\/10:hover {
  --tw-shadow-color: rgb(55 65 81 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-700\/20:hover {
  --tw-shadow-color: rgb(55 65 81 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-700\/30:hover {
  --tw-shadow-color: rgb(55 65 81 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-700\/40:hover {
  --tw-shadow-color: rgb(55 65 81 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-700\/5:hover {
  --tw-shadow-color: rgb(55 65 81 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-700\/50:hover {
  --tw-shadow-color: rgb(55 65 81 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-700\/60:hover {
  --tw-shadow-color: rgb(55 65 81 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-700\/70:hover {
  --tw-shadow-color: rgb(55 65 81 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-700\/80:hover {
  --tw-shadow-color: rgb(55 65 81 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-700\/90:hover {
  --tw-shadow-color: rgb(55 65 81 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-800:hover {
  --tw-shadow-color: #1f2937;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-800\/10:hover {
  --tw-shadow-color: rgb(31 41 55 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-800\/20:hover {
  --tw-shadow-color: rgb(31 41 55 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-800\/30:hover {
  --tw-shadow-color: rgb(31 41 55 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-800\/40:hover {
  --tw-shadow-color: rgb(31 41 55 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-800\/5:hover {
  --tw-shadow-color: rgb(31 41 55 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-800\/50:hover {
  --tw-shadow-color: rgb(31 41 55 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-800\/60:hover {
  --tw-shadow-color: rgb(31 41 55 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-800\/70:hover {
  --tw-shadow-color: rgb(31 41 55 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-800\/80:hover {
  --tw-shadow-color: rgb(31 41 55 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-800\/90:hover {
  --tw-shadow-color: rgb(31 41 55 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-900:hover {
  --tw-shadow-color: #111827;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-900\/10:hover {
  --tw-shadow-color: rgb(17 24 39 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-900\/20:hover {
  --tw-shadow-color: rgb(17 24 39 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-900\/30:hover {
  --tw-shadow-color: rgb(17 24 39 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-900\/40:hover {
  --tw-shadow-color: rgb(17 24 39 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-900\/5:hover {
  --tw-shadow-color: rgb(17 24 39 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-900\/50:hover {
  --tw-shadow-color: rgb(17 24 39 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-900\/60:hover {
  --tw-shadow-color: rgb(17 24 39 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-900\/70:hover {
  --tw-shadow-color: rgb(17 24 39 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-900\/80:hover {
  --tw-shadow-color: rgb(17 24 39 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-900\/90:hover {
  --tw-shadow-color: rgb(17 24 39 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-950:hover {
  --tw-shadow-color: #030712;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-950\/10:hover {
  --tw-shadow-color: rgb(3 7 18 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-950\/20:hover {
  --tw-shadow-color: rgb(3 7 18 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-950\/30:hover {
  --tw-shadow-color: rgb(3 7 18 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-950\/40:hover {
  --tw-shadow-color: rgb(3 7 18 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-950\/5:hover {
  --tw-shadow-color: rgb(3 7 18 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-950\/50:hover {
  --tw-shadow-color: rgb(3 7 18 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-950\/60:hover {
  --tw-shadow-color: rgb(3 7 18 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-950\/70:hover {
  --tw-shadow-color: rgb(3 7 18 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-950\/80:hover {
  --tw-shadow-color: rgb(3 7 18 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-gray-950\/90:hover {
  --tw-shadow-color: rgb(3 7 18 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-100:hover {
  --tw-shadow-color: #dcfce7;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-100\/10:hover {
  --tw-shadow-color: rgb(220 252 231 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-100\/20:hover {
  --tw-shadow-color: rgb(220 252 231 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-100\/30:hover {
  --tw-shadow-color: rgb(220 252 231 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-100\/40:hover {
  --tw-shadow-color: rgb(220 252 231 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-100\/5:hover {
  --tw-shadow-color: rgb(220 252 231 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-100\/50:hover {
  --tw-shadow-color: rgb(220 252 231 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-100\/60:hover {
  --tw-shadow-color: rgb(220 252 231 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-100\/70:hover {
  --tw-shadow-color: rgb(220 252 231 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-100\/80:hover {
  --tw-shadow-color: rgb(220 252 231 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-100\/90:hover {
  --tw-shadow-color: rgb(220 252 231 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-200:hover {
  --tw-shadow-color: #bbf7d0;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-200\/10:hover {
  --tw-shadow-color: rgb(187 247 208 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-200\/20:hover {
  --tw-shadow-color: rgb(187 247 208 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-200\/30:hover {
  --tw-shadow-color: rgb(187 247 208 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-200\/40:hover {
  --tw-shadow-color: rgb(187 247 208 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-200\/5:hover {
  --tw-shadow-color: rgb(187 247 208 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-200\/50:hover {
  --tw-shadow-color: rgb(187 247 208 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-200\/60:hover {
  --tw-shadow-color: rgb(187 247 208 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-200\/70:hover {
  --tw-shadow-color: rgb(187 247 208 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-200\/80:hover {
  --tw-shadow-color: rgb(187 247 208 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-200\/90:hover {
  --tw-shadow-color: rgb(187 247 208 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-300:hover {
  --tw-shadow-color: #86efac;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-300\/10:hover {
  --tw-shadow-color: rgb(134 239 172 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-300\/20:hover {
  --tw-shadow-color: rgb(134 239 172 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-300\/30:hover {
  --tw-shadow-color: rgb(134 239 172 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-300\/40:hover {
  --tw-shadow-color: rgb(134 239 172 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-300\/5:hover {
  --tw-shadow-color: rgb(134 239 172 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-300\/50:hover {
  --tw-shadow-color: rgb(134 239 172 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-300\/60:hover {
  --tw-shadow-color: rgb(134 239 172 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-300\/70:hover {
  --tw-shadow-color: rgb(134 239 172 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-300\/80:hover {
  --tw-shadow-color: rgb(134 239 172 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-300\/90:hover {
  --tw-shadow-color: rgb(134 239 172 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-400:hover {
  --tw-shadow-color: #4ade80;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-400\/10:hover {
  --tw-shadow-color: rgb(74 222 128 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-400\/20:hover {
  --tw-shadow-color: rgb(74 222 128 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-400\/30:hover {
  --tw-shadow-color: rgb(74 222 128 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-400\/40:hover {
  --tw-shadow-color: rgb(74 222 128 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-400\/5:hover {
  --tw-shadow-color: rgb(74 222 128 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-400\/50:hover {
  --tw-shadow-color: rgb(74 222 128 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-400\/60:hover {
  --tw-shadow-color: rgb(74 222 128 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-400\/70:hover {
  --tw-shadow-color: rgb(74 222 128 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-400\/80:hover {
  --tw-shadow-color: rgb(74 222 128 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-400\/90:hover {
  --tw-shadow-color: rgb(74 222 128 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-50:hover {
  --tw-shadow-color: #f0fdf4;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-50\/10:hover {
  --tw-shadow-color: rgb(240 253 244 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-50\/20:hover {
  --tw-shadow-color: rgb(240 253 244 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-50\/30:hover {
  --tw-shadow-color: rgb(240 253 244 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-50\/40:hover {
  --tw-shadow-color: rgb(240 253 244 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-50\/5:hover {
  --tw-shadow-color: rgb(240 253 244 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-50\/50:hover {
  --tw-shadow-color: rgb(240 253 244 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-50\/60:hover {
  --tw-shadow-color: rgb(240 253 244 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-50\/70:hover {
  --tw-shadow-color: rgb(240 253 244 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-50\/80:hover {
  --tw-shadow-color: rgb(240 253 244 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-50\/90:hover {
  --tw-shadow-color: rgb(240 253 244 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-500:hover {
  --tw-shadow-color: #22c55e;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-500\/10:hover {
  --tw-shadow-color: rgb(34 197 94 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-500\/20:hover {
  --tw-shadow-color: rgb(34 197 94 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-500\/30:hover {
  --tw-shadow-color: rgb(34 197 94 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-500\/40:hover {
  --tw-shadow-color: rgb(34 197 94 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-500\/5:hover {
  --tw-shadow-color: rgb(34 197 94 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-500\/50:hover {
  --tw-shadow-color: rgb(34 197 94 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-500\/60:hover {
  --tw-shadow-color: rgb(34 197 94 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-500\/70:hover {
  --tw-shadow-color: rgb(34 197 94 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-500\/80:hover {
  --tw-shadow-color: rgb(34 197 94 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-500\/90:hover {
  --tw-shadow-color: rgb(34 197 94 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-600:hover {
  --tw-shadow-color: #16a34a;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-600\/10:hover {
  --tw-shadow-color: rgb(22 163 74 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-600\/20:hover {
  --tw-shadow-color: rgb(22 163 74 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-600\/30:hover {
  --tw-shadow-color: rgb(22 163 74 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-600\/40:hover {
  --tw-shadow-color: rgb(22 163 74 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-600\/5:hover {
  --tw-shadow-color: rgb(22 163 74 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-600\/50:hover {
  --tw-shadow-color: rgb(22 163 74 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-600\/60:hover {
  --tw-shadow-color: rgb(22 163 74 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-600\/70:hover {
  --tw-shadow-color: rgb(22 163 74 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-600\/80:hover {
  --tw-shadow-color: rgb(22 163 74 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-600\/90:hover {
  --tw-shadow-color: rgb(22 163 74 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-700:hover {
  --tw-shadow-color: #15803d;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-700\/10:hover {
  --tw-shadow-color: rgb(21 128 61 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-700\/20:hover {
  --tw-shadow-color: rgb(21 128 61 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-700\/30:hover {
  --tw-shadow-color: rgb(21 128 61 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-700\/40:hover {
  --tw-shadow-color: rgb(21 128 61 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-700\/5:hover {
  --tw-shadow-color: rgb(21 128 61 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-700\/50:hover {
  --tw-shadow-color: rgb(21 128 61 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-700\/60:hover {
  --tw-shadow-color: rgb(21 128 61 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-700\/70:hover {
  --tw-shadow-color: rgb(21 128 61 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-700\/80:hover {
  --tw-shadow-color: rgb(21 128 61 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-700\/90:hover {
  --tw-shadow-color: rgb(21 128 61 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-800:hover {
  --tw-shadow-color: #166534;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-800\/10:hover {
  --tw-shadow-color: rgb(22 101 52 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-800\/20:hover {
  --tw-shadow-color: rgb(22 101 52 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-800\/30:hover {
  --tw-shadow-color: rgb(22 101 52 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-800\/40:hover {
  --tw-shadow-color: rgb(22 101 52 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-800\/5:hover {
  --tw-shadow-color: rgb(22 101 52 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-800\/50:hover {
  --tw-shadow-color: rgb(22 101 52 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-800\/60:hover {
  --tw-shadow-color: rgb(22 101 52 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-800\/70:hover {
  --tw-shadow-color: rgb(22 101 52 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-800\/80:hover {
  --tw-shadow-color: rgb(22 101 52 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-800\/90:hover {
  --tw-shadow-color: rgb(22 101 52 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-900:hover {
  --tw-shadow-color: #14532d;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-900\/10:hover {
  --tw-shadow-color: rgb(20 83 45 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-900\/20:hover {
  --tw-shadow-color: rgb(20 83 45 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-900\/30:hover {
  --tw-shadow-color: rgb(20 83 45 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-900\/40:hover {
  --tw-shadow-color: rgb(20 83 45 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-900\/5:hover {
  --tw-shadow-color: rgb(20 83 45 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-900\/50:hover {
  --tw-shadow-color: rgb(20 83 45 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-900\/60:hover {
  --tw-shadow-color: rgb(20 83 45 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-900\/70:hover {
  --tw-shadow-color: rgb(20 83 45 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-900\/80:hover {
  --tw-shadow-color: rgb(20 83 45 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-900\/90:hover {
  --tw-shadow-color: rgb(20 83 45 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-950:hover {
  --tw-shadow-color: #052e16;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-950\/10:hover {
  --tw-shadow-color: rgb(5 46 22 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-950\/20:hover {
  --tw-shadow-color: rgb(5 46 22 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-950\/30:hover {
  --tw-shadow-color: rgb(5 46 22 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-950\/40:hover {
  --tw-shadow-color: rgb(5 46 22 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-950\/5:hover {
  --tw-shadow-color: rgb(5 46 22 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-950\/50:hover {
  --tw-shadow-color: rgb(5 46 22 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-950\/60:hover {
  --tw-shadow-color: rgb(5 46 22 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-950\/70:hover {
  --tw-shadow-color: rgb(5 46 22 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-950\/80:hover {
  --tw-shadow-color: rgb(5 46 22 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-green-950\/90:hover {
  --tw-shadow-color: rgb(5 46 22 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-100:hover {
  --tw-shadow-color: #e0e7ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-100\/10:hover {
  --tw-shadow-color: rgb(224 231 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-100\/20:hover {
  --tw-shadow-color: rgb(224 231 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-100\/30:hover {
  --tw-shadow-color: rgb(224 231 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-100\/40:hover {
  --tw-shadow-color: rgb(224 231 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-100\/5:hover {
  --tw-shadow-color: rgb(224 231 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-100\/50:hover {
  --tw-shadow-color: rgb(224 231 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-100\/60:hover {
  --tw-shadow-color: rgb(224 231 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-100\/70:hover {
  --tw-shadow-color: rgb(224 231 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-100\/80:hover {
  --tw-shadow-color: rgb(224 231 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-100\/90:hover {
  --tw-shadow-color: rgb(224 231 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-200:hover {
  --tw-shadow-color: #c7d2fe;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-200\/10:hover {
  --tw-shadow-color: rgb(199 210 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-200\/20:hover {
  --tw-shadow-color: rgb(199 210 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-200\/30:hover {
  --tw-shadow-color: rgb(199 210 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-200\/40:hover {
  --tw-shadow-color: rgb(199 210 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-200\/5:hover {
  --tw-shadow-color: rgb(199 210 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-200\/50:hover {
  --tw-shadow-color: rgb(199 210 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-200\/60:hover {
  --tw-shadow-color: rgb(199 210 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-200\/70:hover {
  --tw-shadow-color: rgb(199 210 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-200\/80:hover {
  --tw-shadow-color: rgb(199 210 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-200\/90:hover {
  --tw-shadow-color: rgb(199 210 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-300:hover {
  --tw-shadow-color: #a5b4fc;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-300\/10:hover {
  --tw-shadow-color: rgb(165 180 252 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-300\/20:hover {
  --tw-shadow-color: rgb(165 180 252 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-300\/30:hover {
  --tw-shadow-color: rgb(165 180 252 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-300\/40:hover {
  --tw-shadow-color: rgb(165 180 252 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-300\/5:hover {
  --tw-shadow-color: rgb(165 180 252 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-300\/50:hover {
  --tw-shadow-color: rgb(165 180 252 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-300\/60:hover {
  --tw-shadow-color: rgb(165 180 252 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-300\/70:hover {
  --tw-shadow-color: rgb(165 180 252 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-300\/80:hover {
  --tw-shadow-color: rgb(165 180 252 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-300\/90:hover {
  --tw-shadow-color: rgb(165 180 252 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-400:hover {
  --tw-shadow-color: #818cf8;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-400\/10:hover {
  --tw-shadow-color: rgb(129 140 248 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-400\/20:hover {
  --tw-shadow-color: rgb(129 140 248 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-400\/30:hover {
  --tw-shadow-color: rgb(129 140 248 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-400\/40:hover {
  --tw-shadow-color: rgb(129 140 248 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-400\/5:hover {
  --tw-shadow-color: rgb(129 140 248 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-400\/50:hover {
  --tw-shadow-color: rgb(129 140 248 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-400\/60:hover {
  --tw-shadow-color: rgb(129 140 248 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-400\/70:hover {
  --tw-shadow-color: rgb(129 140 248 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-400\/80:hover {
  --tw-shadow-color: rgb(129 140 248 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-400\/90:hover {
  --tw-shadow-color: rgb(129 140 248 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-50:hover {
  --tw-shadow-color: #eef2ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-50\/10:hover {
  --tw-shadow-color: rgb(238 242 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-50\/20:hover {
  --tw-shadow-color: rgb(238 242 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-50\/30:hover {
  --tw-shadow-color: rgb(238 242 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-50\/40:hover {
  --tw-shadow-color: rgb(238 242 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-50\/5:hover {
  --tw-shadow-color: rgb(238 242 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-50\/50:hover {
  --tw-shadow-color: rgb(238 242 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-50\/60:hover {
  --tw-shadow-color: rgb(238 242 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-50\/70:hover {
  --tw-shadow-color: rgb(238 242 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-50\/80:hover {
  --tw-shadow-color: rgb(238 242 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-50\/90:hover {
  --tw-shadow-color: rgb(238 242 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-500:hover {
  --tw-shadow-color: #6366f1;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-500\/10:hover {
  --tw-shadow-color: rgb(99 102 241 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-500\/20:hover {
  --tw-shadow-color: rgb(99 102 241 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-500\/30:hover {
  --tw-shadow-color: rgb(99 102 241 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-500\/40:hover {
  --tw-shadow-color: rgb(99 102 241 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-500\/5:hover {
  --tw-shadow-color: rgb(99 102 241 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-500\/50:hover {
  --tw-shadow-color: rgb(99 102 241 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-500\/60:hover {
  --tw-shadow-color: rgb(99 102 241 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-500\/70:hover {
  --tw-shadow-color: rgb(99 102 241 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-500\/80:hover {
  --tw-shadow-color: rgb(99 102 241 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-500\/90:hover {
  --tw-shadow-color: rgb(99 102 241 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-600:hover {
  --tw-shadow-color: #4f46e5;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-600\/10:hover {
  --tw-shadow-color: rgb(79 70 229 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-600\/20:hover {
  --tw-shadow-color: rgb(79 70 229 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-600\/30:hover {
  --tw-shadow-color: rgb(79 70 229 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-600\/40:hover {
  --tw-shadow-color: rgb(79 70 229 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-600\/5:hover {
  --tw-shadow-color: rgb(79 70 229 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-600\/50:hover {
  --tw-shadow-color: rgb(79 70 229 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-600\/60:hover {
  --tw-shadow-color: rgb(79 70 229 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-600\/70:hover {
  --tw-shadow-color: rgb(79 70 229 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-600\/80:hover {
  --tw-shadow-color: rgb(79 70 229 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-600\/90:hover {
  --tw-shadow-color: rgb(79 70 229 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-700:hover {
  --tw-shadow-color: #4338ca;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-700\/10:hover {
  --tw-shadow-color: rgb(67 56 202 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-700\/20:hover {
  --tw-shadow-color: rgb(67 56 202 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-700\/30:hover {
  --tw-shadow-color: rgb(67 56 202 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-700\/40:hover {
  --tw-shadow-color: rgb(67 56 202 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-700\/5:hover {
  --tw-shadow-color: rgb(67 56 202 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-700\/50:hover {
  --tw-shadow-color: rgb(67 56 202 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-700\/60:hover {
  --tw-shadow-color: rgb(67 56 202 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-700\/70:hover {
  --tw-shadow-color: rgb(67 56 202 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-700\/80:hover {
  --tw-shadow-color: rgb(67 56 202 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-700\/90:hover {
  --tw-shadow-color: rgb(67 56 202 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-800:hover {
  --tw-shadow-color: #3730a3;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-800\/10:hover {
  --tw-shadow-color: rgb(55 48 163 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-800\/20:hover {
  --tw-shadow-color: rgb(55 48 163 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-800\/30:hover {
  --tw-shadow-color: rgb(55 48 163 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-800\/40:hover {
  --tw-shadow-color: rgb(55 48 163 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-800\/5:hover {
  --tw-shadow-color: rgb(55 48 163 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-800\/50:hover {
  --tw-shadow-color: rgb(55 48 163 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-800\/60:hover {
  --tw-shadow-color: rgb(55 48 163 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-800\/70:hover {
  --tw-shadow-color: rgb(55 48 163 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-800\/80:hover {
  --tw-shadow-color: rgb(55 48 163 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-800\/90:hover {
  --tw-shadow-color: rgb(55 48 163 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-900:hover {
  --tw-shadow-color: #312e81;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-900\/10:hover {
  --tw-shadow-color: rgb(49 46 129 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-900\/20:hover {
  --tw-shadow-color: rgb(49 46 129 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-900\/30:hover {
  --tw-shadow-color: rgb(49 46 129 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-900\/40:hover {
  --tw-shadow-color: rgb(49 46 129 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-900\/5:hover {
  --tw-shadow-color: rgb(49 46 129 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-900\/50:hover {
  --tw-shadow-color: rgb(49 46 129 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-900\/60:hover {
  --tw-shadow-color: rgb(49 46 129 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-900\/70:hover {
  --tw-shadow-color: rgb(49 46 129 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-900\/80:hover {
  --tw-shadow-color: rgb(49 46 129 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-900\/90:hover {
  --tw-shadow-color: rgb(49 46 129 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-950:hover {
  --tw-shadow-color: #1e1b4b;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-950\/10:hover {
  --tw-shadow-color: rgb(30 27 75 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-950\/20:hover {
  --tw-shadow-color: rgb(30 27 75 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-950\/30:hover {
  --tw-shadow-color: rgb(30 27 75 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-950\/40:hover {
  --tw-shadow-color: rgb(30 27 75 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-950\/5:hover {
  --tw-shadow-color: rgb(30 27 75 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-950\/50:hover {
  --tw-shadow-color: rgb(30 27 75 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-950\/60:hover {
  --tw-shadow-color: rgb(30 27 75 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-950\/70:hover {
  --tw-shadow-color: rgb(30 27 75 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-950\/80:hover {
  --tw-shadow-color: rgb(30 27 75 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-950\/90:hover {
  --tw-shadow-color: rgb(30 27 75 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-100:hover {
  --tw-shadow-color: #ecfccb;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-100\/10:hover {
  --tw-shadow-color: rgb(236 252 203 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-100\/20:hover {
  --tw-shadow-color: rgb(236 252 203 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-100\/30:hover {
  --tw-shadow-color: rgb(236 252 203 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-100\/40:hover {
  --tw-shadow-color: rgb(236 252 203 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-100\/5:hover {
  --tw-shadow-color: rgb(236 252 203 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-100\/50:hover {
  --tw-shadow-color: rgb(236 252 203 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-100\/60:hover {
  --tw-shadow-color: rgb(236 252 203 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-100\/70:hover {
  --tw-shadow-color: rgb(236 252 203 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-100\/80:hover {
  --tw-shadow-color: rgb(236 252 203 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-100\/90:hover {
  --tw-shadow-color: rgb(236 252 203 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-200:hover {
  --tw-shadow-color: #d9f99d;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-200\/10:hover {
  --tw-shadow-color: rgb(217 249 157 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-200\/20:hover {
  --tw-shadow-color: rgb(217 249 157 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-200\/30:hover {
  --tw-shadow-color: rgb(217 249 157 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-200\/40:hover {
  --tw-shadow-color: rgb(217 249 157 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-200\/5:hover {
  --tw-shadow-color: rgb(217 249 157 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-200\/50:hover {
  --tw-shadow-color: rgb(217 249 157 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-200\/60:hover {
  --tw-shadow-color: rgb(217 249 157 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-200\/70:hover {
  --tw-shadow-color: rgb(217 249 157 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-200\/80:hover {
  --tw-shadow-color: rgb(217 249 157 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-200\/90:hover {
  --tw-shadow-color: rgb(217 249 157 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-300:hover {
  --tw-shadow-color: #bef264;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-300\/10:hover {
  --tw-shadow-color: rgb(190 242 100 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-300\/20:hover {
  --tw-shadow-color: rgb(190 242 100 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-300\/30:hover {
  --tw-shadow-color: rgb(190 242 100 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-300\/40:hover {
  --tw-shadow-color: rgb(190 242 100 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-300\/5:hover {
  --tw-shadow-color: rgb(190 242 100 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-300\/50:hover {
  --tw-shadow-color: rgb(190 242 100 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-300\/60:hover {
  --tw-shadow-color: rgb(190 242 100 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-300\/70:hover {
  --tw-shadow-color: rgb(190 242 100 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-300\/80:hover {
  --tw-shadow-color: rgb(190 242 100 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-300\/90:hover {
  --tw-shadow-color: rgb(190 242 100 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-400:hover {
  --tw-shadow-color: #a3e635;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-400\/10:hover {
  --tw-shadow-color: rgb(163 230 53 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-400\/20:hover {
  --tw-shadow-color: rgb(163 230 53 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-400\/30:hover {
  --tw-shadow-color: rgb(163 230 53 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-400\/40:hover {
  --tw-shadow-color: rgb(163 230 53 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-400\/5:hover {
  --tw-shadow-color: rgb(163 230 53 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-400\/50:hover {
  --tw-shadow-color: rgb(163 230 53 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-400\/60:hover {
  --tw-shadow-color: rgb(163 230 53 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-400\/70:hover {
  --tw-shadow-color: rgb(163 230 53 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-400\/80:hover {
  --tw-shadow-color: rgb(163 230 53 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-400\/90:hover {
  --tw-shadow-color: rgb(163 230 53 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-50:hover {
  --tw-shadow-color: #f7fee7;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-50\/10:hover {
  --tw-shadow-color: rgb(247 254 231 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-50\/20:hover {
  --tw-shadow-color: rgb(247 254 231 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-50\/30:hover {
  --tw-shadow-color: rgb(247 254 231 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-50\/40:hover {
  --tw-shadow-color: rgb(247 254 231 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-50\/5:hover {
  --tw-shadow-color: rgb(247 254 231 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-50\/50:hover {
  --tw-shadow-color: rgb(247 254 231 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-50\/60:hover {
  --tw-shadow-color: rgb(247 254 231 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-50\/70:hover {
  --tw-shadow-color: rgb(247 254 231 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-50\/80:hover {
  --tw-shadow-color: rgb(247 254 231 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-50\/90:hover {
  --tw-shadow-color: rgb(247 254 231 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-500:hover {
  --tw-shadow-color: #84cc16;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-500\/10:hover {
  --tw-shadow-color: rgb(132 204 22 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-500\/20:hover {
  --tw-shadow-color: rgb(132 204 22 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-500\/30:hover {
  --tw-shadow-color: rgb(132 204 22 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-500\/40:hover {
  --tw-shadow-color: rgb(132 204 22 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-500\/5:hover {
  --tw-shadow-color: rgb(132 204 22 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-500\/50:hover {
  --tw-shadow-color: rgb(132 204 22 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-500\/60:hover {
  --tw-shadow-color: rgb(132 204 22 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-500\/70:hover {
  --tw-shadow-color: rgb(132 204 22 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-500\/80:hover {
  --tw-shadow-color: rgb(132 204 22 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-500\/90:hover {
  --tw-shadow-color: rgb(132 204 22 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-600:hover {
  --tw-shadow-color: #65a30d;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-600\/10:hover {
  --tw-shadow-color: rgb(101 163 13 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-600\/20:hover {
  --tw-shadow-color: rgb(101 163 13 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-600\/30:hover {
  --tw-shadow-color: rgb(101 163 13 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-600\/40:hover {
  --tw-shadow-color: rgb(101 163 13 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-600\/5:hover {
  --tw-shadow-color: rgb(101 163 13 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-600\/50:hover {
  --tw-shadow-color: rgb(101 163 13 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-600\/60:hover {
  --tw-shadow-color: rgb(101 163 13 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-600\/70:hover {
  --tw-shadow-color: rgb(101 163 13 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-600\/80:hover {
  --tw-shadow-color: rgb(101 163 13 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-600\/90:hover {
  --tw-shadow-color: rgb(101 163 13 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-700:hover {
  --tw-shadow-color: #4d7c0f;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-700\/10:hover {
  --tw-shadow-color: rgb(77 124 15 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-700\/20:hover {
  --tw-shadow-color: rgb(77 124 15 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-700\/30:hover {
  --tw-shadow-color: rgb(77 124 15 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-700\/40:hover {
  --tw-shadow-color: rgb(77 124 15 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-700\/5:hover {
  --tw-shadow-color: rgb(77 124 15 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-700\/50:hover {
  --tw-shadow-color: rgb(77 124 15 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-700\/60:hover {
  --tw-shadow-color: rgb(77 124 15 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-700\/70:hover {
  --tw-shadow-color: rgb(77 124 15 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-700\/80:hover {
  --tw-shadow-color: rgb(77 124 15 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-700\/90:hover {
  --tw-shadow-color: rgb(77 124 15 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-800:hover {
  --tw-shadow-color: #3f6212;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-800\/10:hover {
  --tw-shadow-color: rgb(63 98 18 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-800\/20:hover {
  --tw-shadow-color: rgb(63 98 18 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-800\/30:hover {
  --tw-shadow-color: rgb(63 98 18 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-800\/40:hover {
  --tw-shadow-color: rgb(63 98 18 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-800\/5:hover {
  --tw-shadow-color: rgb(63 98 18 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-800\/50:hover {
  --tw-shadow-color: rgb(63 98 18 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-800\/60:hover {
  --tw-shadow-color: rgb(63 98 18 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-800\/70:hover {
  --tw-shadow-color: rgb(63 98 18 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-800\/80:hover {
  --tw-shadow-color: rgb(63 98 18 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-800\/90:hover {
  --tw-shadow-color: rgb(63 98 18 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-900:hover {
  --tw-shadow-color: #365314;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-900\/10:hover {
  --tw-shadow-color: rgb(54 83 20 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-900\/20:hover {
  --tw-shadow-color: rgb(54 83 20 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-900\/30:hover {
  --tw-shadow-color: rgb(54 83 20 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-900\/40:hover {
  --tw-shadow-color: rgb(54 83 20 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-900\/5:hover {
  --tw-shadow-color: rgb(54 83 20 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-900\/50:hover {
  --tw-shadow-color: rgb(54 83 20 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-900\/60:hover {
  --tw-shadow-color: rgb(54 83 20 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-900\/70:hover {
  --tw-shadow-color: rgb(54 83 20 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-900\/80:hover {
  --tw-shadow-color: rgb(54 83 20 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-900\/90:hover {
  --tw-shadow-color: rgb(54 83 20 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-950:hover {
  --tw-shadow-color: #1a2e05;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-950\/10:hover {
  --tw-shadow-color: rgb(26 46 5 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-950\/20:hover {
  --tw-shadow-color: rgb(26 46 5 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-950\/30:hover {
  --tw-shadow-color: rgb(26 46 5 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-950\/40:hover {
  --tw-shadow-color: rgb(26 46 5 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-950\/5:hover {
  --tw-shadow-color: rgb(26 46 5 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-950\/50:hover {
  --tw-shadow-color: rgb(26 46 5 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-950\/60:hover {
  --tw-shadow-color: rgb(26 46 5 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-950\/70:hover {
  --tw-shadow-color: rgb(26 46 5 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-950\/80:hover {
  --tw-shadow-color: rgb(26 46 5 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-lime-950\/90:hover {
  --tw-shadow-color: rgb(26 46 5 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-100:hover {
  --tw-shadow-color: #f5f5f5;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-100\/10:hover {
  --tw-shadow-color: rgb(245 245 245 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-100\/20:hover {
  --tw-shadow-color: rgb(245 245 245 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-100\/30:hover {
  --tw-shadow-color: rgb(245 245 245 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-100\/40:hover {
  --tw-shadow-color: rgb(245 245 245 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-100\/5:hover {
  --tw-shadow-color: rgb(245 245 245 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-100\/50:hover {
  --tw-shadow-color: rgb(245 245 245 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-100\/60:hover {
  --tw-shadow-color: rgb(245 245 245 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-100\/70:hover {
  --tw-shadow-color: rgb(245 245 245 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-100\/80:hover {
  --tw-shadow-color: rgb(245 245 245 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-100\/90:hover {
  --tw-shadow-color: rgb(245 245 245 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-200:hover {
  --tw-shadow-color: #e5e5e5;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-200\/10:hover {
  --tw-shadow-color: rgb(229 229 229 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-200\/20:hover {
  --tw-shadow-color: rgb(229 229 229 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-200\/30:hover {
  --tw-shadow-color: rgb(229 229 229 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-200\/40:hover {
  --tw-shadow-color: rgb(229 229 229 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-200\/5:hover {
  --tw-shadow-color: rgb(229 229 229 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-200\/50:hover {
  --tw-shadow-color: rgb(229 229 229 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-200\/60:hover {
  --tw-shadow-color: rgb(229 229 229 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-200\/70:hover {
  --tw-shadow-color: rgb(229 229 229 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-200\/80:hover {
  --tw-shadow-color: rgb(229 229 229 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-200\/90:hover {
  --tw-shadow-color: rgb(229 229 229 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-300:hover {
  --tw-shadow-color: #d4d4d4;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-300\/10:hover {
  --tw-shadow-color: rgb(212 212 212 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-300\/20:hover {
  --tw-shadow-color: rgb(212 212 212 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-300\/30:hover {
  --tw-shadow-color: rgb(212 212 212 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-300\/40:hover {
  --tw-shadow-color: rgb(212 212 212 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-300\/5:hover {
  --tw-shadow-color: rgb(212 212 212 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-300\/50:hover {
  --tw-shadow-color: rgb(212 212 212 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-300\/60:hover {
  --tw-shadow-color: rgb(212 212 212 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-300\/70:hover {
  --tw-shadow-color: rgb(212 212 212 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-300\/80:hover {
  --tw-shadow-color: rgb(212 212 212 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-300\/90:hover {
  --tw-shadow-color: rgb(212 212 212 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-400:hover {
  --tw-shadow-color: #a3a3a3;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-400\/10:hover {
  --tw-shadow-color: rgb(163 163 163 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-400\/20:hover {
  --tw-shadow-color: rgb(163 163 163 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-400\/30:hover {
  --tw-shadow-color: rgb(163 163 163 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-400\/40:hover {
  --tw-shadow-color: rgb(163 163 163 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-400\/5:hover {
  --tw-shadow-color: rgb(163 163 163 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-400\/50:hover {
  --tw-shadow-color: rgb(163 163 163 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-400\/60:hover {
  --tw-shadow-color: rgb(163 163 163 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-400\/70:hover {
  --tw-shadow-color: rgb(163 163 163 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-400\/80:hover {
  --tw-shadow-color: rgb(163 163 163 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-400\/90:hover {
  --tw-shadow-color: rgb(163 163 163 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-50:hover {
  --tw-shadow-color: #fafafa;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-50\/10:hover {
  --tw-shadow-color: rgb(250 250 250 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-50\/20:hover {
  --tw-shadow-color: rgb(250 250 250 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-50\/30:hover {
  --tw-shadow-color: rgb(250 250 250 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-50\/40:hover {
  --tw-shadow-color: rgb(250 250 250 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-50\/5:hover {
  --tw-shadow-color: rgb(250 250 250 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-50\/50:hover {
  --tw-shadow-color: rgb(250 250 250 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-50\/60:hover {
  --tw-shadow-color: rgb(250 250 250 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-50\/70:hover {
  --tw-shadow-color: rgb(250 250 250 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-50\/80:hover {
  --tw-shadow-color: rgb(250 250 250 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-50\/90:hover {
  --tw-shadow-color: rgb(250 250 250 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-500:hover {
  --tw-shadow-color: #737373;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-500\/10:hover {
  --tw-shadow-color: rgb(115 115 115 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-500\/20:hover {
  --tw-shadow-color: rgb(115 115 115 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-500\/30:hover {
  --tw-shadow-color: rgb(115 115 115 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-500\/40:hover {
  --tw-shadow-color: rgb(115 115 115 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-500\/5:hover {
  --tw-shadow-color: rgb(115 115 115 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-500\/50:hover {
  --tw-shadow-color: rgb(115 115 115 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-500\/60:hover {
  --tw-shadow-color: rgb(115 115 115 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-500\/70:hover {
  --tw-shadow-color: rgb(115 115 115 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-500\/80:hover {
  --tw-shadow-color: rgb(115 115 115 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-500\/90:hover {
  --tw-shadow-color: rgb(115 115 115 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-600:hover {
  --tw-shadow-color: #525252;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-600\/10:hover {
  --tw-shadow-color: rgb(82 82 82 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-600\/20:hover {
  --tw-shadow-color: rgb(82 82 82 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-600\/30:hover {
  --tw-shadow-color: rgb(82 82 82 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-600\/40:hover {
  --tw-shadow-color: rgb(82 82 82 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-600\/5:hover {
  --tw-shadow-color: rgb(82 82 82 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-600\/50:hover {
  --tw-shadow-color: rgb(82 82 82 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-600\/60:hover {
  --tw-shadow-color: rgb(82 82 82 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-600\/70:hover {
  --tw-shadow-color: rgb(82 82 82 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-600\/80:hover {
  --tw-shadow-color: rgb(82 82 82 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-600\/90:hover {
  --tw-shadow-color: rgb(82 82 82 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-700:hover {
  --tw-shadow-color: #404040;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-700\/10:hover {
  --tw-shadow-color: rgb(64 64 64 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-700\/20:hover {
  --tw-shadow-color: rgb(64 64 64 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-700\/30:hover {
  --tw-shadow-color: rgb(64 64 64 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-700\/40:hover {
  --tw-shadow-color: rgb(64 64 64 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-700\/5:hover {
  --tw-shadow-color: rgb(64 64 64 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-700\/50:hover {
  --tw-shadow-color: rgb(64 64 64 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-700\/60:hover {
  --tw-shadow-color: rgb(64 64 64 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-700\/70:hover {
  --tw-shadow-color: rgb(64 64 64 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-700\/80:hover {
  --tw-shadow-color: rgb(64 64 64 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-700\/90:hover {
  --tw-shadow-color: rgb(64 64 64 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-800:hover {
  --tw-shadow-color: #262626;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-800\/10:hover {
  --tw-shadow-color: rgb(38 38 38 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-800\/20:hover {
  --tw-shadow-color: rgb(38 38 38 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-800\/30:hover {
  --tw-shadow-color: rgb(38 38 38 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-800\/40:hover {
  --tw-shadow-color: rgb(38 38 38 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-800\/5:hover {
  --tw-shadow-color: rgb(38 38 38 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-800\/50:hover {
  --tw-shadow-color: rgb(38 38 38 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-800\/60:hover {
  --tw-shadow-color: rgb(38 38 38 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-800\/70:hover {
  --tw-shadow-color: rgb(38 38 38 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-800\/80:hover {
  --tw-shadow-color: rgb(38 38 38 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-800\/90:hover {
  --tw-shadow-color: rgb(38 38 38 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-900:hover {
  --tw-shadow-color: #171717;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-900\/10:hover {
  --tw-shadow-color: rgb(23 23 23 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-900\/20:hover {
  --tw-shadow-color: rgb(23 23 23 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-900\/30:hover {
  --tw-shadow-color: rgb(23 23 23 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-900\/40:hover {
  --tw-shadow-color: rgb(23 23 23 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-900\/5:hover {
  --tw-shadow-color: rgb(23 23 23 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-900\/50:hover {
  --tw-shadow-color: rgb(23 23 23 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-900\/60:hover {
  --tw-shadow-color: rgb(23 23 23 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-900\/70:hover {
  --tw-shadow-color: rgb(23 23 23 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-900\/80:hover {
  --tw-shadow-color: rgb(23 23 23 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-900\/90:hover {
  --tw-shadow-color: rgb(23 23 23 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-950:hover {
  --tw-shadow-color: #0a0a0a;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-950\/10:hover {
  --tw-shadow-color: rgb(10 10 10 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-950\/20:hover {
  --tw-shadow-color: rgb(10 10 10 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-950\/30:hover {
  --tw-shadow-color: rgb(10 10 10 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-950\/40:hover {
  --tw-shadow-color: rgb(10 10 10 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-950\/5:hover {
  --tw-shadow-color: rgb(10 10 10 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-950\/50:hover {
  --tw-shadow-color: rgb(10 10 10 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-950\/60:hover {
  --tw-shadow-color: rgb(10 10 10 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-950\/70:hover {
  --tw-shadow-color: rgb(10 10 10 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-950\/80:hover {
  --tw-shadow-color: rgb(10 10 10 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-neutral-950\/90:hover {
  --tw-shadow-color: rgb(10 10 10 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-100:hover {
  --tw-shadow-color: #ffedd5;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-100\/10:hover {
  --tw-shadow-color: rgb(255 237 213 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-100\/20:hover {
  --tw-shadow-color: rgb(255 237 213 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-100\/30:hover {
  --tw-shadow-color: rgb(255 237 213 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-100\/40:hover {
  --tw-shadow-color: rgb(255 237 213 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-100\/5:hover {
  --tw-shadow-color: rgb(255 237 213 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-100\/50:hover {
  --tw-shadow-color: rgb(255 237 213 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-100\/60:hover {
  --tw-shadow-color: rgb(255 237 213 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-100\/70:hover {
  --tw-shadow-color: rgb(255 237 213 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-100\/80:hover {
  --tw-shadow-color: rgb(255 237 213 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-100\/90:hover {
  --tw-shadow-color: rgb(255 237 213 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-200:hover {
  --tw-shadow-color: #fed7aa;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-200\/10:hover {
  --tw-shadow-color: rgb(254 215 170 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-200\/20:hover {
  --tw-shadow-color: rgb(254 215 170 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-200\/30:hover {
  --tw-shadow-color: rgb(254 215 170 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-200\/40:hover {
  --tw-shadow-color: rgb(254 215 170 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-200\/5:hover {
  --tw-shadow-color: rgb(254 215 170 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-200\/50:hover {
  --tw-shadow-color: rgb(254 215 170 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-200\/60:hover {
  --tw-shadow-color: rgb(254 215 170 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-200\/70:hover {
  --tw-shadow-color: rgb(254 215 170 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-200\/80:hover {
  --tw-shadow-color: rgb(254 215 170 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-200\/90:hover {
  --tw-shadow-color: rgb(254 215 170 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-300:hover {
  --tw-shadow-color: #fdba74;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-300\/10:hover {
  --tw-shadow-color: rgb(253 186 116 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-300\/20:hover {
  --tw-shadow-color: rgb(253 186 116 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-300\/30:hover {
  --tw-shadow-color: rgb(253 186 116 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-300\/40:hover {
  --tw-shadow-color: rgb(253 186 116 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-300\/5:hover {
  --tw-shadow-color: rgb(253 186 116 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-300\/50:hover {
  --tw-shadow-color: rgb(253 186 116 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-300\/60:hover {
  --tw-shadow-color: rgb(253 186 116 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-300\/70:hover {
  --tw-shadow-color: rgb(253 186 116 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-300\/80:hover {
  --tw-shadow-color: rgb(253 186 116 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-300\/90:hover {
  --tw-shadow-color: rgb(253 186 116 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-400:hover {
  --tw-shadow-color: #fb923c;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-400\/10:hover {
  --tw-shadow-color: rgb(251 146 60 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-400\/20:hover {
  --tw-shadow-color: rgb(251 146 60 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-400\/30:hover {
  --tw-shadow-color: rgb(251 146 60 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-400\/40:hover {
  --tw-shadow-color: rgb(251 146 60 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-400\/5:hover {
  --tw-shadow-color: rgb(251 146 60 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-400\/50:hover {
  --tw-shadow-color: rgb(251 146 60 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-400\/60:hover {
  --tw-shadow-color: rgb(251 146 60 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-400\/70:hover {
  --tw-shadow-color: rgb(251 146 60 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-400\/80:hover {
  --tw-shadow-color: rgb(251 146 60 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-400\/90:hover {
  --tw-shadow-color: rgb(251 146 60 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-50:hover {
  --tw-shadow-color: #fff7ed;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-50\/10:hover {
  --tw-shadow-color: rgb(255 247 237 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-50\/20:hover {
  --tw-shadow-color: rgb(255 247 237 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-50\/30:hover {
  --tw-shadow-color: rgb(255 247 237 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-50\/40:hover {
  --tw-shadow-color: rgb(255 247 237 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-50\/5:hover {
  --tw-shadow-color: rgb(255 247 237 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-50\/50:hover {
  --tw-shadow-color: rgb(255 247 237 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-50\/60:hover {
  --tw-shadow-color: rgb(255 247 237 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-50\/70:hover {
  --tw-shadow-color: rgb(255 247 237 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-50\/80:hover {
  --tw-shadow-color: rgb(255 247 237 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-50\/90:hover {
  --tw-shadow-color: rgb(255 247 237 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-500:hover {
  --tw-shadow-color: #f97316;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-500\/10:hover {
  --tw-shadow-color: rgb(249 115 22 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-500\/20:hover {
  --tw-shadow-color: rgb(249 115 22 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-500\/30:hover {
  --tw-shadow-color: rgb(249 115 22 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-500\/40:hover {
  --tw-shadow-color: rgb(249 115 22 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-500\/5:hover {
  --tw-shadow-color: rgb(249 115 22 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-500\/50:hover {
  --tw-shadow-color: rgb(249 115 22 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-500\/60:hover {
  --tw-shadow-color: rgb(249 115 22 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-500\/70:hover {
  --tw-shadow-color: rgb(249 115 22 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-500\/80:hover {
  --tw-shadow-color: rgb(249 115 22 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-500\/90:hover {
  --tw-shadow-color: rgb(249 115 22 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-600:hover {
  --tw-shadow-color: #ea580c;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-600\/10:hover {
  --tw-shadow-color: rgb(234 88 12 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-600\/20:hover {
  --tw-shadow-color: rgb(234 88 12 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-600\/30:hover {
  --tw-shadow-color: rgb(234 88 12 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-600\/40:hover {
  --tw-shadow-color: rgb(234 88 12 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-600\/5:hover {
  --tw-shadow-color: rgb(234 88 12 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-600\/50:hover {
  --tw-shadow-color: rgb(234 88 12 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-600\/60:hover {
  --tw-shadow-color: rgb(234 88 12 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-600\/70:hover {
  --tw-shadow-color: rgb(234 88 12 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-600\/80:hover {
  --tw-shadow-color: rgb(234 88 12 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-600\/90:hover {
  --tw-shadow-color: rgb(234 88 12 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-700:hover {
  --tw-shadow-color: #c2410c;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-700\/10:hover {
  --tw-shadow-color: rgb(194 65 12 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-700\/20:hover {
  --tw-shadow-color: rgb(194 65 12 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-700\/30:hover {
  --tw-shadow-color: rgb(194 65 12 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-700\/40:hover {
  --tw-shadow-color: rgb(194 65 12 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-700\/5:hover {
  --tw-shadow-color: rgb(194 65 12 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-700\/50:hover {
  --tw-shadow-color: rgb(194 65 12 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-700\/60:hover {
  --tw-shadow-color: rgb(194 65 12 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-700\/70:hover {
  --tw-shadow-color: rgb(194 65 12 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-700\/80:hover {
  --tw-shadow-color: rgb(194 65 12 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-700\/90:hover {
  --tw-shadow-color: rgb(194 65 12 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-800:hover {
  --tw-shadow-color: #9a3412;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-800\/10:hover {
  --tw-shadow-color: rgb(154 52 18 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-800\/20:hover {
  --tw-shadow-color: rgb(154 52 18 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-800\/30:hover {
  --tw-shadow-color: rgb(154 52 18 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-800\/40:hover {
  --tw-shadow-color: rgb(154 52 18 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-800\/5:hover {
  --tw-shadow-color: rgb(154 52 18 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-800\/50:hover {
  --tw-shadow-color: rgb(154 52 18 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-800\/60:hover {
  --tw-shadow-color: rgb(154 52 18 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-800\/70:hover {
  --tw-shadow-color: rgb(154 52 18 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-800\/80:hover {
  --tw-shadow-color: rgb(154 52 18 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-800\/90:hover {
  --tw-shadow-color: rgb(154 52 18 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-900:hover {
  --tw-shadow-color: #7c2d12;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-900\/10:hover {
  --tw-shadow-color: rgb(124 45 18 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-900\/20:hover {
  --tw-shadow-color: rgb(124 45 18 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-900\/30:hover {
  --tw-shadow-color: rgb(124 45 18 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-900\/40:hover {
  --tw-shadow-color: rgb(124 45 18 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-900\/5:hover {
  --tw-shadow-color: rgb(124 45 18 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-900\/50:hover {
  --tw-shadow-color: rgb(124 45 18 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-900\/60:hover {
  --tw-shadow-color: rgb(124 45 18 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-900\/70:hover {
  --tw-shadow-color: rgb(124 45 18 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-900\/80:hover {
  --tw-shadow-color: rgb(124 45 18 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-900\/90:hover {
  --tw-shadow-color: rgb(124 45 18 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-950:hover {
  --tw-shadow-color: #431407;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-950\/10:hover {
  --tw-shadow-color: rgb(67 20 7 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-950\/20:hover {
  --tw-shadow-color: rgb(67 20 7 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-950\/30:hover {
  --tw-shadow-color: rgb(67 20 7 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-950\/40:hover {
  --tw-shadow-color: rgb(67 20 7 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-950\/5:hover {
  --tw-shadow-color: rgb(67 20 7 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-950\/50:hover {
  --tw-shadow-color: rgb(67 20 7 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-950\/60:hover {
  --tw-shadow-color: rgb(67 20 7 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-950\/70:hover {
  --tw-shadow-color: rgb(67 20 7 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-950\/80:hover {
  --tw-shadow-color: rgb(67 20 7 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-orange-950\/90:hover {
  --tw-shadow-color: rgb(67 20 7 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-100:hover {
  --tw-shadow-color: #fce7f3;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-100\/10:hover {
  --tw-shadow-color: rgb(252 231 243 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-100\/20:hover {
  --tw-shadow-color: rgb(252 231 243 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-100\/30:hover {
  --tw-shadow-color: rgb(252 231 243 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-100\/40:hover {
  --tw-shadow-color: rgb(252 231 243 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-100\/5:hover {
  --tw-shadow-color: rgb(252 231 243 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-100\/50:hover {
  --tw-shadow-color: rgb(252 231 243 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-100\/60:hover {
  --tw-shadow-color: rgb(252 231 243 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-100\/70:hover {
  --tw-shadow-color: rgb(252 231 243 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-100\/80:hover {
  --tw-shadow-color: rgb(252 231 243 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-100\/90:hover {
  --tw-shadow-color: rgb(252 231 243 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-200:hover {
  --tw-shadow-color: #fbcfe8;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-200\/10:hover {
  --tw-shadow-color: rgb(251 207 232 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-200\/20:hover {
  --tw-shadow-color: rgb(251 207 232 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-200\/30:hover {
  --tw-shadow-color: rgb(251 207 232 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-200\/40:hover {
  --tw-shadow-color: rgb(251 207 232 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-200\/5:hover {
  --tw-shadow-color: rgb(251 207 232 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-200\/50:hover {
  --tw-shadow-color: rgb(251 207 232 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-200\/60:hover {
  --tw-shadow-color: rgb(251 207 232 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-200\/70:hover {
  --tw-shadow-color: rgb(251 207 232 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-200\/80:hover {
  --tw-shadow-color: rgb(251 207 232 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-200\/90:hover {
  --tw-shadow-color: rgb(251 207 232 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-300:hover {
  --tw-shadow-color: #f9a8d4;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-300\/10:hover {
  --tw-shadow-color: rgb(249 168 212 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-300\/20:hover {
  --tw-shadow-color: rgb(249 168 212 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-300\/30:hover {
  --tw-shadow-color: rgb(249 168 212 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-300\/40:hover {
  --tw-shadow-color: rgb(249 168 212 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-300\/5:hover {
  --tw-shadow-color: rgb(249 168 212 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-300\/50:hover {
  --tw-shadow-color: rgb(249 168 212 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-300\/60:hover {
  --tw-shadow-color: rgb(249 168 212 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-300\/70:hover {
  --tw-shadow-color: rgb(249 168 212 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-300\/80:hover {
  --tw-shadow-color: rgb(249 168 212 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-300\/90:hover {
  --tw-shadow-color: rgb(249 168 212 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-400:hover {
  --tw-shadow-color: #f472b6;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-400\/10:hover {
  --tw-shadow-color: rgb(244 114 182 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-400\/20:hover {
  --tw-shadow-color: rgb(244 114 182 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-400\/30:hover {
  --tw-shadow-color: rgb(244 114 182 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-400\/40:hover {
  --tw-shadow-color: rgb(244 114 182 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-400\/5:hover {
  --tw-shadow-color: rgb(244 114 182 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-400\/50:hover {
  --tw-shadow-color: rgb(244 114 182 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-400\/60:hover {
  --tw-shadow-color: rgb(244 114 182 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-400\/70:hover {
  --tw-shadow-color: rgb(244 114 182 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-400\/80:hover {
  --tw-shadow-color: rgb(244 114 182 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-400\/90:hover {
  --tw-shadow-color: rgb(244 114 182 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-50:hover {
  --tw-shadow-color: #fdf2f8;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-50\/10:hover {
  --tw-shadow-color: rgb(253 242 248 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-50\/20:hover {
  --tw-shadow-color: rgb(253 242 248 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-50\/30:hover {
  --tw-shadow-color: rgb(253 242 248 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-50\/40:hover {
  --tw-shadow-color: rgb(253 242 248 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-50\/5:hover {
  --tw-shadow-color: rgb(253 242 248 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-50\/50:hover {
  --tw-shadow-color: rgb(253 242 248 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-50\/60:hover {
  --tw-shadow-color: rgb(253 242 248 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-50\/70:hover {
  --tw-shadow-color: rgb(253 242 248 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-50\/80:hover {
  --tw-shadow-color: rgb(253 242 248 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-50\/90:hover {
  --tw-shadow-color: rgb(253 242 248 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-500:hover {
  --tw-shadow-color: #ec4899;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-500\/10:hover {
  --tw-shadow-color: rgb(236 72 153 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-500\/20:hover {
  --tw-shadow-color: rgb(236 72 153 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-500\/30:hover {
  --tw-shadow-color: rgb(236 72 153 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-500\/40:hover {
  --tw-shadow-color: rgb(236 72 153 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-500\/5:hover {
  --tw-shadow-color: rgb(236 72 153 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-500\/50:hover {
  --tw-shadow-color: rgb(236 72 153 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-500\/60:hover {
  --tw-shadow-color: rgb(236 72 153 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-500\/70:hover {
  --tw-shadow-color: rgb(236 72 153 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-500\/80:hover {
  --tw-shadow-color: rgb(236 72 153 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-500\/90:hover {
  --tw-shadow-color: rgb(236 72 153 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-600:hover {
  --tw-shadow-color: #db2777;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-600\/10:hover {
  --tw-shadow-color: rgb(219 39 119 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-600\/20:hover {
  --tw-shadow-color: rgb(219 39 119 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-600\/30:hover {
  --tw-shadow-color: rgb(219 39 119 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-600\/40:hover {
  --tw-shadow-color: rgb(219 39 119 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-600\/5:hover {
  --tw-shadow-color: rgb(219 39 119 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-600\/50:hover {
  --tw-shadow-color: rgb(219 39 119 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-600\/60:hover {
  --tw-shadow-color: rgb(219 39 119 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-600\/70:hover {
  --tw-shadow-color: rgb(219 39 119 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-600\/80:hover {
  --tw-shadow-color: rgb(219 39 119 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-600\/90:hover {
  --tw-shadow-color: rgb(219 39 119 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-700:hover {
  --tw-shadow-color: #be185d;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-700\/10:hover {
  --tw-shadow-color: rgb(190 24 93 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-700\/20:hover {
  --tw-shadow-color: rgb(190 24 93 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-700\/30:hover {
  --tw-shadow-color: rgb(190 24 93 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-700\/40:hover {
  --tw-shadow-color: rgb(190 24 93 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-700\/5:hover {
  --tw-shadow-color: rgb(190 24 93 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-700\/50:hover {
  --tw-shadow-color: rgb(190 24 93 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-700\/60:hover {
  --tw-shadow-color: rgb(190 24 93 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-700\/70:hover {
  --tw-shadow-color: rgb(190 24 93 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-700\/80:hover {
  --tw-shadow-color: rgb(190 24 93 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-700\/90:hover {
  --tw-shadow-color: rgb(190 24 93 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-800:hover {
  --tw-shadow-color: #9d174d;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-800\/10:hover {
  --tw-shadow-color: rgb(157 23 77 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-800\/20:hover {
  --tw-shadow-color: rgb(157 23 77 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-800\/30:hover {
  --tw-shadow-color: rgb(157 23 77 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-800\/40:hover {
  --tw-shadow-color: rgb(157 23 77 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-800\/5:hover {
  --tw-shadow-color: rgb(157 23 77 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-800\/50:hover {
  --tw-shadow-color: rgb(157 23 77 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-800\/60:hover {
  --tw-shadow-color: rgb(157 23 77 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-800\/70:hover {
  --tw-shadow-color: rgb(157 23 77 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-800\/80:hover {
  --tw-shadow-color: rgb(157 23 77 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-800\/90:hover {
  --tw-shadow-color: rgb(157 23 77 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-900:hover {
  --tw-shadow-color: #831843;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-900\/10:hover {
  --tw-shadow-color: rgb(131 24 67 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-900\/20:hover {
  --tw-shadow-color: rgb(131 24 67 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-900\/30:hover {
  --tw-shadow-color: rgb(131 24 67 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-900\/40:hover {
  --tw-shadow-color: rgb(131 24 67 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-900\/5:hover {
  --tw-shadow-color: rgb(131 24 67 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-900\/50:hover {
  --tw-shadow-color: rgb(131 24 67 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-900\/60:hover {
  --tw-shadow-color: rgb(131 24 67 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-900\/70:hover {
  --tw-shadow-color: rgb(131 24 67 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-900\/80:hover {
  --tw-shadow-color: rgb(131 24 67 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-900\/90:hover {
  --tw-shadow-color: rgb(131 24 67 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-950:hover {
  --tw-shadow-color: #500724;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-950\/10:hover {
  --tw-shadow-color: rgb(80 7 36 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-950\/20:hover {
  --tw-shadow-color: rgb(80 7 36 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-950\/30:hover {
  --tw-shadow-color: rgb(80 7 36 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-950\/40:hover {
  --tw-shadow-color: rgb(80 7 36 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-950\/5:hover {
  --tw-shadow-color: rgb(80 7 36 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-950\/50:hover {
  --tw-shadow-color: rgb(80 7 36 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-950\/60:hover {
  --tw-shadow-color: rgb(80 7 36 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-950\/70:hover {
  --tw-shadow-color: rgb(80 7 36 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-950\/80:hover {
  --tw-shadow-color: rgb(80 7 36 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-pink-950\/90:hover {
  --tw-shadow-color: rgb(80 7 36 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-100:hover {
  --tw-shadow-color: #f3e8ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-100\/10:hover {
  --tw-shadow-color: rgb(243 232 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-100\/20:hover {
  --tw-shadow-color: rgb(243 232 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-100\/30:hover {
  --tw-shadow-color: rgb(243 232 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-100\/40:hover {
  --tw-shadow-color: rgb(243 232 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-100\/5:hover {
  --tw-shadow-color: rgb(243 232 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-100\/50:hover {
  --tw-shadow-color: rgb(243 232 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-100\/60:hover {
  --tw-shadow-color: rgb(243 232 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-100\/70:hover {
  --tw-shadow-color: rgb(243 232 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-100\/80:hover {
  --tw-shadow-color: rgb(243 232 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-100\/90:hover {
  --tw-shadow-color: rgb(243 232 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-200:hover {
  --tw-shadow-color: #e9d5ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-200\/10:hover {
  --tw-shadow-color: rgb(233 213 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-200\/20:hover {
  --tw-shadow-color: rgb(233 213 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-200\/30:hover {
  --tw-shadow-color: rgb(233 213 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-200\/40:hover {
  --tw-shadow-color: rgb(233 213 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-200\/5:hover {
  --tw-shadow-color: rgb(233 213 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-200\/50:hover {
  --tw-shadow-color: rgb(233 213 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-200\/60:hover {
  --tw-shadow-color: rgb(233 213 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-200\/70:hover {
  --tw-shadow-color: rgb(233 213 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-200\/80:hover {
  --tw-shadow-color: rgb(233 213 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-200\/90:hover {
  --tw-shadow-color: rgb(233 213 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-300:hover {
  --tw-shadow-color: #d8b4fe;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-300\/10:hover {
  --tw-shadow-color: rgb(216 180 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-300\/20:hover {
  --tw-shadow-color: rgb(216 180 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-300\/30:hover {
  --tw-shadow-color: rgb(216 180 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-300\/40:hover {
  --tw-shadow-color: rgb(216 180 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-300\/5:hover {
  --tw-shadow-color: rgb(216 180 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-300\/50:hover {
  --tw-shadow-color: rgb(216 180 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-300\/60:hover {
  --tw-shadow-color: rgb(216 180 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-300\/70:hover {
  --tw-shadow-color: rgb(216 180 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-300\/80:hover {
  --tw-shadow-color: rgb(216 180 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-300\/90:hover {
  --tw-shadow-color: rgb(216 180 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-400:hover {
  --tw-shadow-color: #c084fc;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-400\/10:hover {
  --tw-shadow-color: rgb(192 132 252 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-400\/20:hover {
  --tw-shadow-color: rgb(192 132 252 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-400\/30:hover {
  --tw-shadow-color: rgb(192 132 252 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-400\/40:hover {
  --tw-shadow-color: rgb(192 132 252 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-400\/5:hover {
  --tw-shadow-color: rgb(192 132 252 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-400\/50:hover {
  --tw-shadow-color: rgb(192 132 252 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-400\/60:hover {
  --tw-shadow-color: rgb(192 132 252 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-400\/70:hover {
  --tw-shadow-color: rgb(192 132 252 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-400\/80:hover {
  --tw-shadow-color: rgb(192 132 252 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-400\/90:hover {
  --tw-shadow-color: rgb(192 132 252 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-50:hover {
  --tw-shadow-color: #faf5ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-50\/10:hover {
  --tw-shadow-color: rgb(250 245 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-50\/20:hover {
  --tw-shadow-color: rgb(250 245 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-50\/30:hover {
  --tw-shadow-color: rgb(250 245 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-50\/40:hover {
  --tw-shadow-color: rgb(250 245 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-50\/5:hover {
  --tw-shadow-color: rgb(250 245 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-50\/50:hover {
  --tw-shadow-color: rgb(250 245 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-50\/60:hover {
  --tw-shadow-color: rgb(250 245 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-50\/70:hover {
  --tw-shadow-color: rgb(250 245 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-50\/80:hover {
  --tw-shadow-color: rgb(250 245 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-50\/90:hover {
  --tw-shadow-color: rgb(250 245 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-500:hover {
  --tw-shadow-color: #a855f7;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-500\/10:hover {
  --tw-shadow-color: rgb(168 85 247 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-500\/20:hover {
  --tw-shadow-color: rgb(168 85 247 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-500\/30:hover {
  --tw-shadow-color: rgb(168 85 247 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-500\/40:hover {
  --tw-shadow-color: rgb(168 85 247 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-500\/5:hover {
  --tw-shadow-color: rgb(168 85 247 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-500\/50:hover {
  --tw-shadow-color: rgb(168 85 247 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-500\/60:hover {
  --tw-shadow-color: rgb(168 85 247 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-500\/70:hover {
  --tw-shadow-color: rgb(168 85 247 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-500\/80:hover {
  --tw-shadow-color: rgb(168 85 247 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-500\/90:hover {
  --tw-shadow-color: rgb(168 85 247 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-600:hover {
  --tw-shadow-color: #9333ea;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-600\/10:hover {
  --tw-shadow-color: rgb(147 51 234 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-600\/20:hover {
  --tw-shadow-color: rgb(147 51 234 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-600\/30:hover {
  --tw-shadow-color: rgb(147 51 234 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-600\/40:hover {
  --tw-shadow-color: rgb(147 51 234 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-600\/5:hover {
  --tw-shadow-color: rgb(147 51 234 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-600\/50:hover {
  --tw-shadow-color: rgb(147 51 234 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-600\/60:hover {
  --tw-shadow-color: rgb(147 51 234 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-600\/70:hover {
  --tw-shadow-color: rgb(147 51 234 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-600\/80:hover {
  --tw-shadow-color: rgb(147 51 234 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-600\/90:hover {
  --tw-shadow-color: rgb(147 51 234 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-700:hover {
  --tw-shadow-color: #7e22ce;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-700\/10:hover {
  --tw-shadow-color: rgb(126 34 206 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-700\/20:hover {
  --tw-shadow-color: rgb(126 34 206 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-700\/30:hover {
  --tw-shadow-color: rgb(126 34 206 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-700\/40:hover {
  --tw-shadow-color: rgb(126 34 206 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-700\/5:hover {
  --tw-shadow-color: rgb(126 34 206 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-700\/50:hover {
  --tw-shadow-color: rgb(126 34 206 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-700\/60:hover {
  --tw-shadow-color: rgb(126 34 206 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-700\/70:hover {
  --tw-shadow-color: rgb(126 34 206 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-700\/80:hover {
  --tw-shadow-color: rgb(126 34 206 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-700\/90:hover {
  --tw-shadow-color: rgb(126 34 206 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-800:hover {
  --tw-shadow-color: #6b21a8;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-800\/10:hover {
  --tw-shadow-color: rgb(107 33 168 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-800\/20:hover {
  --tw-shadow-color: rgb(107 33 168 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-800\/30:hover {
  --tw-shadow-color: rgb(107 33 168 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-800\/40:hover {
  --tw-shadow-color: rgb(107 33 168 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-800\/5:hover {
  --tw-shadow-color: rgb(107 33 168 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-800\/50:hover {
  --tw-shadow-color: rgb(107 33 168 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-800\/60:hover {
  --tw-shadow-color: rgb(107 33 168 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-800\/70:hover {
  --tw-shadow-color: rgb(107 33 168 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-800\/80:hover {
  --tw-shadow-color: rgb(107 33 168 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-800\/90:hover {
  --tw-shadow-color: rgb(107 33 168 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-900:hover {
  --tw-shadow-color: #581c87;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-900\/10:hover {
  --tw-shadow-color: rgb(88 28 135 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-900\/20:hover {
  --tw-shadow-color: rgb(88 28 135 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-900\/30:hover {
  --tw-shadow-color: rgb(88 28 135 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-900\/40:hover {
  --tw-shadow-color: rgb(88 28 135 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-900\/5:hover {
  --tw-shadow-color: rgb(88 28 135 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-900\/50:hover {
  --tw-shadow-color: rgb(88 28 135 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-900\/60:hover {
  --tw-shadow-color: rgb(88 28 135 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-900\/70:hover {
  --tw-shadow-color: rgb(88 28 135 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-900\/80:hover {
  --tw-shadow-color: rgb(88 28 135 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-900\/90:hover {
  --tw-shadow-color: rgb(88 28 135 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-950:hover {
  --tw-shadow-color: #3b0764;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-950\/10:hover {
  --tw-shadow-color: rgb(59 7 100 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-950\/20:hover {
  --tw-shadow-color: rgb(59 7 100 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-950\/30:hover {
  --tw-shadow-color: rgb(59 7 100 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-950\/40:hover {
  --tw-shadow-color: rgb(59 7 100 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-950\/5:hover {
  --tw-shadow-color: rgb(59 7 100 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-950\/50:hover {
  --tw-shadow-color: rgb(59 7 100 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-950\/60:hover {
  --tw-shadow-color: rgb(59 7 100 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-950\/70:hover {
  --tw-shadow-color: rgb(59 7 100 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-950\/80:hover {
  --tw-shadow-color: rgb(59 7 100 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-purple-950\/90:hover {
  --tw-shadow-color: rgb(59 7 100 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-100:hover {
  --tw-shadow-color: #fee2e2;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-100\/10:hover {
  --tw-shadow-color: rgb(254 226 226 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-100\/20:hover {
  --tw-shadow-color: rgb(254 226 226 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-100\/30:hover {
  --tw-shadow-color: rgb(254 226 226 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-100\/40:hover {
  --tw-shadow-color: rgb(254 226 226 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-100\/5:hover {
  --tw-shadow-color: rgb(254 226 226 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-100\/50:hover {
  --tw-shadow-color: rgb(254 226 226 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-100\/60:hover {
  --tw-shadow-color: rgb(254 226 226 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-100\/70:hover {
  --tw-shadow-color: rgb(254 226 226 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-100\/80:hover {
  --tw-shadow-color: rgb(254 226 226 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-100\/90:hover {
  --tw-shadow-color: rgb(254 226 226 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-200:hover {
  --tw-shadow-color: #fecaca;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-200\/10:hover {
  --tw-shadow-color: rgb(254 202 202 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-200\/20:hover {
  --tw-shadow-color: rgb(254 202 202 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-200\/30:hover {
  --tw-shadow-color: rgb(254 202 202 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-200\/40:hover {
  --tw-shadow-color: rgb(254 202 202 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-200\/5:hover {
  --tw-shadow-color: rgb(254 202 202 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-200\/50:hover {
  --tw-shadow-color: rgb(254 202 202 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-200\/60:hover {
  --tw-shadow-color: rgb(254 202 202 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-200\/70:hover {
  --tw-shadow-color: rgb(254 202 202 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-200\/80:hover {
  --tw-shadow-color: rgb(254 202 202 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-200\/90:hover {
  --tw-shadow-color: rgb(254 202 202 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-300:hover {
  --tw-shadow-color: #fca5a5;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-300\/10:hover {
  --tw-shadow-color: rgb(252 165 165 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-300\/20:hover {
  --tw-shadow-color: rgb(252 165 165 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-300\/30:hover {
  --tw-shadow-color: rgb(252 165 165 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-300\/40:hover {
  --tw-shadow-color: rgb(252 165 165 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-300\/5:hover {
  --tw-shadow-color: rgb(252 165 165 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-300\/50:hover {
  --tw-shadow-color: rgb(252 165 165 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-300\/60:hover {
  --tw-shadow-color: rgb(252 165 165 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-300\/70:hover {
  --tw-shadow-color: rgb(252 165 165 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-300\/80:hover {
  --tw-shadow-color: rgb(252 165 165 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-300\/90:hover {
  --tw-shadow-color: rgb(252 165 165 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-400:hover {
  --tw-shadow-color: #f87171;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-400\/10:hover {
  --tw-shadow-color: rgb(248 113 113 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-400\/20:hover {
  --tw-shadow-color: rgb(248 113 113 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-400\/30:hover {
  --tw-shadow-color: rgb(248 113 113 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-400\/40:hover {
  --tw-shadow-color: rgb(248 113 113 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-400\/5:hover {
  --tw-shadow-color: rgb(248 113 113 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-400\/50:hover {
  --tw-shadow-color: rgb(248 113 113 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-400\/60:hover {
  --tw-shadow-color: rgb(248 113 113 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-400\/70:hover {
  --tw-shadow-color: rgb(248 113 113 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-400\/80:hover {
  --tw-shadow-color: rgb(248 113 113 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-400\/90:hover {
  --tw-shadow-color: rgb(248 113 113 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-50:hover {
  --tw-shadow-color: #fef2f2;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-50\/10:hover {
  --tw-shadow-color: rgb(254 242 242 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-50\/20:hover {
  --tw-shadow-color: rgb(254 242 242 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-50\/30:hover {
  --tw-shadow-color: rgb(254 242 242 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-50\/40:hover {
  --tw-shadow-color: rgb(254 242 242 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-50\/5:hover {
  --tw-shadow-color: rgb(254 242 242 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-50\/50:hover {
  --tw-shadow-color: rgb(254 242 242 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-50\/60:hover {
  --tw-shadow-color: rgb(254 242 242 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-50\/70:hover {
  --tw-shadow-color: rgb(254 242 242 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-50\/80:hover {
  --tw-shadow-color: rgb(254 242 242 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-50\/90:hover {
  --tw-shadow-color: rgb(254 242 242 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-500:hover {
  --tw-shadow-color: #ef4444;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-500\/10:hover {
  --tw-shadow-color: rgb(239 68 68 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-500\/20:hover {
  --tw-shadow-color: rgb(239 68 68 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-500\/30:hover {
  --tw-shadow-color: rgb(239 68 68 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-500\/40:hover {
  --tw-shadow-color: rgb(239 68 68 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-500\/5:hover {
  --tw-shadow-color: rgb(239 68 68 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-500\/50:hover {
  --tw-shadow-color: rgb(239 68 68 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-500\/60:hover {
  --tw-shadow-color: rgb(239 68 68 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-500\/70:hover {
  --tw-shadow-color: rgb(239 68 68 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-500\/80:hover {
  --tw-shadow-color: rgb(239 68 68 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-500\/90:hover {
  --tw-shadow-color: rgb(239 68 68 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-600:hover {
  --tw-shadow-color: #dc2626;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-600\/10:hover {
  --tw-shadow-color: rgb(220 38 38 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-600\/20:hover {
  --tw-shadow-color: rgb(220 38 38 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-600\/30:hover {
  --tw-shadow-color: rgb(220 38 38 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-600\/40:hover {
  --tw-shadow-color: rgb(220 38 38 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-600\/5:hover {
  --tw-shadow-color: rgb(220 38 38 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-600\/50:hover {
  --tw-shadow-color: rgb(220 38 38 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-600\/60:hover {
  --tw-shadow-color: rgb(220 38 38 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-600\/70:hover {
  --tw-shadow-color: rgb(220 38 38 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-600\/80:hover {
  --tw-shadow-color: rgb(220 38 38 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-600\/90:hover {
  --tw-shadow-color: rgb(220 38 38 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-700:hover {
  --tw-shadow-color: #b91c1c;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-700\/10:hover {
  --tw-shadow-color: rgb(185 28 28 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-700\/20:hover {
  --tw-shadow-color: rgb(185 28 28 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-700\/30:hover {
  --tw-shadow-color: rgb(185 28 28 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-700\/40:hover {
  --tw-shadow-color: rgb(185 28 28 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-700\/5:hover {
  --tw-shadow-color: rgb(185 28 28 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-700\/50:hover {
  --tw-shadow-color: rgb(185 28 28 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-700\/60:hover {
  --tw-shadow-color: rgb(185 28 28 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-700\/70:hover {
  --tw-shadow-color: rgb(185 28 28 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-700\/80:hover {
  --tw-shadow-color: rgb(185 28 28 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-700\/90:hover {
  --tw-shadow-color: rgb(185 28 28 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-800:hover {
  --tw-shadow-color: #991b1b;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-800\/10:hover {
  --tw-shadow-color: rgb(153 27 27 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-800\/20:hover {
  --tw-shadow-color: rgb(153 27 27 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-800\/30:hover {
  --tw-shadow-color: rgb(153 27 27 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-800\/40:hover {
  --tw-shadow-color: rgb(153 27 27 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-800\/5:hover {
  --tw-shadow-color: rgb(153 27 27 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-800\/50:hover {
  --tw-shadow-color: rgb(153 27 27 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-800\/60:hover {
  --tw-shadow-color: rgb(153 27 27 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-800\/70:hover {
  --tw-shadow-color: rgb(153 27 27 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-800\/80:hover {
  --tw-shadow-color: rgb(153 27 27 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-800\/90:hover {
  --tw-shadow-color: rgb(153 27 27 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-900:hover {
  --tw-shadow-color: #7f1d1d;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-900\/10:hover {
  --tw-shadow-color: rgb(127 29 29 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-900\/20:hover {
  --tw-shadow-color: rgb(127 29 29 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-900\/30:hover {
  --tw-shadow-color: rgb(127 29 29 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-900\/40:hover {
  --tw-shadow-color: rgb(127 29 29 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-900\/5:hover {
  --tw-shadow-color: rgb(127 29 29 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-900\/50:hover {
  --tw-shadow-color: rgb(127 29 29 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-900\/60:hover {
  --tw-shadow-color: rgb(127 29 29 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-900\/70:hover {
  --tw-shadow-color: rgb(127 29 29 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-900\/80:hover {
  --tw-shadow-color: rgb(127 29 29 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-900\/90:hover {
  --tw-shadow-color: rgb(127 29 29 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-950:hover {
  --tw-shadow-color: #450a0a;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-950\/10:hover {
  --tw-shadow-color: rgb(69 10 10 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-950\/20:hover {
  --tw-shadow-color: rgb(69 10 10 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-950\/30:hover {
  --tw-shadow-color: rgb(69 10 10 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-950\/40:hover {
  --tw-shadow-color: rgb(69 10 10 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-950\/5:hover {
  --tw-shadow-color: rgb(69 10 10 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-950\/50:hover {
  --tw-shadow-color: rgb(69 10 10 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-950\/60:hover {
  --tw-shadow-color: rgb(69 10 10 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-950\/70:hover {
  --tw-shadow-color: rgb(69 10 10 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-950\/80:hover {
  --tw-shadow-color: rgb(69 10 10 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-red-950\/90:hover {
  --tw-shadow-color: rgb(69 10 10 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-100:hover {
  --tw-shadow-color: #ffe4e6;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-100\/10:hover {
  --tw-shadow-color: rgb(255 228 230 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-100\/20:hover {
  --tw-shadow-color: rgb(255 228 230 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-100\/30:hover {
  --tw-shadow-color: rgb(255 228 230 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-100\/40:hover {
  --tw-shadow-color: rgb(255 228 230 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-100\/5:hover {
  --tw-shadow-color: rgb(255 228 230 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-100\/50:hover {
  --tw-shadow-color: rgb(255 228 230 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-100\/60:hover {
  --tw-shadow-color: rgb(255 228 230 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-100\/70:hover {
  --tw-shadow-color: rgb(255 228 230 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-100\/80:hover {
  --tw-shadow-color: rgb(255 228 230 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-100\/90:hover {
  --tw-shadow-color: rgb(255 228 230 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-200:hover {
  --tw-shadow-color: #fecdd3;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-200\/10:hover {
  --tw-shadow-color: rgb(254 205 211 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-200\/20:hover {
  --tw-shadow-color: rgb(254 205 211 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-200\/30:hover {
  --tw-shadow-color: rgb(254 205 211 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-200\/40:hover {
  --tw-shadow-color: rgb(254 205 211 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-200\/5:hover {
  --tw-shadow-color: rgb(254 205 211 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-200\/50:hover {
  --tw-shadow-color: rgb(254 205 211 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-200\/60:hover {
  --tw-shadow-color: rgb(254 205 211 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-200\/70:hover {
  --tw-shadow-color: rgb(254 205 211 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-200\/80:hover {
  --tw-shadow-color: rgb(254 205 211 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-200\/90:hover {
  --tw-shadow-color: rgb(254 205 211 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-300:hover {
  --tw-shadow-color: #fda4af;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-300\/10:hover {
  --tw-shadow-color: rgb(253 164 175 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-300\/20:hover {
  --tw-shadow-color: rgb(253 164 175 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-300\/30:hover {
  --tw-shadow-color: rgb(253 164 175 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-300\/40:hover {
  --tw-shadow-color: rgb(253 164 175 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-300\/5:hover {
  --tw-shadow-color: rgb(253 164 175 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-300\/50:hover {
  --tw-shadow-color: rgb(253 164 175 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-300\/60:hover {
  --tw-shadow-color: rgb(253 164 175 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-300\/70:hover {
  --tw-shadow-color: rgb(253 164 175 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-300\/80:hover {
  --tw-shadow-color: rgb(253 164 175 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-300\/90:hover {
  --tw-shadow-color: rgb(253 164 175 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-400:hover {
  --tw-shadow-color: #fb7185;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-400\/10:hover {
  --tw-shadow-color: rgb(251 113 133 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-400\/20:hover {
  --tw-shadow-color: rgb(251 113 133 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-400\/30:hover {
  --tw-shadow-color: rgb(251 113 133 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-400\/40:hover {
  --tw-shadow-color: rgb(251 113 133 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-400\/5:hover {
  --tw-shadow-color: rgb(251 113 133 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-400\/50:hover {
  --tw-shadow-color: rgb(251 113 133 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-400\/60:hover {
  --tw-shadow-color: rgb(251 113 133 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-400\/70:hover {
  --tw-shadow-color: rgb(251 113 133 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-400\/80:hover {
  --tw-shadow-color: rgb(251 113 133 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-400\/90:hover {
  --tw-shadow-color: rgb(251 113 133 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-50:hover {
  --tw-shadow-color: #fff1f2;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-50\/10:hover {
  --tw-shadow-color: rgb(255 241 242 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-50\/20:hover {
  --tw-shadow-color: rgb(255 241 242 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-50\/30:hover {
  --tw-shadow-color: rgb(255 241 242 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-50\/40:hover {
  --tw-shadow-color: rgb(255 241 242 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-50\/5:hover {
  --tw-shadow-color: rgb(255 241 242 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-50\/50:hover {
  --tw-shadow-color: rgb(255 241 242 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-50\/60:hover {
  --tw-shadow-color: rgb(255 241 242 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-50\/70:hover {
  --tw-shadow-color: rgb(255 241 242 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-50\/80:hover {
  --tw-shadow-color: rgb(255 241 242 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-50\/90:hover {
  --tw-shadow-color: rgb(255 241 242 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-500:hover {
  --tw-shadow-color: #f43f5e;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-500\/10:hover {
  --tw-shadow-color: rgb(244 63 94 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-500\/20:hover {
  --tw-shadow-color: rgb(244 63 94 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-500\/30:hover {
  --tw-shadow-color: rgb(244 63 94 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-500\/40:hover {
  --tw-shadow-color: rgb(244 63 94 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-500\/5:hover {
  --tw-shadow-color: rgb(244 63 94 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-500\/50:hover {
  --tw-shadow-color: rgb(244 63 94 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-500\/60:hover {
  --tw-shadow-color: rgb(244 63 94 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-500\/70:hover {
  --tw-shadow-color: rgb(244 63 94 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-500\/80:hover {
  --tw-shadow-color: rgb(244 63 94 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-500\/90:hover {
  --tw-shadow-color: rgb(244 63 94 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-600:hover {
  --tw-shadow-color: #e11d48;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-600\/10:hover {
  --tw-shadow-color: rgb(225 29 72 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-600\/20:hover {
  --tw-shadow-color: rgb(225 29 72 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-600\/30:hover {
  --tw-shadow-color: rgb(225 29 72 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-600\/40:hover {
  --tw-shadow-color: rgb(225 29 72 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-600\/5:hover {
  --tw-shadow-color: rgb(225 29 72 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-600\/50:hover {
  --tw-shadow-color: rgb(225 29 72 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-600\/60:hover {
  --tw-shadow-color: rgb(225 29 72 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-600\/70:hover {
  --tw-shadow-color: rgb(225 29 72 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-600\/80:hover {
  --tw-shadow-color: rgb(225 29 72 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-600\/90:hover {
  --tw-shadow-color: rgb(225 29 72 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-700:hover {
  --tw-shadow-color: #be123c;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-700\/10:hover {
  --tw-shadow-color: rgb(190 18 60 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-700\/20:hover {
  --tw-shadow-color: rgb(190 18 60 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-700\/30:hover {
  --tw-shadow-color: rgb(190 18 60 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-700\/40:hover {
  --tw-shadow-color: rgb(190 18 60 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-700\/5:hover {
  --tw-shadow-color: rgb(190 18 60 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-700\/50:hover {
  --tw-shadow-color: rgb(190 18 60 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-700\/60:hover {
  --tw-shadow-color: rgb(190 18 60 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-700\/70:hover {
  --tw-shadow-color: rgb(190 18 60 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-700\/80:hover {
  --tw-shadow-color: rgb(190 18 60 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-700\/90:hover {
  --tw-shadow-color: rgb(190 18 60 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-800:hover {
  --tw-shadow-color: #9f1239;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-800\/10:hover {
  --tw-shadow-color: rgb(159 18 57 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-800\/20:hover {
  --tw-shadow-color: rgb(159 18 57 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-800\/30:hover {
  --tw-shadow-color: rgb(159 18 57 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-800\/40:hover {
  --tw-shadow-color: rgb(159 18 57 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-800\/5:hover {
  --tw-shadow-color: rgb(159 18 57 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-800\/50:hover {
  --tw-shadow-color: rgb(159 18 57 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-800\/60:hover {
  --tw-shadow-color: rgb(159 18 57 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-800\/70:hover {
  --tw-shadow-color: rgb(159 18 57 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-800\/80:hover {
  --tw-shadow-color: rgb(159 18 57 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-800\/90:hover {
  --tw-shadow-color: rgb(159 18 57 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-900:hover {
  --tw-shadow-color: #881337;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-900\/10:hover {
  --tw-shadow-color: rgb(136 19 55 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-900\/20:hover {
  --tw-shadow-color: rgb(136 19 55 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-900\/30:hover {
  --tw-shadow-color: rgb(136 19 55 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-900\/40:hover {
  --tw-shadow-color: rgb(136 19 55 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-900\/5:hover {
  --tw-shadow-color: rgb(136 19 55 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-900\/50:hover {
  --tw-shadow-color: rgb(136 19 55 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-900\/60:hover {
  --tw-shadow-color: rgb(136 19 55 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-900\/70:hover {
  --tw-shadow-color: rgb(136 19 55 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-900\/80:hover {
  --tw-shadow-color: rgb(136 19 55 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-900\/90:hover {
  --tw-shadow-color: rgb(136 19 55 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-950:hover {
  --tw-shadow-color: #4c0519;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-950\/10:hover {
  --tw-shadow-color: rgb(76 5 25 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-950\/20:hover {
  --tw-shadow-color: rgb(76 5 25 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-950\/30:hover {
  --tw-shadow-color: rgb(76 5 25 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-950\/40:hover {
  --tw-shadow-color: rgb(76 5 25 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-950\/5:hover {
  --tw-shadow-color: rgb(76 5 25 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-950\/50:hover {
  --tw-shadow-color: rgb(76 5 25 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-950\/60:hover {
  --tw-shadow-color: rgb(76 5 25 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-950\/70:hover {
  --tw-shadow-color: rgb(76 5 25 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-950\/80:hover {
  --tw-shadow-color: rgb(76 5 25 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-rose-950\/90:hover {
  --tw-shadow-color: rgb(76 5 25 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-100:hover {
  --tw-shadow-color: #e0f2fe;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-100\/10:hover {
  --tw-shadow-color: rgb(224 242 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-100\/20:hover {
  --tw-shadow-color: rgb(224 242 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-100\/30:hover {
  --tw-shadow-color: rgb(224 242 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-100\/40:hover {
  --tw-shadow-color: rgb(224 242 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-100\/5:hover {
  --tw-shadow-color: rgb(224 242 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-100\/50:hover {
  --tw-shadow-color: rgb(224 242 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-100\/60:hover {
  --tw-shadow-color: rgb(224 242 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-100\/70:hover {
  --tw-shadow-color: rgb(224 242 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-100\/80:hover {
  --tw-shadow-color: rgb(224 242 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-100\/90:hover {
  --tw-shadow-color: rgb(224 242 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-200:hover {
  --tw-shadow-color: #bae6fd;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-200\/10:hover {
  --tw-shadow-color: rgb(186 230 253 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-200\/20:hover {
  --tw-shadow-color: rgb(186 230 253 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-200\/30:hover {
  --tw-shadow-color: rgb(186 230 253 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-200\/40:hover {
  --tw-shadow-color: rgb(186 230 253 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-200\/5:hover {
  --tw-shadow-color: rgb(186 230 253 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-200\/50:hover {
  --tw-shadow-color: rgb(186 230 253 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-200\/60:hover {
  --tw-shadow-color: rgb(186 230 253 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-200\/70:hover {
  --tw-shadow-color: rgb(186 230 253 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-200\/80:hover {
  --tw-shadow-color: rgb(186 230 253 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-200\/90:hover {
  --tw-shadow-color: rgb(186 230 253 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-300:hover {
  --tw-shadow-color: #7dd3fc;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-300\/10:hover {
  --tw-shadow-color: rgb(125 211 252 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-300\/20:hover {
  --tw-shadow-color: rgb(125 211 252 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-300\/30:hover {
  --tw-shadow-color: rgb(125 211 252 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-300\/40:hover {
  --tw-shadow-color: rgb(125 211 252 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-300\/5:hover {
  --tw-shadow-color: rgb(125 211 252 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-300\/50:hover {
  --tw-shadow-color: rgb(125 211 252 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-300\/60:hover {
  --tw-shadow-color: rgb(125 211 252 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-300\/70:hover {
  --tw-shadow-color: rgb(125 211 252 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-300\/80:hover {
  --tw-shadow-color: rgb(125 211 252 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-300\/90:hover {
  --tw-shadow-color: rgb(125 211 252 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-400:hover {
  --tw-shadow-color: #38bdf8;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-400\/10:hover {
  --tw-shadow-color: rgb(56 189 248 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-400\/20:hover {
  --tw-shadow-color: rgb(56 189 248 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-400\/30:hover {
  --tw-shadow-color: rgb(56 189 248 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-400\/40:hover {
  --tw-shadow-color: rgb(56 189 248 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-400\/5:hover {
  --tw-shadow-color: rgb(56 189 248 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-400\/50:hover {
  --tw-shadow-color: rgb(56 189 248 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-400\/60:hover {
  --tw-shadow-color: rgb(56 189 248 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-400\/70:hover {
  --tw-shadow-color: rgb(56 189 248 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-400\/80:hover {
  --tw-shadow-color: rgb(56 189 248 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-400\/90:hover {
  --tw-shadow-color: rgb(56 189 248 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-50:hover {
  --tw-shadow-color: #f0f9ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-50\/10:hover {
  --tw-shadow-color: rgb(240 249 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-50\/20:hover {
  --tw-shadow-color: rgb(240 249 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-50\/30:hover {
  --tw-shadow-color: rgb(240 249 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-50\/40:hover {
  --tw-shadow-color: rgb(240 249 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-50\/5:hover {
  --tw-shadow-color: rgb(240 249 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-50\/50:hover {
  --tw-shadow-color: rgb(240 249 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-50\/60:hover {
  --tw-shadow-color: rgb(240 249 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-50\/70:hover {
  --tw-shadow-color: rgb(240 249 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-50\/80:hover {
  --tw-shadow-color: rgb(240 249 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-50\/90:hover {
  --tw-shadow-color: rgb(240 249 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-500:hover {
  --tw-shadow-color: #0ea5e9;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-500\/10:hover {
  --tw-shadow-color: rgb(14 165 233 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-500\/20:hover {
  --tw-shadow-color: rgb(14 165 233 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-500\/30:hover {
  --tw-shadow-color: rgb(14 165 233 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-500\/40:hover {
  --tw-shadow-color: rgb(14 165 233 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-500\/5:hover {
  --tw-shadow-color: rgb(14 165 233 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-500\/50:hover {
  --tw-shadow-color: rgb(14 165 233 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-500\/60:hover {
  --tw-shadow-color: rgb(14 165 233 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-500\/70:hover {
  --tw-shadow-color: rgb(14 165 233 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-500\/80:hover {
  --tw-shadow-color: rgb(14 165 233 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-500\/90:hover {
  --tw-shadow-color: rgb(14 165 233 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-600:hover {
  --tw-shadow-color: #0284c7;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-600\/10:hover {
  --tw-shadow-color: rgb(2 132 199 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-600\/20:hover {
  --tw-shadow-color: rgb(2 132 199 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-600\/30:hover {
  --tw-shadow-color: rgb(2 132 199 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-600\/40:hover {
  --tw-shadow-color: rgb(2 132 199 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-600\/5:hover {
  --tw-shadow-color: rgb(2 132 199 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-600\/50:hover {
  --tw-shadow-color: rgb(2 132 199 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-600\/60:hover {
  --tw-shadow-color: rgb(2 132 199 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-600\/70:hover {
  --tw-shadow-color: rgb(2 132 199 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-600\/80:hover {
  --tw-shadow-color: rgb(2 132 199 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-600\/90:hover {
  --tw-shadow-color: rgb(2 132 199 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-700:hover {
  --tw-shadow-color: #0369a1;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-700\/10:hover {
  --tw-shadow-color: rgb(3 105 161 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-700\/20:hover {
  --tw-shadow-color: rgb(3 105 161 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-700\/30:hover {
  --tw-shadow-color: rgb(3 105 161 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-700\/40:hover {
  --tw-shadow-color: rgb(3 105 161 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-700\/5:hover {
  --tw-shadow-color: rgb(3 105 161 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-700\/50:hover {
  --tw-shadow-color: rgb(3 105 161 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-700\/60:hover {
  --tw-shadow-color: rgb(3 105 161 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-700\/70:hover {
  --tw-shadow-color: rgb(3 105 161 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-700\/80:hover {
  --tw-shadow-color: rgb(3 105 161 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-700\/90:hover {
  --tw-shadow-color: rgb(3 105 161 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-800:hover {
  --tw-shadow-color: #075985;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-800\/10:hover {
  --tw-shadow-color: rgb(7 89 133 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-800\/20:hover {
  --tw-shadow-color: rgb(7 89 133 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-800\/30:hover {
  --tw-shadow-color: rgb(7 89 133 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-800\/40:hover {
  --tw-shadow-color: rgb(7 89 133 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-800\/5:hover {
  --tw-shadow-color: rgb(7 89 133 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-800\/50:hover {
  --tw-shadow-color: rgb(7 89 133 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-800\/60:hover {
  --tw-shadow-color: rgb(7 89 133 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-800\/70:hover {
  --tw-shadow-color: rgb(7 89 133 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-800\/80:hover {
  --tw-shadow-color: rgb(7 89 133 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-800\/90:hover {
  --tw-shadow-color: rgb(7 89 133 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-900:hover {
  --tw-shadow-color: #0c4a6e;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-900\/10:hover {
  --tw-shadow-color: rgb(12 74 110 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-900\/20:hover {
  --tw-shadow-color: rgb(12 74 110 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-900\/30:hover {
  --tw-shadow-color: rgb(12 74 110 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-900\/40:hover {
  --tw-shadow-color: rgb(12 74 110 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-900\/5:hover {
  --tw-shadow-color: rgb(12 74 110 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-900\/50:hover {
  --tw-shadow-color: rgb(12 74 110 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-900\/60:hover {
  --tw-shadow-color: rgb(12 74 110 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-900\/70:hover {
  --tw-shadow-color: rgb(12 74 110 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-900\/80:hover {
  --tw-shadow-color: rgb(12 74 110 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-900\/90:hover {
  --tw-shadow-color: rgb(12 74 110 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-950:hover {
  --tw-shadow-color: #082f49;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-950\/10:hover {
  --tw-shadow-color: rgb(8 47 73 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-950\/20:hover {
  --tw-shadow-color: rgb(8 47 73 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-950\/30:hover {
  --tw-shadow-color: rgb(8 47 73 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-950\/40:hover {
  --tw-shadow-color: rgb(8 47 73 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-950\/5:hover {
  --tw-shadow-color: rgb(8 47 73 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-950\/50:hover {
  --tw-shadow-color: rgb(8 47 73 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-950\/60:hover {
  --tw-shadow-color: rgb(8 47 73 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-950\/70:hover {
  --tw-shadow-color: rgb(8 47 73 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-950\/80:hover {
  --tw-shadow-color: rgb(8 47 73 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-sky-950\/90:hover {
  --tw-shadow-color: rgb(8 47 73 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-100:hover {
  --tw-shadow-color: #f1f5f9;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-100\/10:hover {
  --tw-shadow-color: rgb(241 245 249 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-100\/20:hover {
  --tw-shadow-color: rgb(241 245 249 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-100\/30:hover {
  --tw-shadow-color: rgb(241 245 249 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-100\/40:hover {
  --tw-shadow-color: rgb(241 245 249 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-100\/5:hover {
  --tw-shadow-color: rgb(241 245 249 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-100\/50:hover {
  --tw-shadow-color: rgb(241 245 249 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-100\/60:hover {
  --tw-shadow-color: rgb(241 245 249 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-100\/70:hover {
  --tw-shadow-color: rgb(241 245 249 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-100\/80:hover {
  --tw-shadow-color: rgb(241 245 249 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-100\/90:hover {
  --tw-shadow-color: rgb(241 245 249 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-200:hover {
  --tw-shadow-color: #e2e8f0;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-200\/10:hover {
  --tw-shadow-color: rgb(226 232 240 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-200\/20:hover {
  --tw-shadow-color: rgb(226 232 240 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-200\/30:hover {
  --tw-shadow-color: rgb(226 232 240 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-200\/40:hover {
  --tw-shadow-color: rgb(226 232 240 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-200\/5:hover {
  --tw-shadow-color: rgb(226 232 240 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-200\/50:hover {
  --tw-shadow-color: rgb(226 232 240 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-200\/60:hover {
  --tw-shadow-color: rgb(226 232 240 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-200\/70:hover {
  --tw-shadow-color: rgb(226 232 240 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-200\/80:hover {
  --tw-shadow-color: rgb(226 232 240 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-200\/90:hover {
  --tw-shadow-color: rgb(226 232 240 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-300:hover {
  --tw-shadow-color: #cbd5e1;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-300\/10:hover {
  --tw-shadow-color: rgb(203 213 225 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-300\/20:hover {
  --tw-shadow-color: rgb(203 213 225 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-300\/30:hover {
  --tw-shadow-color: rgb(203 213 225 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-300\/40:hover {
  --tw-shadow-color: rgb(203 213 225 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-300\/5:hover {
  --tw-shadow-color: rgb(203 213 225 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-300\/50:hover {
  --tw-shadow-color: rgb(203 213 225 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-300\/60:hover {
  --tw-shadow-color: rgb(203 213 225 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-300\/70:hover {
  --tw-shadow-color: rgb(203 213 225 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-300\/80:hover {
  --tw-shadow-color: rgb(203 213 225 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-300\/90:hover {
  --tw-shadow-color: rgb(203 213 225 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-400:hover {
  --tw-shadow-color: #94a3b8;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-400\/10:hover {
  --tw-shadow-color: rgb(148 163 184 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-400\/20:hover {
  --tw-shadow-color: rgb(148 163 184 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-400\/30:hover {
  --tw-shadow-color: rgb(148 163 184 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-400\/40:hover {
  --tw-shadow-color: rgb(148 163 184 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-400\/5:hover {
  --tw-shadow-color: rgb(148 163 184 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-400\/50:hover {
  --tw-shadow-color: rgb(148 163 184 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-400\/60:hover {
  --tw-shadow-color: rgb(148 163 184 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-400\/70:hover {
  --tw-shadow-color: rgb(148 163 184 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-400\/80:hover {
  --tw-shadow-color: rgb(148 163 184 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-400\/90:hover {
  --tw-shadow-color: rgb(148 163 184 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-50:hover {
  --tw-shadow-color: #f8fafc;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-50\/10:hover {
  --tw-shadow-color: rgb(248 250 252 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-50\/20:hover {
  --tw-shadow-color: rgb(248 250 252 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-50\/30:hover {
  --tw-shadow-color: rgb(248 250 252 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-50\/40:hover {
  --tw-shadow-color: rgb(248 250 252 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-50\/5:hover {
  --tw-shadow-color: rgb(248 250 252 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-50\/50:hover {
  --tw-shadow-color: rgb(248 250 252 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-50\/60:hover {
  --tw-shadow-color: rgb(248 250 252 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-50\/70:hover {
  --tw-shadow-color: rgb(248 250 252 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-50\/80:hover {
  --tw-shadow-color: rgb(248 250 252 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-50\/90:hover {
  --tw-shadow-color: rgb(248 250 252 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-500:hover {
  --tw-shadow-color: #64748b;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-500\/10:hover {
  --tw-shadow-color: rgb(100 116 139 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-500\/20:hover {
  --tw-shadow-color: rgb(100 116 139 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-500\/30:hover {
  --tw-shadow-color: rgb(100 116 139 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-500\/40:hover {
  --tw-shadow-color: rgb(100 116 139 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-500\/5:hover {
  --tw-shadow-color: rgb(100 116 139 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-500\/50:hover {
  --tw-shadow-color: rgb(100 116 139 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-500\/60:hover {
  --tw-shadow-color: rgb(100 116 139 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-500\/70:hover {
  --tw-shadow-color: rgb(100 116 139 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-500\/80:hover {
  --tw-shadow-color: rgb(100 116 139 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-500\/90:hover {
  --tw-shadow-color: rgb(100 116 139 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-600:hover {
  --tw-shadow-color: #475569;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-600\/10:hover {
  --tw-shadow-color: rgb(71 85 105 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-600\/20:hover {
  --tw-shadow-color: rgb(71 85 105 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-600\/30:hover {
  --tw-shadow-color: rgb(71 85 105 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-600\/40:hover {
  --tw-shadow-color: rgb(71 85 105 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-600\/5:hover {
  --tw-shadow-color: rgb(71 85 105 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-600\/50:hover {
  --tw-shadow-color: rgb(71 85 105 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-600\/60:hover {
  --tw-shadow-color: rgb(71 85 105 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-600\/70:hover {
  --tw-shadow-color: rgb(71 85 105 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-600\/80:hover {
  --tw-shadow-color: rgb(71 85 105 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-600\/90:hover {
  --tw-shadow-color: rgb(71 85 105 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-700:hover {
  --tw-shadow-color: #334155;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-700\/10:hover {
  --tw-shadow-color: rgb(51 65 85 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-700\/20:hover {
  --tw-shadow-color: rgb(51 65 85 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-700\/30:hover {
  --tw-shadow-color: rgb(51 65 85 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-700\/40:hover {
  --tw-shadow-color: rgb(51 65 85 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-700\/5:hover {
  --tw-shadow-color: rgb(51 65 85 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-700\/50:hover {
  --tw-shadow-color: rgb(51 65 85 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-700\/60:hover {
  --tw-shadow-color: rgb(51 65 85 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-700\/70:hover {
  --tw-shadow-color: rgb(51 65 85 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-700\/80:hover {
  --tw-shadow-color: rgb(51 65 85 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-700\/90:hover {
  --tw-shadow-color: rgb(51 65 85 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-800:hover {
  --tw-shadow-color: #1e293b;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-800\/10:hover {
  --tw-shadow-color: rgb(30 41 59 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-800\/20:hover {
  --tw-shadow-color: rgb(30 41 59 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-800\/30:hover {
  --tw-shadow-color: rgb(30 41 59 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-800\/40:hover {
  --tw-shadow-color: rgb(30 41 59 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-800\/5:hover {
  --tw-shadow-color: rgb(30 41 59 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-800\/50:hover {
  --tw-shadow-color: rgb(30 41 59 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-800\/60:hover {
  --tw-shadow-color: rgb(30 41 59 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-800\/70:hover {
  --tw-shadow-color: rgb(30 41 59 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-800\/80:hover {
  --tw-shadow-color: rgb(30 41 59 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-800\/90:hover {
  --tw-shadow-color: rgb(30 41 59 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-900:hover {
  --tw-shadow-color: #0f172a;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-900\/10:hover {
  --tw-shadow-color: rgb(15 23 42 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-900\/20:hover {
  --tw-shadow-color: rgb(15 23 42 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-900\/30:hover {
  --tw-shadow-color: rgb(15 23 42 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-900\/40:hover {
  --tw-shadow-color: rgb(15 23 42 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-900\/5:hover {
  --tw-shadow-color: rgb(15 23 42 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-900\/50:hover {
  --tw-shadow-color: rgb(15 23 42 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-900\/60:hover {
  --tw-shadow-color: rgb(15 23 42 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-900\/70:hover {
  --tw-shadow-color: rgb(15 23 42 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-900\/80:hover {
  --tw-shadow-color: rgb(15 23 42 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-900\/90:hover {
  --tw-shadow-color: rgb(15 23 42 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-950:hover {
  --tw-shadow-color: #020617;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-950\/10:hover {
  --tw-shadow-color: rgb(2 6 23 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-950\/20:hover {
  --tw-shadow-color: rgb(2 6 23 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-950\/30:hover {
  --tw-shadow-color: rgb(2 6 23 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-950\/40:hover {
  --tw-shadow-color: rgb(2 6 23 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-950\/5:hover {
  --tw-shadow-color: rgb(2 6 23 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-950\/50:hover {
  --tw-shadow-color: rgb(2 6 23 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-950\/60:hover {
  --tw-shadow-color: rgb(2 6 23 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-950\/70:hover {
  --tw-shadow-color: rgb(2 6 23 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-950\/80:hover {
  --tw-shadow-color: rgb(2 6 23 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-slate-950\/90:hover {
  --tw-shadow-color: rgb(2 6 23 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-100:hover {
  --tw-shadow-color: #f5f5f4;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-100\/10:hover {
  --tw-shadow-color: rgb(245 245 244 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-100\/20:hover {
  --tw-shadow-color: rgb(245 245 244 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-100\/30:hover {
  --tw-shadow-color: rgb(245 245 244 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-100\/40:hover {
  --tw-shadow-color: rgb(245 245 244 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-100\/5:hover {
  --tw-shadow-color: rgb(245 245 244 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-100\/50:hover {
  --tw-shadow-color: rgb(245 245 244 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-100\/60:hover {
  --tw-shadow-color: rgb(245 245 244 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-100\/70:hover {
  --tw-shadow-color: rgb(245 245 244 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-100\/80:hover {
  --tw-shadow-color: rgb(245 245 244 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-100\/90:hover {
  --tw-shadow-color: rgb(245 245 244 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-200:hover {
  --tw-shadow-color: #e7e5e4;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-200\/10:hover {
  --tw-shadow-color: rgb(231 229 228 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-200\/20:hover {
  --tw-shadow-color: rgb(231 229 228 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-200\/30:hover {
  --tw-shadow-color: rgb(231 229 228 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-200\/40:hover {
  --tw-shadow-color: rgb(231 229 228 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-200\/5:hover {
  --tw-shadow-color: rgb(231 229 228 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-200\/50:hover {
  --tw-shadow-color: rgb(231 229 228 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-200\/60:hover {
  --tw-shadow-color: rgb(231 229 228 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-200\/70:hover {
  --tw-shadow-color: rgb(231 229 228 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-200\/80:hover {
  --tw-shadow-color: rgb(231 229 228 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-200\/90:hover {
  --tw-shadow-color: rgb(231 229 228 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-300:hover {
  --tw-shadow-color: #d6d3d1;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-300\/10:hover {
  --tw-shadow-color: rgb(214 211 209 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-300\/20:hover {
  --tw-shadow-color: rgb(214 211 209 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-300\/30:hover {
  --tw-shadow-color: rgb(214 211 209 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-300\/40:hover {
  --tw-shadow-color: rgb(214 211 209 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-300\/5:hover {
  --tw-shadow-color: rgb(214 211 209 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-300\/50:hover {
  --tw-shadow-color: rgb(214 211 209 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-300\/60:hover {
  --tw-shadow-color: rgb(214 211 209 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-300\/70:hover {
  --tw-shadow-color: rgb(214 211 209 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-300\/80:hover {
  --tw-shadow-color: rgb(214 211 209 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-300\/90:hover {
  --tw-shadow-color: rgb(214 211 209 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-400:hover {
  --tw-shadow-color: #a8a29e;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-400\/10:hover {
  --tw-shadow-color: rgb(168 162 158 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-400\/20:hover {
  --tw-shadow-color: rgb(168 162 158 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-400\/30:hover {
  --tw-shadow-color: rgb(168 162 158 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-400\/40:hover {
  --tw-shadow-color: rgb(168 162 158 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-400\/5:hover {
  --tw-shadow-color: rgb(168 162 158 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-400\/50:hover {
  --tw-shadow-color: rgb(168 162 158 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-400\/60:hover {
  --tw-shadow-color: rgb(168 162 158 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-400\/70:hover {
  --tw-shadow-color: rgb(168 162 158 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-400\/80:hover {
  --tw-shadow-color: rgb(168 162 158 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-400\/90:hover {
  --tw-shadow-color: rgb(168 162 158 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-50:hover {
  --tw-shadow-color: #fafaf9;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-50\/10:hover {
  --tw-shadow-color: rgb(250 250 249 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-50\/20:hover {
  --tw-shadow-color: rgb(250 250 249 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-50\/30:hover {
  --tw-shadow-color: rgb(250 250 249 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-50\/40:hover {
  --tw-shadow-color: rgb(250 250 249 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-50\/5:hover {
  --tw-shadow-color: rgb(250 250 249 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-50\/50:hover {
  --tw-shadow-color: rgb(250 250 249 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-50\/60:hover {
  --tw-shadow-color: rgb(250 250 249 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-50\/70:hover {
  --tw-shadow-color: rgb(250 250 249 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-50\/80:hover {
  --tw-shadow-color: rgb(250 250 249 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-50\/90:hover {
  --tw-shadow-color: rgb(250 250 249 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-500:hover {
  --tw-shadow-color: #78716c;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-500\/10:hover {
  --tw-shadow-color: rgb(120 113 108 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-500\/20:hover {
  --tw-shadow-color: rgb(120 113 108 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-500\/30:hover {
  --tw-shadow-color: rgb(120 113 108 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-500\/40:hover {
  --tw-shadow-color: rgb(120 113 108 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-500\/5:hover {
  --tw-shadow-color: rgb(120 113 108 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-500\/50:hover {
  --tw-shadow-color: rgb(120 113 108 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-500\/60:hover {
  --tw-shadow-color: rgb(120 113 108 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-500\/70:hover {
  --tw-shadow-color: rgb(120 113 108 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-500\/80:hover {
  --tw-shadow-color: rgb(120 113 108 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-500\/90:hover {
  --tw-shadow-color: rgb(120 113 108 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-600:hover {
  --tw-shadow-color: #57534e;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-600\/10:hover {
  --tw-shadow-color: rgb(87 83 78 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-600\/20:hover {
  --tw-shadow-color: rgb(87 83 78 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-600\/30:hover {
  --tw-shadow-color: rgb(87 83 78 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-600\/40:hover {
  --tw-shadow-color: rgb(87 83 78 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-600\/5:hover {
  --tw-shadow-color: rgb(87 83 78 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-600\/50:hover {
  --tw-shadow-color: rgb(87 83 78 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-600\/60:hover {
  --tw-shadow-color: rgb(87 83 78 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-600\/70:hover {
  --tw-shadow-color: rgb(87 83 78 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-600\/80:hover {
  --tw-shadow-color: rgb(87 83 78 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-600\/90:hover {
  --tw-shadow-color: rgb(87 83 78 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-700:hover {
  --tw-shadow-color: #44403c;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-700\/10:hover {
  --tw-shadow-color: rgb(68 64 60 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-700\/20:hover {
  --tw-shadow-color: rgb(68 64 60 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-700\/30:hover {
  --tw-shadow-color: rgb(68 64 60 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-700\/40:hover {
  --tw-shadow-color: rgb(68 64 60 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-700\/5:hover {
  --tw-shadow-color: rgb(68 64 60 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-700\/50:hover {
  --tw-shadow-color: rgb(68 64 60 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-700\/60:hover {
  --tw-shadow-color: rgb(68 64 60 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-700\/70:hover {
  --tw-shadow-color: rgb(68 64 60 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-700\/80:hover {
  --tw-shadow-color: rgb(68 64 60 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-700\/90:hover {
  --tw-shadow-color: rgb(68 64 60 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-800:hover {
  --tw-shadow-color: #292524;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-800\/10:hover {
  --tw-shadow-color: rgb(41 37 36 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-800\/20:hover {
  --tw-shadow-color: rgb(41 37 36 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-800\/30:hover {
  --tw-shadow-color: rgb(41 37 36 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-800\/40:hover {
  --tw-shadow-color: rgb(41 37 36 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-800\/5:hover {
  --tw-shadow-color: rgb(41 37 36 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-800\/50:hover {
  --tw-shadow-color: rgb(41 37 36 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-800\/60:hover {
  --tw-shadow-color: rgb(41 37 36 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-800\/70:hover {
  --tw-shadow-color: rgb(41 37 36 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-800\/80:hover {
  --tw-shadow-color: rgb(41 37 36 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-800\/90:hover {
  --tw-shadow-color: rgb(41 37 36 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-900:hover {
  --tw-shadow-color: #1c1917;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-900\/10:hover {
  --tw-shadow-color: rgb(28 25 23 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-900\/20:hover {
  --tw-shadow-color: rgb(28 25 23 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-900\/30:hover {
  --tw-shadow-color: rgb(28 25 23 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-900\/40:hover {
  --tw-shadow-color: rgb(28 25 23 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-900\/5:hover {
  --tw-shadow-color: rgb(28 25 23 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-900\/50:hover {
  --tw-shadow-color: rgb(28 25 23 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-900\/60:hover {
  --tw-shadow-color: rgb(28 25 23 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-900\/70:hover {
  --tw-shadow-color: rgb(28 25 23 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-900\/80:hover {
  --tw-shadow-color: rgb(28 25 23 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-900\/90:hover {
  --tw-shadow-color: rgb(28 25 23 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-950:hover {
  --tw-shadow-color: #0c0a09;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-950\/10:hover {
  --tw-shadow-color: rgb(12 10 9 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-950\/20:hover {
  --tw-shadow-color: rgb(12 10 9 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-950\/30:hover {
  --tw-shadow-color: rgb(12 10 9 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-950\/40:hover {
  --tw-shadow-color: rgb(12 10 9 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-950\/5:hover {
  --tw-shadow-color: rgb(12 10 9 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-950\/50:hover {
  --tw-shadow-color: rgb(12 10 9 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-950\/60:hover {
  --tw-shadow-color: rgb(12 10 9 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-950\/70:hover {
  --tw-shadow-color: rgb(12 10 9 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-950\/80:hover {
  --tw-shadow-color: rgb(12 10 9 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-stone-950\/90:hover {
  --tw-shadow-color: rgb(12 10 9 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-100:hover {
  --tw-shadow-color: #ccfbf1;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-100\/10:hover {
  --tw-shadow-color: rgb(204 251 241 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-100\/20:hover {
  --tw-shadow-color: rgb(204 251 241 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-100\/30:hover {
  --tw-shadow-color: rgb(204 251 241 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-100\/40:hover {
  --tw-shadow-color: rgb(204 251 241 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-100\/5:hover {
  --tw-shadow-color: rgb(204 251 241 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-100\/50:hover {
  --tw-shadow-color: rgb(204 251 241 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-100\/60:hover {
  --tw-shadow-color: rgb(204 251 241 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-100\/70:hover {
  --tw-shadow-color: rgb(204 251 241 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-100\/80:hover {
  --tw-shadow-color: rgb(204 251 241 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-100\/90:hover {
  --tw-shadow-color: rgb(204 251 241 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-200:hover {
  --tw-shadow-color: #99f6e4;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-200\/10:hover {
  --tw-shadow-color: rgb(153 246 228 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-200\/20:hover {
  --tw-shadow-color: rgb(153 246 228 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-200\/30:hover {
  --tw-shadow-color: rgb(153 246 228 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-200\/40:hover {
  --tw-shadow-color: rgb(153 246 228 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-200\/5:hover {
  --tw-shadow-color: rgb(153 246 228 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-200\/50:hover {
  --tw-shadow-color: rgb(153 246 228 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-200\/60:hover {
  --tw-shadow-color: rgb(153 246 228 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-200\/70:hover {
  --tw-shadow-color: rgb(153 246 228 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-200\/80:hover {
  --tw-shadow-color: rgb(153 246 228 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-200\/90:hover {
  --tw-shadow-color: rgb(153 246 228 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-300:hover {
  --tw-shadow-color: #5eead4;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-300\/10:hover {
  --tw-shadow-color: rgb(94 234 212 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-300\/20:hover {
  --tw-shadow-color: rgb(94 234 212 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-300\/30:hover {
  --tw-shadow-color: rgb(94 234 212 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-300\/40:hover {
  --tw-shadow-color: rgb(94 234 212 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-300\/5:hover {
  --tw-shadow-color: rgb(94 234 212 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-300\/50:hover {
  --tw-shadow-color: rgb(94 234 212 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-300\/60:hover {
  --tw-shadow-color: rgb(94 234 212 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-300\/70:hover {
  --tw-shadow-color: rgb(94 234 212 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-300\/80:hover {
  --tw-shadow-color: rgb(94 234 212 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-300\/90:hover {
  --tw-shadow-color: rgb(94 234 212 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-400:hover {
  --tw-shadow-color: #2dd4bf;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-400\/10:hover {
  --tw-shadow-color: rgb(45 212 191 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-400\/20:hover {
  --tw-shadow-color: rgb(45 212 191 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-400\/30:hover {
  --tw-shadow-color: rgb(45 212 191 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-400\/40:hover {
  --tw-shadow-color: rgb(45 212 191 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-400\/5:hover {
  --tw-shadow-color: rgb(45 212 191 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-400\/50:hover {
  --tw-shadow-color: rgb(45 212 191 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-400\/60:hover {
  --tw-shadow-color: rgb(45 212 191 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-400\/70:hover {
  --tw-shadow-color: rgb(45 212 191 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-400\/80:hover {
  --tw-shadow-color: rgb(45 212 191 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-400\/90:hover {
  --tw-shadow-color: rgb(45 212 191 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-50:hover {
  --tw-shadow-color: #f0fdfa;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-50\/10:hover {
  --tw-shadow-color: rgb(240 253 250 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-50\/20:hover {
  --tw-shadow-color: rgb(240 253 250 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-50\/30:hover {
  --tw-shadow-color: rgb(240 253 250 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-50\/40:hover {
  --tw-shadow-color: rgb(240 253 250 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-50\/5:hover {
  --tw-shadow-color: rgb(240 253 250 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-50\/50:hover {
  --tw-shadow-color: rgb(240 253 250 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-50\/60:hover {
  --tw-shadow-color: rgb(240 253 250 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-50\/70:hover {
  --tw-shadow-color: rgb(240 253 250 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-50\/80:hover {
  --tw-shadow-color: rgb(240 253 250 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-50\/90:hover {
  --tw-shadow-color: rgb(240 253 250 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-500:hover {
  --tw-shadow-color: #14b8a6;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-500\/10:hover {
  --tw-shadow-color: rgb(20 184 166 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-500\/20:hover {
  --tw-shadow-color: rgb(20 184 166 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-500\/30:hover {
  --tw-shadow-color: rgb(20 184 166 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-500\/40:hover {
  --tw-shadow-color: rgb(20 184 166 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-500\/5:hover {
  --tw-shadow-color: rgb(20 184 166 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-500\/50:hover {
  --tw-shadow-color: rgb(20 184 166 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-500\/60:hover {
  --tw-shadow-color: rgb(20 184 166 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-500\/70:hover {
  --tw-shadow-color: rgb(20 184 166 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-500\/80:hover {
  --tw-shadow-color: rgb(20 184 166 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-500\/90:hover {
  --tw-shadow-color: rgb(20 184 166 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-600:hover {
  --tw-shadow-color: #0d9488;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-600\/10:hover {
  --tw-shadow-color: rgb(13 148 136 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-600\/20:hover {
  --tw-shadow-color: rgb(13 148 136 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-600\/30:hover {
  --tw-shadow-color: rgb(13 148 136 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-600\/40:hover {
  --tw-shadow-color: rgb(13 148 136 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-600\/5:hover {
  --tw-shadow-color: rgb(13 148 136 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-600\/50:hover {
  --tw-shadow-color: rgb(13 148 136 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-600\/60:hover {
  --tw-shadow-color: rgb(13 148 136 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-600\/70:hover {
  --tw-shadow-color: rgb(13 148 136 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-600\/80:hover {
  --tw-shadow-color: rgb(13 148 136 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-600\/90:hover {
  --tw-shadow-color: rgb(13 148 136 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-700:hover {
  --tw-shadow-color: #0f766e;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-700\/10:hover {
  --tw-shadow-color: rgb(15 118 110 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-700\/20:hover {
  --tw-shadow-color: rgb(15 118 110 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-700\/30:hover {
  --tw-shadow-color: rgb(15 118 110 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-700\/40:hover {
  --tw-shadow-color: rgb(15 118 110 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-700\/5:hover {
  --tw-shadow-color: rgb(15 118 110 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-700\/50:hover {
  --tw-shadow-color: rgb(15 118 110 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-700\/60:hover {
  --tw-shadow-color: rgb(15 118 110 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-700\/70:hover {
  --tw-shadow-color: rgb(15 118 110 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-700\/80:hover {
  --tw-shadow-color: rgb(15 118 110 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-700\/90:hover {
  --tw-shadow-color: rgb(15 118 110 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-800:hover {
  --tw-shadow-color: #115e59;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-800\/10:hover {
  --tw-shadow-color: rgb(17 94 89 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-800\/20:hover {
  --tw-shadow-color: rgb(17 94 89 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-800\/30:hover {
  --tw-shadow-color: rgb(17 94 89 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-800\/40:hover {
  --tw-shadow-color: rgb(17 94 89 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-800\/5:hover {
  --tw-shadow-color: rgb(17 94 89 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-800\/50:hover {
  --tw-shadow-color: rgb(17 94 89 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-800\/60:hover {
  --tw-shadow-color: rgb(17 94 89 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-800\/70:hover {
  --tw-shadow-color: rgb(17 94 89 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-800\/80:hover {
  --tw-shadow-color: rgb(17 94 89 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-800\/90:hover {
  --tw-shadow-color: rgb(17 94 89 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-900:hover {
  --tw-shadow-color: #134e4a;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-900\/10:hover {
  --tw-shadow-color: rgb(19 78 74 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-900\/20:hover {
  --tw-shadow-color: rgb(19 78 74 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-900\/30:hover {
  --tw-shadow-color: rgb(19 78 74 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-900\/40:hover {
  --tw-shadow-color: rgb(19 78 74 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-900\/5:hover {
  --tw-shadow-color: rgb(19 78 74 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-900\/50:hover {
  --tw-shadow-color: rgb(19 78 74 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-900\/60:hover {
  --tw-shadow-color: rgb(19 78 74 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-900\/70:hover {
  --tw-shadow-color: rgb(19 78 74 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-900\/80:hover {
  --tw-shadow-color: rgb(19 78 74 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-900\/90:hover {
  --tw-shadow-color: rgb(19 78 74 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-950:hover {
  --tw-shadow-color: #042f2e;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-950\/10:hover {
  --tw-shadow-color: rgb(4 47 46 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-950\/20:hover {
  --tw-shadow-color: rgb(4 47 46 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-950\/30:hover {
  --tw-shadow-color: rgb(4 47 46 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-950\/40:hover {
  --tw-shadow-color: rgb(4 47 46 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-950\/5:hover {
  --tw-shadow-color: rgb(4 47 46 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-950\/50:hover {
  --tw-shadow-color: rgb(4 47 46 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-950\/60:hover {
  --tw-shadow-color: rgb(4 47 46 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-950\/70:hover {
  --tw-shadow-color: rgb(4 47 46 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-950\/80:hover {
  --tw-shadow-color: rgb(4 47 46 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-teal-950\/90:hover {
  --tw-shadow-color: rgb(4 47 46 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-100:hover {
  --tw-shadow-color: #ede9fe;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-100\/10:hover {
  --tw-shadow-color: rgb(237 233 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-100\/20:hover {
  --tw-shadow-color: rgb(237 233 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-100\/30:hover {
  --tw-shadow-color: rgb(237 233 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-100\/40:hover {
  --tw-shadow-color: rgb(237 233 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-100\/5:hover {
  --tw-shadow-color: rgb(237 233 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-100\/50:hover {
  --tw-shadow-color: rgb(237 233 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-100\/60:hover {
  --tw-shadow-color: rgb(237 233 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-100\/70:hover {
  --tw-shadow-color: rgb(237 233 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-100\/80:hover {
  --tw-shadow-color: rgb(237 233 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-100\/90:hover {
  --tw-shadow-color: rgb(237 233 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-200:hover {
  --tw-shadow-color: #ddd6fe;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-200\/10:hover {
  --tw-shadow-color: rgb(221 214 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-200\/20:hover {
  --tw-shadow-color: rgb(221 214 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-200\/30:hover {
  --tw-shadow-color: rgb(221 214 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-200\/40:hover {
  --tw-shadow-color: rgb(221 214 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-200\/5:hover {
  --tw-shadow-color: rgb(221 214 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-200\/50:hover {
  --tw-shadow-color: rgb(221 214 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-200\/60:hover {
  --tw-shadow-color: rgb(221 214 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-200\/70:hover {
  --tw-shadow-color: rgb(221 214 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-200\/80:hover {
  --tw-shadow-color: rgb(221 214 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-200\/90:hover {
  --tw-shadow-color: rgb(221 214 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-300:hover {
  --tw-shadow-color: #c4b5fd;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-300\/10:hover {
  --tw-shadow-color: rgb(196 181 253 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-300\/20:hover {
  --tw-shadow-color: rgb(196 181 253 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-300\/30:hover {
  --tw-shadow-color: rgb(196 181 253 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-300\/40:hover {
  --tw-shadow-color: rgb(196 181 253 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-300\/5:hover {
  --tw-shadow-color: rgb(196 181 253 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-300\/50:hover {
  --tw-shadow-color: rgb(196 181 253 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-300\/60:hover {
  --tw-shadow-color: rgb(196 181 253 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-300\/70:hover {
  --tw-shadow-color: rgb(196 181 253 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-300\/80:hover {
  --tw-shadow-color: rgb(196 181 253 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-300\/90:hover {
  --tw-shadow-color: rgb(196 181 253 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-400:hover {
  --tw-shadow-color: #a78bfa;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-400\/10:hover {
  --tw-shadow-color: rgb(167 139 250 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-400\/20:hover {
  --tw-shadow-color: rgb(167 139 250 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-400\/30:hover {
  --tw-shadow-color: rgb(167 139 250 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-400\/40:hover {
  --tw-shadow-color: rgb(167 139 250 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-400\/5:hover {
  --tw-shadow-color: rgb(167 139 250 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-400\/50:hover {
  --tw-shadow-color: rgb(167 139 250 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-400\/60:hover {
  --tw-shadow-color: rgb(167 139 250 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-400\/70:hover {
  --tw-shadow-color: rgb(167 139 250 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-400\/80:hover {
  --tw-shadow-color: rgb(167 139 250 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-400\/90:hover {
  --tw-shadow-color: rgb(167 139 250 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-50:hover {
  --tw-shadow-color: #f5f3ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-50\/10:hover {
  --tw-shadow-color: rgb(245 243 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-50\/20:hover {
  --tw-shadow-color: rgb(245 243 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-50\/30:hover {
  --tw-shadow-color: rgb(245 243 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-50\/40:hover {
  --tw-shadow-color: rgb(245 243 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-50\/5:hover {
  --tw-shadow-color: rgb(245 243 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-50\/50:hover {
  --tw-shadow-color: rgb(245 243 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-50\/60:hover {
  --tw-shadow-color: rgb(245 243 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-50\/70:hover {
  --tw-shadow-color: rgb(245 243 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-50\/80:hover {
  --tw-shadow-color: rgb(245 243 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-50\/90:hover {
  --tw-shadow-color: rgb(245 243 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-500:hover {
  --tw-shadow-color: #8b5cf6;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-500\/10:hover {
  --tw-shadow-color: rgb(139 92 246 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-500\/20:hover {
  --tw-shadow-color: rgb(139 92 246 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-500\/30:hover {
  --tw-shadow-color: rgb(139 92 246 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-500\/40:hover {
  --tw-shadow-color: rgb(139 92 246 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-500\/5:hover {
  --tw-shadow-color: rgb(139 92 246 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-500\/50:hover {
  --tw-shadow-color: rgb(139 92 246 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-500\/60:hover {
  --tw-shadow-color: rgb(139 92 246 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-500\/70:hover {
  --tw-shadow-color: rgb(139 92 246 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-500\/80:hover {
  --tw-shadow-color: rgb(139 92 246 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-500\/90:hover {
  --tw-shadow-color: rgb(139 92 246 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-600:hover {
  --tw-shadow-color: #7c3aed;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-600\/10:hover {
  --tw-shadow-color: rgb(124 58 237 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-600\/20:hover {
  --tw-shadow-color: rgb(124 58 237 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-600\/30:hover {
  --tw-shadow-color: rgb(124 58 237 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-600\/40:hover {
  --tw-shadow-color: rgb(124 58 237 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-600\/5:hover {
  --tw-shadow-color: rgb(124 58 237 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-600\/50:hover {
  --tw-shadow-color: rgb(124 58 237 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-600\/60:hover {
  --tw-shadow-color: rgb(124 58 237 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-600\/70:hover {
  --tw-shadow-color: rgb(124 58 237 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-600\/80:hover {
  --tw-shadow-color: rgb(124 58 237 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-600\/90:hover {
  --tw-shadow-color: rgb(124 58 237 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-700:hover {
  --tw-shadow-color: #6d28d9;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-700\/10:hover {
  --tw-shadow-color: rgb(109 40 217 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-700\/20:hover {
  --tw-shadow-color: rgb(109 40 217 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-700\/30:hover {
  --tw-shadow-color: rgb(109 40 217 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-700\/40:hover {
  --tw-shadow-color: rgb(109 40 217 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-700\/5:hover {
  --tw-shadow-color: rgb(109 40 217 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-700\/50:hover {
  --tw-shadow-color: rgb(109 40 217 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-700\/60:hover {
  --tw-shadow-color: rgb(109 40 217 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-700\/70:hover {
  --tw-shadow-color: rgb(109 40 217 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-700\/80:hover {
  --tw-shadow-color: rgb(109 40 217 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-700\/90:hover {
  --tw-shadow-color: rgb(109 40 217 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-800:hover {
  --tw-shadow-color: #5b21b6;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-800\/10:hover {
  --tw-shadow-color: rgb(91 33 182 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-800\/20:hover {
  --tw-shadow-color: rgb(91 33 182 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-800\/30:hover {
  --tw-shadow-color: rgb(91 33 182 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-800\/40:hover {
  --tw-shadow-color: rgb(91 33 182 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-800\/5:hover {
  --tw-shadow-color: rgb(91 33 182 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-800\/50:hover {
  --tw-shadow-color: rgb(91 33 182 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-800\/60:hover {
  --tw-shadow-color: rgb(91 33 182 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-800\/70:hover {
  --tw-shadow-color: rgb(91 33 182 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-800\/80:hover {
  --tw-shadow-color: rgb(91 33 182 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-800\/90:hover {
  --tw-shadow-color: rgb(91 33 182 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-900:hover {
  --tw-shadow-color: #4c1d95;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-900\/10:hover {
  --tw-shadow-color: rgb(76 29 149 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-900\/20:hover {
  --tw-shadow-color: rgb(76 29 149 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-900\/30:hover {
  --tw-shadow-color: rgb(76 29 149 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-900\/40:hover {
  --tw-shadow-color: rgb(76 29 149 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-900\/5:hover {
  --tw-shadow-color: rgb(76 29 149 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-900\/50:hover {
  --tw-shadow-color: rgb(76 29 149 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-900\/60:hover {
  --tw-shadow-color: rgb(76 29 149 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-900\/70:hover {
  --tw-shadow-color: rgb(76 29 149 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-900\/80:hover {
  --tw-shadow-color: rgb(76 29 149 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-900\/90:hover {
  --tw-shadow-color: rgb(76 29 149 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-950:hover {
  --tw-shadow-color: #2e1065;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-950\/10:hover {
  --tw-shadow-color: rgb(46 16 101 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-950\/20:hover {
  --tw-shadow-color: rgb(46 16 101 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-950\/30:hover {
  --tw-shadow-color: rgb(46 16 101 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-950\/40:hover {
  --tw-shadow-color: rgb(46 16 101 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-950\/5:hover {
  --tw-shadow-color: rgb(46 16 101 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-950\/50:hover {
  --tw-shadow-color: rgb(46 16 101 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-950\/60:hover {
  --tw-shadow-color: rgb(46 16 101 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-950\/70:hover {
  --tw-shadow-color: rgb(46 16 101 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-950\/80:hover {
  --tw-shadow-color: rgb(46 16 101 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-violet-950\/90:hover {
  --tw-shadow-color: rgb(46 16 101 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-100:hover {
  --tw-shadow-color: #fef9c3;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-100\/10:hover {
  --tw-shadow-color: rgb(254 249 195 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-100\/20:hover {
  --tw-shadow-color: rgb(254 249 195 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-100\/30:hover {
  --tw-shadow-color: rgb(254 249 195 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-100\/40:hover {
  --tw-shadow-color: rgb(254 249 195 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-100\/5:hover {
  --tw-shadow-color: rgb(254 249 195 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-100\/50:hover {
  --tw-shadow-color: rgb(254 249 195 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-100\/60:hover {
  --tw-shadow-color: rgb(254 249 195 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-100\/70:hover {
  --tw-shadow-color: rgb(254 249 195 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-100\/80:hover {
  --tw-shadow-color: rgb(254 249 195 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-100\/90:hover {
  --tw-shadow-color: rgb(254 249 195 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-200:hover {
  --tw-shadow-color: #fef08a;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-200\/10:hover {
  --tw-shadow-color: rgb(254 240 138 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-200\/20:hover {
  --tw-shadow-color: rgb(254 240 138 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-200\/30:hover {
  --tw-shadow-color: rgb(254 240 138 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-200\/40:hover {
  --tw-shadow-color: rgb(254 240 138 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-200\/5:hover {
  --tw-shadow-color: rgb(254 240 138 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-200\/50:hover {
  --tw-shadow-color: rgb(254 240 138 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-200\/60:hover {
  --tw-shadow-color: rgb(254 240 138 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-200\/70:hover {
  --tw-shadow-color: rgb(254 240 138 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-200\/80:hover {
  --tw-shadow-color: rgb(254 240 138 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-200\/90:hover {
  --tw-shadow-color: rgb(254 240 138 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-300:hover {
  --tw-shadow-color: #fde047;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-300\/10:hover {
  --tw-shadow-color: rgb(253 224 71 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-300\/20:hover {
  --tw-shadow-color: rgb(253 224 71 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-300\/30:hover {
  --tw-shadow-color: rgb(253 224 71 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-300\/40:hover {
  --tw-shadow-color: rgb(253 224 71 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-300\/5:hover {
  --tw-shadow-color: rgb(253 224 71 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-300\/50:hover {
  --tw-shadow-color: rgb(253 224 71 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-300\/60:hover {
  --tw-shadow-color: rgb(253 224 71 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-300\/70:hover {
  --tw-shadow-color: rgb(253 224 71 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-300\/80:hover {
  --tw-shadow-color: rgb(253 224 71 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-300\/90:hover {
  --tw-shadow-color: rgb(253 224 71 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-400:hover {
  --tw-shadow-color: #facc15;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-400\/10:hover {
  --tw-shadow-color: rgb(250 204 21 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-400\/20:hover {
  --tw-shadow-color: rgb(250 204 21 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-400\/30:hover {
  --tw-shadow-color: rgb(250 204 21 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-400\/40:hover {
  --tw-shadow-color: rgb(250 204 21 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-400\/5:hover {
  --tw-shadow-color: rgb(250 204 21 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-400\/50:hover {
  --tw-shadow-color: rgb(250 204 21 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-400\/60:hover {
  --tw-shadow-color: rgb(250 204 21 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-400\/70:hover {
  --tw-shadow-color: rgb(250 204 21 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-400\/80:hover {
  --tw-shadow-color: rgb(250 204 21 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-400\/90:hover {
  --tw-shadow-color: rgb(250 204 21 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-50:hover {
  --tw-shadow-color: #fefce8;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-50\/10:hover {
  --tw-shadow-color: rgb(254 252 232 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-50\/20:hover {
  --tw-shadow-color: rgb(254 252 232 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-50\/30:hover {
  --tw-shadow-color: rgb(254 252 232 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-50\/40:hover {
  --tw-shadow-color: rgb(254 252 232 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-50\/5:hover {
  --tw-shadow-color: rgb(254 252 232 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-50\/50:hover {
  --tw-shadow-color: rgb(254 252 232 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-50\/60:hover {
  --tw-shadow-color: rgb(254 252 232 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-50\/70:hover {
  --tw-shadow-color: rgb(254 252 232 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-50\/80:hover {
  --tw-shadow-color: rgb(254 252 232 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-50\/90:hover {
  --tw-shadow-color: rgb(254 252 232 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-500:hover {
  --tw-shadow-color: #eab308;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-500\/10:hover {
  --tw-shadow-color: rgb(234 179 8 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-500\/20:hover {
  --tw-shadow-color: rgb(234 179 8 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-500\/30:hover {
  --tw-shadow-color: rgb(234 179 8 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-500\/40:hover {
  --tw-shadow-color: rgb(234 179 8 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-500\/5:hover {
  --tw-shadow-color: rgb(234 179 8 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-500\/50:hover {
  --tw-shadow-color: rgb(234 179 8 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-500\/60:hover {
  --tw-shadow-color: rgb(234 179 8 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-500\/70:hover {
  --tw-shadow-color: rgb(234 179 8 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-500\/80:hover {
  --tw-shadow-color: rgb(234 179 8 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-500\/90:hover {
  --tw-shadow-color: rgb(234 179 8 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-600:hover {
  --tw-shadow-color: #ca8a04;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-600\/10:hover {
  --tw-shadow-color: rgb(202 138 4 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-600\/20:hover {
  --tw-shadow-color: rgb(202 138 4 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-600\/30:hover {
  --tw-shadow-color: rgb(202 138 4 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-600\/40:hover {
  --tw-shadow-color: rgb(202 138 4 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-600\/5:hover {
  --tw-shadow-color: rgb(202 138 4 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-600\/50:hover {
  --tw-shadow-color: rgb(202 138 4 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-600\/60:hover {
  --tw-shadow-color: rgb(202 138 4 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-600\/70:hover {
  --tw-shadow-color: rgb(202 138 4 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-600\/80:hover {
  --tw-shadow-color: rgb(202 138 4 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-600\/90:hover {
  --tw-shadow-color: rgb(202 138 4 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-700:hover {
  --tw-shadow-color: #a16207;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-700\/10:hover {
  --tw-shadow-color: rgb(161 98 7 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-700\/20:hover {
  --tw-shadow-color: rgb(161 98 7 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-700\/30:hover {
  --tw-shadow-color: rgb(161 98 7 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-700\/40:hover {
  --tw-shadow-color: rgb(161 98 7 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-700\/5:hover {
  --tw-shadow-color: rgb(161 98 7 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-700\/50:hover {
  --tw-shadow-color: rgb(161 98 7 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-700\/60:hover {
  --tw-shadow-color: rgb(161 98 7 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-700\/70:hover {
  --tw-shadow-color: rgb(161 98 7 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-700\/80:hover {
  --tw-shadow-color: rgb(161 98 7 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-700\/90:hover {
  --tw-shadow-color: rgb(161 98 7 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-800:hover {
  --tw-shadow-color: #854d0e;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-800\/10:hover {
  --tw-shadow-color: rgb(133 77 14 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-800\/20:hover {
  --tw-shadow-color: rgb(133 77 14 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-800\/30:hover {
  --tw-shadow-color: rgb(133 77 14 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-800\/40:hover {
  --tw-shadow-color: rgb(133 77 14 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-800\/5:hover {
  --tw-shadow-color: rgb(133 77 14 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-800\/50:hover {
  --tw-shadow-color: rgb(133 77 14 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-800\/60:hover {
  --tw-shadow-color: rgb(133 77 14 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-800\/70:hover {
  --tw-shadow-color: rgb(133 77 14 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-800\/80:hover {
  --tw-shadow-color: rgb(133 77 14 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-800\/90:hover {
  --tw-shadow-color: rgb(133 77 14 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-900:hover {
  --tw-shadow-color: #713f12;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-900\/10:hover {
  --tw-shadow-color: rgb(113 63 18 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-900\/20:hover {
  --tw-shadow-color: rgb(113 63 18 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-900\/30:hover {
  --tw-shadow-color: rgb(113 63 18 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-900\/40:hover {
  --tw-shadow-color: rgb(113 63 18 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-900\/5:hover {
  --tw-shadow-color: rgb(113 63 18 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-900\/50:hover {
  --tw-shadow-color: rgb(113 63 18 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-900\/60:hover {
  --tw-shadow-color: rgb(113 63 18 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-900\/70:hover {
  --tw-shadow-color: rgb(113 63 18 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-900\/80:hover {
  --tw-shadow-color: rgb(113 63 18 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-900\/90:hover {
  --tw-shadow-color: rgb(113 63 18 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-950:hover {
  --tw-shadow-color: #422006;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-950\/10:hover {
  --tw-shadow-color: rgb(66 32 6 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-950\/20:hover {
  --tw-shadow-color: rgb(66 32 6 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-950\/30:hover {
  --tw-shadow-color: rgb(66 32 6 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-950\/40:hover {
  --tw-shadow-color: rgb(66 32 6 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-950\/5:hover {
  --tw-shadow-color: rgb(66 32 6 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-950\/50:hover {
  --tw-shadow-color: rgb(66 32 6 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-950\/60:hover {
  --tw-shadow-color: rgb(66 32 6 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-950\/70:hover {
  --tw-shadow-color: rgb(66 32 6 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-950\/80:hover {
  --tw-shadow-color: rgb(66 32 6 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-yellow-950\/90:hover {
  --tw-shadow-color: rgb(66 32 6 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-100:hover {
  --tw-shadow-color: #f4f4f5;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-100\/10:hover {
  --tw-shadow-color: rgb(244 244 245 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-100\/20:hover {
  --tw-shadow-color: rgb(244 244 245 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-100\/30:hover {
  --tw-shadow-color: rgb(244 244 245 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-100\/40:hover {
  --tw-shadow-color: rgb(244 244 245 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-100\/5:hover {
  --tw-shadow-color: rgb(244 244 245 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-100\/50:hover {
  --tw-shadow-color: rgb(244 244 245 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-100\/60:hover {
  --tw-shadow-color: rgb(244 244 245 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-100\/70:hover {
  --tw-shadow-color: rgb(244 244 245 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-100\/80:hover {
  --tw-shadow-color: rgb(244 244 245 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-100\/90:hover {
  --tw-shadow-color: rgb(244 244 245 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-200:hover {
  --tw-shadow-color: #e4e4e7;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-200\/10:hover {
  --tw-shadow-color: rgb(228 228 231 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-200\/20:hover {
  --tw-shadow-color: rgb(228 228 231 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-200\/30:hover {
  --tw-shadow-color: rgb(228 228 231 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-200\/40:hover {
  --tw-shadow-color: rgb(228 228 231 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-200\/5:hover {
  --tw-shadow-color: rgb(228 228 231 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-200\/50:hover {
  --tw-shadow-color: rgb(228 228 231 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-200\/60:hover {
  --tw-shadow-color: rgb(228 228 231 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-200\/70:hover {
  --tw-shadow-color: rgb(228 228 231 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-200\/80:hover {
  --tw-shadow-color: rgb(228 228 231 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-200\/90:hover {
  --tw-shadow-color: rgb(228 228 231 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-300:hover {
  --tw-shadow-color: #d4d4d8;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-300\/10:hover {
  --tw-shadow-color: rgb(212 212 216 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-300\/20:hover {
  --tw-shadow-color: rgb(212 212 216 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-300\/30:hover {
  --tw-shadow-color: rgb(212 212 216 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-300\/40:hover {
  --tw-shadow-color: rgb(212 212 216 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-300\/5:hover {
  --tw-shadow-color: rgb(212 212 216 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-300\/50:hover {
  --tw-shadow-color: rgb(212 212 216 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-300\/60:hover {
  --tw-shadow-color: rgb(212 212 216 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-300\/70:hover {
  --tw-shadow-color: rgb(212 212 216 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-300\/80:hover {
  --tw-shadow-color: rgb(212 212 216 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-300\/90:hover {
  --tw-shadow-color: rgb(212 212 216 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-400:hover {
  --tw-shadow-color: #a1a1aa;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-400\/10:hover {
  --tw-shadow-color: rgb(161 161 170 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-400\/20:hover {
  --tw-shadow-color: rgb(161 161 170 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-400\/30:hover {
  --tw-shadow-color: rgb(161 161 170 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-400\/40:hover {
  --tw-shadow-color: rgb(161 161 170 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-400\/5:hover {
  --tw-shadow-color: rgb(161 161 170 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-400\/50:hover {
  --tw-shadow-color: rgb(161 161 170 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-400\/60:hover {
  --tw-shadow-color: rgb(161 161 170 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-400\/70:hover {
  --tw-shadow-color: rgb(161 161 170 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-400\/80:hover {
  --tw-shadow-color: rgb(161 161 170 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-400\/90:hover {
  --tw-shadow-color: rgb(161 161 170 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-50:hover {
  --tw-shadow-color: #fafafa;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-50\/10:hover {
  --tw-shadow-color: rgb(250 250 250 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-50\/20:hover {
  --tw-shadow-color: rgb(250 250 250 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-50\/30:hover {
  --tw-shadow-color: rgb(250 250 250 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-50\/40:hover {
  --tw-shadow-color: rgb(250 250 250 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-50\/5:hover {
  --tw-shadow-color: rgb(250 250 250 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-50\/50:hover {
  --tw-shadow-color: rgb(250 250 250 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-50\/60:hover {
  --tw-shadow-color: rgb(250 250 250 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-50\/70:hover {
  --tw-shadow-color: rgb(250 250 250 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-50\/80:hover {
  --tw-shadow-color: rgb(250 250 250 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-50\/90:hover {
  --tw-shadow-color: rgb(250 250 250 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-500:hover {
  --tw-shadow-color: #71717a;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-500\/10:hover {
  --tw-shadow-color: rgb(113 113 122 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-500\/20:hover {
  --tw-shadow-color: rgb(113 113 122 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-500\/30:hover {
  --tw-shadow-color: rgb(113 113 122 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-500\/40:hover {
  --tw-shadow-color: rgb(113 113 122 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-500\/5:hover {
  --tw-shadow-color: rgb(113 113 122 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-500\/50:hover {
  --tw-shadow-color: rgb(113 113 122 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-500\/60:hover {
  --tw-shadow-color: rgb(113 113 122 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-500\/70:hover {
  --tw-shadow-color: rgb(113 113 122 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-500\/80:hover {
  --tw-shadow-color: rgb(113 113 122 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-500\/90:hover {
  --tw-shadow-color: rgb(113 113 122 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-600:hover {
  --tw-shadow-color: #52525b;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-600\/10:hover {
  --tw-shadow-color: rgb(82 82 91 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-600\/20:hover {
  --tw-shadow-color: rgb(82 82 91 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-600\/30:hover {
  --tw-shadow-color: rgb(82 82 91 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-600\/40:hover {
  --tw-shadow-color: rgb(82 82 91 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-600\/5:hover {
  --tw-shadow-color: rgb(82 82 91 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-600\/50:hover {
  --tw-shadow-color: rgb(82 82 91 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-600\/60:hover {
  --tw-shadow-color: rgb(82 82 91 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-600\/70:hover {
  --tw-shadow-color: rgb(82 82 91 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-600\/80:hover {
  --tw-shadow-color: rgb(82 82 91 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-600\/90:hover {
  --tw-shadow-color: rgb(82 82 91 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-700:hover {
  --tw-shadow-color: #3f3f46;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-700\/10:hover {
  --tw-shadow-color: rgb(63 63 70 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-700\/20:hover {
  --tw-shadow-color: rgb(63 63 70 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-700\/30:hover {
  --tw-shadow-color: rgb(63 63 70 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-700\/40:hover {
  --tw-shadow-color: rgb(63 63 70 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-700\/5:hover {
  --tw-shadow-color: rgb(63 63 70 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-700\/50:hover {
  --tw-shadow-color: rgb(63 63 70 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-700\/60:hover {
  --tw-shadow-color: rgb(63 63 70 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-700\/70:hover {
  --tw-shadow-color: rgb(63 63 70 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-700\/80:hover {
  --tw-shadow-color: rgb(63 63 70 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-700\/90:hover {
  --tw-shadow-color: rgb(63 63 70 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-800:hover {
  --tw-shadow-color: #27272a;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-800\/10:hover {
  --tw-shadow-color: rgb(39 39 42 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-800\/20:hover {
  --tw-shadow-color: rgb(39 39 42 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-800\/30:hover {
  --tw-shadow-color: rgb(39 39 42 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-800\/40:hover {
  --tw-shadow-color: rgb(39 39 42 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-800\/5:hover {
  --tw-shadow-color: rgb(39 39 42 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-800\/50:hover {
  --tw-shadow-color: rgb(39 39 42 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-800\/60:hover {
  --tw-shadow-color: rgb(39 39 42 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-800\/70:hover {
  --tw-shadow-color: rgb(39 39 42 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-800\/80:hover {
  --tw-shadow-color: rgb(39 39 42 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-800\/90:hover {
  --tw-shadow-color: rgb(39 39 42 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-900:hover {
  --tw-shadow-color: #18181b;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-900\/10:hover {
  --tw-shadow-color: rgb(24 24 27 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-900\/20:hover {
  --tw-shadow-color: rgb(24 24 27 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-900\/30:hover {
  --tw-shadow-color: rgb(24 24 27 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-900\/40:hover {
  --tw-shadow-color: rgb(24 24 27 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-900\/5:hover {
  --tw-shadow-color: rgb(24 24 27 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-900\/50:hover {
  --tw-shadow-color: rgb(24 24 27 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-900\/60:hover {
  --tw-shadow-color: rgb(24 24 27 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-900\/70:hover {
  --tw-shadow-color: rgb(24 24 27 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-900\/80:hover {
  --tw-shadow-color: rgb(24 24 27 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-900\/90:hover {
  --tw-shadow-color: rgb(24 24 27 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-950:hover {
  --tw-shadow-color: #09090b;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-950\/10:hover {
  --tw-shadow-color: rgb(9 9 11 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-950\/20:hover {
  --tw-shadow-color: rgb(9 9 11 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-950\/30:hover {
  --tw-shadow-color: rgb(9 9 11 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-950\/40:hover {
  --tw-shadow-color: rgb(9 9 11 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-950\/5:hover {
  --tw-shadow-color: rgb(9 9 11 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-950\/50:hover {
  --tw-shadow-color: rgb(9 9 11 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-950\/60:hover {
  --tw-shadow-color: rgb(9 9 11 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-950\/70:hover {
  --tw-shadow-color: rgb(9 9 11 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-950\/80:hover {
  --tw-shadow-color: rgb(9 9 11 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-zinc-950\/90:hover {
  --tw-shadow-color: rgb(9 9 11 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:outline-none:hover {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.hover\:ring-1:hover {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.hover\:ring-2:hover {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.hover\:ring-4:hover {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.hover\:ring-8:hover {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.hover\:ring-amber-100:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 243 199 / var(--tw-ring-opacity, 1));
}
.hover\:ring-amber-200:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(253 230 138 / var(--tw-ring-opacity, 1));
}
.hover\:ring-amber-300:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(252 211 77 / var(--tw-ring-opacity, 1));
}
.hover\:ring-amber-400:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(251 191 36 / var(--tw-ring-opacity, 1));
}
.hover\:ring-amber-50:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 251 235 / var(--tw-ring-opacity, 1));
}
.hover\:ring-amber-500:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(245 158 11 / var(--tw-ring-opacity, 1));
}
.hover\:ring-amber-600:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(217 119 6 / var(--tw-ring-opacity, 1));
}
.hover\:ring-amber-700:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(180 83 9 / var(--tw-ring-opacity, 1));
}
.hover\:ring-amber-800:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(146 64 14 / var(--tw-ring-opacity, 1));
}
.hover\:ring-amber-900:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(120 53 15 / var(--tw-ring-opacity, 1));
}
.hover\:ring-amber-950:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(69 26 3 / var(--tw-ring-opacity, 1));
}
.hover\:ring-black:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity, 1));
}
.hover\:ring-blue-100:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(219 234 254 / var(--tw-ring-opacity, 1));
}
.hover\:ring-blue-200:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(191 219 254 / var(--tw-ring-opacity, 1));
}
.hover\:ring-blue-300:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(147 197 253 / var(--tw-ring-opacity, 1));
}
.hover\:ring-blue-400:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(96 165 250 / var(--tw-ring-opacity, 1));
}
.hover\:ring-blue-50:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(239 246 255 / var(--tw-ring-opacity, 1));
}
.hover\:ring-blue-500:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
}
.hover\:ring-blue-600:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(37 99 235 / var(--tw-ring-opacity, 1));
}
.hover\:ring-blue-700:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(29 78 216 / var(--tw-ring-opacity, 1));
}
.hover\:ring-blue-800:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(30 64 175 / var(--tw-ring-opacity, 1));
}
.hover\:ring-blue-900:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(30 58 138 / var(--tw-ring-opacity, 1));
}
.hover\:ring-blue-950:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(23 37 84 / var(--tw-ring-opacity, 1));
}
.hover\:ring-cyan-100:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(207 250 254 / var(--tw-ring-opacity, 1));
}
.hover\:ring-cyan-200:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(165 243 252 / var(--tw-ring-opacity, 1));
}
.hover\:ring-cyan-300:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(103 232 249 / var(--tw-ring-opacity, 1));
}
.hover\:ring-cyan-400:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(34 211 238 / var(--tw-ring-opacity, 1));
}
.hover\:ring-cyan-50:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(236 254 255 / var(--tw-ring-opacity, 1));
}
.hover\:ring-cyan-500:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(6 182 212 / var(--tw-ring-opacity, 1));
}
.hover\:ring-cyan-600:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(8 145 178 / var(--tw-ring-opacity, 1));
}
.hover\:ring-cyan-700:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(14 116 144 / var(--tw-ring-opacity, 1));
}
.hover\:ring-cyan-800:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(21 94 117 / var(--tw-ring-opacity, 1));
}
.hover\:ring-cyan-900:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(22 78 99 / var(--tw-ring-opacity, 1));
}
.hover\:ring-cyan-950:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(8 51 68 / var(--tw-ring-opacity, 1));
}
.hover\:ring-emerald-100:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(209 250 229 / var(--tw-ring-opacity, 1));
}
.hover\:ring-emerald-200:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(167 243 208 / var(--tw-ring-opacity, 1));
}
.hover\:ring-emerald-300:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(110 231 183 / var(--tw-ring-opacity, 1));
}
.hover\:ring-emerald-400:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(52 211 153 / var(--tw-ring-opacity, 1));
}
.hover\:ring-emerald-50:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(236 253 245 / var(--tw-ring-opacity, 1));
}
.hover\:ring-emerald-500:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(16 185 129 / var(--tw-ring-opacity, 1));
}
.hover\:ring-emerald-600:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(5 150 105 / var(--tw-ring-opacity, 1));
}
.hover\:ring-emerald-700:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(4 120 87 / var(--tw-ring-opacity, 1));
}
.hover\:ring-emerald-800:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(6 95 70 / var(--tw-ring-opacity, 1));
}
.hover\:ring-emerald-900:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(6 78 59 / var(--tw-ring-opacity, 1));
}
.hover\:ring-emerald-950:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(2 44 34 / var(--tw-ring-opacity, 1));
}
.hover\:ring-fuchsia-100:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(250 232 255 / var(--tw-ring-opacity, 1));
}
.hover\:ring-fuchsia-200:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(245 208 254 / var(--tw-ring-opacity, 1));
}
.hover\:ring-fuchsia-300:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(240 171 252 / var(--tw-ring-opacity, 1));
}
.hover\:ring-fuchsia-400:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(232 121 249 / var(--tw-ring-opacity, 1));
}
.hover\:ring-fuchsia-50:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(253 244 255 / var(--tw-ring-opacity, 1));
}
.hover\:ring-fuchsia-500:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(217 70 239 / var(--tw-ring-opacity, 1));
}
.hover\:ring-fuchsia-600:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(192 38 211 / var(--tw-ring-opacity, 1));
}
.hover\:ring-fuchsia-700:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(162 28 175 / var(--tw-ring-opacity, 1));
}
.hover\:ring-fuchsia-800:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(134 25 143 / var(--tw-ring-opacity, 1));
}
.hover\:ring-fuchsia-900:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(112 26 117 / var(--tw-ring-opacity, 1));
}
.hover\:ring-fuchsia-950:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(74 4 78 / var(--tw-ring-opacity, 1));
}
.hover\:ring-gray-100:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(243 244 246 / var(--tw-ring-opacity, 1));
}
.hover\:ring-gray-200:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity, 1));
}
.hover\:ring-gray-300:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity, 1));
}
.hover\:ring-gray-400:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(156 163 175 / var(--tw-ring-opacity, 1));
}
.hover\:ring-gray-50:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(249 250 251 / var(--tw-ring-opacity, 1));
}
.hover\:ring-gray-500:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(107 114 128 / var(--tw-ring-opacity, 1));
}
.hover\:ring-gray-600:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(75 85 99 / var(--tw-ring-opacity, 1));
}
.hover\:ring-gray-700:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(55 65 81 / var(--tw-ring-opacity, 1));
}
.hover\:ring-gray-800:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(31 41 55 / var(--tw-ring-opacity, 1));
}
.hover\:ring-gray-900:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(17 24 39 / var(--tw-ring-opacity, 1));
}
.hover\:ring-gray-950:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(3 7 18 / var(--tw-ring-opacity, 1));
}
.hover\:ring-green-100:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(220 252 231 / var(--tw-ring-opacity, 1));
}
.hover\:ring-green-200:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(187 247 208 / var(--tw-ring-opacity, 1));
}
.hover\:ring-green-300:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(134 239 172 / var(--tw-ring-opacity, 1));
}
.hover\:ring-green-400:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(74 222 128 / var(--tw-ring-opacity, 1));
}
.hover\:ring-green-50:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(240 253 244 / var(--tw-ring-opacity, 1));
}
.hover\:ring-green-500:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(34 197 94 / var(--tw-ring-opacity, 1));
}
.hover\:ring-green-600:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(22 163 74 / var(--tw-ring-opacity, 1));
}
.hover\:ring-green-700:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(21 128 61 / var(--tw-ring-opacity, 1));
}
.hover\:ring-green-800:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(22 101 52 / var(--tw-ring-opacity, 1));
}
.hover\:ring-green-900:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(20 83 45 / var(--tw-ring-opacity, 1));
}
.hover\:ring-green-950:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(5 46 22 / var(--tw-ring-opacity, 1));
}
.hover\:ring-indigo-100:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(224 231 255 / var(--tw-ring-opacity, 1));
}
.hover\:ring-indigo-200:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(199 210 254 / var(--tw-ring-opacity, 1));
}
.hover\:ring-indigo-300:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(165 180 252 / var(--tw-ring-opacity, 1));
}
.hover\:ring-indigo-400:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(129 140 248 / var(--tw-ring-opacity, 1));
}
.hover\:ring-indigo-50:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(238 242 255 / var(--tw-ring-opacity, 1));
}
.hover\:ring-indigo-500:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(99 102 241 / var(--tw-ring-opacity, 1));
}
.hover\:ring-indigo-600:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(79 70 229 / var(--tw-ring-opacity, 1));
}
.hover\:ring-indigo-700:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(67 56 202 / var(--tw-ring-opacity, 1));
}
.hover\:ring-indigo-800:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(55 48 163 / var(--tw-ring-opacity, 1));
}
.hover\:ring-indigo-900:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(49 46 129 / var(--tw-ring-opacity, 1));
}
.hover\:ring-indigo-950:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(30 27 75 / var(--tw-ring-opacity, 1));
}
.hover\:ring-lime-100:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(236 252 203 / var(--tw-ring-opacity, 1));
}
.hover\:ring-lime-200:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(217 249 157 / var(--tw-ring-opacity, 1));
}
.hover\:ring-lime-300:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(190 242 100 / var(--tw-ring-opacity, 1));
}
.hover\:ring-lime-400:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(163 230 53 / var(--tw-ring-opacity, 1));
}
.hover\:ring-lime-50:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(247 254 231 / var(--tw-ring-opacity, 1));
}
.hover\:ring-lime-500:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(132 204 22 / var(--tw-ring-opacity, 1));
}
.hover\:ring-lime-600:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(101 163 13 / var(--tw-ring-opacity, 1));
}
.hover\:ring-lime-700:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(77 124 15 / var(--tw-ring-opacity, 1));
}
.hover\:ring-lime-800:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(63 98 18 / var(--tw-ring-opacity, 1));
}
.hover\:ring-lime-900:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(54 83 20 / var(--tw-ring-opacity, 1));
}
.hover\:ring-lime-950:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(26 46 5 / var(--tw-ring-opacity, 1));
}
.hover\:ring-neutral-100:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(245 245 245 / var(--tw-ring-opacity, 1));
}
.hover\:ring-neutral-200:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(229 229 229 / var(--tw-ring-opacity, 1));
}
.hover\:ring-neutral-300:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(212 212 212 / var(--tw-ring-opacity, 1));
}
.hover\:ring-neutral-400:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(163 163 163 / var(--tw-ring-opacity, 1));
}
.hover\:ring-neutral-50:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(250 250 250 / var(--tw-ring-opacity, 1));
}
.hover\:ring-neutral-500:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(115 115 115 / var(--tw-ring-opacity, 1));
}
.hover\:ring-neutral-600:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(82 82 82 / var(--tw-ring-opacity, 1));
}
.hover\:ring-neutral-700:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(64 64 64 / var(--tw-ring-opacity, 1));
}
.hover\:ring-neutral-800:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(38 38 38 / var(--tw-ring-opacity, 1));
}
.hover\:ring-neutral-900:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(23 23 23 / var(--tw-ring-opacity, 1));
}
.hover\:ring-neutral-950:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(10 10 10 / var(--tw-ring-opacity, 1));
}
.hover\:ring-orange-100:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 237 213 / var(--tw-ring-opacity, 1));
}
.hover\:ring-orange-200:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 215 170 / var(--tw-ring-opacity, 1));
}
.hover\:ring-orange-300:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(253 186 116 / var(--tw-ring-opacity, 1));
}
.hover\:ring-orange-400:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(251 146 60 / var(--tw-ring-opacity, 1));
}
.hover\:ring-orange-50:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 247 237 / var(--tw-ring-opacity, 1));
}
.hover\:ring-orange-500:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(249 115 22 / var(--tw-ring-opacity, 1));
}
.hover\:ring-orange-600:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(234 88 12 / var(--tw-ring-opacity, 1));
}
.hover\:ring-orange-700:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(194 65 12 / var(--tw-ring-opacity, 1));
}
.hover\:ring-orange-800:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(154 52 18 / var(--tw-ring-opacity, 1));
}
.hover\:ring-orange-900:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(124 45 18 / var(--tw-ring-opacity, 1));
}
.hover\:ring-orange-950:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(67 20 7 / var(--tw-ring-opacity, 1));
}
.hover\:ring-pink-100:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(252 231 243 / var(--tw-ring-opacity, 1));
}
.hover\:ring-pink-200:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(251 207 232 / var(--tw-ring-opacity, 1));
}
.hover\:ring-pink-300:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(249 168 212 / var(--tw-ring-opacity, 1));
}
.hover\:ring-pink-400:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(244 114 182 / var(--tw-ring-opacity, 1));
}
.hover\:ring-pink-50:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(253 242 248 / var(--tw-ring-opacity, 1));
}
.hover\:ring-pink-500:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(236 72 153 / var(--tw-ring-opacity, 1));
}
.hover\:ring-pink-600:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(219 39 119 / var(--tw-ring-opacity, 1));
}
.hover\:ring-pink-700:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(190 24 93 / var(--tw-ring-opacity, 1));
}
.hover\:ring-pink-800:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(157 23 77 / var(--tw-ring-opacity, 1));
}
.hover\:ring-pink-900:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(131 24 67 / var(--tw-ring-opacity, 1));
}
.hover\:ring-pink-950:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(80 7 36 / var(--tw-ring-opacity, 1));
}
.hover\:ring-purple-100:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(243 232 255 / var(--tw-ring-opacity, 1));
}
.hover\:ring-purple-200:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(233 213 255 / var(--tw-ring-opacity, 1));
}
.hover\:ring-purple-300:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(216 180 254 / var(--tw-ring-opacity, 1));
}
.hover\:ring-purple-400:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(192 132 252 / var(--tw-ring-opacity, 1));
}
.hover\:ring-purple-50:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(250 245 255 / var(--tw-ring-opacity, 1));
}
.hover\:ring-purple-500:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(168 85 247 / var(--tw-ring-opacity, 1));
}
.hover\:ring-purple-600:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(147 51 234 / var(--tw-ring-opacity, 1));
}
.hover\:ring-purple-700:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(126 34 206 / var(--tw-ring-opacity, 1));
}
.hover\:ring-purple-800:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(107 33 168 / var(--tw-ring-opacity, 1));
}
.hover\:ring-purple-900:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(88 28 135 / var(--tw-ring-opacity, 1));
}
.hover\:ring-purple-950:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 7 100 / var(--tw-ring-opacity, 1));
}
.hover\:ring-red-100:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 226 226 / var(--tw-ring-opacity, 1));
}
.hover\:ring-red-200:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 202 202 / var(--tw-ring-opacity, 1));
}
.hover\:ring-red-300:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(252 165 165 / var(--tw-ring-opacity, 1));
}
.hover\:ring-red-400:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(248 113 113 / var(--tw-ring-opacity, 1));
}
.hover\:ring-red-50:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 242 242 / var(--tw-ring-opacity, 1));
}
.hover\:ring-red-500:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity, 1));
}
.hover\:ring-red-600:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(220 38 38 / var(--tw-ring-opacity, 1));
}
.hover\:ring-red-700:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(185 28 28 / var(--tw-ring-opacity, 1));
}
.hover\:ring-red-800:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(153 27 27 / var(--tw-ring-opacity, 1));
}
.hover\:ring-red-900:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(127 29 29 / var(--tw-ring-opacity, 1));
}
.hover\:ring-red-950:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(69 10 10 / var(--tw-ring-opacity, 1));
}
.hover\:ring-rose-100:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 228 230 / var(--tw-ring-opacity, 1));
}
.hover\:ring-rose-200:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 205 211 / var(--tw-ring-opacity, 1));
}
.hover\:ring-rose-300:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(253 164 175 / var(--tw-ring-opacity, 1));
}
.hover\:ring-rose-400:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(251 113 133 / var(--tw-ring-opacity, 1));
}
.hover\:ring-rose-50:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 241 242 / var(--tw-ring-opacity, 1));
}
.hover\:ring-rose-500:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(244 63 94 / var(--tw-ring-opacity, 1));
}
.hover\:ring-rose-600:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(225 29 72 / var(--tw-ring-opacity, 1));
}
.hover\:ring-rose-700:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(190 18 60 / var(--tw-ring-opacity, 1));
}
.hover\:ring-rose-800:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(159 18 57 / var(--tw-ring-opacity, 1));
}
.hover\:ring-rose-900:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(136 19 55 / var(--tw-ring-opacity, 1));
}
.hover\:ring-rose-950:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(76 5 25 / var(--tw-ring-opacity, 1));
}
.hover\:ring-sky-100:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(224 242 254 / var(--tw-ring-opacity, 1));
}
.hover\:ring-sky-200:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(186 230 253 / var(--tw-ring-opacity, 1));
}
.hover\:ring-sky-300:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(125 211 252 / var(--tw-ring-opacity, 1));
}
.hover\:ring-sky-400:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(56 189 248 / var(--tw-ring-opacity, 1));
}
.hover\:ring-sky-50:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(240 249 255 / var(--tw-ring-opacity, 1));
}
.hover\:ring-sky-500:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(14 165 233 / var(--tw-ring-opacity, 1));
}
.hover\:ring-sky-600:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(2 132 199 / var(--tw-ring-opacity, 1));
}
.hover\:ring-sky-700:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(3 105 161 / var(--tw-ring-opacity, 1));
}
.hover\:ring-sky-800:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(7 89 133 / var(--tw-ring-opacity, 1));
}
.hover\:ring-sky-900:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(12 74 110 / var(--tw-ring-opacity, 1));
}
.hover\:ring-sky-950:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(8 47 73 / var(--tw-ring-opacity, 1));
}
.hover\:ring-slate-100:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(241 245 249 / var(--tw-ring-opacity, 1));
}
.hover\:ring-slate-200:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(226 232 240 / var(--tw-ring-opacity, 1));
}
.hover\:ring-slate-300:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(203 213 225 / var(--tw-ring-opacity, 1));
}
.hover\:ring-slate-400:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(148 163 184 / var(--tw-ring-opacity, 1));
}
.hover\:ring-slate-50:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(248 250 252 / var(--tw-ring-opacity, 1));
}
.hover\:ring-slate-500:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(100 116 139 / var(--tw-ring-opacity, 1));
}
.hover\:ring-slate-600:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(71 85 105 / var(--tw-ring-opacity, 1));
}
.hover\:ring-slate-700:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(51 65 85 / var(--tw-ring-opacity, 1));
}
.hover\:ring-slate-800:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(30 41 59 / var(--tw-ring-opacity, 1));
}
.hover\:ring-slate-900:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(15 23 42 / var(--tw-ring-opacity, 1));
}
.hover\:ring-slate-950:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(2 6 23 / var(--tw-ring-opacity, 1));
}
.hover\:ring-stone-100:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(245 245 244 / var(--tw-ring-opacity, 1));
}
.hover\:ring-stone-200:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(231 229 228 / var(--tw-ring-opacity, 1));
}
.hover\:ring-stone-300:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(214 211 209 / var(--tw-ring-opacity, 1));
}
.hover\:ring-stone-400:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(168 162 158 / var(--tw-ring-opacity, 1));
}
.hover\:ring-stone-50:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(250 250 249 / var(--tw-ring-opacity, 1));
}
.hover\:ring-stone-500:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(120 113 108 / var(--tw-ring-opacity, 1));
}
.hover\:ring-stone-600:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(87 83 78 / var(--tw-ring-opacity, 1));
}
.hover\:ring-stone-700:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(68 64 60 / var(--tw-ring-opacity, 1));
}
.hover\:ring-stone-800:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(41 37 36 / var(--tw-ring-opacity, 1));
}
.hover\:ring-stone-900:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(28 25 23 / var(--tw-ring-opacity, 1));
}
.hover\:ring-stone-950:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(12 10 9 / var(--tw-ring-opacity, 1));
}
.hover\:ring-teal-100:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(204 251 241 / var(--tw-ring-opacity, 1));
}
.hover\:ring-teal-200:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(153 246 228 / var(--tw-ring-opacity, 1));
}
.hover\:ring-teal-300:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(94 234 212 / var(--tw-ring-opacity, 1));
}
.hover\:ring-teal-400:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(45 212 191 / var(--tw-ring-opacity, 1));
}
.hover\:ring-teal-50:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(240 253 250 / var(--tw-ring-opacity, 1));
}
.hover\:ring-teal-500:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(20 184 166 / var(--tw-ring-opacity, 1));
}
.hover\:ring-teal-600:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(13 148 136 / var(--tw-ring-opacity, 1));
}
.hover\:ring-teal-700:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(15 118 110 / var(--tw-ring-opacity, 1));
}
.hover\:ring-teal-800:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(17 94 89 / var(--tw-ring-opacity, 1));
}
.hover\:ring-teal-900:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(19 78 74 / var(--tw-ring-opacity, 1));
}
.hover\:ring-teal-950:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(4 47 46 / var(--tw-ring-opacity, 1));
}
.hover\:ring-violet-100:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(237 233 254 / var(--tw-ring-opacity, 1));
}
.hover\:ring-violet-200:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(221 214 254 / var(--tw-ring-opacity, 1));
}
.hover\:ring-violet-300:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(196 181 253 / var(--tw-ring-opacity, 1));
}
.hover\:ring-violet-400:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(167 139 250 / var(--tw-ring-opacity, 1));
}
.hover\:ring-violet-50:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(245 243 255 / var(--tw-ring-opacity, 1));
}
.hover\:ring-violet-500:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(139 92 246 / var(--tw-ring-opacity, 1));
}
.hover\:ring-violet-600:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(124 58 237 / var(--tw-ring-opacity, 1));
}
.hover\:ring-violet-700:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(109 40 217 / var(--tw-ring-opacity, 1));
}
.hover\:ring-violet-800:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(91 33 182 / var(--tw-ring-opacity, 1));
}
.hover\:ring-violet-900:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(76 29 149 / var(--tw-ring-opacity, 1));
}
.hover\:ring-violet-950:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(46 16 101 / var(--tw-ring-opacity, 1));
}
.hover\:ring-white:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity, 1));
}
.hover\:ring-yellow-100:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 249 195 / var(--tw-ring-opacity, 1));
}
.hover\:ring-yellow-200:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 240 138 / var(--tw-ring-opacity, 1));
}
.hover\:ring-yellow-300:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(253 224 71 / var(--tw-ring-opacity, 1));
}
.hover\:ring-yellow-400:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(250 204 21 / var(--tw-ring-opacity, 1));
}
.hover\:ring-yellow-50:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 252 232 / var(--tw-ring-opacity, 1));
}
.hover\:ring-yellow-500:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(234 179 8 / var(--tw-ring-opacity, 1));
}
.hover\:ring-yellow-600:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(202 138 4 / var(--tw-ring-opacity, 1));
}
.hover\:ring-yellow-700:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(161 98 7 / var(--tw-ring-opacity, 1));
}
.hover\:ring-yellow-800:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(133 77 14 / var(--tw-ring-opacity, 1));
}
.hover\:ring-yellow-900:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(113 63 18 / var(--tw-ring-opacity, 1));
}
.hover\:ring-yellow-950:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(66 32 6 / var(--tw-ring-opacity, 1));
}
.hover\:ring-zinc-100:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(244 244 245 / var(--tw-ring-opacity, 1));
}
.hover\:ring-zinc-200:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(228 228 231 / var(--tw-ring-opacity, 1));
}
.hover\:ring-zinc-300:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(212 212 216 / var(--tw-ring-opacity, 1));
}
.hover\:ring-zinc-400:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(161 161 170 / var(--tw-ring-opacity, 1));
}
.hover\:ring-zinc-50:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(250 250 250 / var(--tw-ring-opacity, 1));
}
.hover\:ring-zinc-500:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(113 113 122 / var(--tw-ring-opacity, 1));
}
.hover\:ring-zinc-600:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(82 82 91 / var(--tw-ring-opacity, 1));
}
.hover\:ring-zinc-700:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(63 63 70 / var(--tw-ring-opacity, 1));
}
.hover\:ring-zinc-800:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(39 39 42 / var(--tw-ring-opacity, 1));
}
.hover\:ring-zinc-900:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(24 24 27 / var(--tw-ring-opacity, 1));
}
.hover\:ring-zinc-950:hover {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(9 9 11 / var(--tw-ring-opacity, 1));
}
.hover\:blur-2xl:hover {
  --tw-blur: blur(40px);
  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);
}
.hover\:blur-3xl:hover {
  --tw-blur: blur(64px);
  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);
}
.hover\:blur-lg:hover {
  --tw-blur: blur(16px);
  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);
}
.hover\:blur-md:hover {
  --tw-blur: blur(12px);
  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);
}
.hover\:blur-sm:hover {
  --tw-blur: blur(4px);
  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);
}
.hover\:blur-xl:hover {
  --tw-blur: blur(24px);
  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);
}
.hover\:drop-shadow-lg:hover {
  --tw-drop-shadow: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
  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);
}
.hover\:drop-shadow-md:hover {
  --tw-drop-shadow: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
  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);
}
.hover\:drop-shadow-sm:hover {
  --tw-drop-shadow: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05));
  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);
}
.hover\:backdrop-blur-lg:hover {
  --tw-backdrop-blur: blur(16px);
  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);
}
.hover\:backdrop-blur-md:hover {
  --tw-backdrop-blur: blur(12px);
  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);
}
.hover\:motion-blur-in-lg:hover {
  --motion-origin-blur: 16px;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-blur-in-md:hover {
  --motion-origin-blur: 12px;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-blur-out-lg:hover {
  --motion-end-blur: 16px;
  --motion-filter-out-animation: motion-filter-out calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-out-animation), var(--motion-translate-out-animation), var(--motion-rotate-out-animation), var(--motion-filter-out-animation), var(--motion-opacity-out-animation), var(--motion-background-color-out-animation), var(--motion-text-color-out-animation);
}
.hover\:motion-blur-out-md:hover {
  --motion-end-blur: 12px;
  --motion-filter-out-animation: motion-filter-out calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-out-animation), var(--motion-translate-out-animation), var(--motion-rotate-out-animation), var(--motion-filter-out-animation), var(--motion-opacity-out-animation), var(--motion-background-color-out-animation), var(--motion-text-color-out-animation);
}
.hover\:motion-blur-loop-lg:hover {
  --motion-loop-blur: 16px;
  --motion-filter-loop-animation: motion-filter-loop-mirror calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both var(--motion-filter-loop-count, var(--motion-loop-count));
  animation-composition: accumulate;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.hover\:motion-blur-loop-md:hover {
  --motion-loop-blur: 12px;
  --motion-filter-loop-animation: motion-filter-loop-mirror calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both var(--motion-filter-loop-count, var(--motion-loop-count));
  animation-composition: accumulate;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:m-0:focus {
  margin: 0px;
}
.focus\:m-1:focus {
  margin: 0.25rem;
}
.focus\:m-10:focus {
  margin: 2.5rem;
}
.focus\:m-11:focus {
  margin: 2.75rem;
}
.focus\:m-12:focus {
  margin: 3rem;
}
.focus\:m-14:focus {
  margin: 3.5rem;
}
.focus\:m-16:focus {
  margin: 4rem;
}
.focus\:m-2:focus {
  margin: 0.5rem;
}
.focus\:m-20:focus {
  margin: 5rem;
}
.focus\:m-24:focus {
  margin: 6rem;
}
.focus\:m-28:focus {
  margin: 7rem;
}
.focus\:m-3:focus {
  margin: 0.75rem;
}
.focus\:m-32:focus {
  margin: 8rem;
}
.focus\:m-36:focus {
  margin: 9rem;
}
.focus\:m-4:focus {
  margin: 1rem;
}
.focus\:m-40:focus {
  margin: 10rem;
}
.focus\:m-44:focus {
  margin: 11rem;
}
.focus\:m-48:focus {
  margin: 12rem;
}
.focus\:m-5:focus {
  margin: 1.25rem;
}
.focus\:m-52:focus {
  margin: 13rem;
}
.focus\:m-56:focus {
  margin: 14rem;
}
.focus\:m-6:focus {
  margin: 1.5rem;
}
.focus\:m-60:focus {
  margin: 15rem;
}
.focus\:m-64:focus {
  margin: 16rem;
}
.focus\:m-7:focus {
  margin: 1.75rem;
}
.focus\:m-72:focus {
  margin: 18rem;
}
.focus\:m-8:focus {
  margin: 2rem;
}
.focus\:m-80:focus {
  margin: 20rem;
}
.focus\:m-9:focus {
  margin: 2.25rem;
}
.focus\:m-96:focus {
  margin: 24rem;
}
.focus\:mx-0:focus {
  margin-left: 0px;
  margin-right: 0px;
}
.focus\:mx-1:focus {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.focus\:mx-10:focus {
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}
.focus\:mx-11:focus {
  margin-left: 2.75rem;
  margin-right: 2.75rem;
}
.focus\:mx-12:focus {
  margin-left: 3rem;
  margin-right: 3rem;
}
.focus\:mx-14:focus {
  margin-left: 3.5rem;
  margin-right: 3.5rem;
}
.focus\:mx-16:focus {
  margin-left: 4rem;
  margin-right: 4rem;
}
.focus\:mx-2:focus {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.focus\:mx-20:focus {
  margin-left: 5rem;
  margin-right: 5rem;
}
.focus\:mx-24:focus {
  margin-left: 6rem;
  margin-right: 6rem;
}
.focus\:mx-28:focus {
  margin-left: 7rem;
  margin-right: 7rem;
}
.focus\:mx-3:focus {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}
.focus\:mx-32:focus {
  margin-left: 8rem;
  margin-right: 8rem;
}
.focus\:mx-36:focus {
  margin-left: 9rem;
  margin-right: 9rem;
}
.focus\:mx-4:focus {
  margin-left: 1rem;
  margin-right: 1rem;
}
.focus\:mx-40:focus {
  margin-left: 10rem;
  margin-right: 10rem;
}
.focus\:mx-44:focus {
  margin-left: 11rem;
  margin-right: 11rem;
}
.focus\:mx-48:focus {
  margin-left: 12rem;
  margin-right: 12rem;
}
.focus\:mx-5:focus {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}
.focus\:mx-52:focus {
  margin-left: 13rem;
  margin-right: 13rem;
}
.focus\:mx-56:focus {
  margin-left: 14rem;
  margin-right: 14rem;
}
.focus\:mx-6:focus {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.focus\:mx-60:focus {
  margin-left: 15rem;
  margin-right: 15rem;
}
.focus\:mx-64:focus {
  margin-left: 16rem;
  margin-right: 16rem;
}
.focus\:mx-7:focus {
  margin-left: 1.75rem;
  margin-right: 1.75rem;
}
.focus\:mx-72:focus {
  margin-left: 18rem;
  margin-right: 18rem;
}
.focus\:mx-8:focus {
  margin-left: 2rem;
  margin-right: 2rem;
}
.focus\:mx-80:focus {
  margin-left: 20rem;
  margin-right: 20rem;
}
.focus\:mx-9:focus {
  margin-left: 2.25rem;
  margin-right: 2.25rem;
}
.focus\:mx-96:focus {
  margin-left: 24rem;
  margin-right: 24rem;
}
.focus\:my-0:focus {
  margin-top: 0px;
  margin-bottom: 0px;
}
.focus\:my-1:focus {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.focus\:my-10:focus {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.focus\:my-11:focus {
  margin-top: 2.75rem;
  margin-bottom: 2.75rem;
}
.focus\:my-12:focus {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.focus\:my-14:focus {
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}
.focus\:my-16:focus {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.focus\:my-2:focus {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.focus\:my-20:focus {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.focus\:my-24:focus {
  margin-top: 6rem;
  margin-bottom: 6rem;
}
.focus\:my-28:focus {
  margin-top: 7rem;
  margin-bottom: 7rem;
}
.focus\:my-3:focus {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.focus\:my-32:focus {
  margin-top: 8rem;
  margin-bottom: 8rem;
}
.focus\:my-36:focus {
  margin-top: 9rem;
  margin-bottom: 9rem;
}
.focus\:my-4:focus {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.focus\:my-40:focus {
  margin-top: 10rem;
  margin-bottom: 10rem;
}
.focus\:my-44:focus {
  margin-top: 11rem;
  margin-bottom: 11rem;
}
.focus\:my-48:focus {
  margin-top: 12rem;
  margin-bottom: 12rem;
}
.focus\:my-5:focus {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.focus\:my-52:focus {
  margin-top: 13rem;
  margin-bottom: 13rem;
}
.focus\:my-56:focus {
  margin-top: 14rem;
  margin-bottom: 14rem;
}
.focus\:my-6:focus {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.focus\:my-60:focus {
  margin-top: 15rem;
  margin-bottom: 15rem;
}
.focus\:my-64:focus {
  margin-top: 16rem;
  margin-bottom: 16rem;
}
.focus\:my-7:focus {
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}
.focus\:my-72:focus {
  margin-top: 18rem;
  margin-bottom: 18rem;
}
.focus\:my-8:focus {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.focus\:my-80:focus {
  margin-top: 20rem;
  margin-bottom: 20rem;
}
.focus\:my-9:focus {
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
}
.focus\:my-96:focus {
  margin-top: 24rem;
  margin-bottom: 24rem;
}
.focus\:mb-0:focus {
  margin-bottom: 0px;
}
.focus\:mb-1:focus {
  margin-bottom: 0.25rem;
}
.focus\:mb-10:focus {
  margin-bottom: 2.5rem;
}
.focus\:mb-11:focus {
  margin-bottom: 2.75rem;
}
.focus\:mb-12:focus {
  margin-bottom: 3rem;
}
.focus\:mb-14:focus {
  margin-bottom: 3.5rem;
}
.focus\:mb-16:focus {
  margin-bottom: 4rem;
}
.focus\:mb-2:focus {
  margin-bottom: 0.5rem;
}
.focus\:mb-20:focus {
  margin-bottom: 5rem;
}
.focus\:mb-24:focus {
  margin-bottom: 6rem;
}
.focus\:mb-28:focus {
  margin-bottom: 7rem;
}
.focus\:mb-3:focus {
  margin-bottom: 0.75rem;
}
.focus\:mb-32:focus {
  margin-bottom: 8rem;
}
.focus\:mb-36:focus {
  margin-bottom: 9rem;
}
.focus\:mb-4:focus {
  margin-bottom: 1rem;
}
.focus\:mb-40:focus {
  margin-bottom: 10rem;
}
.focus\:mb-44:focus {
  margin-bottom: 11rem;
}
.focus\:mb-48:focus {
  margin-bottom: 12rem;
}
.focus\:mb-5:focus {
  margin-bottom: 1.25rem;
}
.focus\:mb-52:focus {
  margin-bottom: 13rem;
}
.focus\:mb-56:focus {
  margin-bottom: 14rem;
}
.focus\:mb-6:focus {
  margin-bottom: 1.5rem;
}
.focus\:mb-60:focus {
  margin-bottom: 15rem;
}
.focus\:mb-64:focus {
  margin-bottom: 16rem;
}
.focus\:mb-7:focus {
  margin-bottom: 1.75rem;
}
.focus\:mb-72:focus {
  margin-bottom: 18rem;
}
.focus\:mb-8:focus {
  margin-bottom: 2rem;
}
.focus\:mb-80:focus {
  margin-bottom: 20rem;
}
.focus\:mb-9:focus {
  margin-bottom: 2.25rem;
}
.focus\:mb-96:focus {
  margin-bottom: 24rem;
}
.focus\:ml-0:focus {
  margin-left: 0px;
}
.focus\:ml-1:focus {
  margin-left: 0.25rem;
}
.focus\:ml-10:focus {
  margin-left: 2.5rem;
}
.focus\:ml-11:focus {
  margin-left: 2.75rem;
}
.focus\:ml-12:focus {
  margin-left: 3rem;
}
.focus\:ml-14:focus {
  margin-left: 3.5rem;
}
.focus\:ml-16:focus {
  margin-left: 4rem;
}
.focus\:ml-2:focus {
  margin-left: 0.5rem;
}
.focus\:ml-20:focus {
  margin-left: 5rem;
}
.focus\:ml-24:focus {
  margin-left: 6rem;
}
.focus\:ml-28:focus {
  margin-left: 7rem;
}
.focus\:ml-3:focus {
  margin-left: 0.75rem;
}
.focus\:ml-32:focus {
  margin-left: 8rem;
}
.focus\:ml-36:focus {
  margin-left: 9rem;
}
.focus\:ml-4:focus {
  margin-left: 1rem;
}
.focus\:ml-40:focus {
  margin-left: 10rem;
}
.focus\:ml-44:focus {
  margin-left: 11rem;
}
.focus\:ml-48:focus {
  margin-left: 12rem;
}
.focus\:ml-5:focus {
  margin-left: 1.25rem;
}
.focus\:ml-52:focus {
  margin-left: 13rem;
}
.focus\:ml-56:focus {
  margin-left: 14rem;
}
.focus\:ml-6:focus {
  margin-left: 1.5rem;
}
.focus\:ml-60:focus {
  margin-left: 15rem;
}
.focus\:ml-64:focus {
  margin-left: 16rem;
}
.focus\:ml-7:focus {
  margin-left: 1.75rem;
}
.focus\:ml-72:focus {
  margin-left: 18rem;
}
.focus\:ml-8:focus {
  margin-left: 2rem;
}
.focus\:ml-80:focus {
  margin-left: 20rem;
}
.focus\:ml-9:focus {
  margin-left: 2.25rem;
}
.focus\:ml-96:focus {
  margin-left: 24rem;
}
.focus\:mr-0:focus {
  margin-right: 0px;
}
.focus\:mr-1:focus {
  margin-right: 0.25rem;
}
.focus\:mr-10:focus {
  margin-right: 2.5rem;
}
.focus\:mr-11:focus {
  margin-right: 2.75rem;
}
.focus\:mr-12:focus {
  margin-right: 3rem;
}
.focus\:mr-14:focus {
  margin-right: 3.5rem;
}
.focus\:mr-16:focus {
  margin-right: 4rem;
}
.focus\:mr-2:focus {
  margin-right: 0.5rem;
}
.focus\:mr-20:focus {
  margin-right: 5rem;
}
.focus\:mr-24:focus {
  margin-right: 6rem;
}
.focus\:mr-28:focus {
  margin-right: 7rem;
}
.focus\:mr-3:focus {
  margin-right: 0.75rem;
}
.focus\:mr-32:focus {
  margin-right: 8rem;
}
.focus\:mr-36:focus {
  margin-right: 9rem;
}
.focus\:mr-4:focus {
  margin-right: 1rem;
}
.focus\:mr-40:focus {
  margin-right: 10rem;
}
.focus\:mr-44:focus {
  margin-right: 11rem;
}
.focus\:mr-48:focus {
  margin-right: 12rem;
}
.focus\:mr-5:focus {
  margin-right: 1.25rem;
}
.focus\:mr-52:focus {
  margin-right: 13rem;
}
.focus\:mr-56:focus {
  margin-right: 14rem;
}
.focus\:mr-6:focus {
  margin-right: 1.5rem;
}
.focus\:mr-60:focus {
  margin-right: 15rem;
}
.focus\:mr-64:focus {
  margin-right: 16rem;
}
.focus\:mr-7:focus {
  margin-right: 1.75rem;
}
.focus\:mr-72:focus {
  margin-right: 18rem;
}
.focus\:mr-8:focus {
  margin-right: 2rem;
}
.focus\:mr-80:focus {
  margin-right: 20rem;
}
.focus\:mr-9:focus {
  margin-right: 2.25rem;
}
.focus\:mr-96:focus {
  margin-right: 24rem;
}
.focus\:mt-0:focus {
  margin-top: 0px;
}
.focus\:mt-1:focus {
  margin-top: 0.25rem;
}
.focus\:mt-10:focus {
  margin-top: 2.5rem;
}
.focus\:mt-11:focus {
  margin-top: 2.75rem;
}
.focus\:mt-12:focus {
  margin-top: 3rem;
}
.focus\:mt-14:focus {
  margin-top: 3.5rem;
}
.focus\:mt-16:focus {
  margin-top: 4rem;
}
.focus\:mt-2:focus {
  margin-top: 0.5rem;
}
.focus\:mt-20:focus {
  margin-top: 5rem;
}
.focus\:mt-24:focus {
  margin-top: 6rem;
}
.focus\:mt-28:focus {
  margin-top: 7rem;
}
.focus\:mt-3:focus {
  margin-top: 0.75rem;
}
.focus\:mt-32:focus {
  margin-top: 8rem;
}
.focus\:mt-36:focus {
  margin-top: 9rem;
}
.focus\:mt-4:focus {
  margin-top: 1rem;
}
.focus\:mt-40:focus {
  margin-top: 10rem;
}
.focus\:mt-44:focus {
  margin-top: 11rem;
}
.focus\:mt-48:focus {
  margin-top: 12rem;
}
.focus\:mt-5:focus {
  margin-top: 1.25rem;
}
.focus\:mt-52:focus {
  margin-top: 13rem;
}
.focus\:mt-56:focus {
  margin-top: 14rem;
}
.focus\:mt-6:focus {
  margin-top: 1.5rem;
}
.focus\:mt-60:focus {
  margin-top: 15rem;
}
.focus\:mt-64:focus {
  margin-top: 16rem;
}
.focus\:mt-7:focus {
  margin-top: 1.75rem;
}
.focus\:mt-72:focus {
  margin-top: 18rem;
}
.focus\:mt-8:focus {
  margin-top: 2rem;
}
.focus\:mt-80:focus {
  margin-top: 20rem;
}
.focus\:mt-9:focus {
  margin-top: 2.25rem;
}
.focus\:mt-96:focus {
  margin-top: 24rem;
}
.focus\:h-0:focus {
  height: 0px;
}
.focus\:h-0\.5:focus {
  height: 0.125rem;
}
.focus\:h-1:focus {
  height: 0.25rem;
}
.focus\:h-1\.5:focus {
  height: 0.375rem;
}
.focus\:h-1\/2:focus {
  height: 50%;
}
.focus\:h-1\/3:focus {
  height: 33.333333%;
}
.focus\:h-1\/4:focus {
  height: 25%;
}
.focus\:h-1\/5:focus {
  height: 20%;
}
.focus\:h-1\/6:focus {
  height: 16.666667%;
}
.focus\:h-10:focus {
  height: 2.5rem;
}
.focus\:h-11:focus {
  height: 2.75rem;
}
.focus\:h-12:focus {
  height: 3rem;
}
.focus\:h-14:focus {
  height: 3.5rem;
}
.focus\:h-16:focus {
  height: 4rem;
}
.focus\:h-2:focus {
  height: 0.5rem;
}
.focus\:h-2\.5:focus {
  height: 0.625rem;
}
.focus\:h-2\/3:focus {
  height: 66.666667%;
}
.focus\:h-2\/4:focus {
  height: 50%;
}
.focus\:h-2\/5:focus {
  height: 40%;
}
.focus\:h-2\/6:focus {
  height: 33.333333%;
}
.focus\:h-20:focus {
  height: 5rem;
}
.focus\:h-24:focus {
  height: 6rem;
}
.focus\:h-28:focus {
  height: 7rem;
}
.focus\:h-3:focus {
  height: 0.75rem;
}
.focus\:h-3\.5:focus {
  height: 0.875rem;
}
.focus\:h-3\/4:focus {
  height: 75%;
}
.focus\:h-3\/5:focus {
  height: 60%;
}
.focus\:h-3\/6:focus {
  height: 50%;
}
.focus\:h-32:focus {
  height: 8rem;
}
.focus\:h-36:focus {
  height: 9rem;
}
.focus\:h-4:focus {
  height: 1rem;
}
.focus\:h-4\/5:focus {
  height: 80%;
}
.focus\:h-4\/6:focus {
  height: 66.666667%;
}
.focus\:h-40:focus {
  height: 10rem;
}
.focus\:h-44:focus {
  height: 11rem;
}
.focus\:h-48:focus {
  height: 12rem;
}
.focus\:h-5:focus {
  height: 1.25rem;
}
.focus\:h-5\/6:focus {
  height: 83.333333%;
}
.focus\:h-52:focus {
  height: 13rem;
}
.focus\:h-56:focus {
  height: 14rem;
}
.focus\:h-6:focus {
  height: 1.5rem;
}
.focus\:h-60:focus {
  height: 15rem;
}
.focus\:h-64:focus {
  height: 16rem;
}
.focus\:h-7:focus {
  height: 1.75rem;
}
.focus\:h-72:focus {
  height: 18rem;
}
.focus\:h-8:focus {
  height: 2rem;
}
.focus\:h-80:focus {
  height: 20rem;
}
.focus\:h-9:focus {
  height: 2.25rem;
}
.focus\:h-96:focus {
  height: 24rem;
}
.focus\:h-auto:focus {
  height: auto;
}
.focus\:h-dvh:focus {
  height: 100dvh;
}
.focus\:h-fit:focus {
  height: -moz-fit-content;
  height: fit-content;
}
.focus\:h-full:focus {
  height: 100%;
}
.focus\:h-lvh:focus {
  height: 100lvh;
}
.focus\:h-max:focus {
  height: -moz-max-content;
  height: max-content;
}
.focus\:h-min:focus {
  height: -moz-min-content;
  height: min-content;
}
.focus\:h-px:focus {
  height: 1px;
}
.focus\:h-screen:focus {
  height: 100vh;
}
.focus\:h-svh:focus {
  height: 100svh;
}
.focus\:max-h-full:focus {
  max-height: 100%;
}
.focus\:max-h-none:focus {
  max-height: none;
}
.focus\:min-h-full:focus {
  min-height: 100%;
}
.focus\:w-1\/2:focus {
  width: 50%;
}
.focus\:w-1\/3:focus {
  width: 33.333333%;
}
.focus\:w-1\/4:focus {
  width: 25%;
}
.focus\:w-1\/5:focus {
  width: 20%;
}
.focus\:w-1\/6:focus {
  width: 16.666667%;
}
.focus\:w-full:focus {
  width: 100%;
}
.focus\:min-w-full:focus {
  min-width: 100%;
}
.focus\:max-w-full:focus {
  max-width: 100%;
}
.focus\:max-w-lg:focus {
  max-width: 32rem;
}
.focus\:max-w-md:focus {
  max-width: 28rem;
}
.focus\:max-w-none:focus {
  max-width: none;
}
.focus\:max-w-screen-lg:focus {
  max-width: 1024px;
}
.focus\:max-w-screen-md:focus {
  max-width: 768px;
}
.focus\:scale-0:focus {
  --tw-scale-x: 0;
  --tw-scale-y: 0;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.focus\:scale-100:focus {
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.focus\:scale-105:focus {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.focus\:scale-110:focus {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.focus\:scale-125:focus {
  --tw-scale-x: 1.25;
  --tw-scale-y: 1.25;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.focus\:scale-150:focus {
  --tw-scale-x: 1.5;
  --tw-scale-y: 1.5;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.focus\:scale-95:focus {
  --tw-scale-x: .95;
  --tw-scale-y: .95;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.focus\:columns-lg:focus {
  -moz-columns: 32rem;
       columns: 32rem;
}
.focus\:columns-md:focus {
  -moz-columns: 28rem;
       columns: 28rem;
}
.focus\:grid-cols-1:focus {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.focus\:grid-cols-10:focus {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}
.focus\:grid-cols-11:focus {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}
.focus\:grid-cols-12:focus {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.focus\:grid-cols-2:focus {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.focus\:grid-cols-3:focus {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.focus\:grid-cols-4:focus {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.focus\:grid-cols-5:focus {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.focus\:grid-cols-6:focus {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.focus\:grid-cols-7:focus {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.focus\:grid-cols-8:focus {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.focus\:grid-cols-9:focus {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}
.focus\:gap-1:focus {
  gap: 0.25rem;
}
.focus\:gap-10:focus {
  gap: 2.5rem;
}
.focus\:gap-11:focus {
  gap: 2.75rem;
}
.focus\:gap-12:focus {
  gap: 3rem;
}
.focus\:gap-2:focus {
  gap: 0.5rem;
}
.focus\:gap-3:focus {
  gap: 0.75rem;
}
.focus\:gap-4:focus {
  gap: 1rem;
}
.focus\:gap-5:focus {
  gap: 1.25rem;
}
.focus\:gap-6:focus {
  gap: 1.5rem;
}
.focus\:gap-7:focus {
  gap: 1.75rem;
}
.focus\:gap-8:focus {
  gap: 2rem;
}
.focus\:gap-9:focus {
  gap: 2.25rem;
}
.focus\:rounded-lg:focus {
  border-radius: var(--radius);
}
.focus\:rounded-md:focus {
  border-radius: calc(var(--radius) - 2px);
}
.focus\:rounded-b-lg:focus {
  border-bottom-right-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}
.focus\:rounded-b-md:focus {
  border-bottom-right-radius: calc(var(--radius) - 2px);
  border-bottom-left-radius: calc(var(--radius) - 2px);
}
.focus\:rounded-e-lg:focus {
  border-start-end-radius: var(--radius);
  border-end-end-radius: var(--radius);
}
.focus\:rounded-e-md:focus {
  border-start-end-radius: calc(var(--radius) - 2px);
  border-end-end-radius: calc(var(--radius) - 2px);
}
.focus\:rounded-l-lg:focus {
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}
.focus\:rounded-l-md:focus {
  border-top-left-radius: calc(var(--radius) - 2px);
  border-bottom-left-radius: calc(var(--radius) - 2px);
}
.focus\:rounded-r-lg:focus {
  border-top-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}
.focus\:rounded-r-md:focus {
  border-top-right-radius: calc(var(--radius) - 2px);
  border-bottom-right-radius: calc(var(--radius) - 2px);
}
.focus\:rounded-s-lg:focus {
  border-start-start-radius: var(--radius);
  border-end-start-radius: var(--radius);
}
.focus\:rounded-s-md:focus {
  border-start-start-radius: calc(var(--radius) - 2px);
  border-end-start-radius: calc(var(--radius) - 2px);
}
.focus\:rounded-t-lg:focus {
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}
.focus\:rounded-t-md:focus {
  border-top-left-radius: calc(var(--radius) - 2px);
  border-top-right-radius: calc(var(--radius) - 2px);
}
.focus\:rounded-bl-lg:focus {
  border-bottom-left-radius: var(--radius);
}
.focus\:rounded-bl-md:focus {
  border-bottom-left-radius: calc(var(--radius) - 2px);
}
.focus\:rounded-br-lg:focus {
  border-bottom-right-radius: var(--radius);
}
.focus\:rounded-br-md:focus {
  border-bottom-right-radius: calc(var(--radius) - 2px);
}
.focus\:rounded-ee-lg:focus {
  border-end-end-radius: var(--radius);
}
.focus\:rounded-ee-md:focus {
  border-end-end-radius: calc(var(--radius) - 2px);
}
.focus\:rounded-es-lg:focus {
  border-end-start-radius: var(--radius);
}
.focus\:rounded-es-md:focus {
  border-end-start-radius: calc(var(--radius) - 2px);
}
.focus\:rounded-se-lg:focus {
  border-start-end-radius: var(--radius);
}
.focus\:rounded-se-md:focus {
  border-start-end-radius: calc(var(--radius) - 2px);
}
.focus\:rounded-ss-lg:focus {
  border-start-start-radius: var(--radius);
}
.focus\:rounded-ss-md:focus {
  border-start-start-radius: calc(var(--radius) - 2px);
}
.focus\:rounded-tl-lg:focus {
  border-top-left-radius: var(--radius);
}
.focus\:rounded-tl-md:focus {
  border-top-left-radius: calc(var(--radius) - 2px);
}
.focus\:rounded-tr-lg:focus {
  border-top-right-radius: var(--radius);
}
.focus\:rounded-tr-md:focus {
  border-top-right-radius: calc(var(--radius) - 2px);
}
.focus\:border-none:focus {
  border-style: none;
}
.focus\:border-amber-100:focus {
  --tw-border-opacity: 1;
  border-color: rgb(254 243 199 / var(--tw-border-opacity, 1));
}
.focus\:border-amber-200:focus {
  --tw-border-opacity: 1;
  border-color: rgb(253 230 138 / var(--tw-border-opacity, 1));
}
.focus\:border-amber-300:focus {
  --tw-border-opacity: 1;
  border-color: rgb(252 211 77 / var(--tw-border-opacity, 1));
}
.focus\:border-amber-400:focus {
  --tw-border-opacity: 1;
  border-color: rgb(251 191 36 / var(--tw-border-opacity, 1));
}
.focus\:border-amber-50:focus {
  --tw-border-opacity: 1;
  border-color: rgb(255 251 235 / var(--tw-border-opacity, 1));
}
.focus\:border-amber-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(245 158 11 / var(--tw-border-opacity, 1));
}
.focus\:border-amber-600:focus {
  --tw-border-opacity: 1;
  border-color: rgb(217 119 6 / var(--tw-border-opacity, 1));
}
.focus\:border-amber-700:focus {
  --tw-border-opacity: 1;
  border-color: rgb(180 83 9 / var(--tw-border-opacity, 1));
}
.focus\:border-amber-800:focus {
  --tw-border-opacity: 1;
  border-color: rgb(146 64 14 / var(--tw-border-opacity, 1));
}
.focus\:border-amber-900:focus {
  --tw-border-opacity: 1;
  border-color: rgb(120 53 15 / var(--tw-border-opacity, 1));
}
.focus\:border-amber-950:focus {
  --tw-border-opacity: 1;
  border-color: rgb(69 26 3 / var(--tw-border-opacity, 1));
}
.focus\:border-blue-100:focus {
  --tw-border-opacity: 1;
  border-color: rgb(219 234 254 / var(--tw-border-opacity, 1));
}
.focus\:border-blue-200:focus {
  --tw-border-opacity: 1;
  border-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
}
.focus\:border-blue-300:focus {
  --tw-border-opacity: 1;
  border-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
}
.focus\:border-blue-400:focus {
  --tw-border-opacity: 1;
  border-color: rgb(96 165 250 / var(--tw-border-opacity, 1));
}
.focus\:border-blue-50:focus {
  --tw-border-opacity: 1;
  border-color: rgb(239 246 255 / var(--tw-border-opacity, 1));
}
.focus\:border-blue-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
}
.focus\:border-blue-600:focus {
  --tw-border-opacity: 1;
  border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}
.focus\:border-blue-700:focus {
  --tw-border-opacity: 1;
  border-color: rgb(29 78 216 / var(--tw-border-opacity, 1));
}
.focus\:border-blue-800:focus {
  --tw-border-opacity: 1;
  border-color: rgb(30 64 175 / var(--tw-border-opacity, 1));
}
.focus\:border-blue-900:focus {
  --tw-border-opacity: 1;
  border-color: rgb(30 58 138 / var(--tw-border-opacity, 1));
}
.focus\:border-blue-950:focus {
  --tw-border-opacity: 1;
  border-color: rgb(23 37 84 / var(--tw-border-opacity, 1));
}
.focus\:border-cyan-100:focus {
  --tw-border-opacity: 1;
  border-color: rgb(207 250 254 / var(--tw-border-opacity, 1));
}
.focus\:border-cyan-200:focus {
  --tw-border-opacity: 1;
  border-color: rgb(165 243 252 / var(--tw-border-opacity, 1));
}
.focus\:border-cyan-300:focus {
  --tw-border-opacity: 1;
  border-color: rgb(103 232 249 / var(--tw-border-opacity, 1));
}
.focus\:border-cyan-400:focus {
  --tw-border-opacity: 1;
  border-color: rgb(34 211 238 / var(--tw-border-opacity, 1));
}
.focus\:border-cyan-50:focus {
  --tw-border-opacity: 1;
  border-color: rgb(236 254 255 / var(--tw-border-opacity, 1));
}
.focus\:border-cyan-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(6 182 212 / var(--tw-border-opacity, 1));
}
.focus\:border-cyan-600:focus {
  --tw-border-opacity: 1;
  border-color: rgb(8 145 178 / var(--tw-border-opacity, 1));
}
.focus\:border-cyan-700:focus {
  --tw-border-opacity: 1;
  border-color: rgb(14 116 144 / var(--tw-border-opacity, 1));
}
.focus\:border-cyan-800:focus {
  --tw-border-opacity: 1;
  border-color: rgb(21 94 117 / var(--tw-border-opacity, 1));
}
.focus\:border-cyan-900:focus {
  --tw-border-opacity: 1;
  border-color: rgb(22 78 99 / var(--tw-border-opacity, 1));
}
.focus\:border-cyan-950:focus {
  --tw-border-opacity: 1;
  border-color: rgb(8 51 68 / var(--tw-border-opacity, 1));
}
.focus\:border-emerald-100:focus {
  --tw-border-opacity: 1;
  border-color: rgb(209 250 229 / var(--tw-border-opacity, 1));
}
.focus\:border-emerald-200:focus {
  --tw-border-opacity: 1;
  border-color: rgb(167 243 208 / var(--tw-border-opacity, 1));
}
.focus\:border-emerald-300:focus {
  --tw-border-opacity: 1;
  border-color: rgb(110 231 183 / var(--tw-border-opacity, 1));
}
.focus\:border-emerald-400:focus {
  --tw-border-opacity: 1;
  border-color: rgb(52 211 153 / var(--tw-border-opacity, 1));
}
.focus\:border-emerald-50:focus {
  --tw-border-opacity: 1;
  border-color: rgb(236 253 245 / var(--tw-border-opacity, 1));
}
.focus\:border-emerald-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(16 185 129 / var(--tw-border-opacity, 1));
}
.focus\:border-emerald-600:focus {
  --tw-border-opacity: 1;
  border-color: rgb(5 150 105 / var(--tw-border-opacity, 1));
}
.focus\:border-emerald-700:focus {
  --tw-border-opacity: 1;
  border-color: rgb(4 120 87 / var(--tw-border-opacity, 1));
}
.focus\:border-emerald-800:focus {
  --tw-border-opacity: 1;
  border-color: rgb(6 95 70 / var(--tw-border-opacity, 1));
}
.focus\:border-emerald-900:focus {
  --tw-border-opacity: 1;
  border-color: rgb(6 78 59 / var(--tw-border-opacity, 1));
}
.focus\:border-emerald-950:focus {
  --tw-border-opacity: 1;
  border-color: rgb(2 44 34 / var(--tw-border-opacity, 1));
}
.focus\:border-fuchsia-100:focus {
  --tw-border-opacity: 1;
  border-color: rgb(250 232 255 / var(--tw-border-opacity, 1));
}
.focus\:border-fuchsia-200:focus {
  --tw-border-opacity: 1;
  border-color: rgb(245 208 254 / var(--tw-border-opacity, 1));
}
.focus\:border-fuchsia-300:focus {
  --tw-border-opacity: 1;
  border-color: rgb(240 171 252 / var(--tw-border-opacity, 1));
}
.focus\:border-fuchsia-400:focus {
  --tw-border-opacity: 1;
  border-color: rgb(232 121 249 / var(--tw-border-opacity, 1));
}
.focus\:border-fuchsia-50:focus {
  --tw-border-opacity: 1;
  border-color: rgb(253 244 255 / var(--tw-border-opacity, 1));
}
.focus\:border-fuchsia-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(217 70 239 / var(--tw-border-opacity, 1));
}
.focus\:border-fuchsia-600:focus {
  --tw-border-opacity: 1;
  border-color: rgb(192 38 211 / var(--tw-border-opacity, 1));
}
.focus\:border-fuchsia-700:focus {
  --tw-border-opacity: 1;
  border-color: rgb(162 28 175 / var(--tw-border-opacity, 1));
}
.focus\:border-fuchsia-800:focus {
  --tw-border-opacity: 1;
  border-color: rgb(134 25 143 / var(--tw-border-opacity, 1));
}
.focus\:border-fuchsia-900:focus {
  --tw-border-opacity: 1;
  border-color: rgb(112 26 117 / var(--tw-border-opacity, 1));
}
.focus\:border-fuchsia-950:focus {
  --tw-border-opacity: 1;
  border-color: rgb(74 4 78 / var(--tw-border-opacity, 1));
}
.focus\:border-gray-100:focus {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}
.focus\:border-gray-200:focus {
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.focus\:border-gray-300:focus {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.focus\:border-gray-400:focus {
  --tw-border-opacity: 1;
  border-color: rgb(156 163 175 / var(--tw-border-opacity, 1));
}
.focus\:border-gray-50:focus {
  --tw-border-opacity: 1;
  border-color: rgb(249 250 251 / var(--tw-border-opacity, 1));
}
.focus\:border-gray-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(107 114 128 / var(--tw-border-opacity, 1));
}
.focus\:border-gray-600:focus {
  --tw-border-opacity: 1;
  border-color: rgb(75 85 99 / var(--tw-border-opacity, 1));
}
.focus\:border-gray-700:focus {
  --tw-border-opacity: 1;
  border-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
}
.focus\:border-gray-800:focus {
  --tw-border-opacity: 1;
  border-color: rgb(31 41 55 / var(--tw-border-opacity, 1));
}
.focus\:border-gray-900:focus {
  --tw-border-opacity: 1;
  border-color: rgb(17 24 39 / var(--tw-border-opacity, 1));
}
.focus\:border-gray-950:focus {
  --tw-border-opacity: 1;
  border-color: rgb(3 7 18 / var(--tw-border-opacity, 1));
}
.focus\:border-green-100:focus {
  --tw-border-opacity: 1;
  border-color: rgb(220 252 231 / var(--tw-border-opacity, 1));
}
.focus\:border-green-200:focus {
  --tw-border-opacity: 1;
  border-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
}
.focus\:border-green-300:focus {
  --tw-border-opacity: 1;
  border-color: rgb(134 239 172 / var(--tw-border-opacity, 1));
}
.focus\:border-green-400:focus {
  --tw-border-opacity: 1;
  border-color: rgb(74 222 128 / var(--tw-border-opacity, 1));
}
.focus\:border-green-50:focus {
  --tw-border-opacity: 1;
  border-color: rgb(240 253 244 / var(--tw-border-opacity, 1));
}
.focus\:border-green-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(34 197 94 / var(--tw-border-opacity, 1));
}
.focus\:border-green-600:focus {
  --tw-border-opacity: 1;
  border-color: rgb(22 163 74 / var(--tw-border-opacity, 1));
}
.focus\:border-green-700:focus {
  --tw-border-opacity: 1;
  border-color: rgb(21 128 61 / var(--tw-border-opacity, 1));
}
.focus\:border-green-800:focus {
  --tw-border-opacity: 1;
  border-color: rgb(22 101 52 / var(--tw-border-opacity, 1));
}
.focus\:border-green-900:focus {
  --tw-border-opacity: 1;
  border-color: rgb(20 83 45 / var(--tw-border-opacity, 1));
}
.focus\:border-green-950:focus {
  --tw-border-opacity: 1;
  border-color: rgb(5 46 22 / var(--tw-border-opacity, 1));
}
.focus\:border-indigo-100:focus {
  --tw-border-opacity: 1;
  border-color: rgb(224 231 255 / var(--tw-border-opacity, 1));
}
.focus\:border-indigo-200:focus {
  --tw-border-opacity: 1;
  border-color: rgb(199 210 254 / var(--tw-border-opacity, 1));
}
.focus\:border-indigo-300:focus {
  --tw-border-opacity: 1;
  border-color: rgb(165 180 252 / var(--tw-border-opacity, 1));
}
.focus\:border-indigo-400:focus {
  --tw-border-opacity: 1;
  border-color: rgb(129 140 248 / var(--tw-border-opacity, 1));
}
.focus\:border-indigo-50:focus {
  --tw-border-opacity: 1;
  border-color: rgb(238 242 255 / var(--tw-border-opacity, 1));
}
.focus\:border-indigo-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(99 102 241 / var(--tw-border-opacity, 1));
}
.focus\:border-indigo-600:focus {
  --tw-border-opacity: 1;
  border-color: rgb(79 70 229 / var(--tw-border-opacity, 1));
}
.focus\:border-indigo-700:focus {
  --tw-border-opacity: 1;
  border-color: rgb(67 56 202 / var(--tw-border-opacity, 1));
}
.focus\:border-indigo-800:focus {
  --tw-border-opacity: 1;
  border-color: rgb(55 48 163 / var(--tw-border-opacity, 1));
}
.focus\:border-indigo-900:focus {
  --tw-border-opacity: 1;
  border-color: rgb(49 46 129 / var(--tw-border-opacity, 1));
}
.focus\:border-indigo-950:focus {
  --tw-border-opacity: 1;
  border-color: rgb(30 27 75 / var(--tw-border-opacity, 1));
}
.focus\:border-lime-100:focus {
  --tw-border-opacity: 1;
  border-color: rgb(236 252 203 / var(--tw-border-opacity, 1));
}
.focus\:border-lime-200:focus {
  --tw-border-opacity: 1;
  border-color: rgb(217 249 157 / var(--tw-border-opacity, 1));
}
.focus\:border-lime-300:focus {
  --tw-border-opacity: 1;
  border-color: rgb(190 242 100 / var(--tw-border-opacity, 1));
}
.focus\:border-lime-400:focus {
  --tw-border-opacity: 1;
  border-color: rgb(163 230 53 / var(--tw-border-opacity, 1));
}
.focus\:border-lime-50:focus {
  --tw-border-opacity: 1;
  border-color: rgb(247 254 231 / var(--tw-border-opacity, 1));
}
.focus\:border-lime-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(132 204 22 / var(--tw-border-opacity, 1));
}
.focus\:border-lime-600:focus {
  --tw-border-opacity: 1;
  border-color: rgb(101 163 13 / var(--tw-border-opacity, 1));
}
.focus\:border-lime-700:focus {
  --tw-border-opacity: 1;
  border-color: rgb(77 124 15 / var(--tw-border-opacity, 1));
}
.focus\:border-lime-800:focus {
  --tw-border-opacity: 1;
  border-color: rgb(63 98 18 / var(--tw-border-opacity, 1));
}
.focus\:border-lime-900:focus {
  --tw-border-opacity: 1;
  border-color: rgb(54 83 20 / var(--tw-border-opacity, 1));
}
.focus\:border-lime-950:focus {
  --tw-border-opacity: 1;
  border-color: rgb(26 46 5 / var(--tw-border-opacity, 1));
}
.focus\:border-neutral-100:focus {
  --tw-border-opacity: 1;
  border-color: rgb(245 245 245 / var(--tw-border-opacity, 1));
}
.focus\:border-neutral-200:focus {
  --tw-border-opacity: 1;
  border-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
}
.focus\:border-neutral-300:focus {
  --tw-border-opacity: 1;
  border-color: rgb(212 212 212 / var(--tw-border-opacity, 1));
}
.focus\:border-neutral-400:focus {
  --tw-border-opacity: 1;
  border-color: rgb(163 163 163 / var(--tw-border-opacity, 1));
}
.focus\:border-neutral-50:focus {
  --tw-border-opacity: 1;
  border-color: rgb(250 250 250 / var(--tw-border-opacity, 1));
}
.focus\:border-neutral-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(115 115 115 / var(--tw-border-opacity, 1));
}
.focus\:border-neutral-600:focus {
  --tw-border-opacity: 1;
  border-color: rgb(82 82 82 / var(--tw-border-opacity, 1));
}
.focus\:border-neutral-700:focus {
  --tw-border-opacity: 1;
  border-color: rgb(64 64 64 / var(--tw-border-opacity, 1));
}
.focus\:border-neutral-800:focus {
  --tw-border-opacity: 1;
  border-color: rgb(38 38 38 / var(--tw-border-opacity, 1));
}
.focus\:border-neutral-900:focus {
  --tw-border-opacity: 1;
  border-color: rgb(23 23 23 / var(--tw-border-opacity, 1));
}
.focus\:border-neutral-950:focus {
  --tw-border-opacity: 1;
  border-color: rgb(10 10 10 / var(--tw-border-opacity, 1));
}
.focus\:border-orange-100:focus {
  --tw-border-opacity: 1;
  border-color: rgb(255 237 213 / var(--tw-border-opacity, 1));
}
.focus\:border-orange-200:focus {
  --tw-border-opacity: 1;
  border-color: rgb(254 215 170 / var(--tw-border-opacity, 1));
}
.focus\:border-orange-300:focus {
  --tw-border-opacity: 1;
  border-color: rgb(253 186 116 / var(--tw-border-opacity, 1));
}
.focus\:border-orange-400:focus {
  --tw-border-opacity: 1;
  border-color: rgb(251 146 60 / var(--tw-border-opacity, 1));
}
.focus\:border-orange-50:focus {
  --tw-border-opacity: 1;
  border-color: rgb(255 247 237 / var(--tw-border-opacity, 1));
}
.focus\:border-orange-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(249 115 22 / var(--tw-border-opacity, 1));
}
.focus\:border-orange-600:focus {
  --tw-border-opacity: 1;
  border-color: rgb(234 88 12 / var(--tw-border-opacity, 1));
}
.focus\:border-orange-700:focus {
  --tw-border-opacity: 1;
  border-color: rgb(194 65 12 / var(--tw-border-opacity, 1));
}
.focus\:border-orange-800:focus {
  --tw-border-opacity: 1;
  border-color: rgb(154 52 18 / var(--tw-border-opacity, 1));
}
.focus\:border-orange-900:focus {
  --tw-border-opacity: 1;
  border-color: rgb(124 45 18 / var(--tw-border-opacity, 1));
}
.focus\:border-orange-950:focus {
  --tw-border-opacity: 1;
  border-color: rgb(67 20 7 / var(--tw-border-opacity, 1));
}
.focus\:border-pink-100:focus {
  --tw-border-opacity: 1;
  border-color: rgb(252 231 243 / var(--tw-border-opacity, 1));
}
.focus\:border-pink-200:focus {
  --tw-border-opacity: 1;
  border-color: rgb(251 207 232 / var(--tw-border-opacity, 1));
}
.focus\:border-pink-300:focus {
  --tw-border-opacity: 1;
  border-color: rgb(249 168 212 / var(--tw-border-opacity, 1));
}
.focus\:border-pink-400:focus {
  --tw-border-opacity: 1;
  border-color: rgb(244 114 182 / var(--tw-border-opacity, 1));
}
.focus\:border-pink-50:focus {
  --tw-border-opacity: 1;
  border-color: rgb(253 242 248 / var(--tw-border-opacity, 1));
}
.focus\:border-pink-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(236 72 153 / var(--tw-border-opacity, 1));
}
.focus\:border-pink-600:focus {
  --tw-border-opacity: 1;
  border-color: rgb(219 39 119 / var(--tw-border-opacity, 1));
}
.focus\:border-pink-700:focus {
  --tw-border-opacity: 1;
  border-color: rgb(190 24 93 / var(--tw-border-opacity, 1));
}
.focus\:border-pink-800:focus {
  --tw-border-opacity: 1;
  border-color: rgb(157 23 77 / var(--tw-border-opacity, 1));
}
.focus\:border-pink-900:focus {
  --tw-border-opacity: 1;
  border-color: rgb(131 24 67 / var(--tw-border-opacity, 1));
}
.focus\:border-pink-950:focus {
  --tw-border-opacity: 1;
  border-color: rgb(80 7 36 / var(--tw-border-opacity, 1));
}
.focus\:border-purple-100:focus {
  --tw-border-opacity: 1;
  border-color: rgb(243 232 255 / var(--tw-border-opacity, 1));
}
.focus\:border-purple-200:focus {
  --tw-border-opacity: 1;
  border-color: rgb(233 213 255 / var(--tw-border-opacity, 1));
}
.focus\:border-purple-300:focus {
  --tw-border-opacity: 1;
  border-color: rgb(216 180 254 / var(--tw-border-opacity, 1));
}
.focus\:border-purple-400:focus {
  --tw-border-opacity: 1;
  border-color: rgb(192 132 252 / var(--tw-border-opacity, 1));
}
.focus\:border-purple-50:focus {
  --tw-border-opacity: 1;
  border-color: rgb(250 245 255 / var(--tw-border-opacity, 1));
}
.focus\:border-purple-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(168 85 247 / var(--tw-border-opacity, 1));
}
.focus\:border-purple-600:focus {
  --tw-border-opacity: 1;
  border-color: rgb(147 51 234 / var(--tw-border-opacity, 1));
}
.focus\:border-purple-700:focus {
  --tw-border-opacity: 1;
  border-color: rgb(126 34 206 / var(--tw-border-opacity, 1));
}
.focus\:border-purple-800:focus {
  --tw-border-opacity: 1;
  border-color: rgb(107 33 168 / var(--tw-border-opacity, 1));
}
.focus\:border-purple-900:focus {
  --tw-border-opacity: 1;
  border-color: rgb(88 28 135 / var(--tw-border-opacity, 1));
}
.focus\:border-purple-950:focus {
  --tw-border-opacity: 1;
  border-color: rgb(59 7 100 / var(--tw-border-opacity, 1));
}
.focus\:border-red-100:focus {
  --tw-border-opacity: 1;
  border-color: rgb(254 226 226 / var(--tw-border-opacity, 1));
}
.focus\:border-red-200:focus {
  --tw-border-opacity: 1;
  border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}
.focus\:border-red-300:focus {
  --tw-border-opacity: 1;
  border-color: rgb(252 165 165 / var(--tw-border-opacity, 1));
}
.focus\:border-red-400:focus {
  --tw-border-opacity: 1;
  border-color: rgb(248 113 113 / var(--tw-border-opacity, 1));
}
.focus\:border-red-50:focus {
  --tw-border-opacity: 1;
  border-color: rgb(254 242 242 / var(--tw-border-opacity, 1));
}
.focus\:border-red-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}
.focus\:border-red-600:focus {
  --tw-border-opacity: 1;
  border-color: rgb(220 38 38 / var(--tw-border-opacity, 1));
}
.focus\:border-red-700:focus {
  --tw-border-opacity: 1;
  border-color: rgb(185 28 28 / var(--tw-border-opacity, 1));
}
.focus\:border-red-800:focus {
  --tw-border-opacity: 1;
  border-color: rgb(153 27 27 / var(--tw-border-opacity, 1));
}
.focus\:border-red-900:focus {
  --tw-border-opacity: 1;
  border-color: rgb(127 29 29 / var(--tw-border-opacity, 1));
}
.focus\:border-red-950:focus {
  --tw-border-opacity: 1;
  border-color: rgb(69 10 10 / var(--tw-border-opacity, 1));
}
.focus\:border-rose-100:focus {
  --tw-border-opacity: 1;
  border-color: rgb(255 228 230 / var(--tw-border-opacity, 1));
}
.focus\:border-rose-200:focus {
  --tw-border-opacity: 1;
  border-color: rgb(254 205 211 / var(--tw-border-opacity, 1));
}
.focus\:border-rose-300:focus {
  --tw-border-opacity: 1;
  border-color: rgb(253 164 175 / var(--tw-border-opacity, 1));
}
.focus\:border-rose-400:focus {
  --tw-border-opacity: 1;
  border-color: rgb(251 113 133 / var(--tw-border-opacity, 1));
}
.focus\:border-rose-50:focus {
  --tw-border-opacity: 1;
  border-color: rgb(255 241 242 / var(--tw-border-opacity, 1));
}
.focus\:border-rose-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(244 63 94 / var(--tw-border-opacity, 1));
}
.focus\:border-rose-600:focus {
  --tw-border-opacity: 1;
  border-color: rgb(225 29 72 / var(--tw-border-opacity, 1));
}
.focus\:border-rose-700:focus {
  --tw-border-opacity: 1;
  border-color: rgb(190 18 60 / var(--tw-border-opacity, 1));
}
.focus\:border-rose-800:focus {
  --tw-border-opacity: 1;
  border-color: rgb(159 18 57 / var(--tw-border-opacity, 1));
}
.focus\:border-rose-900:focus {
  --tw-border-opacity: 1;
  border-color: rgb(136 19 55 / var(--tw-border-opacity, 1));
}
.focus\:border-rose-950:focus {
  --tw-border-opacity: 1;
  border-color: rgb(76 5 25 / var(--tw-border-opacity, 1));
}
.focus\:border-sky-100:focus {
  --tw-border-opacity: 1;
  border-color: rgb(224 242 254 / var(--tw-border-opacity, 1));
}
.focus\:border-sky-200:focus {
  --tw-border-opacity: 1;
  border-color: rgb(186 230 253 / var(--tw-border-opacity, 1));
}
.focus\:border-sky-300:focus {
  --tw-border-opacity: 1;
  border-color: rgb(125 211 252 / var(--tw-border-opacity, 1));
}
.focus\:border-sky-400:focus {
  --tw-border-opacity: 1;
  border-color: rgb(56 189 248 / var(--tw-border-opacity, 1));
}
.focus\:border-sky-50:focus {
  --tw-border-opacity: 1;
  border-color: rgb(240 249 255 / var(--tw-border-opacity, 1));
}
.focus\:border-sky-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(14 165 233 / var(--tw-border-opacity, 1));
}
.focus\:border-sky-600:focus {
  --tw-border-opacity: 1;
  border-color: rgb(2 132 199 / var(--tw-border-opacity, 1));
}
.focus\:border-sky-700:focus {
  --tw-border-opacity: 1;
  border-color: rgb(3 105 161 / var(--tw-border-opacity, 1));
}
.focus\:border-sky-800:focus {
  --tw-border-opacity: 1;
  border-color: rgb(7 89 133 / var(--tw-border-opacity, 1));
}
.focus\:border-sky-900:focus {
  --tw-border-opacity: 1;
  border-color: rgb(12 74 110 / var(--tw-border-opacity, 1));
}
.focus\:border-sky-950:focus {
  --tw-border-opacity: 1;
  border-color: rgb(8 47 73 / var(--tw-border-opacity, 1));
}
.focus\:border-slate-100:focus {
  --tw-border-opacity: 1;
  border-color: rgb(241 245 249 / var(--tw-border-opacity, 1));
}
.focus\:border-slate-200:focus {
  --tw-border-opacity: 1;
  border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
}
.focus\:border-slate-300:focus {
  --tw-border-opacity: 1;
  border-color: rgb(203 213 225 / var(--tw-border-opacity, 1));
}
.focus\:border-slate-400:focus {
  --tw-border-opacity: 1;
  border-color: rgb(148 163 184 / var(--tw-border-opacity, 1));
}
.focus\:border-slate-50:focus {
  --tw-border-opacity: 1;
  border-color: rgb(248 250 252 / var(--tw-border-opacity, 1));
}
.focus\:border-slate-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(100 116 139 / var(--tw-border-opacity, 1));
}
.focus\:border-slate-600:focus {
  --tw-border-opacity: 1;
  border-color: rgb(71 85 105 / var(--tw-border-opacity, 1));
}
.focus\:border-slate-700:focus {
  --tw-border-opacity: 1;
  border-color: rgb(51 65 85 / var(--tw-border-opacity, 1));
}
.focus\:border-slate-800:focus {
  --tw-border-opacity: 1;
  border-color: rgb(30 41 59 / var(--tw-border-opacity, 1));
}
.focus\:border-slate-900:focus {
  --tw-border-opacity: 1;
  border-color: rgb(15 23 42 / var(--tw-border-opacity, 1));
}
.focus\:border-slate-950:focus {
  --tw-border-opacity: 1;
  border-color: rgb(2 6 23 / var(--tw-border-opacity, 1));
}
.focus\:border-stone-100:focus {
  --tw-border-opacity: 1;
  border-color: rgb(245 245 244 / var(--tw-border-opacity, 1));
}
.focus\:border-stone-200:focus {
  --tw-border-opacity: 1;
  border-color: rgb(231 229 228 / var(--tw-border-opacity, 1));
}
.focus\:border-stone-300:focus {
  --tw-border-opacity: 1;
  border-color: rgb(214 211 209 / var(--tw-border-opacity, 1));
}
.focus\:border-stone-400:focus {
  --tw-border-opacity: 1;
  border-color: rgb(168 162 158 / var(--tw-border-opacity, 1));
}
.focus\:border-stone-50:focus {
  --tw-border-opacity: 1;
  border-color: rgb(250 250 249 / var(--tw-border-opacity, 1));
}
.focus\:border-stone-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(120 113 108 / var(--tw-border-opacity, 1));
}
.focus\:border-stone-600:focus {
  --tw-border-opacity: 1;
  border-color: rgb(87 83 78 / var(--tw-border-opacity, 1));
}
.focus\:border-stone-700:focus {
  --tw-border-opacity: 1;
  border-color: rgb(68 64 60 / var(--tw-border-opacity, 1));
}
.focus\:border-stone-800:focus {
  --tw-border-opacity: 1;
  border-color: rgb(41 37 36 / var(--tw-border-opacity, 1));
}
.focus\:border-stone-900:focus {
  --tw-border-opacity: 1;
  border-color: rgb(28 25 23 / var(--tw-border-opacity, 1));
}
.focus\:border-stone-950:focus {
  --tw-border-opacity: 1;
  border-color: rgb(12 10 9 / var(--tw-border-opacity, 1));
}
.focus\:border-teal-100:focus {
  --tw-border-opacity: 1;
  border-color: rgb(204 251 241 / var(--tw-border-opacity, 1));
}
.focus\:border-teal-200:focus {
  --tw-border-opacity: 1;
  border-color: rgb(153 246 228 / var(--tw-border-opacity, 1));
}
.focus\:border-teal-300:focus {
  --tw-border-opacity: 1;
  border-color: rgb(94 234 212 / var(--tw-border-opacity, 1));
}
.focus\:border-teal-400:focus {
  --tw-border-opacity: 1;
  border-color: rgb(45 212 191 / var(--tw-border-opacity, 1));
}
.focus\:border-teal-50:focus {
  --tw-border-opacity: 1;
  border-color: rgb(240 253 250 / var(--tw-border-opacity, 1));
}
.focus\:border-teal-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(20 184 166 / var(--tw-border-opacity, 1));
}
.focus\:border-teal-600:focus {
  --tw-border-opacity: 1;
  border-color: rgb(13 148 136 / var(--tw-border-opacity, 1));
}
.focus\:border-teal-700:focus {
  --tw-border-opacity: 1;
  border-color: rgb(15 118 110 / var(--tw-border-opacity, 1));
}
.focus\:border-teal-800:focus {
  --tw-border-opacity: 1;
  border-color: rgb(17 94 89 / var(--tw-border-opacity, 1));
}
.focus\:border-teal-900:focus {
  --tw-border-opacity: 1;
  border-color: rgb(19 78 74 / var(--tw-border-opacity, 1));
}
.focus\:border-teal-950:focus {
  --tw-border-opacity: 1;
  border-color: rgb(4 47 46 / var(--tw-border-opacity, 1));
}
.focus\:border-violet-100:focus {
  --tw-border-opacity: 1;
  border-color: rgb(237 233 254 / var(--tw-border-opacity, 1));
}
.focus\:border-violet-200:focus {
  --tw-border-opacity: 1;
  border-color: rgb(221 214 254 / var(--tw-border-opacity, 1));
}
.focus\:border-violet-300:focus {
  --tw-border-opacity: 1;
  border-color: rgb(196 181 253 / var(--tw-border-opacity, 1));
}
.focus\:border-violet-400:focus {
  --tw-border-opacity: 1;
  border-color: rgb(167 139 250 / var(--tw-border-opacity, 1));
}
.focus\:border-violet-50:focus {
  --tw-border-opacity: 1;
  border-color: rgb(245 243 255 / var(--tw-border-opacity, 1));
}
.focus\:border-violet-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(139 92 246 / var(--tw-border-opacity, 1));
}
.focus\:border-violet-600:focus {
  --tw-border-opacity: 1;
  border-color: rgb(124 58 237 / var(--tw-border-opacity, 1));
}
.focus\:border-violet-700:focus {
  --tw-border-opacity: 1;
  border-color: rgb(109 40 217 / var(--tw-border-opacity, 1));
}
.focus\:border-violet-800:focus {
  --tw-border-opacity: 1;
  border-color: rgb(91 33 182 / var(--tw-border-opacity, 1));
}
.focus\:border-violet-900:focus {
  --tw-border-opacity: 1;
  border-color: rgb(76 29 149 / var(--tw-border-opacity, 1));
}
.focus\:border-violet-950:focus {
  --tw-border-opacity: 1;
  border-color: rgb(46 16 101 / var(--tw-border-opacity, 1));
}
.focus\:border-yellow-100:focus {
  --tw-border-opacity: 1;
  border-color: rgb(254 249 195 / var(--tw-border-opacity, 1));
}
.focus\:border-yellow-200:focus {
  --tw-border-opacity: 1;
  border-color: rgb(254 240 138 / var(--tw-border-opacity, 1));
}
.focus\:border-yellow-300:focus {
  --tw-border-opacity: 1;
  border-color: rgb(253 224 71 / var(--tw-border-opacity, 1));
}
.focus\:border-yellow-400:focus {
  --tw-border-opacity: 1;
  border-color: rgb(250 204 21 / var(--tw-border-opacity, 1));
}
.focus\:border-yellow-50:focus {
  --tw-border-opacity: 1;
  border-color: rgb(254 252 232 / var(--tw-border-opacity, 1));
}
.focus\:border-yellow-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(234 179 8 / var(--tw-border-opacity, 1));
}
.focus\:border-yellow-600:focus {
  --tw-border-opacity: 1;
  border-color: rgb(202 138 4 / var(--tw-border-opacity, 1));
}
.focus\:border-yellow-700:focus {
  --tw-border-opacity: 1;
  border-color: rgb(161 98 7 / var(--tw-border-opacity, 1));
}
.focus\:border-yellow-800:focus {
  --tw-border-opacity: 1;
  border-color: rgb(133 77 14 / var(--tw-border-opacity, 1));
}
.focus\:border-yellow-900:focus {
  --tw-border-opacity: 1;
  border-color: rgb(113 63 18 / var(--tw-border-opacity, 1));
}
.focus\:border-yellow-950:focus {
  --tw-border-opacity: 1;
  border-color: rgb(66 32 6 / var(--tw-border-opacity, 1));
}
.focus\:border-zinc-100:focus {
  --tw-border-opacity: 1;
  border-color: rgb(244 244 245 / var(--tw-border-opacity, 1));
}
.focus\:border-zinc-200:focus {
  --tw-border-opacity: 1;
  border-color: rgb(228 228 231 / var(--tw-border-opacity, 1));
}
.focus\:border-zinc-300:focus {
  --tw-border-opacity: 1;
  border-color: rgb(212 212 216 / var(--tw-border-opacity, 1));
}
.focus\:border-zinc-400:focus {
  --tw-border-opacity: 1;
  border-color: rgb(161 161 170 / var(--tw-border-opacity, 1));
}
.focus\:border-zinc-50:focus {
  --tw-border-opacity: 1;
  border-color: rgb(250 250 250 / var(--tw-border-opacity, 1));
}
.focus\:border-zinc-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(113 113 122 / var(--tw-border-opacity, 1));
}
.focus\:border-zinc-600:focus {
  --tw-border-opacity: 1;
  border-color: rgb(82 82 91 / var(--tw-border-opacity, 1));
}
.focus\:border-zinc-700:focus {
  --tw-border-opacity: 1;
  border-color: rgb(63 63 70 / var(--tw-border-opacity, 1));
}
.focus\:border-zinc-800:focus {
  --tw-border-opacity: 1;
  border-color: rgb(39 39 42 / var(--tw-border-opacity, 1));
}
.focus\:border-zinc-900:focus {
  --tw-border-opacity: 1;
  border-color: rgb(24 24 27 / var(--tw-border-opacity, 1));
}
.focus\:border-zinc-950:focus {
  --tw-border-opacity: 1;
  border-color: rgb(9 9 11 / var(--tw-border-opacity, 1));
}
.focus\:bg-accent:focus {
  background-color: var(--accent);
}
.focus\:bg-amber-100:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(254 243 199 / var(--tw-bg-opacity, 1));
}
.focus\:bg-amber-100\/10:focus {
  background-color: rgb(254 243 199 / 0.1);
}
.focus\:bg-amber-100\/20:focus {
  background-color: rgb(254 243 199 / 0.2);
}
.focus\:bg-amber-100\/30:focus {
  background-color: rgb(254 243 199 / 0.3);
}
.focus\:bg-amber-100\/40:focus {
  background-color: rgb(254 243 199 / 0.4);
}
.focus\:bg-amber-100\/5:focus {
  background-color: rgb(254 243 199 / 0.05);
}
.focus\:bg-amber-100\/50:focus {
  background-color: rgb(254 243 199 / 0.5);
}
.focus\:bg-amber-100\/60:focus {
  background-color: rgb(254 243 199 / 0.6);
}
.focus\:bg-amber-100\/70:focus {
  background-color: rgb(254 243 199 / 0.7);
}
.focus\:bg-amber-100\/80:focus {
  background-color: rgb(254 243 199 / 0.8);
}
.focus\:bg-amber-100\/90:focus {
  background-color: rgb(254 243 199 / 0.9);
}
.focus\:bg-amber-200:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(253 230 138 / var(--tw-bg-opacity, 1));
}
.focus\:bg-amber-200\/10:focus {
  background-color: rgb(253 230 138 / 0.1);
}
.focus\:bg-amber-200\/20:focus {
  background-color: rgb(253 230 138 / 0.2);
}
.focus\:bg-amber-200\/30:focus {
  background-color: rgb(253 230 138 / 0.3);
}
.focus\:bg-amber-200\/40:focus {
  background-color: rgb(253 230 138 / 0.4);
}
.focus\:bg-amber-200\/5:focus {
  background-color: rgb(253 230 138 / 0.05);
}
.focus\:bg-amber-200\/50:focus {
  background-color: rgb(253 230 138 / 0.5);
}
.focus\:bg-amber-200\/60:focus {
  background-color: rgb(253 230 138 / 0.6);
}
.focus\:bg-amber-200\/70:focus {
  background-color: rgb(253 230 138 / 0.7);
}
.focus\:bg-amber-200\/80:focus {
  background-color: rgb(253 230 138 / 0.8);
}
.focus\:bg-amber-200\/90:focus {
  background-color: rgb(253 230 138 / 0.9);
}
.focus\:bg-amber-300:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(252 211 77 / var(--tw-bg-opacity, 1));
}
.focus\:bg-amber-300\/10:focus {
  background-color: rgb(252 211 77 / 0.1);
}
.focus\:bg-amber-300\/20:focus {
  background-color: rgb(252 211 77 / 0.2);
}
.focus\:bg-amber-300\/30:focus {
  background-color: rgb(252 211 77 / 0.3);
}
.focus\:bg-amber-300\/40:focus {
  background-color: rgb(252 211 77 / 0.4);
}
.focus\:bg-amber-300\/5:focus {
  background-color: rgb(252 211 77 / 0.05);
}
.focus\:bg-amber-300\/50:focus {
  background-color: rgb(252 211 77 / 0.5);
}
.focus\:bg-amber-300\/60:focus {
  background-color: rgb(252 211 77 / 0.6);
}
.focus\:bg-amber-300\/70:focus {
  background-color: rgb(252 211 77 / 0.7);
}
.focus\:bg-amber-300\/80:focus {
  background-color: rgb(252 211 77 / 0.8);
}
.focus\:bg-amber-300\/90:focus {
  background-color: rgb(252 211 77 / 0.9);
}
.focus\:bg-amber-400:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(251 191 36 / var(--tw-bg-opacity, 1));
}
.focus\:bg-amber-400\/10:focus {
  background-color: rgb(251 191 36 / 0.1);
}
.focus\:bg-amber-400\/20:focus {
  background-color: rgb(251 191 36 / 0.2);
}
.focus\:bg-amber-400\/30:focus {
  background-color: rgb(251 191 36 / 0.3);
}
.focus\:bg-amber-400\/40:focus {
  background-color: rgb(251 191 36 / 0.4);
}
.focus\:bg-amber-400\/5:focus {
  background-color: rgb(251 191 36 / 0.05);
}
.focus\:bg-amber-400\/50:focus {
  background-color: rgb(251 191 36 / 0.5);
}
.focus\:bg-amber-400\/60:focus {
  background-color: rgb(251 191 36 / 0.6);
}
.focus\:bg-amber-400\/70:focus {
  background-color: rgb(251 191 36 / 0.7);
}
.focus\:bg-amber-400\/80:focus {
  background-color: rgb(251 191 36 / 0.8);
}
.focus\:bg-amber-400\/90:focus {
  background-color: rgb(251 191 36 / 0.9);
}
.focus\:bg-amber-50:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(255 251 235 / var(--tw-bg-opacity, 1));
}
.focus\:bg-amber-50\/10:focus {
  background-color: rgb(255 251 235 / 0.1);
}
.focus\:bg-amber-50\/20:focus {
  background-color: rgb(255 251 235 / 0.2);
}
.focus\:bg-amber-50\/30:focus {
  background-color: rgb(255 251 235 / 0.3);
}
.focus\:bg-amber-50\/40:focus {
  background-color: rgb(255 251 235 / 0.4);
}
.focus\:bg-amber-50\/5:focus {
  background-color: rgb(255 251 235 / 0.05);
}
.focus\:bg-amber-50\/50:focus {
  background-color: rgb(255 251 235 / 0.5);
}
.focus\:bg-amber-50\/60:focus {
  background-color: rgb(255 251 235 / 0.6);
}
.focus\:bg-amber-50\/70:focus {
  background-color: rgb(255 251 235 / 0.7);
}
.focus\:bg-amber-50\/80:focus {
  background-color: rgb(255 251 235 / 0.8);
}
.focus\:bg-amber-50\/90:focus {
  background-color: rgb(255 251 235 / 0.9);
}
.focus\:bg-amber-500:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(245 158 11 / var(--tw-bg-opacity, 1));
}
.focus\:bg-amber-500\/10:focus {
  background-color: rgb(245 158 11 / 0.1);
}
.focus\:bg-amber-500\/20:focus {
  background-color: rgb(245 158 11 / 0.2);
}
.focus\:bg-amber-500\/30:focus {
  background-color: rgb(245 158 11 / 0.3);
}
.focus\:bg-amber-500\/40:focus {
  background-color: rgb(245 158 11 / 0.4);
}
.focus\:bg-amber-500\/5:focus {
  background-color: rgb(245 158 11 / 0.05);
}
.focus\:bg-amber-500\/50:focus {
  background-color: rgb(245 158 11 / 0.5);
}
.focus\:bg-amber-500\/60:focus {
  background-color: rgb(245 158 11 / 0.6);
}
.focus\:bg-amber-500\/70:focus {
  background-color: rgb(245 158 11 / 0.7);
}
.focus\:bg-amber-500\/80:focus {
  background-color: rgb(245 158 11 / 0.8);
}
.focus\:bg-amber-500\/90:focus {
  background-color: rgb(245 158 11 / 0.9);
}
.focus\:bg-amber-600:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(217 119 6 / var(--tw-bg-opacity, 1));
}
.focus\:bg-amber-600\/10:focus {
  background-color: rgb(217 119 6 / 0.1);
}
.focus\:bg-amber-600\/20:focus {
  background-color: rgb(217 119 6 / 0.2);
}
.focus\:bg-amber-600\/30:focus {
  background-color: rgb(217 119 6 / 0.3);
}
.focus\:bg-amber-600\/40:focus {
  background-color: rgb(217 119 6 / 0.4);
}
.focus\:bg-amber-600\/5:focus {
  background-color: rgb(217 119 6 / 0.05);
}
.focus\:bg-amber-600\/50:focus {
  background-color: rgb(217 119 6 / 0.5);
}
.focus\:bg-amber-600\/60:focus {
  background-color: rgb(217 119 6 / 0.6);
}
.focus\:bg-amber-600\/70:focus {
  background-color: rgb(217 119 6 / 0.7);
}
.focus\:bg-amber-600\/80:focus {
  background-color: rgb(217 119 6 / 0.8);
}
.focus\:bg-amber-600\/90:focus {
  background-color: rgb(217 119 6 / 0.9);
}
.focus\:bg-amber-700:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(180 83 9 / var(--tw-bg-opacity, 1));
}
.focus\:bg-amber-700\/10:focus {
  background-color: rgb(180 83 9 / 0.1);
}
.focus\:bg-amber-700\/20:focus {
  background-color: rgb(180 83 9 / 0.2);
}
.focus\:bg-amber-700\/30:focus {
  background-color: rgb(180 83 9 / 0.3);
}
.focus\:bg-amber-700\/40:focus {
  background-color: rgb(180 83 9 / 0.4);
}
.focus\:bg-amber-700\/5:focus {
  background-color: rgb(180 83 9 / 0.05);
}
.focus\:bg-amber-700\/50:focus {
  background-color: rgb(180 83 9 / 0.5);
}
.focus\:bg-amber-700\/60:focus {
  background-color: rgb(180 83 9 / 0.6);
}
.focus\:bg-amber-700\/70:focus {
  background-color: rgb(180 83 9 / 0.7);
}
.focus\:bg-amber-700\/80:focus {
  background-color: rgb(180 83 9 / 0.8);
}
.focus\:bg-amber-700\/90:focus {
  background-color: rgb(180 83 9 / 0.9);
}
.focus\:bg-amber-800:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(146 64 14 / var(--tw-bg-opacity, 1));
}
.focus\:bg-amber-800\/10:focus {
  background-color: rgb(146 64 14 / 0.1);
}
.focus\:bg-amber-800\/20:focus {
  background-color: rgb(146 64 14 / 0.2);
}
.focus\:bg-amber-800\/30:focus {
  background-color: rgb(146 64 14 / 0.3);
}
.focus\:bg-amber-800\/40:focus {
  background-color: rgb(146 64 14 / 0.4);
}
.focus\:bg-amber-800\/5:focus {
  background-color: rgb(146 64 14 / 0.05);
}
.focus\:bg-amber-800\/50:focus {
  background-color: rgb(146 64 14 / 0.5);
}
.focus\:bg-amber-800\/60:focus {
  background-color: rgb(146 64 14 / 0.6);
}
.focus\:bg-amber-800\/70:focus {
  background-color: rgb(146 64 14 / 0.7);
}
.focus\:bg-amber-800\/80:focus {
  background-color: rgb(146 64 14 / 0.8);
}
.focus\:bg-amber-800\/90:focus {
  background-color: rgb(146 64 14 / 0.9);
}
.focus\:bg-amber-900:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(120 53 15 / var(--tw-bg-opacity, 1));
}
.focus\:bg-amber-900\/10:focus {
  background-color: rgb(120 53 15 / 0.1);
}
.focus\:bg-amber-900\/20:focus {
  background-color: rgb(120 53 15 / 0.2);
}
.focus\:bg-amber-900\/30:focus {
  background-color: rgb(120 53 15 / 0.3);
}
.focus\:bg-amber-900\/40:focus {
  background-color: rgb(120 53 15 / 0.4);
}
.focus\:bg-amber-900\/5:focus {
  background-color: rgb(120 53 15 / 0.05);
}
.focus\:bg-amber-900\/50:focus {
  background-color: rgb(120 53 15 / 0.5);
}
.focus\:bg-amber-900\/60:focus {
  background-color: rgb(120 53 15 / 0.6);
}
.focus\:bg-amber-900\/70:focus {
  background-color: rgb(120 53 15 / 0.7);
}
.focus\:bg-amber-900\/80:focus {
  background-color: rgb(120 53 15 / 0.8);
}
.focus\:bg-amber-900\/90:focus {
  background-color: rgb(120 53 15 / 0.9);
}
.focus\:bg-amber-950:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(69 26 3 / var(--tw-bg-opacity, 1));
}
.focus\:bg-amber-950\/10:focus {
  background-color: rgb(69 26 3 / 0.1);
}
.focus\:bg-amber-950\/20:focus {
  background-color: rgb(69 26 3 / 0.2);
}
.focus\:bg-amber-950\/30:focus {
  background-color: rgb(69 26 3 / 0.3);
}
.focus\:bg-amber-950\/40:focus {
  background-color: rgb(69 26 3 / 0.4);
}
.focus\:bg-amber-950\/5:focus {
  background-color: rgb(69 26 3 / 0.05);
}
.focus\:bg-amber-950\/50:focus {
  background-color: rgb(69 26 3 / 0.5);
}
.focus\:bg-amber-950\/60:focus {
  background-color: rgb(69 26 3 / 0.6);
}
.focus\:bg-amber-950\/70:focus {
  background-color: rgb(69 26 3 / 0.7);
}
.focus\:bg-amber-950\/80:focus {
  background-color: rgb(69 26 3 / 0.8);
}
.focus\:bg-amber-950\/90:focus {
  background-color: rgb(69 26 3 / 0.9);
}
.focus\:bg-blue-100:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
}
.focus\:bg-blue-100\/10:focus {
  background-color: rgb(219 234 254 / 0.1);
}
.focus\:bg-blue-100\/20:focus {
  background-color: rgb(219 234 254 / 0.2);
}
.focus\:bg-blue-100\/30:focus {
  background-color: rgb(219 234 254 / 0.3);
}
.focus\:bg-blue-100\/40:focus {
  background-color: rgb(219 234 254 / 0.4);
}
.focus\:bg-blue-100\/5:focus {
  background-color: rgb(219 234 254 / 0.05);
}
.focus\:bg-blue-100\/50:focus {
  background-color: rgb(219 234 254 / 0.5);
}
.focus\:bg-blue-100\/60:focus {
  background-color: rgb(219 234 254 / 0.6);
}
.focus\:bg-blue-100\/70:focus {
  background-color: rgb(219 234 254 / 0.7);
}
.focus\:bg-blue-100\/80:focus {
  background-color: rgb(219 234 254 / 0.8);
}
.focus\:bg-blue-100\/90:focus {
  background-color: rgb(219 234 254 / 0.9);
}
.focus\:bg-blue-200:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(191 219 254 / var(--tw-bg-opacity, 1));
}
.focus\:bg-blue-200\/10:focus {
  background-color: rgb(191 219 254 / 0.1);
}
.focus\:bg-blue-200\/20:focus {
  background-color: rgb(191 219 254 / 0.2);
}
.focus\:bg-blue-200\/30:focus {
  background-color: rgb(191 219 254 / 0.3);
}
.focus\:bg-blue-200\/40:focus {
  background-color: rgb(191 219 254 / 0.4);
}
.focus\:bg-blue-200\/5:focus {
  background-color: rgb(191 219 254 / 0.05);
}
.focus\:bg-blue-200\/50:focus {
  background-color: rgb(191 219 254 / 0.5);
}
.focus\:bg-blue-200\/60:focus {
  background-color: rgb(191 219 254 / 0.6);
}
.focus\:bg-blue-200\/70:focus {
  background-color: rgb(191 219 254 / 0.7);
}
.focus\:bg-blue-200\/80:focus {
  background-color: rgb(191 219 254 / 0.8);
}
.focus\:bg-blue-200\/90:focus {
  background-color: rgb(191 219 254 / 0.9);
}
.focus\:bg-blue-300:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(147 197 253 / var(--tw-bg-opacity, 1));
}
.focus\:bg-blue-300\/10:focus {
  background-color: rgb(147 197 253 / 0.1);
}
.focus\:bg-blue-300\/20:focus {
  background-color: rgb(147 197 253 / 0.2);
}
.focus\:bg-blue-300\/30:focus {
  background-color: rgb(147 197 253 / 0.3);
}
.focus\:bg-blue-300\/40:focus {
  background-color: rgb(147 197 253 / 0.4);
}
.focus\:bg-blue-300\/5:focus {
  background-color: rgb(147 197 253 / 0.05);
}
.focus\:bg-blue-300\/50:focus {
  background-color: rgb(147 197 253 / 0.5);
}
.focus\:bg-blue-300\/60:focus {
  background-color: rgb(147 197 253 / 0.6);
}
.focus\:bg-blue-300\/70:focus {
  background-color: rgb(147 197 253 / 0.7);
}
.focus\:bg-blue-300\/80:focus {
  background-color: rgb(147 197 253 / 0.8);
}
.focus\:bg-blue-300\/90:focus {
  background-color: rgb(147 197 253 / 0.9);
}
.focus\:bg-blue-400:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(96 165 250 / var(--tw-bg-opacity, 1));
}
.focus\:bg-blue-400\/10:focus {
  background-color: rgb(96 165 250 / 0.1);
}
.focus\:bg-blue-400\/20:focus {
  background-color: rgb(96 165 250 / 0.2);
}
.focus\:bg-blue-400\/30:focus {
  background-color: rgb(96 165 250 / 0.3);
}
.focus\:bg-blue-400\/40:focus {
  background-color: rgb(96 165 250 / 0.4);
}
.focus\:bg-blue-400\/5:focus {
  background-color: rgb(96 165 250 / 0.05);
}
.focus\:bg-blue-400\/50:focus {
  background-color: rgb(96 165 250 / 0.5);
}
.focus\:bg-blue-400\/60:focus {
  background-color: rgb(96 165 250 / 0.6);
}
.focus\:bg-blue-400\/70:focus {
  background-color: rgb(96 165 250 / 0.7);
}
.focus\:bg-blue-400\/80:focus {
  background-color: rgb(96 165 250 / 0.8);
}
.focus\:bg-blue-400\/90:focus {
  background-color: rgb(96 165 250 / 0.9);
}
.focus\:bg-blue-50:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}
.focus\:bg-blue-50\/10:focus {
  background-color: rgb(239 246 255 / 0.1);
}
.focus\:bg-blue-50\/20:focus {
  background-color: rgb(239 246 255 / 0.2);
}
.focus\:bg-blue-50\/30:focus {
  background-color: rgb(239 246 255 / 0.3);
}
.focus\:bg-blue-50\/40:focus {
  background-color: rgb(239 246 255 / 0.4);
}
.focus\:bg-blue-50\/5:focus {
  background-color: rgb(239 246 255 / 0.05);
}
.focus\:bg-blue-50\/50:focus {
  background-color: rgb(239 246 255 / 0.5);
}
.focus\:bg-blue-50\/60:focus {
  background-color: rgb(239 246 255 / 0.6);
}
.focus\:bg-blue-50\/70:focus {
  background-color: rgb(239 246 255 / 0.7);
}
.focus\:bg-blue-50\/80:focus {
  background-color: rgb(239 246 255 / 0.8);
}
.focus\:bg-blue-50\/90:focus {
  background-color: rgb(239 246 255 / 0.9);
}
.focus\:bg-blue-500:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
}
.focus\:bg-blue-500\/10:focus {
  background-color: rgb(59 130 246 / 0.1);
}
.focus\:bg-blue-500\/20:focus {
  background-color: rgb(59 130 246 / 0.2);
}
.focus\:bg-blue-500\/30:focus {
  background-color: rgb(59 130 246 / 0.3);
}
.focus\:bg-blue-500\/40:focus {
  background-color: rgb(59 130 246 / 0.4);
}
.focus\:bg-blue-500\/5:focus {
  background-color: rgb(59 130 246 / 0.05);
}
.focus\:bg-blue-500\/50:focus {
  background-color: rgb(59 130 246 / 0.5);
}
.focus\:bg-blue-500\/60:focus {
  background-color: rgb(59 130 246 / 0.6);
}
.focus\:bg-blue-500\/70:focus {
  background-color: rgb(59 130 246 / 0.7);
}
.focus\:bg-blue-500\/80:focus {
  background-color: rgb(59 130 246 / 0.8);
}
.focus\:bg-blue-500\/90:focus {
  background-color: rgb(59 130 246 / 0.9);
}
.focus\:bg-blue-600:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
.focus\:bg-blue-600\/10:focus {
  background-color: rgb(37 99 235 / 0.1);
}
.focus\:bg-blue-600\/20:focus {
  background-color: rgb(37 99 235 / 0.2);
}
.focus\:bg-blue-600\/30:focus {
  background-color: rgb(37 99 235 / 0.3);
}
.focus\:bg-blue-600\/40:focus {
  background-color: rgb(37 99 235 / 0.4);
}
.focus\:bg-blue-600\/5:focus {
  background-color: rgb(37 99 235 / 0.05);
}
.focus\:bg-blue-600\/50:focus {
  background-color: rgb(37 99 235 / 0.5);
}
.focus\:bg-blue-600\/60:focus {
  background-color: rgb(37 99 235 / 0.6);
}
.focus\:bg-blue-600\/70:focus {
  background-color: rgb(37 99 235 / 0.7);
}
.focus\:bg-blue-600\/80:focus {
  background-color: rgb(37 99 235 / 0.8);
}
.focus\:bg-blue-600\/90:focus {
  background-color: rgb(37 99 235 / 0.9);
}
.focus\:bg-blue-700:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
}
.focus\:bg-blue-700\/10:focus {
  background-color: rgb(29 78 216 / 0.1);
}
.focus\:bg-blue-700\/20:focus {
  background-color: rgb(29 78 216 / 0.2);
}
.focus\:bg-blue-700\/30:focus {
  background-color: rgb(29 78 216 / 0.3);
}
.focus\:bg-blue-700\/40:focus {
  background-color: rgb(29 78 216 / 0.4);
}
.focus\:bg-blue-700\/5:focus {
  background-color: rgb(29 78 216 / 0.05);
}
.focus\:bg-blue-700\/50:focus {
  background-color: rgb(29 78 216 / 0.5);
}
.focus\:bg-blue-700\/60:focus {
  background-color: rgb(29 78 216 / 0.6);
}
.focus\:bg-blue-700\/70:focus {
  background-color: rgb(29 78 216 / 0.7);
}
.focus\:bg-blue-700\/80:focus {
  background-color: rgb(29 78 216 / 0.8);
}
.focus\:bg-blue-700\/90:focus {
  background-color: rgb(29 78 216 / 0.9);
}
.focus\:bg-blue-800:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(30 64 175 / var(--tw-bg-opacity, 1));
}
.focus\:bg-blue-800\/10:focus {
  background-color: rgb(30 64 175 / 0.1);
}
.focus\:bg-blue-800\/20:focus {
  background-color: rgb(30 64 175 / 0.2);
}
.focus\:bg-blue-800\/30:focus {
  background-color: rgb(30 64 175 / 0.3);
}
.focus\:bg-blue-800\/40:focus {
  background-color: rgb(30 64 175 / 0.4);
}
.focus\:bg-blue-800\/5:focus {
  background-color: rgb(30 64 175 / 0.05);
}
.focus\:bg-blue-800\/50:focus {
  background-color: rgb(30 64 175 / 0.5);
}
.focus\:bg-blue-800\/60:focus {
  background-color: rgb(30 64 175 / 0.6);
}
.focus\:bg-blue-800\/70:focus {
  background-color: rgb(30 64 175 / 0.7);
}
.focus\:bg-blue-800\/80:focus {
  background-color: rgb(30 64 175 / 0.8);
}
.focus\:bg-blue-800\/90:focus {
  background-color: rgb(30 64 175 / 0.9);
}
.focus\:bg-blue-900:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(30 58 138 / var(--tw-bg-opacity, 1));
}
.focus\:bg-blue-900\/10:focus {
  background-color: rgb(30 58 138 / 0.1);
}
.focus\:bg-blue-900\/20:focus {
  background-color: rgb(30 58 138 / 0.2);
}
.focus\:bg-blue-900\/30:focus {
  background-color: rgb(30 58 138 / 0.3);
}
.focus\:bg-blue-900\/40:focus {
  background-color: rgb(30 58 138 / 0.4);
}
.focus\:bg-blue-900\/5:focus {
  background-color: rgb(30 58 138 / 0.05);
}
.focus\:bg-blue-900\/50:focus {
  background-color: rgb(30 58 138 / 0.5);
}
.focus\:bg-blue-900\/60:focus {
  background-color: rgb(30 58 138 / 0.6);
}
.focus\:bg-blue-900\/70:focus {
  background-color: rgb(30 58 138 / 0.7);
}
.focus\:bg-blue-900\/80:focus {
  background-color: rgb(30 58 138 / 0.8);
}
.focus\:bg-blue-900\/90:focus {
  background-color: rgb(30 58 138 / 0.9);
}
.focus\:bg-blue-950:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(23 37 84 / var(--tw-bg-opacity, 1));
}
.focus\:bg-blue-950\/10:focus {
  background-color: rgb(23 37 84 / 0.1);
}
.focus\:bg-blue-950\/20:focus {
  background-color: rgb(23 37 84 / 0.2);
}
.focus\:bg-blue-950\/30:focus {
  background-color: rgb(23 37 84 / 0.3);
}
.focus\:bg-blue-950\/40:focus {
  background-color: rgb(23 37 84 / 0.4);
}
.focus\:bg-blue-950\/5:focus {
  background-color: rgb(23 37 84 / 0.05);
}
.focus\:bg-blue-950\/50:focus {
  background-color: rgb(23 37 84 / 0.5);
}
.focus\:bg-blue-950\/60:focus {
  background-color: rgb(23 37 84 / 0.6);
}
.focus\:bg-blue-950\/70:focus {
  background-color: rgb(23 37 84 / 0.7);
}
.focus\:bg-blue-950\/80:focus {
  background-color: rgb(23 37 84 / 0.8);
}
.focus\:bg-blue-950\/90:focus {
  background-color: rgb(23 37 84 / 0.9);
}
.focus\:bg-cyan-100:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(207 250 254 / var(--tw-bg-opacity, 1));
}
.focus\:bg-cyan-100\/10:focus {
  background-color: rgb(207 250 254 / 0.1);
}
.focus\:bg-cyan-100\/20:focus {
  background-color: rgb(207 250 254 / 0.2);
}
.focus\:bg-cyan-100\/30:focus {
  background-color: rgb(207 250 254 / 0.3);
}
.focus\:bg-cyan-100\/40:focus {
  background-color: rgb(207 250 254 / 0.4);
}
.focus\:bg-cyan-100\/5:focus {
  background-color: rgb(207 250 254 / 0.05);
}
.focus\:bg-cyan-100\/50:focus {
  background-color: rgb(207 250 254 / 0.5);
}
.focus\:bg-cyan-100\/60:focus {
  background-color: rgb(207 250 254 / 0.6);
}
.focus\:bg-cyan-100\/70:focus {
  background-color: rgb(207 250 254 / 0.7);
}
.focus\:bg-cyan-100\/80:focus {
  background-color: rgb(207 250 254 / 0.8);
}
.focus\:bg-cyan-100\/90:focus {
  background-color: rgb(207 250 254 / 0.9);
}
.focus\:bg-cyan-200:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(165 243 252 / var(--tw-bg-opacity, 1));
}
.focus\:bg-cyan-200\/10:focus {
  background-color: rgb(165 243 252 / 0.1);
}
.focus\:bg-cyan-200\/20:focus {
  background-color: rgb(165 243 252 / 0.2);
}
.focus\:bg-cyan-200\/30:focus {
  background-color: rgb(165 243 252 / 0.3);
}
.focus\:bg-cyan-200\/40:focus {
  background-color: rgb(165 243 252 / 0.4);
}
.focus\:bg-cyan-200\/5:focus {
  background-color: rgb(165 243 252 / 0.05);
}
.focus\:bg-cyan-200\/50:focus {
  background-color: rgb(165 243 252 / 0.5);
}
.focus\:bg-cyan-200\/60:focus {
  background-color: rgb(165 243 252 / 0.6);
}
.focus\:bg-cyan-200\/70:focus {
  background-color: rgb(165 243 252 / 0.7);
}
.focus\:bg-cyan-200\/80:focus {
  background-color: rgb(165 243 252 / 0.8);
}
.focus\:bg-cyan-200\/90:focus {
  background-color: rgb(165 243 252 / 0.9);
}
.focus\:bg-cyan-300:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(103 232 249 / var(--tw-bg-opacity, 1));
}
.focus\:bg-cyan-300\/10:focus {
  background-color: rgb(103 232 249 / 0.1);
}
.focus\:bg-cyan-300\/20:focus {
  background-color: rgb(103 232 249 / 0.2);
}
.focus\:bg-cyan-300\/30:focus {
  background-color: rgb(103 232 249 / 0.3);
}
.focus\:bg-cyan-300\/40:focus {
  background-color: rgb(103 232 249 / 0.4);
}
.focus\:bg-cyan-300\/5:focus {
  background-color: rgb(103 232 249 / 0.05);
}
.focus\:bg-cyan-300\/50:focus {
  background-color: rgb(103 232 249 / 0.5);
}
.focus\:bg-cyan-300\/60:focus {
  background-color: rgb(103 232 249 / 0.6);
}
.focus\:bg-cyan-300\/70:focus {
  background-color: rgb(103 232 249 / 0.7);
}
.focus\:bg-cyan-300\/80:focus {
  background-color: rgb(103 232 249 / 0.8);
}
.focus\:bg-cyan-300\/90:focus {
  background-color: rgb(103 232 249 / 0.9);
}
.focus\:bg-cyan-400:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(34 211 238 / var(--tw-bg-opacity, 1));
}
.focus\:bg-cyan-400\/10:focus {
  background-color: rgb(34 211 238 / 0.1);
}
.focus\:bg-cyan-400\/20:focus {
  background-color: rgb(34 211 238 / 0.2);
}
.focus\:bg-cyan-400\/30:focus {
  background-color: rgb(34 211 238 / 0.3);
}
.focus\:bg-cyan-400\/40:focus {
  background-color: rgb(34 211 238 / 0.4);
}
.focus\:bg-cyan-400\/5:focus {
  background-color: rgb(34 211 238 / 0.05);
}
.focus\:bg-cyan-400\/50:focus {
  background-color: rgb(34 211 238 / 0.5);
}
.focus\:bg-cyan-400\/60:focus {
  background-color: rgb(34 211 238 / 0.6);
}
.focus\:bg-cyan-400\/70:focus {
  background-color: rgb(34 211 238 / 0.7);
}
.focus\:bg-cyan-400\/80:focus {
  background-color: rgb(34 211 238 / 0.8);
}
.focus\:bg-cyan-400\/90:focus {
  background-color: rgb(34 211 238 / 0.9);
}
.focus\:bg-cyan-50:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(236 254 255 / var(--tw-bg-opacity, 1));
}
.focus\:bg-cyan-50\/10:focus {
  background-color: rgb(236 254 255 / 0.1);
}
.focus\:bg-cyan-50\/20:focus {
  background-color: rgb(236 254 255 / 0.2);
}
.focus\:bg-cyan-50\/30:focus {
  background-color: rgb(236 254 255 / 0.3);
}
.focus\:bg-cyan-50\/40:focus {
  background-color: rgb(236 254 255 / 0.4);
}
.focus\:bg-cyan-50\/5:focus {
  background-color: rgb(236 254 255 / 0.05);
}
.focus\:bg-cyan-50\/50:focus {
  background-color: rgb(236 254 255 / 0.5);
}
.focus\:bg-cyan-50\/60:focus {
  background-color: rgb(236 254 255 / 0.6);
}
.focus\:bg-cyan-50\/70:focus {
  background-color: rgb(236 254 255 / 0.7);
}
.focus\:bg-cyan-50\/80:focus {
  background-color: rgb(236 254 255 / 0.8);
}
.focus\:bg-cyan-50\/90:focus {
  background-color: rgb(236 254 255 / 0.9);
}
.focus\:bg-cyan-500:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(6 182 212 / var(--tw-bg-opacity, 1));
}
.focus\:bg-cyan-500\/10:focus {
  background-color: rgb(6 182 212 / 0.1);
}
.focus\:bg-cyan-500\/20:focus {
  background-color: rgb(6 182 212 / 0.2);
}
.focus\:bg-cyan-500\/30:focus {
  background-color: rgb(6 182 212 / 0.3);
}
.focus\:bg-cyan-500\/40:focus {
  background-color: rgb(6 182 212 / 0.4);
}
.focus\:bg-cyan-500\/5:focus {
  background-color: rgb(6 182 212 / 0.05);
}
.focus\:bg-cyan-500\/50:focus {
  background-color: rgb(6 182 212 / 0.5);
}
.focus\:bg-cyan-500\/60:focus {
  background-color: rgb(6 182 212 / 0.6);
}
.focus\:bg-cyan-500\/70:focus {
  background-color: rgb(6 182 212 / 0.7);
}
.focus\:bg-cyan-500\/80:focus {
  background-color: rgb(6 182 212 / 0.8);
}
.focus\:bg-cyan-500\/90:focus {
  background-color: rgb(6 182 212 / 0.9);
}
.focus\:bg-cyan-600:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(8 145 178 / var(--tw-bg-opacity, 1));
}
.focus\:bg-cyan-600\/10:focus {
  background-color: rgb(8 145 178 / 0.1);
}
.focus\:bg-cyan-600\/20:focus {
  background-color: rgb(8 145 178 / 0.2);
}
.focus\:bg-cyan-600\/30:focus {
  background-color: rgb(8 145 178 / 0.3);
}
.focus\:bg-cyan-600\/40:focus {
  background-color: rgb(8 145 178 / 0.4);
}
.focus\:bg-cyan-600\/5:focus {
  background-color: rgb(8 145 178 / 0.05);
}
.focus\:bg-cyan-600\/50:focus {
  background-color: rgb(8 145 178 / 0.5);
}
.focus\:bg-cyan-600\/60:focus {
  background-color: rgb(8 145 178 / 0.6);
}
.focus\:bg-cyan-600\/70:focus {
  background-color: rgb(8 145 178 / 0.7);
}
.focus\:bg-cyan-600\/80:focus {
  background-color: rgb(8 145 178 / 0.8);
}
.focus\:bg-cyan-600\/90:focus {
  background-color: rgb(8 145 178 / 0.9);
}
.focus\:bg-cyan-700:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(14 116 144 / var(--tw-bg-opacity, 1));
}
.focus\:bg-cyan-700\/10:focus {
  background-color: rgb(14 116 144 / 0.1);
}
.focus\:bg-cyan-700\/20:focus {
  background-color: rgb(14 116 144 / 0.2);
}
.focus\:bg-cyan-700\/30:focus {
  background-color: rgb(14 116 144 / 0.3);
}
.focus\:bg-cyan-700\/40:focus {
  background-color: rgb(14 116 144 / 0.4);
}
.focus\:bg-cyan-700\/5:focus {
  background-color: rgb(14 116 144 / 0.05);
}
.focus\:bg-cyan-700\/50:focus {
  background-color: rgb(14 116 144 / 0.5);
}
.focus\:bg-cyan-700\/60:focus {
  background-color: rgb(14 116 144 / 0.6);
}
.focus\:bg-cyan-700\/70:focus {
  background-color: rgb(14 116 144 / 0.7);
}
.focus\:bg-cyan-700\/80:focus {
  background-color: rgb(14 116 144 / 0.8);
}
.focus\:bg-cyan-700\/90:focus {
  background-color: rgb(14 116 144 / 0.9);
}
.focus\:bg-cyan-800:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(21 94 117 / var(--tw-bg-opacity, 1));
}
.focus\:bg-cyan-800\/10:focus {
  background-color: rgb(21 94 117 / 0.1);
}
.focus\:bg-cyan-800\/20:focus {
  background-color: rgb(21 94 117 / 0.2);
}
.focus\:bg-cyan-800\/30:focus {
  background-color: rgb(21 94 117 / 0.3);
}
.focus\:bg-cyan-800\/40:focus {
  background-color: rgb(21 94 117 / 0.4);
}
.focus\:bg-cyan-800\/5:focus {
  background-color: rgb(21 94 117 / 0.05);
}
.focus\:bg-cyan-800\/50:focus {
  background-color: rgb(21 94 117 / 0.5);
}
.focus\:bg-cyan-800\/60:focus {
  background-color: rgb(21 94 117 / 0.6);
}
.focus\:bg-cyan-800\/70:focus {
  background-color: rgb(21 94 117 / 0.7);
}
.focus\:bg-cyan-800\/80:focus {
  background-color: rgb(21 94 117 / 0.8);
}
.focus\:bg-cyan-800\/90:focus {
  background-color: rgb(21 94 117 / 0.9);
}
.focus\:bg-cyan-900:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(22 78 99 / var(--tw-bg-opacity, 1));
}
.focus\:bg-cyan-900\/10:focus {
  background-color: rgb(22 78 99 / 0.1);
}
.focus\:bg-cyan-900\/20:focus {
  background-color: rgb(22 78 99 / 0.2);
}
.focus\:bg-cyan-900\/30:focus {
  background-color: rgb(22 78 99 / 0.3);
}
.focus\:bg-cyan-900\/40:focus {
  background-color: rgb(22 78 99 / 0.4);
}
.focus\:bg-cyan-900\/5:focus {
  background-color: rgb(22 78 99 / 0.05);
}
.focus\:bg-cyan-900\/50:focus {
  background-color: rgb(22 78 99 / 0.5);
}
.focus\:bg-cyan-900\/60:focus {
  background-color: rgb(22 78 99 / 0.6);
}
.focus\:bg-cyan-900\/70:focus {
  background-color: rgb(22 78 99 / 0.7);
}
.focus\:bg-cyan-900\/80:focus {
  background-color: rgb(22 78 99 / 0.8);
}
.focus\:bg-cyan-900\/90:focus {
  background-color: rgb(22 78 99 / 0.9);
}
.focus\:bg-cyan-950:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(8 51 68 / var(--tw-bg-opacity, 1));
}
.focus\:bg-cyan-950\/10:focus {
  background-color: rgb(8 51 68 / 0.1);
}
.focus\:bg-cyan-950\/20:focus {
  background-color: rgb(8 51 68 / 0.2);
}
.focus\:bg-cyan-950\/30:focus {
  background-color: rgb(8 51 68 / 0.3);
}
.focus\:bg-cyan-950\/40:focus {
  background-color: rgb(8 51 68 / 0.4);
}
.focus\:bg-cyan-950\/5:focus {
  background-color: rgb(8 51 68 / 0.05);
}
.focus\:bg-cyan-950\/50:focus {
  background-color: rgb(8 51 68 / 0.5);
}
.focus\:bg-cyan-950\/60:focus {
  background-color: rgb(8 51 68 / 0.6);
}
.focus\:bg-cyan-950\/70:focus {
  background-color: rgb(8 51 68 / 0.7);
}
.focus\:bg-cyan-950\/80:focus {
  background-color: rgb(8 51 68 / 0.8);
}
.focus\:bg-cyan-950\/90:focus {
  background-color: rgb(8 51 68 / 0.9);
}
.focus\:bg-emerald-100:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(209 250 229 / var(--tw-bg-opacity, 1));
}
.focus\:bg-emerald-100\/10:focus {
  background-color: rgb(209 250 229 / 0.1);
}
.focus\:bg-emerald-100\/20:focus {
  background-color: rgb(209 250 229 / 0.2);
}
.focus\:bg-emerald-100\/30:focus {
  background-color: rgb(209 250 229 / 0.3);
}
.focus\:bg-emerald-100\/40:focus {
  background-color: rgb(209 250 229 / 0.4);
}
.focus\:bg-emerald-100\/5:focus {
  background-color: rgb(209 250 229 / 0.05);
}
.focus\:bg-emerald-100\/50:focus {
  background-color: rgb(209 250 229 / 0.5);
}
.focus\:bg-emerald-100\/60:focus {
  background-color: rgb(209 250 229 / 0.6);
}
.focus\:bg-emerald-100\/70:focus {
  background-color: rgb(209 250 229 / 0.7);
}
.focus\:bg-emerald-100\/80:focus {
  background-color: rgb(209 250 229 / 0.8);
}
.focus\:bg-emerald-100\/90:focus {
  background-color: rgb(209 250 229 / 0.9);
}
.focus\:bg-emerald-200:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(167 243 208 / var(--tw-bg-opacity, 1));
}
.focus\:bg-emerald-200\/10:focus {
  background-color: rgb(167 243 208 / 0.1);
}
.focus\:bg-emerald-200\/20:focus {
  background-color: rgb(167 243 208 / 0.2);
}
.focus\:bg-emerald-200\/30:focus {
  background-color: rgb(167 243 208 / 0.3);
}
.focus\:bg-emerald-200\/40:focus {
  background-color: rgb(167 243 208 / 0.4);
}
.focus\:bg-emerald-200\/5:focus {
  background-color: rgb(167 243 208 / 0.05);
}
.focus\:bg-emerald-200\/50:focus {
  background-color: rgb(167 243 208 / 0.5);
}
.focus\:bg-emerald-200\/60:focus {
  background-color: rgb(167 243 208 / 0.6);
}
.focus\:bg-emerald-200\/70:focus {
  background-color: rgb(167 243 208 / 0.7);
}
.focus\:bg-emerald-200\/80:focus {
  background-color: rgb(167 243 208 / 0.8);
}
.focus\:bg-emerald-200\/90:focus {
  background-color: rgb(167 243 208 / 0.9);
}
.focus\:bg-emerald-300:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(110 231 183 / var(--tw-bg-opacity, 1));
}
.focus\:bg-emerald-300\/10:focus {
  background-color: rgb(110 231 183 / 0.1);
}
.focus\:bg-emerald-300\/20:focus {
  background-color: rgb(110 231 183 / 0.2);
}
.focus\:bg-emerald-300\/30:focus {
  background-color: rgb(110 231 183 / 0.3);
}
.focus\:bg-emerald-300\/40:focus {
  background-color: rgb(110 231 183 / 0.4);
}
.focus\:bg-emerald-300\/5:focus {
  background-color: rgb(110 231 183 / 0.05);
}
.focus\:bg-emerald-300\/50:focus {
  background-color: rgb(110 231 183 / 0.5);
}
.focus\:bg-emerald-300\/60:focus {
  background-color: rgb(110 231 183 / 0.6);
}
.focus\:bg-emerald-300\/70:focus {
  background-color: rgb(110 231 183 / 0.7);
}
.focus\:bg-emerald-300\/80:focus {
  background-color: rgb(110 231 183 / 0.8);
}
.focus\:bg-emerald-300\/90:focus {
  background-color: rgb(110 231 183 / 0.9);
}
.focus\:bg-emerald-400:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(52 211 153 / var(--tw-bg-opacity, 1));
}
.focus\:bg-emerald-400\/10:focus {
  background-color: rgb(52 211 153 / 0.1);
}
.focus\:bg-emerald-400\/20:focus {
  background-color: rgb(52 211 153 / 0.2);
}
.focus\:bg-emerald-400\/30:focus {
  background-color: rgb(52 211 153 / 0.3);
}
.focus\:bg-emerald-400\/40:focus {
  background-color: rgb(52 211 153 / 0.4);
}
.focus\:bg-emerald-400\/5:focus {
  background-color: rgb(52 211 153 / 0.05);
}
.focus\:bg-emerald-400\/50:focus {
  background-color: rgb(52 211 153 / 0.5);
}
.focus\:bg-emerald-400\/60:focus {
  background-color: rgb(52 211 153 / 0.6);
}
.focus\:bg-emerald-400\/70:focus {
  background-color: rgb(52 211 153 / 0.7);
}
.focus\:bg-emerald-400\/80:focus {
  background-color: rgb(52 211 153 / 0.8);
}
.focus\:bg-emerald-400\/90:focus {
  background-color: rgb(52 211 153 / 0.9);
}
.focus\:bg-emerald-50:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(236 253 245 / var(--tw-bg-opacity, 1));
}
.focus\:bg-emerald-50\/10:focus {
  background-color: rgb(236 253 245 / 0.1);
}
.focus\:bg-emerald-50\/20:focus {
  background-color: rgb(236 253 245 / 0.2);
}
.focus\:bg-emerald-50\/30:focus {
  background-color: rgb(236 253 245 / 0.3);
}
.focus\:bg-emerald-50\/40:focus {
  background-color: rgb(236 253 245 / 0.4);
}
.focus\:bg-emerald-50\/5:focus {
  background-color: rgb(236 253 245 / 0.05);
}
.focus\:bg-emerald-50\/50:focus {
  background-color: rgb(236 253 245 / 0.5);
}
.focus\:bg-emerald-50\/60:focus {
  background-color: rgb(236 253 245 / 0.6);
}
.focus\:bg-emerald-50\/70:focus {
  background-color: rgb(236 253 245 / 0.7);
}
.focus\:bg-emerald-50\/80:focus {
  background-color: rgb(236 253 245 / 0.8);
}
.focus\:bg-emerald-50\/90:focus {
  background-color: rgb(236 253 245 / 0.9);
}
.focus\:bg-emerald-500:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(16 185 129 / var(--tw-bg-opacity, 1));
}
.focus\:bg-emerald-500\/10:focus {
  background-color: rgb(16 185 129 / 0.1);
}
.focus\:bg-emerald-500\/20:focus {
  background-color: rgb(16 185 129 / 0.2);
}
.focus\:bg-emerald-500\/30:focus {
  background-color: rgb(16 185 129 / 0.3);
}
.focus\:bg-emerald-500\/40:focus {
  background-color: rgb(16 185 129 / 0.4);
}
.focus\:bg-emerald-500\/5:focus {
  background-color: rgb(16 185 129 / 0.05);
}
.focus\:bg-emerald-500\/50:focus {
  background-color: rgb(16 185 129 / 0.5);
}
.focus\:bg-emerald-500\/60:focus {
  background-color: rgb(16 185 129 / 0.6);
}
.focus\:bg-emerald-500\/70:focus {
  background-color: rgb(16 185 129 / 0.7);
}
.focus\:bg-emerald-500\/80:focus {
  background-color: rgb(16 185 129 / 0.8);
}
.focus\:bg-emerald-500\/90:focus {
  background-color: rgb(16 185 129 / 0.9);
}
.focus\:bg-emerald-600:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(5 150 105 / var(--tw-bg-opacity, 1));
}
.focus\:bg-emerald-600\/10:focus {
  background-color: rgb(5 150 105 / 0.1);
}
.focus\:bg-emerald-600\/20:focus {
  background-color: rgb(5 150 105 / 0.2);
}
.focus\:bg-emerald-600\/30:focus {
  background-color: rgb(5 150 105 / 0.3);
}
.focus\:bg-emerald-600\/40:focus {
  background-color: rgb(5 150 105 / 0.4);
}
.focus\:bg-emerald-600\/5:focus {
  background-color: rgb(5 150 105 / 0.05);
}
.focus\:bg-emerald-600\/50:focus {
  background-color: rgb(5 150 105 / 0.5);
}
.focus\:bg-emerald-600\/60:focus {
  background-color: rgb(5 150 105 / 0.6);
}
.focus\:bg-emerald-600\/70:focus {
  background-color: rgb(5 150 105 / 0.7);
}
.focus\:bg-emerald-600\/80:focus {
  background-color: rgb(5 150 105 / 0.8);
}
.focus\:bg-emerald-600\/90:focus {
  background-color: rgb(5 150 105 / 0.9);
}
.focus\:bg-emerald-700:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(4 120 87 / var(--tw-bg-opacity, 1));
}
.focus\:bg-emerald-700\/10:focus {
  background-color: rgb(4 120 87 / 0.1);
}
.focus\:bg-emerald-700\/20:focus {
  background-color: rgb(4 120 87 / 0.2);
}
.focus\:bg-emerald-700\/30:focus {
  background-color: rgb(4 120 87 / 0.3);
}
.focus\:bg-emerald-700\/40:focus {
  background-color: rgb(4 120 87 / 0.4);
}
.focus\:bg-emerald-700\/5:focus {
  background-color: rgb(4 120 87 / 0.05);
}
.focus\:bg-emerald-700\/50:focus {
  background-color: rgb(4 120 87 / 0.5);
}
.focus\:bg-emerald-700\/60:focus {
  background-color: rgb(4 120 87 / 0.6);
}
.focus\:bg-emerald-700\/70:focus {
  background-color: rgb(4 120 87 / 0.7);
}
.focus\:bg-emerald-700\/80:focus {
  background-color: rgb(4 120 87 / 0.8);
}
.focus\:bg-emerald-700\/90:focus {
  background-color: rgb(4 120 87 / 0.9);
}
.focus\:bg-emerald-800:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(6 95 70 / var(--tw-bg-opacity, 1));
}
.focus\:bg-emerald-800\/10:focus {
  background-color: rgb(6 95 70 / 0.1);
}
.focus\:bg-emerald-800\/20:focus {
  background-color: rgb(6 95 70 / 0.2);
}
.focus\:bg-emerald-800\/30:focus {
  background-color: rgb(6 95 70 / 0.3);
}
.focus\:bg-emerald-800\/40:focus {
  background-color: rgb(6 95 70 / 0.4);
}
.focus\:bg-emerald-800\/5:focus {
  background-color: rgb(6 95 70 / 0.05);
}
.focus\:bg-emerald-800\/50:focus {
  background-color: rgb(6 95 70 / 0.5);
}
.focus\:bg-emerald-800\/60:focus {
  background-color: rgb(6 95 70 / 0.6);
}
.focus\:bg-emerald-800\/70:focus {
  background-color: rgb(6 95 70 / 0.7);
}
.focus\:bg-emerald-800\/80:focus {
  background-color: rgb(6 95 70 / 0.8);
}
.focus\:bg-emerald-800\/90:focus {
  background-color: rgb(6 95 70 / 0.9);
}
.focus\:bg-emerald-900:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(6 78 59 / var(--tw-bg-opacity, 1));
}
.focus\:bg-emerald-900\/10:focus {
  background-color: rgb(6 78 59 / 0.1);
}
.focus\:bg-emerald-900\/20:focus {
  background-color: rgb(6 78 59 / 0.2);
}
.focus\:bg-emerald-900\/30:focus {
  background-color: rgb(6 78 59 / 0.3);
}
.focus\:bg-emerald-900\/40:focus {
  background-color: rgb(6 78 59 / 0.4);
}
.focus\:bg-emerald-900\/5:focus {
  background-color: rgb(6 78 59 / 0.05);
}
.focus\:bg-emerald-900\/50:focus {
  background-color: rgb(6 78 59 / 0.5);
}
.focus\:bg-emerald-900\/60:focus {
  background-color: rgb(6 78 59 / 0.6);
}
.focus\:bg-emerald-900\/70:focus {
  background-color: rgb(6 78 59 / 0.7);
}
.focus\:bg-emerald-900\/80:focus {
  background-color: rgb(6 78 59 / 0.8);
}
.focus\:bg-emerald-900\/90:focus {
  background-color: rgb(6 78 59 / 0.9);
}
.focus\:bg-emerald-950:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(2 44 34 / var(--tw-bg-opacity, 1));
}
.focus\:bg-emerald-950\/10:focus {
  background-color: rgb(2 44 34 / 0.1);
}
.focus\:bg-emerald-950\/20:focus {
  background-color: rgb(2 44 34 / 0.2);
}
.focus\:bg-emerald-950\/30:focus {
  background-color: rgb(2 44 34 / 0.3);
}
.focus\:bg-emerald-950\/40:focus {
  background-color: rgb(2 44 34 / 0.4);
}
.focus\:bg-emerald-950\/5:focus {
  background-color: rgb(2 44 34 / 0.05);
}
.focus\:bg-emerald-950\/50:focus {
  background-color: rgb(2 44 34 / 0.5);
}
.focus\:bg-emerald-950\/60:focus {
  background-color: rgb(2 44 34 / 0.6);
}
.focus\:bg-emerald-950\/70:focus {
  background-color: rgb(2 44 34 / 0.7);
}
.focus\:bg-emerald-950\/80:focus {
  background-color: rgb(2 44 34 / 0.8);
}
.focus\:bg-emerald-950\/90:focus {
  background-color: rgb(2 44 34 / 0.9);
}
.focus\:bg-fuchsia-100:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(250 232 255 / var(--tw-bg-opacity, 1));
}
.focus\:bg-fuchsia-100\/10:focus {
  background-color: rgb(250 232 255 / 0.1);
}
.focus\:bg-fuchsia-100\/20:focus {
  background-color: rgb(250 232 255 / 0.2);
}
.focus\:bg-fuchsia-100\/30:focus {
  background-color: rgb(250 232 255 / 0.3);
}
.focus\:bg-fuchsia-100\/40:focus {
  background-color: rgb(250 232 255 / 0.4);
}
.focus\:bg-fuchsia-100\/5:focus {
  background-color: rgb(250 232 255 / 0.05);
}
.focus\:bg-fuchsia-100\/50:focus {
  background-color: rgb(250 232 255 / 0.5);
}
.focus\:bg-fuchsia-100\/60:focus {
  background-color: rgb(250 232 255 / 0.6);
}
.focus\:bg-fuchsia-100\/70:focus {
  background-color: rgb(250 232 255 / 0.7);
}
.focus\:bg-fuchsia-100\/80:focus {
  background-color: rgb(250 232 255 / 0.8);
}
.focus\:bg-fuchsia-100\/90:focus {
  background-color: rgb(250 232 255 / 0.9);
}
.focus\:bg-fuchsia-200:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(245 208 254 / var(--tw-bg-opacity, 1));
}
.focus\:bg-fuchsia-200\/10:focus {
  background-color: rgb(245 208 254 / 0.1);
}
.focus\:bg-fuchsia-200\/20:focus {
  background-color: rgb(245 208 254 / 0.2);
}
.focus\:bg-fuchsia-200\/30:focus {
  background-color: rgb(245 208 254 / 0.3);
}
.focus\:bg-fuchsia-200\/40:focus {
  background-color: rgb(245 208 254 / 0.4);
}
.focus\:bg-fuchsia-200\/5:focus {
  background-color: rgb(245 208 254 / 0.05);
}
.focus\:bg-fuchsia-200\/50:focus {
  background-color: rgb(245 208 254 / 0.5);
}
.focus\:bg-fuchsia-200\/60:focus {
  background-color: rgb(245 208 254 / 0.6);
}
.focus\:bg-fuchsia-200\/70:focus {
  background-color: rgb(245 208 254 / 0.7);
}
.focus\:bg-fuchsia-200\/80:focus {
  background-color: rgb(245 208 254 / 0.8);
}
.focus\:bg-fuchsia-200\/90:focus {
  background-color: rgb(245 208 254 / 0.9);
}
.focus\:bg-fuchsia-300:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(240 171 252 / var(--tw-bg-opacity, 1));
}
.focus\:bg-fuchsia-300\/10:focus {
  background-color: rgb(240 171 252 / 0.1);
}
.focus\:bg-fuchsia-300\/20:focus {
  background-color: rgb(240 171 252 / 0.2);
}
.focus\:bg-fuchsia-300\/30:focus {
  background-color: rgb(240 171 252 / 0.3);
}
.focus\:bg-fuchsia-300\/40:focus {
  background-color: rgb(240 171 252 / 0.4);
}
.focus\:bg-fuchsia-300\/5:focus {
  background-color: rgb(240 171 252 / 0.05);
}
.focus\:bg-fuchsia-300\/50:focus {
  background-color: rgb(240 171 252 / 0.5);
}
.focus\:bg-fuchsia-300\/60:focus {
  background-color: rgb(240 171 252 / 0.6);
}
.focus\:bg-fuchsia-300\/70:focus {
  background-color: rgb(240 171 252 / 0.7);
}
.focus\:bg-fuchsia-300\/80:focus {
  background-color: rgb(240 171 252 / 0.8);
}
.focus\:bg-fuchsia-300\/90:focus {
  background-color: rgb(240 171 252 / 0.9);
}
.focus\:bg-fuchsia-400:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(232 121 249 / var(--tw-bg-opacity, 1));
}
.focus\:bg-fuchsia-400\/10:focus {
  background-color: rgb(232 121 249 / 0.1);
}
.focus\:bg-fuchsia-400\/20:focus {
  background-color: rgb(232 121 249 / 0.2);
}
.focus\:bg-fuchsia-400\/30:focus {
  background-color: rgb(232 121 249 / 0.3);
}
.focus\:bg-fuchsia-400\/40:focus {
  background-color: rgb(232 121 249 / 0.4);
}
.focus\:bg-fuchsia-400\/5:focus {
  background-color: rgb(232 121 249 / 0.05);
}
.focus\:bg-fuchsia-400\/50:focus {
  background-color: rgb(232 121 249 / 0.5);
}
.focus\:bg-fuchsia-400\/60:focus {
  background-color: rgb(232 121 249 / 0.6);
}
.focus\:bg-fuchsia-400\/70:focus {
  background-color: rgb(232 121 249 / 0.7);
}
.focus\:bg-fuchsia-400\/80:focus {
  background-color: rgb(232 121 249 / 0.8);
}
.focus\:bg-fuchsia-400\/90:focus {
  background-color: rgb(232 121 249 / 0.9);
}
.focus\:bg-fuchsia-50:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(253 244 255 / var(--tw-bg-opacity, 1));
}
.focus\:bg-fuchsia-50\/10:focus {
  background-color: rgb(253 244 255 / 0.1);
}
.focus\:bg-fuchsia-50\/20:focus {
  background-color: rgb(253 244 255 / 0.2);
}
.focus\:bg-fuchsia-50\/30:focus {
  background-color: rgb(253 244 255 / 0.3);
}
.focus\:bg-fuchsia-50\/40:focus {
  background-color: rgb(253 244 255 / 0.4);
}
.focus\:bg-fuchsia-50\/5:focus {
  background-color: rgb(253 244 255 / 0.05);
}
.focus\:bg-fuchsia-50\/50:focus {
  background-color: rgb(253 244 255 / 0.5);
}
.focus\:bg-fuchsia-50\/60:focus {
  background-color: rgb(253 244 255 / 0.6);
}
.focus\:bg-fuchsia-50\/70:focus {
  background-color: rgb(253 244 255 / 0.7);
}
.focus\:bg-fuchsia-50\/80:focus {
  background-color: rgb(253 244 255 / 0.8);
}
.focus\:bg-fuchsia-50\/90:focus {
  background-color: rgb(253 244 255 / 0.9);
}
.focus\:bg-fuchsia-500:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(217 70 239 / var(--tw-bg-opacity, 1));
}
.focus\:bg-fuchsia-500\/10:focus {
  background-color: rgb(217 70 239 / 0.1);
}
.focus\:bg-fuchsia-500\/20:focus {
  background-color: rgb(217 70 239 / 0.2);
}
.focus\:bg-fuchsia-500\/30:focus {
  background-color: rgb(217 70 239 / 0.3);
}
.focus\:bg-fuchsia-500\/40:focus {
  background-color: rgb(217 70 239 / 0.4);
}
.focus\:bg-fuchsia-500\/5:focus {
  background-color: rgb(217 70 239 / 0.05);
}
.focus\:bg-fuchsia-500\/50:focus {
  background-color: rgb(217 70 239 / 0.5);
}
.focus\:bg-fuchsia-500\/60:focus {
  background-color: rgb(217 70 239 / 0.6);
}
.focus\:bg-fuchsia-500\/70:focus {
  background-color: rgb(217 70 239 / 0.7);
}
.focus\:bg-fuchsia-500\/80:focus {
  background-color: rgb(217 70 239 / 0.8);
}
.focus\:bg-fuchsia-500\/90:focus {
  background-color: rgb(217 70 239 / 0.9);
}
.focus\:bg-fuchsia-600:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(192 38 211 / var(--tw-bg-opacity, 1));
}
.focus\:bg-fuchsia-600\/10:focus {
  background-color: rgb(192 38 211 / 0.1);
}
.focus\:bg-fuchsia-600\/20:focus {
  background-color: rgb(192 38 211 / 0.2);
}
.focus\:bg-fuchsia-600\/30:focus {
  background-color: rgb(192 38 211 / 0.3);
}
.focus\:bg-fuchsia-600\/40:focus {
  background-color: rgb(192 38 211 / 0.4);
}
.focus\:bg-fuchsia-600\/5:focus {
  background-color: rgb(192 38 211 / 0.05);
}
.focus\:bg-fuchsia-600\/50:focus {
  background-color: rgb(192 38 211 / 0.5);
}
.focus\:bg-fuchsia-600\/60:focus {
  background-color: rgb(192 38 211 / 0.6);
}
.focus\:bg-fuchsia-600\/70:focus {
  background-color: rgb(192 38 211 / 0.7);
}
.focus\:bg-fuchsia-600\/80:focus {
  background-color: rgb(192 38 211 / 0.8);
}
.focus\:bg-fuchsia-600\/90:focus {
  background-color: rgb(192 38 211 / 0.9);
}
.focus\:bg-fuchsia-700:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(162 28 175 / var(--tw-bg-opacity, 1));
}
.focus\:bg-fuchsia-700\/10:focus {
  background-color: rgb(162 28 175 / 0.1);
}
.focus\:bg-fuchsia-700\/20:focus {
  background-color: rgb(162 28 175 / 0.2);
}
.focus\:bg-fuchsia-700\/30:focus {
  background-color: rgb(162 28 175 / 0.3);
}
.focus\:bg-fuchsia-700\/40:focus {
  background-color: rgb(162 28 175 / 0.4);
}
.focus\:bg-fuchsia-700\/5:focus {
  background-color: rgb(162 28 175 / 0.05);
}
.focus\:bg-fuchsia-700\/50:focus {
  background-color: rgb(162 28 175 / 0.5);
}
.focus\:bg-fuchsia-700\/60:focus {
  background-color: rgb(162 28 175 / 0.6);
}
.focus\:bg-fuchsia-700\/70:focus {
  background-color: rgb(162 28 175 / 0.7);
}
.focus\:bg-fuchsia-700\/80:focus {
  background-color: rgb(162 28 175 / 0.8);
}
.focus\:bg-fuchsia-700\/90:focus {
  background-color: rgb(162 28 175 / 0.9);
}
.focus\:bg-fuchsia-800:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(134 25 143 / var(--tw-bg-opacity, 1));
}
.focus\:bg-fuchsia-800\/10:focus {
  background-color: rgb(134 25 143 / 0.1);
}
.focus\:bg-fuchsia-800\/20:focus {
  background-color: rgb(134 25 143 / 0.2);
}
.focus\:bg-fuchsia-800\/30:focus {
  background-color: rgb(134 25 143 / 0.3);
}
.focus\:bg-fuchsia-800\/40:focus {
  background-color: rgb(134 25 143 / 0.4);
}
.focus\:bg-fuchsia-800\/5:focus {
  background-color: rgb(134 25 143 / 0.05);
}
.focus\:bg-fuchsia-800\/50:focus {
  background-color: rgb(134 25 143 / 0.5);
}
.focus\:bg-fuchsia-800\/60:focus {
  background-color: rgb(134 25 143 / 0.6);
}
.focus\:bg-fuchsia-800\/70:focus {
  background-color: rgb(134 25 143 / 0.7);
}
.focus\:bg-fuchsia-800\/80:focus {
  background-color: rgb(134 25 143 / 0.8);
}
.focus\:bg-fuchsia-800\/90:focus {
  background-color: rgb(134 25 143 / 0.9);
}
.focus\:bg-fuchsia-900:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(112 26 117 / var(--tw-bg-opacity, 1));
}
.focus\:bg-fuchsia-900\/10:focus {
  background-color: rgb(112 26 117 / 0.1);
}
.focus\:bg-fuchsia-900\/20:focus {
  background-color: rgb(112 26 117 / 0.2);
}
.focus\:bg-fuchsia-900\/30:focus {
  background-color: rgb(112 26 117 / 0.3);
}
.focus\:bg-fuchsia-900\/40:focus {
  background-color: rgb(112 26 117 / 0.4);
}
.focus\:bg-fuchsia-900\/5:focus {
  background-color: rgb(112 26 117 / 0.05);
}
.focus\:bg-fuchsia-900\/50:focus {
  background-color: rgb(112 26 117 / 0.5);
}
.focus\:bg-fuchsia-900\/60:focus {
  background-color: rgb(112 26 117 / 0.6);
}
.focus\:bg-fuchsia-900\/70:focus {
  background-color: rgb(112 26 117 / 0.7);
}
.focus\:bg-fuchsia-900\/80:focus {
  background-color: rgb(112 26 117 / 0.8);
}
.focus\:bg-fuchsia-900\/90:focus {
  background-color: rgb(112 26 117 / 0.9);
}
.focus\:bg-fuchsia-950:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(74 4 78 / var(--tw-bg-opacity, 1));
}
.focus\:bg-fuchsia-950\/10:focus {
  background-color: rgb(74 4 78 / 0.1);
}
.focus\:bg-fuchsia-950\/20:focus {
  background-color: rgb(74 4 78 / 0.2);
}
.focus\:bg-fuchsia-950\/30:focus {
  background-color: rgb(74 4 78 / 0.3);
}
.focus\:bg-fuchsia-950\/40:focus {
  background-color: rgb(74 4 78 / 0.4);
}
.focus\:bg-fuchsia-950\/5:focus {
  background-color: rgb(74 4 78 / 0.05);
}
.focus\:bg-fuchsia-950\/50:focus {
  background-color: rgb(74 4 78 / 0.5);
}
.focus\:bg-fuchsia-950\/60:focus {
  background-color: rgb(74 4 78 / 0.6);
}
.focus\:bg-fuchsia-950\/70:focus {
  background-color: rgb(74 4 78 / 0.7);
}
.focus\:bg-fuchsia-950\/80:focus {
  background-color: rgb(74 4 78 / 0.8);
}
.focus\:bg-fuchsia-950\/90:focus {
  background-color: rgb(74 4 78 / 0.9);
}
.focus\:bg-gray-100:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.focus\:bg-gray-100\/10:focus {
  background-color: rgb(243 244 246 / 0.1);
}
.focus\:bg-gray-100\/20:focus {
  background-color: rgb(243 244 246 / 0.2);
}
.focus\:bg-gray-100\/30:focus {
  background-color: rgb(243 244 246 / 0.3);
}
.focus\:bg-gray-100\/40:focus {
  background-color: rgb(243 244 246 / 0.4);
}
.focus\:bg-gray-100\/5:focus {
  background-color: rgb(243 244 246 / 0.05);
}
.focus\:bg-gray-100\/50:focus {
  background-color: rgb(243 244 246 / 0.5);
}
.focus\:bg-gray-100\/60:focus {
  background-color: rgb(243 244 246 / 0.6);
}
.focus\:bg-gray-100\/70:focus {
  background-color: rgb(243 244 246 / 0.7);
}
.focus\:bg-gray-100\/80:focus {
  background-color: rgb(243 244 246 / 0.8);
}
.focus\:bg-gray-100\/90:focus {
  background-color: rgb(243 244 246 / 0.9);
}
.focus\:bg-gray-200:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.focus\:bg-gray-200\/10:focus {
  background-color: rgb(229 231 235 / 0.1);
}
.focus\:bg-gray-200\/20:focus {
  background-color: rgb(229 231 235 / 0.2);
}
.focus\:bg-gray-200\/30:focus {
  background-color: rgb(229 231 235 / 0.3);
}
.focus\:bg-gray-200\/40:focus {
  background-color: rgb(229 231 235 / 0.4);
}
.focus\:bg-gray-200\/5:focus {
  background-color: rgb(229 231 235 / 0.05);
}
.focus\:bg-gray-200\/50:focus {
  background-color: rgb(229 231 235 / 0.5);
}
.focus\:bg-gray-200\/60:focus {
  background-color: rgb(229 231 235 / 0.6);
}
.focus\:bg-gray-200\/70:focus {
  background-color: rgb(229 231 235 / 0.7);
}
.focus\:bg-gray-200\/80:focus {
  background-color: rgb(229 231 235 / 0.8);
}
.focus\:bg-gray-200\/90:focus {
  background-color: rgb(229 231 235 / 0.9);
}
.focus\:bg-gray-300:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
}
.focus\:bg-gray-300\/10:focus {
  background-color: rgb(209 213 219 / 0.1);
}
.focus\:bg-gray-300\/20:focus {
  background-color: rgb(209 213 219 / 0.2);
}
.focus\:bg-gray-300\/30:focus {
  background-color: rgb(209 213 219 / 0.3);
}
.focus\:bg-gray-300\/40:focus {
  background-color: rgb(209 213 219 / 0.4);
}
.focus\:bg-gray-300\/5:focus {
  background-color: rgb(209 213 219 / 0.05);
}
.focus\:bg-gray-300\/50:focus {
  background-color: rgb(209 213 219 / 0.5);
}
.focus\:bg-gray-300\/60:focus {
  background-color: rgb(209 213 219 / 0.6);
}
.focus\:bg-gray-300\/70:focus {
  background-color: rgb(209 213 219 / 0.7);
}
.focus\:bg-gray-300\/80:focus {
  background-color: rgb(209 213 219 / 0.8);
}
.focus\:bg-gray-300\/90:focus {
  background-color: rgb(209 213 219 / 0.9);
}
.focus\:bg-gray-400:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(156 163 175 / var(--tw-bg-opacity, 1));
}
.focus\:bg-gray-400\/10:focus {
  background-color: rgb(156 163 175 / 0.1);
}
.focus\:bg-gray-400\/20:focus {
  background-color: rgb(156 163 175 / 0.2);
}
.focus\:bg-gray-400\/30:focus {
  background-color: rgb(156 163 175 / 0.3);
}
.focus\:bg-gray-400\/40:focus {
  background-color: rgb(156 163 175 / 0.4);
}
.focus\:bg-gray-400\/5:focus {
  background-color: rgb(156 163 175 / 0.05);
}
.focus\:bg-gray-400\/50:focus {
  background-color: rgb(156 163 175 / 0.5);
}
.focus\:bg-gray-400\/60:focus {
  background-color: rgb(156 163 175 / 0.6);
}
.focus\:bg-gray-400\/70:focus {
  background-color: rgb(156 163 175 / 0.7);
}
.focus\:bg-gray-400\/80:focus {
  background-color: rgb(156 163 175 / 0.8);
}
.focus\:bg-gray-400\/90:focus {
  background-color: rgb(156 163 175 / 0.9);
}
.focus\:bg-gray-50:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.focus\:bg-gray-50\/10:focus {
  background-color: rgb(249 250 251 / 0.1);
}
.focus\:bg-gray-50\/20:focus {
  background-color: rgb(249 250 251 / 0.2);
}
.focus\:bg-gray-50\/30:focus {
  background-color: rgb(249 250 251 / 0.3);
}
.focus\:bg-gray-50\/40:focus {
  background-color: rgb(249 250 251 / 0.4);
}
.focus\:bg-gray-50\/5:focus {
  background-color: rgb(249 250 251 / 0.05);
}
.focus\:bg-gray-50\/50:focus {
  background-color: rgb(249 250 251 / 0.5);
}
.focus\:bg-gray-50\/60:focus {
  background-color: rgb(249 250 251 / 0.6);
}
.focus\:bg-gray-50\/70:focus {
  background-color: rgb(249 250 251 / 0.7);
}
.focus\:bg-gray-50\/80:focus {
  background-color: rgb(249 250 251 / 0.8);
}
.focus\:bg-gray-50\/90:focus {
  background-color: rgb(249 250 251 / 0.9);
}
.focus\:bg-gray-500:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(107 114 128 / var(--tw-bg-opacity, 1));
}
.focus\:bg-gray-500\/10:focus {
  background-color: rgb(107 114 128 / 0.1);
}
.focus\:bg-gray-500\/20:focus {
  background-color: rgb(107 114 128 / 0.2);
}
.focus\:bg-gray-500\/30:focus {
  background-color: rgb(107 114 128 / 0.3);
}
.focus\:bg-gray-500\/40:focus {
  background-color: rgb(107 114 128 / 0.4);
}
.focus\:bg-gray-500\/5:focus {
  background-color: rgb(107 114 128 / 0.05);
}
.focus\:bg-gray-500\/50:focus {
  background-color: rgb(107 114 128 / 0.5);
}
.focus\:bg-gray-500\/60:focus {
  background-color: rgb(107 114 128 / 0.6);
}
.focus\:bg-gray-500\/70:focus {
  background-color: rgb(107 114 128 / 0.7);
}
.focus\:bg-gray-500\/80:focus {
  background-color: rgb(107 114 128 / 0.8);
}
.focus\:bg-gray-500\/90:focus {
  background-color: rgb(107 114 128 / 0.9);
}
.focus\:bg-gray-600:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1));
}
.focus\:bg-gray-600\/10:focus {
  background-color: rgb(75 85 99 / 0.1);
}
.focus\:bg-gray-600\/20:focus {
  background-color: rgb(75 85 99 / 0.2);
}
.focus\:bg-gray-600\/30:focus {
  background-color: rgb(75 85 99 / 0.3);
}
.focus\:bg-gray-600\/40:focus {
  background-color: rgb(75 85 99 / 0.4);
}
.focus\:bg-gray-600\/5:focus {
  background-color: rgb(75 85 99 / 0.05);
}
.focus\:bg-gray-600\/50:focus {
  background-color: rgb(75 85 99 / 0.5);
}
.focus\:bg-gray-600\/60:focus {
  background-color: rgb(75 85 99 / 0.6);
}
.focus\:bg-gray-600\/70:focus {
  background-color: rgb(75 85 99 / 0.7);
}
.focus\:bg-gray-600\/80:focus {
  background-color: rgb(75 85 99 / 0.8);
}
.focus\:bg-gray-600\/90:focus {
  background-color: rgb(75 85 99 / 0.9);
}
.focus\:bg-gray-700:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}
.focus\:bg-gray-700\/10:focus {
  background-color: rgb(55 65 81 / 0.1);
}
.focus\:bg-gray-700\/20:focus {
  background-color: rgb(55 65 81 / 0.2);
}
.focus\:bg-gray-700\/30:focus {
  background-color: rgb(55 65 81 / 0.3);
}
.focus\:bg-gray-700\/40:focus {
  background-color: rgb(55 65 81 / 0.4);
}
.focus\:bg-gray-700\/5:focus {
  background-color: rgb(55 65 81 / 0.05);
}
.focus\:bg-gray-700\/50:focus {
  background-color: rgb(55 65 81 / 0.5);
}
.focus\:bg-gray-700\/60:focus {
  background-color: rgb(55 65 81 / 0.6);
}
.focus\:bg-gray-700\/70:focus {
  background-color: rgb(55 65 81 / 0.7);
}
.focus\:bg-gray-700\/80:focus {
  background-color: rgb(55 65 81 / 0.8);
}
.focus\:bg-gray-700\/90:focus {
  background-color: rgb(55 65 81 / 0.9);
}
.focus\:bg-gray-800:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}
.focus\:bg-gray-800\/10:focus {
  background-color: rgb(31 41 55 / 0.1);
}
.focus\:bg-gray-800\/20:focus {
  background-color: rgb(31 41 55 / 0.2);
}
.focus\:bg-gray-800\/30:focus {
  background-color: rgb(31 41 55 / 0.3);
}
.focus\:bg-gray-800\/40:focus {
  background-color: rgb(31 41 55 / 0.4);
}
.focus\:bg-gray-800\/5:focus {
  background-color: rgb(31 41 55 / 0.05);
}
.focus\:bg-gray-800\/50:focus {
  background-color: rgb(31 41 55 / 0.5);
}
.focus\:bg-gray-800\/60:focus {
  background-color: rgb(31 41 55 / 0.6);
}
.focus\:bg-gray-800\/70:focus {
  background-color: rgb(31 41 55 / 0.7);
}
.focus\:bg-gray-800\/80:focus {
  background-color: rgb(31 41 55 / 0.8);
}
.focus\:bg-gray-800\/90:focus {
  background-color: rgb(31 41 55 / 0.9);
}
.focus\:bg-gray-900:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}
.focus\:bg-gray-900\/10:focus {
  background-color: rgb(17 24 39 / 0.1);
}
.focus\:bg-gray-900\/20:focus {
  background-color: rgb(17 24 39 / 0.2);
}
.focus\:bg-gray-900\/30:focus {
  background-color: rgb(17 24 39 / 0.3);
}
.focus\:bg-gray-900\/40:focus {
  background-color: rgb(17 24 39 / 0.4);
}
.focus\:bg-gray-900\/5:focus {
  background-color: rgb(17 24 39 / 0.05);
}
.focus\:bg-gray-900\/50:focus {
  background-color: rgb(17 24 39 / 0.5);
}
.focus\:bg-gray-900\/60:focus {
  background-color: rgb(17 24 39 / 0.6);
}
.focus\:bg-gray-900\/70:focus {
  background-color: rgb(17 24 39 / 0.7);
}
.focus\:bg-gray-900\/80:focus {
  background-color: rgb(17 24 39 / 0.8);
}
.focus\:bg-gray-900\/90:focus {
  background-color: rgb(17 24 39 / 0.9);
}
.focus\:bg-gray-950:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(3 7 18 / var(--tw-bg-opacity, 1));
}
.focus\:bg-gray-950\/10:focus {
  background-color: rgb(3 7 18 / 0.1);
}
.focus\:bg-gray-950\/20:focus {
  background-color: rgb(3 7 18 / 0.2);
}
.focus\:bg-gray-950\/30:focus {
  background-color: rgb(3 7 18 / 0.3);
}
.focus\:bg-gray-950\/40:focus {
  background-color: rgb(3 7 18 / 0.4);
}
.focus\:bg-gray-950\/5:focus {
  background-color: rgb(3 7 18 / 0.05);
}
.focus\:bg-gray-950\/50:focus {
  background-color: rgb(3 7 18 / 0.5);
}
.focus\:bg-gray-950\/60:focus {
  background-color: rgb(3 7 18 / 0.6);
}
.focus\:bg-gray-950\/70:focus {
  background-color: rgb(3 7 18 / 0.7);
}
.focus\:bg-gray-950\/80:focus {
  background-color: rgb(3 7 18 / 0.8);
}
.focus\:bg-gray-950\/90:focus {
  background-color: rgb(3 7 18 / 0.9);
}
.focus\:bg-green-100:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
}
.focus\:bg-green-100\/10:focus {
  background-color: rgb(220 252 231 / 0.1);
}
.focus\:bg-green-100\/20:focus {
  background-color: rgb(220 252 231 / 0.2);
}
.focus\:bg-green-100\/30:focus {
  background-color: rgb(220 252 231 / 0.3);
}
.focus\:bg-green-100\/40:focus {
  background-color: rgb(220 252 231 / 0.4);
}
.focus\:bg-green-100\/5:focus {
  background-color: rgb(220 252 231 / 0.05);
}
.focus\:bg-green-100\/50:focus {
  background-color: rgb(220 252 231 / 0.5);
}
.focus\:bg-green-100\/60:focus {
  background-color: rgb(220 252 231 / 0.6);
}
.focus\:bg-green-100\/70:focus {
  background-color: rgb(220 252 231 / 0.7);
}
.focus\:bg-green-100\/80:focus {
  background-color: rgb(220 252 231 / 0.8);
}
.focus\:bg-green-100\/90:focus {
  background-color: rgb(220 252 231 / 0.9);
}
.focus\:bg-green-200:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(187 247 208 / var(--tw-bg-opacity, 1));
}
.focus\:bg-green-200\/10:focus {
  background-color: rgb(187 247 208 / 0.1);
}
.focus\:bg-green-200\/20:focus {
  background-color: rgb(187 247 208 / 0.2);
}
.focus\:bg-green-200\/30:focus {
  background-color: rgb(187 247 208 / 0.3);
}
.focus\:bg-green-200\/40:focus {
  background-color: rgb(187 247 208 / 0.4);
}
.focus\:bg-green-200\/5:focus {
  background-color: rgb(187 247 208 / 0.05);
}
.focus\:bg-green-200\/50:focus {
  background-color: rgb(187 247 208 / 0.5);
}
.focus\:bg-green-200\/60:focus {
  background-color: rgb(187 247 208 / 0.6);
}
.focus\:bg-green-200\/70:focus {
  background-color: rgb(187 247 208 / 0.7);
}
.focus\:bg-green-200\/80:focus {
  background-color: rgb(187 247 208 / 0.8);
}
.focus\:bg-green-200\/90:focus {
  background-color: rgb(187 247 208 / 0.9);
}
.focus\:bg-green-300:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(134 239 172 / var(--tw-bg-opacity, 1));
}
.focus\:bg-green-300\/10:focus {
  background-color: rgb(134 239 172 / 0.1);
}
.focus\:bg-green-300\/20:focus {
  background-color: rgb(134 239 172 / 0.2);
}
.focus\:bg-green-300\/30:focus {
  background-color: rgb(134 239 172 / 0.3);
}
.focus\:bg-green-300\/40:focus {
  background-color: rgb(134 239 172 / 0.4);
}
.focus\:bg-green-300\/5:focus {
  background-color: rgb(134 239 172 / 0.05);
}
.focus\:bg-green-300\/50:focus {
  background-color: rgb(134 239 172 / 0.5);
}
.focus\:bg-green-300\/60:focus {
  background-color: rgb(134 239 172 / 0.6);
}
.focus\:bg-green-300\/70:focus {
  background-color: rgb(134 239 172 / 0.7);
}
.focus\:bg-green-300\/80:focus {
  background-color: rgb(134 239 172 / 0.8);
}
.focus\:bg-green-300\/90:focus {
  background-color: rgb(134 239 172 / 0.9);
}
.focus\:bg-green-400:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(74 222 128 / var(--tw-bg-opacity, 1));
}
.focus\:bg-green-400\/10:focus {
  background-color: rgb(74 222 128 / 0.1);
}
.focus\:bg-green-400\/20:focus {
  background-color: rgb(74 222 128 / 0.2);
}
.focus\:bg-green-400\/30:focus {
  background-color: rgb(74 222 128 / 0.3);
}
.focus\:bg-green-400\/40:focus {
  background-color: rgb(74 222 128 / 0.4);
}
.focus\:bg-green-400\/5:focus {
  background-color: rgb(74 222 128 / 0.05);
}
.focus\:bg-green-400\/50:focus {
  background-color: rgb(74 222 128 / 0.5);
}
.focus\:bg-green-400\/60:focus {
  background-color: rgb(74 222 128 / 0.6);
}
.focus\:bg-green-400\/70:focus {
  background-color: rgb(74 222 128 / 0.7);
}
.focus\:bg-green-400\/80:focus {
  background-color: rgb(74 222 128 / 0.8);
}
.focus\:bg-green-400\/90:focus {
  background-color: rgb(74 222 128 / 0.9);
}
.focus\:bg-green-50:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
}
.focus\:bg-green-50\/10:focus {
  background-color: rgb(240 253 244 / 0.1);
}
.focus\:bg-green-50\/20:focus {
  background-color: rgb(240 253 244 / 0.2);
}
.focus\:bg-green-50\/30:focus {
  background-color: rgb(240 253 244 / 0.3);
}
.focus\:bg-green-50\/40:focus {
  background-color: rgb(240 253 244 / 0.4);
}
.focus\:bg-green-50\/5:focus {
  background-color: rgb(240 253 244 / 0.05);
}
.focus\:bg-green-50\/50:focus {
  background-color: rgb(240 253 244 / 0.5);
}
.focus\:bg-green-50\/60:focus {
  background-color: rgb(240 253 244 / 0.6);
}
.focus\:bg-green-50\/70:focus {
  background-color: rgb(240 253 244 / 0.7);
}
.focus\:bg-green-50\/80:focus {
  background-color: rgb(240 253 244 / 0.8);
}
.focus\:bg-green-50\/90:focus {
  background-color: rgb(240 253 244 / 0.9);
}
.focus\:bg-green-500:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
}
.focus\:bg-green-500\/10:focus {
  background-color: rgb(34 197 94 / 0.1);
}
.focus\:bg-green-500\/20:focus {
  background-color: rgb(34 197 94 / 0.2);
}
.focus\:bg-green-500\/30:focus {
  background-color: rgb(34 197 94 / 0.3);
}
.focus\:bg-green-500\/40:focus {
  background-color: rgb(34 197 94 / 0.4);
}
.focus\:bg-green-500\/5:focus {
  background-color: rgb(34 197 94 / 0.05);
}
.focus\:bg-green-500\/50:focus {
  background-color: rgb(34 197 94 / 0.5);
}
.focus\:bg-green-500\/60:focus {
  background-color: rgb(34 197 94 / 0.6);
}
.focus\:bg-green-500\/70:focus {
  background-color: rgb(34 197 94 / 0.7);
}
.focus\:bg-green-500\/80:focus {
  background-color: rgb(34 197 94 / 0.8);
}
.focus\:bg-green-500\/90:focus {
  background-color: rgb(34 197 94 / 0.9);
}
.focus\:bg-green-600:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
}
.focus\:bg-green-600\/10:focus {
  background-color: rgb(22 163 74 / 0.1);
}
.focus\:bg-green-600\/20:focus {
  background-color: rgb(22 163 74 / 0.2);
}
.focus\:bg-green-600\/30:focus {
  background-color: rgb(22 163 74 / 0.3);
}
.focus\:bg-green-600\/40:focus {
  background-color: rgb(22 163 74 / 0.4);
}
.focus\:bg-green-600\/5:focus {
  background-color: rgb(22 163 74 / 0.05);
}
.focus\:bg-green-600\/50:focus {
  background-color: rgb(22 163 74 / 0.5);
}
.focus\:bg-green-600\/60:focus {
  background-color: rgb(22 163 74 / 0.6);
}
.focus\:bg-green-600\/70:focus {
  background-color: rgb(22 163 74 / 0.7);
}
.focus\:bg-green-600\/80:focus {
  background-color: rgb(22 163 74 / 0.8);
}
.focus\:bg-green-600\/90:focus {
  background-color: rgb(22 163 74 / 0.9);
}
.focus\:bg-green-700:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(21 128 61 / var(--tw-bg-opacity, 1));
}
.focus\:bg-green-700\/10:focus {
  background-color: rgb(21 128 61 / 0.1);
}
.focus\:bg-green-700\/20:focus {
  background-color: rgb(21 128 61 / 0.2);
}
.focus\:bg-green-700\/30:focus {
  background-color: rgb(21 128 61 / 0.3);
}
.focus\:bg-green-700\/40:focus {
  background-color: rgb(21 128 61 / 0.4);
}
.focus\:bg-green-700\/5:focus {
  background-color: rgb(21 128 61 / 0.05);
}
.focus\:bg-green-700\/50:focus {
  background-color: rgb(21 128 61 / 0.5);
}
.focus\:bg-green-700\/60:focus {
  background-color: rgb(21 128 61 / 0.6);
}
.focus\:bg-green-700\/70:focus {
  background-color: rgb(21 128 61 / 0.7);
}
.focus\:bg-green-700\/80:focus {
  background-color: rgb(21 128 61 / 0.8);
}
.focus\:bg-green-700\/90:focus {
  background-color: rgb(21 128 61 / 0.9);
}
.focus\:bg-green-800:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(22 101 52 / var(--tw-bg-opacity, 1));
}
.focus\:bg-green-800\/10:focus {
  background-color: rgb(22 101 52 / 0.1);
}
.focus\:bg-green-800\/20:focus {
  background-color: rgb(22 101 52 / 0.2);
}
.focus\:bg-green-800\/30:focus {
  background-color: rgb(22 101 52 / 0.3);
}
.focus\:bg-green-800\/40:focus {
  background-color: rgb(22 101 52 / 0.4);
}
.focus\:bg-green-800\/5:focus {
  background-color: rgb(22 101 52 / 0.05);
}
.focus\:bg-green-800\/50:focus {
  background-color: rgb(22 101 52 / 0.5);
}
.focus\:bg-green-800\/60:focus {
  background-color: rgb(22 101 52 / 0.6);
}
.focus\:bg-green-800\/70:focus {
  background-color: rgb(22 101 52 / 0.7);
}
.focus\:bg-green-800\/80:focus {
  background-color: rgb(22 101 52 / 0.8);
}
.focus\:bg-green-800\/90:focus {
  background-color: rgb(22 101 52 / 0.9);
}
.focus\:bg-green-900:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(20 83 45 / var(--tw-bg-opacity, 1));
}
.focus\:bg-green-900\/10:focus {
  background-color: rgb(20 83 45 / 0.1);
}
.focus\:bg-green-900\/20:focus {
  background-color: rgb(20 83 45 / 0.2);
}
.focus\:bg-green-900\/30:focus {
  background-color: rgb(20 83 45 / 0.3);
}
.focus\:bg-green-900\/40:focus {
  background-color: rgb(20 83 45 / 0.4);
}
.focus\:bg-green-900\/5:focus {
  background-color: rgb(20 83 45 / 0.05);
}
.focus\:bg-green-900\/50:focus {
  background-color: rgb(20 83 45 / 0.5);
}
.focus\:bg-green-900\/60:focus {
  background-color: rgb(20 83 45 / 0.6);
}
.focus\:bg-green-900\/70:focus {
  background-color: rgb(20 83 45 / 0.7);
}
.focus\:bg-green-900\/80:focus {
  background-color: rgb(20 83 45 / 0.8);
}
.focus\:bg-green-900\/90:focus {
  background-color: rgb(20 83 45 / 0.9);
}
.focus\:bg-green-950:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(5 46 22 / var(--tw-bg-opacity, 1));
}
.focus\:bg-green-950\/10:focus {
  background-color: rgb(5 46 22 / 0.1);
}
.focus\:bg-green-950\/20:focus {
  background-color: rgb(5 46 22 / 0.2);
}
.focus\:bg-green-950\/30:focus {
  background-color: rgb(5 46 22 / 0.3);
}
.focus\:bg-green-950\/40:focus {
  background-color: rgb(5 46 22 / 0.4);
}
.focus\:bg-green-950\/5:focus {
  background-color: rgb(5 46 22 / 0.05);
}
.focus\:bg-green-950\/50:focus {
  background-color: rgb(5 46 22 / 0.5);
}
.focus\:bg-green-950\/60:focus {
  background-color: rgb(5 46 22 / 0.6);
}
.focus\:bg-green-950\/70:focus {
  background-color: rgb(5 46 22 / 0.7);
}
.focus\:bg-green-950\/80:focus {
  background-color: rgb(5 46 22 / 0.8);
}
.focus\:bg-green-950\/90:focus {
  background-color: rgb(5 46 22 / 0.9);
}
.focus\:bg-indigo-100:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(224 231 255 / var(--tw-bg-opacity, 1));
}
.focus\:bg-indigo-100\/10:focus {
  background-color: rgb(224 231 255 / 0.1);
}
.focus\:bg-indigo-100\/20:focus {
  background-color: rgb(224 231 255 / 0.2);
}
.focus\:bg-indigo-100\/30:focus {
  background-color: rgb(224 231 255 / 0.3);
}
.focus\:bg-indigo-100\/40:focus {
  background-color: rgb(224 231 255 / 0.4);
}
.focus\:bg-indigo-100\/5:focus {
  background-color: rgb(224 231 255 / 0.05);
}
.focus\:bg-indigo-100\/50:focus {
  background-color: rgb(224 231 255 / 0.5);
}
.focus\:bg-indigo-100\/60:focus {
  background-color: rgb(224 231 255 / 0.6);
}
.focus\:bg-indigo-100\/70:focus {
  background-color: rgb(224 231 255 / 0.7);
}
.focus\:bg-indigo-100\/80:focus {
  background-color: rgb(224 231 255 / 0.8);
}
.focus\:bg-indigo-100\/90:focus {
  background-color: rgb(224 231 255 / 0.9);
}
.focus\:bg-indigo-200:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(199 210 254 / var(--tw-bg-opacity, 1));
}
.focus\:bg-indigo-200\/10:focus {
  background-color: rgb(199 210 254 / 0.1);
}
.focus\:bg-indigo-200\/20:focus {
  background-color: rgb(199 210 254 / 0.2);
}
.focus\:bg-indigo-200\/30:focus {
  background-color: rgb(199 210 254 / 0.3);
}
.focus\:bg-indigo-200\/40:focus {
  background-color: rgb(199 210 254 / 0.4);
}
.focus\:bg-indigo-200\/5:focus {
  background-color: rgb(199 210 254 / 0.05);
}
.focus\:bg-indigo-200\/50:focus {
  background-color: rgb(199 210 254 / 0.5);
}
.focus\:bg-indigo-200\/60:focus {
  background-color: rgb(199 210 254 / 0.6);
}
.focus\:bg-indigo-200\/70:focus {
  background-color: rgb(199 210 254 / 0.7);
}
.focus\:bg-indigo-200\/80:focus {
  background-color: rgb(199 210 254 / 0.8);
}
.focus\:bg-indigo-200\/90:focus {
  background-color: rgb(199 210 254 / 0.9);
}
.focus\:bg-indigo-300:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(165 180 252 / var(--tw-bg-opacity, 1));
}
.focus\:bg-indigo-300\/10:focus {
  background-color: rgb(165 180 252 / 0.1);
}
.focus\:bg-indigo-300\/20:focus {
  background-color: rgb(165 180 252 / 0.2);
}
.focus\:bg-indigo-300\/30:focus {
  background-color: rgb(165 180 252 / 0.3);
}
.focus\:bg-indigo-300\/40:focus {
  background-color: rgb(165 180 252 / 0.4);
}
.focus\:bg-indigo-300\/5:focus {
  background-color: rgb(165 180 252 / 0.05);
}
.focus\:bg-indigo-300\/50:focus {
  background-color: rgb(165 180 252 / 0.5);
}
.focus\:bg-indigo-300\/60:focus {
  background-color: rgb(165 180 252 / 0.6);
}
.focus\:bg-indigo-300\/70:focus {
  background-color: rgb(165 180 252 / 0.7);
}
.focus\:bg-indigo-300\/80:focus {
  background-color: rgb(165 180 252 / 0.8);
}
.focus\:bg-indigo-300\/90:focus {
  background-color: rgb(165 180 252 / 0.9);
}
.focus\:bg-indigo-400:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(129 140 248 / var(--tw-bg-opacity, 1));
}
.focus\:bg-indigo-400\/10:focus {
  background-color: rgb(129 140 248 / 0.1);
}
.focus\:bg-indigo-400\/20:focus {
  background-color: rgb(129 140 248 / 0.2);
}
.focus\:bg-indigo-400\/30:focus {
  background-color: rgb(129 140 248 / 0.3);
}
.focus\:bg-indigo-400\/40:focus {
  background-color: rgb(129 140 248 / 0.4);
}
.focus\:bg-indigo-400\/5:focus {
  background-color: rgb(129 140 248 / 0.05);
}
.focus\:bg-indigo-400\/50:focus {
  background-color: rgb(129 140 248 / 0.5);
}
.focus\:bg-indigo-400\/60:focus {
  background-color: rgb(129 140 248 / 0.6);
}
.focus\:bg-indigo-400\/70:focus {
  background-color: rgb(129 140 248 / 0.7);
}
.focus\:bg-indigo-400\/80:focus {
  background-color: rgb(129 140 248 / 0.8);
}
.focus\:bg-indigo-400\/90:focus {
  background-color: rgb(129 140 248 / 0.9);
}
.focus\:bg-indigo-50:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(238 242 255 / var(--tw-bg-opacity, 1));
}
.focus\:bg-indigo-50\/10:focus {
  background-color: rgb(238 242 255 / 0.1);
}
.focus\:bg-indigo-50\/20:focus {
  background-color: rgb(238 242 255 / 0.2);
}
.focus\:bg-indigo-50\/30:focus {
  background-color: rgb(238 242 255 / 0.3);
}
.focus\:bg-indigo-50\/40:focus {
  background-color: rgb(238 242 255 / 0.4);
}
.focus\:bg-indigo-50\/5:focus {
  background-color: rgb(238 242 255 / 0.05);
}
.focus\:bg-indigo-50\/50:focus {
  background-color: rgb(238 242 255 / 0.5);
}
.focus\:bg-indigo-50\/60:focus {
  background-color: rgb(238 242 255 / 0.6);
}
.focus\:bg-indigo-50\/70:focus {
  background-color: rgb(238 242 255 / 0.7);
}
.focus\:bg-indigo-50\/80:focus {
  background-color: rgb(238 242 255 / 0.8);
}
.focus\:bg-indigo-50\/90:focus {
  background-color: rgb(238 242 255 / 0.9);
}
.focus\:bg-indigo-500:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(99 102 241 / var(--tw-bg-opacity, 1));
}
.focus\:bg-indigo-500\/10:focus {
  background-color: rgb(99 102 241 / 0.1);
}
.focus\:bg-indigo-500\/20:focus {
  background-color: rgb(99 102 241 / 0.2);
}
.focus\:bg-indigo-500\/30:focus {
  background-color: rgb(99 102 241 / 0.3);
}
.focus\:bg-indigo-500\/40:focus {
  background-color: rgb(99 102 241 / 0.4);
}
.focus\:bg-indigo-500\/5:focus {
  background-color: rgb(99 102 241 / 0.05);
}
.focus\:bg-indigo-500\/50:focus {
  background-color: rgb(99 102 241 / 0.5);
}
.focus\:bg-indigo-500\/60:focus {
  background-color: rgb(99 102 241 / 0.6);
}
.focus\:bg-indigo-500\/70:focus {
  background-color: rgb(99 102 241 / 0.7);
}
.focus\:bg-indigo-500\/80:focus {
  background-color: rgb(99 102 241 / 0.8);
}
.focus\:bg-indigo-500\/90:focus {
  background-color: rgb(99 102 241 / 0.9);
}
.focus\:bg-indigo-600:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(79 70 229 / var(--tw-bg-opacity, 1));
}
.focus\:bg-indigo-600\/10:focus {
  background-color: rgb(79 70 229 / 0.1);
}
.focus\:bg-indigo-600\/20:focus {
  background-color: rgb(79 70 229 / 0.2);
}
.focus\:bg-indigo-600\/30:focus {
  background-color: rgb(79 70 229 / 0.3);
}
.focus\:bg-indigo-600\/40:focus {
  background-color: rgb(79 70 229 / 0.4);
}
.focus\:bg-indigo-600\/5:focus {
  background-color: rgb(79 70 229 / 0.05);
}
.focus\:bg-indigo-600\/50:focus {
  background-color: rgb(79 70 229 / 0.5);
}
.focus\:bg-indigo-600\/60:focus {
  background-color: rgb(79 70 229 / 0.6);
}
.focus\:bg-indigo-600\/70:focus {
  background-color: rgb(79 70 229 / 0.7);
}
.focus\:bg-indigo-600\/80:focus {
  background-color: rgb(79 70 229 / 0.8);
}
.focus\:bg-indigo-600\/90:focus {
  background-color: rgb(79 70 229 / 0.9);
}
.focus\:bg-indigo-700:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(67 56 202 / var(--tw-bg-opacity, 1));
}
.focus\:bg-indigo-700\/10:focus {
  background-color: rgb(67 56 202 / 0.1);
}
.focus\:bg-indigo-700\/20:focus {
  background-color: rgb(67 56 202 / 0.2);
}
.focus\:bg-indigo-700\/30:focus {
  background-color: rgb(67 56 202 / 0.3);
}
.focus\:bg-indigo-700\/40:focus {
  background-color: rgb(67 56 202 / 0.4);
}
.focus\:bg-indigo-700\/5:focus {
  background-color: rgb(67 56 202 / 0.05);
}
.focus\:bg-indigo-700\/50:focus {
  background-color: rgb(67 56 202 / 0.5);
}
.focus\:bg-indigo-700\/60:focus {
  background-color: rgb(67 56 202 / 0.6);
}
.focus\:bg-indigo-700\/70:focus {
  background-color: rgb(67 56 202 / 0.7);
}
.focus\:bg-indigo-700\/80:focus {
  background-color: rgb(67 56 202 / 0.8);
}
.focus\:bg-indigo-700\/90:focus {
  background-color: rgb(67 56 202 / 0.9);
}
.focus\:bg-indigo-800:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(55 48 163 / var(--tw-bg-opacity, 1));
}
.focus\:bg-indigo-800\/10:focus {
  background-color: rgb(55 48 163 / 0.1);
}
.focus\:bg-indigo-800\/20:focus {
  background-color: rgb(55 48 163 / 0.2);
}
.focus\:bg-indigo-800\/30:focus {
  background-color: rgb(55 48 163 / 0.3);
}
.focus\:bg-indigo-800\/40:focus {
  background-color: rgb(55 48 163 / 0.4);
}
.focus\:bg-indigo-800\/5:focus {
  background-color: rgb(55 48 163 / 0.05);
}
.focus\:bg-indigo-800\/50:focus {
  background-color: rgb(55 48 163 / 0.5);
}
.focus\:bg-indigo-800\/60:focus {
  background-color: rgb(55 48 163 / 0.6);
}
.focus\:bg-indigo-800\/70:focus {
  background-color: rgb(55 48 163 / 0.7);
}
.focus\:bg-indigo-800\/80:focus {
  background-color: rgb(55 48 163 / 0.8);
}
.focus\:bg-indigo-800\/90:focus {
  background-color: rgb(55 48 163 / 0.9);
}
.focus\:bg-indigo-900:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(49 46 129 / var(--tw-bg-opacity, 1));
}
.focus\:bg-indigo-900\/10:focus {
  background-color: rgb(49 46 129 / 0.1);
}
.focus\:bg-indigo-900\/20:focus {
  background-color: rgb(49 46 129 / 0.2);
}
.focus\:bg-indigo-900\/30:focus {
  background-color: rgb(49 46 129 / 0.3);
}
.focus\:bg-indigo-900\/40:focus {
  background-color: rgb(49 46 129 / 0.4);
}
.focus\:bg-indigo-900\/5:focus {
  background-color: rgb(49 46 129 / 0.05);
}
.focus\:bg-indigo-900\/50:focus {
  background-color: rgb(49 46 129 / 0.5);
}
.focus\:bg-indigo-900\/60:focus {
  background-color: rgb(49 46 129 / 0.6);
}
.focus\:bg-indigo-900\/70:focus {
  background-color: rgb(49 46 129 / 0.7);
}
.focus\:bg-indigo-900\/80:focus {
  background-color: rgb(49 46 129 / 0.8);
}
.focus\:bg-indigo-900\/90:focus {
  background-color: rgb(49 46 129 / 0.9);
}
.focus\:bg-indigo-950:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(30 27 75 / var(--tw-bg-opacity, 1));
}
.focus\:bg-indigo-950\/10:focus {
  background-color: rgb(30 27 75 / 0.1);
}
.focus\:bg-indigo-950\/20:focus {
  background-color: rgb(30 27 75 / 0.2);
}
.focus\:bg-indigo-950\/30:focus {
  background-color: rgb(30 27 75 / 0.3);
}
.focus\:bg-indigo-950\/40:focus {
  background-color: rgb(30 27 75 / 0.4);
}
.focus\:bg-indigo-950\/5:focus {
  background-color: rgb(30 27 75 / 0.05);
}
.focus\:bg-indigo-950\/50:focus {
  background-color: rgb(30 27 75 / 0.5);
}
.focus\:bg-indigo-950\/60:focus {
  background-color: rgb(30 27 75 / 0.6);
}
.focus\:bg-indigo-950\/70:focus {
  background-color: rgb(30 27 75 / 0.7);
}
.focus\:bg-indigo-950\/80:focus {
  background-color: rgb(30 27 75 / 0.8);
}
.focus\:bg-indigo-950\/90:focus {
  background-color: rgb(30 27 75 / 0.9);
}
.focus\:bg-lime-100:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(236 252 203 / var(--tw-bg-opacity, 1));
}
.focus\:bg-lime-100\/10:focus {
  background-color: rgb(236 252 203 / 0.1);
}
.focus\:bg-lime-100\/20:focus {
  background-color: rgb(236 252 203 / 0.2);
}
.focus\:bg-lime-100\/30:focus {
  background-color: rgb(236 252 203 / 0.3);
}
.focus\:bg-lime-100\/40:focus {
  background-color: rgb(236 252 203 / 0.4);
}
.focus\:bg-lime-100\/5:focus {
  background-color: rgb(236 252 203 / 0.05);
}
.focus\:bg-lime-100\/50:focus {
  background-color: rgb(236 252 203 / 0.5);
}
.focus\:bg-lime-100\/60:focus {
  background-color: rgb(236 252 203 / 0.6);
}
.focus\:bg-lime-100\/70:focus {
  background-color: rgb(236 252 203 / 0.7);
}
.focus\:bg-lime-100\/80:focus {
  background-color: rgb(236 252 203 / 0.8);
}
.focus\:bg-lime-100\/90:focus {
  background-color: rgb(236 252 203 / 0.9);
}
.focus\:bg-lime-200:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(217 249 157 / var(--tw-bg-opacity, 1));
}
.focus\:bg-lime-200\/10:focus {
  background-color: rgb(217 249 157 / 0.1);
}
.focus\:bg-lime-200\/20:focus {
  background-color: rgb(217 249 157 / 0.2);
}
.focus\:bg-lime-200\/30:focus {
  background-color: rgb(217 249 157 / 0.3);
}
.focus\:bg-lime-200\/40:focus {
  background-color: rgb(217 249 157 / 0.4);
}
.focus\:bg-lime-200\/5:focus {
  background-color: rgb(217 249 157 / 0.05);
}
.focus\:bg-lime-200\/50:focus {
  background-color: rgb(217 249 157 / 0.5);
}
.focus\:bg-lime-200\/60:focus {
  background-color: rgb(217 249 157 / 0.6);
}
.focus\:bg-lime-200\/70:focus {
  background-color: rgb(217 249 157 / 0.7);
}
.focus\:bg-lime-200\/80:focus {
  background-color: rgb(217 249 157 / 0.8);
}
.focus\:bg-lime-200\/90:focus {
  background-color: rgb(217 249 157 / 0.9);
}
.focus\:bg-lime-300:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(190 242 100 / var(--tw-bg-opacity, 1));
}
.focus\:bg-lime-300\/10:focus {
  background-color: rgb(190 242 100 / 0.1);
}
.focus\:bg-lime-300\/20:focus {
  background-color: rgb(190 242 100 / 0.2);
}
.focus\:bg-lime-300\/30:focus {
  background-color: rgb(190 242 100 / 0.3);
}
.focus\:bg-lime-300\/40:focus {
  background-color: rgb(190 242 100 / 0.4);
}
.focus\:bg-lime-300\/5:focus {
  background-color: rgb(190 242 100 / 0.05);
}
.focus\:bg-lime-300\/50:focus {
  background-color: rgb(190 242 100 / 0.5);
}
.focus\:bg-lime-300\/60:focus {
  background-color: rgb(190 242 100 / 0.6);
}
.focus\:bg-lime-300\/70:focus {
  background-color: rgb(190 242 100 / 0.7);
}
.focus\:bg-lime-300\/80:focus {
  background-color: rgb(190 242 100 / 0.8);
}
.focus\:bg-lime-300\/90:focus {
  background-color: rgb(190 242 100 / 0.9);
}
.focus\:bg-lime-400:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(163 230 53 / var(--tw-bg-opacity, 1));
}
.focus\:bg-lime-400\/10:focus {
  background-color: rgb(163 230 53 / 0.1);
}
.focus\:bg-lime-400\/20:focus {
  background-color: rgb(163 230 53 / 0.2);
}
.focus\:bg-lime-400\/30:focus {
  background-color: rgb(163 230 53 / 0.3);
}
.focus\:bg-lime-400\/40:focus {
  background-color: rgb(163 230 53 / 0.4);
}
.focus\:bg-lime-400\/5:focus {
  background-color: rgb(163 230 53 / 0.05);
}
.focus\:bg-lime-400\/50:focus {
  background-color: rgb(163 230 53 / 0.5);
}
.focus\:bg-lime-400\/60:focus {
  background-color: rgb(163 230 53 / 0.6);
}
.focus\:bg-lime-400\/70:focus {
  background-color: rgb(163 230 53 / 0.7);
}
.focus\:bg-lime-400\/80:focus {
  background-color: rgb(163 230 53 / 0.8);
}
.focus\:bg-lime-400\/90:focus {
  background-color: rgb(163 230 53 / 0.9);
}
.focus\:bg-lime-50:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(247 254 231 / var(--tw-bg-opacity, 1));
}
.focus\:bg-lime-50\/10:focus {
  background-color: rgb(247 254 231 / 0.1);
}
.focus\:bg-lime-50\/20:focus {
  background-color: rgb(247 254 231 / 0.2);
}
.focus\:bg-lime-50\/30:focus {
  background-color: rgb(247 254 231 / 0.3);
}
.focus\:bg-lime-50\/40:focus {
  background-color: rgb(247 254 231 / 0.4);
}
.focus\:bg-lime-50\/5:focus {
  background-color: rgb(247 254 231 / 0.05);
}
.focus\:bg-lime-50\/50:focus {
  background-color: rgb(247 254 231 / 0.5);
}
.focus\:bg-lime-50\/60:focus {
  background-color: rgb(247 254 231 / 0.6);
}
.focus\:bg-lime-50\/70:focus {
  background-color: rgb(247 254 231 / 0.7);
}
.focus\:bg-lime-50\/80:focus {
  background-color: rgb(247 254 231 / 0.8);
}
.focus\:bg-lime-50\/90:focus {
  background-color: rgb(247 254 231 / 0.9);
}
.focus\:bg-lime-500:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(132 204 22 / var(--tw-bg-opacity, 1));
}
.focus\:bg-lime-500\/10:focus {
  background-color: rgb(132 204 22 / 0.1);
}
.focus\:bg-lime-500\/20:focus {
  background-color: rgb(132 204 22 / 0.2);
}
.focus\:bg-lime-500\/30:focus {
  background-color: rgb(132 204 22 / 0.3);
}
.focus\:bg-lime-500\/40:focus {
  background-color: rgb(132 204 22 / 0.4);
}
.focus\:bg-lime-500\/5:focus {
  background-color: rgb(132 204 22 / 0.05);
}
.focus\:bg-lime-500\/50:focus {
  background-color: rgb(132 204 22 / 0.5);
}
.focus\:bg-lime-500\/60:focus {
  background-color: rgb(132 204 22 / 0.6);
}
.focus\:bg-lime-500\/70:focus {
  background-color: rgb(132 204 22 / 0.7);
}
.focus\:bg-lime-500\/80:focus {
  background-color: rgb(132 204 22 / 0.8);
}
.focus\:bg-lime-500\/90:focus {
  background-color: rgb(132 204 22 / 0.9);
}
.focus\:bg-lime-600:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(101 163 13 / var(--tw-bg-opacity, 1));
}
.focus\:bg-lime-600\/10:focus {
  background-color: rgb(101 163 13 / 0.1);
}
.focus\:bg-lime-600\/20:focus {
  background-color: rgb(101 163 13 / 0.2);
}
.focus\:bg-lime-600\/30:focus {
  background-color: rgb(101 163 13 / 0.3);
}
.focus\:bg-lime-600\/40:focus {
  background-color: rgb(101 163 13 / 0.4);
}
.focus\:bg-lime-600\/5:focus {
  background-color: rgb(101 163 13 / 0.05);
}
.focus\:bg-lime-600\/50:focus {
  background-color: rgb(101 163 13 / 0.5);
}
.focus\:bg-lime-600\/60:focus {
  background-color: rgb(101 163 13 / 0.6);
}
.focus\:bg-lime-600\/70:focus {
  background-color: rgb(101 163 13 / 0.7);
}
.focus\:bg-lime-600\/80:focus {
  background-color: rgb(101 163 13 / 0.8);
}
.focus\:bg-lime-600\/90:focus {
  background-color: rgb(101 163 13 / 0.9);
}
.focus\:bg-lime-700:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(77 124 15 / var(--tw-bg-opacity, 1));
}
.focus\:bg-lime-700\/10:focus {
  background-color: rgb(77 124 15 / 0.1);
}
.focus\:bg-lime-700\/20:focus {
  background-color: rgb(77 124 15 / 0.2);
}
.focus\:bg-lime-700\/30:focus {
  background-color: rgb(77 124 15 / 0.3);
}
.focus\:bg-lime-700\/40:focus {
  background-color: rgb(77 124 15 / 0.4);
}
.focus\:bg-lime-700\/5:focus {
  background-color: rgb(77 124 15 / 0.05);
}
.focus\:bg-lime-700\/50:focus {
  background-color: rgb(77 124 15 / 0.5);
}
.focus\:bg-lime-700\/60:focus {
  background-color: rgb(77 124 15 / 0.6);
}
.focus\:bg-lime-700\/70:focus {
  background-color: rgb(77 124 15 / 0.7);
}
.focus\:bg-lime-700\/80:focus {
  background-color: rgb(77 124 15 / 0.8);
}
.focus\:bg-lime-700\/90:focus {
  background-color: rgb(77 124 15 / 0.9);
}
.focus\:bg-lime-800:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(63 98 18 / var(--tw-bg-opacity, 1));
}
.focus\:bg-lime-800\/10:focus {
  background-color: rgb(63 98 18 / 0.1);
}
.focus\:bg-lime-800\/20:focus {
  background-color: rgb(63 98 18 / 0.2);
}
.focus\:bg-lime-800\/30:focus {
  background-color: rgb(63 98 18 / 0.3);
}
.focus\:bg-lime-800\/40:focus {
  background-color: rgb(63 98 18 / 0.4);
}
.focus\:bg-lime-800\/5:focus {
  background-color: rgb(63 98 18 / 0.05);
}
.focus\:bg-lime-800\/50:focus {
  background-color: rgb(63 98 18 / 0.5);
}
.focus\:bg-lime-800\/60:focus {
  background-color: rgb(63 98 18 / 0.6);
}
.focus\:bg-lime-800\/70:focus {
  background-color: rgb(63 98 18 / 0.7);
}
.focus\:bg-lime-800\/80:focus {
  background-color: rgb(63 98 18 / 0.8);
}
.focus\:bg-lime-800\/90:focus {
  background-color: rgb(63 98 18 / 0.9);
}
.focus\:bg-lime-900:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(54 83 20 / var(--tw-bg-opacity, 1));
}
.focus\:bg-lime-900\/10:focus {
  background-color: rgb(54 83 20 / 0.1);
}
.focus\:bg-lime-900\/20:focus {
  background-color: rgb(54 83 20 / 0.2);
}
.focus\:bg-lime-900\/30:focus {
  background-color: rgb(54 83 20 / 0.3);
}
.focus\:bg-lime-900\/40:focus {
  background-color: rgb(54 83 20 / 0.4);
}
.focus\:bg-lime-900\/5:focus {
  background-color: rgb(54 83 20 / 0.05);
}
.focus\:bg-lime-900\/50:focus {
  background-color: rgb(54 83 20 / 0.5);
}
.focus\:bg-lime-900\/60:focus {
  background-color: rgb(54 83 20 / 0.6);
}
.focus\:bg-lime-900\/70:focus {
  background-color: rgb(54 83 20 / 0.7);
}
.focus\:bg-lime-900\/80:focus {
  background-color: rgb(54 83 20 / 0.8);
}
.focus\:bg-lime-900\/90:focus {
  background-color: rgb(54 83 20 / 0.9);
}
.focus\:bg-lime-950:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(26 46 5 / var(--tw-bg-opacity, 1));
}
.focus\:bg-lime-950\/10:focus {
  background-color: rgb(26 46 5 / 0.1);
}
.focus\:bg-lime-950\/20:focus {
  background-color: rgb(26 46 5 / 0.2);
}
.focus\:bg-lime-950\/30:focus {
  background-color: rgb(26 46 5 / 0.3);
}
.focus\:bg-lime-950\/40:focus {
  background-color: rgb(26 46 5 / 0.4);
}
.focus\:bg-lime-950\/5:focus {
  background-color: rgb(26 46 5 / 0.05);
}
.focus\:bg-lime-950\/50:focus {
  background-color: rgb(26 46 5 / 0.5);
}
.focus\:bg-lime-950\/60:focus {
  background-color: rgb(26 46 5 / 0.6);
}
.focus\:bg-lime-950\/70:focus {
  background-color: rgb(26 46 5 / 0.7);
}
.focus\:bg-lime-950\/80:focus {
  background-color: rgb(26 46 5 / 0.8);
}
.focus\:bg-lime-950\/90:focus {
  background-color: rgb(26 46 5 / 0.9);
}
.focus\:bg-neutral-100:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 245 / var(--tw-bg-opacity, 1));
}
.focus\:bg-neutral-100\/10:focus {
  background-color: rgb(245 245 245 / 0.1);
}
.focus\:bg-neutral-100\/20:focus {
  background-color: rgb(245 245 245 / 0.2);
}
.focus\:bg-neutral-100\/30:focus {
  background-color: rgb(245 245 245 / 0.3);
}
.focus\:bg-neutral-100\/40:focus {
  background-color: rgb(245 245 245 / 0.4);
}
.focus\:bg-neutral-100\/5:focus {
  background-color: rgb(245 245 245 / 0.05);
}
.focus\:bg-neutral-100\/50:focus {
  background-color: rgb(245 245 245 / 0.5);
}
.focus\:bg-neutral-100\/60:focus {
  background-color: rgb(245 245 245 / 0.6);
}
.focus\:bg-neutral-100\/70:focus {
  background-color: rgb(245 245 245 / 0.7);
}
.focus\:bg-neutral-100\/80:focus {
  background-color: rgb(245 245 245 / 0.8);
}
.focus\:bg-neutral-100\/90:focus {
  background-color: rgb(245 245 245 / 0.9);
}
.focus\:bg-neutral-200:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(229 229 229 / var(--tw-bg-opacity, 1));
}
.focus\:bg-neutral-200\/10:focus {
  background-color: rgb(229 229 229 / 0.1);
}
.focus\:bg-neutral-200\/20:focus {
  background-color: rgb(229 229 229 / 0.2);
}
.focus\:bg-neutral-200\/30:focus {
  background-color: rgb(229 229 229 / 0.3);
}
.focus\:bg-neutral-200\/40:focus {
  background-color: rgb(229 229 229 / 0.4);
}
.focus\:bg-neutral-200\/5:focus {
  background-color: rgb(229 229 229 / 0.05);
}
.focus\:bg-neutral-200\/50:focus {
  background-color: rgb(229 229 229 / 0.5);
}
.focus\:bg-neutral-200\/60:focus {
  background-color: rgb(229 229 229 / 0.6);
}
.focus\:bg-neutral-200\/70:focus {
  background-color: rgb(229 229 229 / 0.7);
}
.focus\:bg-neutral-200\/80:focus {
  background-color: rgb(229 229 229 / 0.8);
}
.focus\:bg-neutral-200\/90:focus {
  background-color: rgb(229 229 229 / 0.9);
}
.focus\:bg-neutral-300:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(212 212 212 / var(--tw-bg-opacity, 1));
}
.focus\:bg-neutral-300\/10:focus {
  background-color: rgb(212 212 212 / 0.1);
}
.focus\:bg-neutral-300\/20:focus {
  background-color: rgb(212 212 212 / 0.2);
}
.focus\:bg-neutral-300\/30:focus {
  background-color: rgb(212 212 212 / 0.3);
}
.focus\:bg-neutral-300\/40:focus {
  background-color: rgb(212 212 212 / 0.4);
}
.focus\:bg-neutral-300\/5:focus {
  background-color: rgb(212 212 212 / 0.05);
}
.focus\:bg-neutral-300\/50:focus {
  background-color: rgb(212 212 212 / 0.5);
}
.focus\:bg-neutral-300\/60:focus {
  background-color: rgb(212 212 212 / 0.6);
}
.focus\:bg-neutral-300\/70:focus {
  background-color: rgb(212 212 212 / 0.7);
}
.focus\:bg-neutral-300\/80:focus {
  background-color: rgb(212 212 212 / 0.8);
}
.focus\:bg-neutral-300\/90:focus {
  background-color: rgb(212 212 212 / 0.9);
}
.focus\:bg-neutral-400:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(163 163 163 / var(--tw-bg-opacity, 1));
}
.focus\:bg-neutral-400\/10:focus {
  background-color: rgb(163 163 163 / 0.1);
}
.focus\:bg-neutral-400\/20:focus {
  background-color: rgb(163 163 163 / 0.2);
}
.focus\:bg-neutral-400\/30:focus {
  background-color: rgb(163 163 163 / 0.3);
}
.focus\:bg-neutral-400\/40:focus {
  background-color: rgb(163 163 163 / 0.4);
}
.focus\:bg-neutral-400\/5:focus {
  background-color: rgb(163 163 163 / 0.05);
}
.focus\:bg-neutral-400\/50:focus {
  background-color: rgb(163 163 163 / 0.5);
}
.focus\:bg-neutral-400\/60:focus {
  background-color: rgb(163 163 163 / 0.6);
}
.focus\:bg-neutral-400\/70:focus {
  background-color: rgb(163 163 163 / 0.7);
}
.focus\:bg-neutral-400\/80:focus {
  background-color: rgb(163 163 163 / 0.8);
}
.focus\:bg-neutral-400\/90:focus {
  background-color: rgb(163 163 163 / 0.9);
}
.focus\:bg-neutral-50:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
}
.focus\:bg-neutral-50\/10:focus {
  background-color: rgb(250 250 250 / 0.1);
}
.focus\:bg-neutral-50\/20:focus {
  background-color: rgb(250 250 250 / 0.2);
}
.focus\:bg-neutral-50\/30:focus {
  background-color: rgb(250 250 250 / 0.3);
}
.focus\:bg-neutral-50\/40:focus {
  background-color: rgb(250 250 250 / 0.4);
}
.focus\:bg-neutral-50\/5:focus {
  background-color: rgb(250 250 250 / 0.05);
}
.focus\:bg-neutral-50\/50:focus {
  background-color: rgb(250 250 250 / 0.5);
}
.focus\:bg-neutral-50\/60:focus {
  background-color: rgb(250 250 250 / 0.6);
}
.focus\:bg-neutral-50\/70:focus {
  background-color: rgb(250 250 250 / 0.7);
}
.focus\:bg-neutral-50\/80:focus {
  background-color: rgb(250 250 250 / 0.8);
}
.focus\:bg-neutral-50\/90:focus {
  background-color: rgb(250 250 250 / 0.9);
}
.focus\:bg-neutral-500:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(115 115 115 / var(--tw-bg-opacity, 1));
}
.focus\:bg-neutral-500\/10:focus {
  background-color: rgb(115 115 115 / 0.1);
}
.focus\:bg-neutral-500\/20:focus {
  background-color: rgb(115 115 115 / 0.2);
}
.focus\:bg-neutral-500\/30:focus {
  background-color: rgb(115 115 115 / 0.3);
}
.focus\:bg-neutral-500\/40:focus {
  background-color: rgb(115 115 115 / 0.4);
}
.focus\:bg-neutral-500\/5:focus {
  background-color: rgb(115 115 115 / 0.05);
}
.focus\:bg-neutral-500\/50:focus {
  background-color: rgb(115 115 115 / 0.5);
}
.focus\:bg-neutral-500\/60:focus {
  background-color: rgb(115 115 115 / 0.6);
}
.focus\:bg-neutral-500\/70:focus {
  background-color: rgb(115 115 115 / 0.7);
}
.focus\:bg-neutral-500\/80:focus {
  background-color: rgb(115 115 115 / 0.8);
}
.focus\:bg-neutral-500\/90:focus {
  background-color: rgb(115 115 115 / 0.9);
}
.focus\:bg-neutral-600:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(82 82 82 / var(--tw-bg-opacity, 1));
}
.focus\:bg-neutral-600\/10:focus {
  background-color: rgb(82 82 82 / 0.1);
}
.focus\:bg-neutral-600\/20:focus {
  background-color: rgb(82 82 82 / 0.2);
}
.focus\:bg-neutral-600\/30:focus {
  background-color: rgb(82 82 82 / 0.3);
}
.focus\:bg-neutral-600\/40:focus {
  background-color: rgb(82 82 82 / 0.4);
}
.focus\:bg-neutral-600\/5:focus {
  background-color: rgb(82 82 82 / 0.05);
}
.focus\:bg-neutral-600\/50:focus {
  background-color: rgb(82 82 82 / 0.5);
}
.focus\:bg-neutral-600\/60:focus {
  background-color: rgb(82 82 82 / 0.6);
}
.focus\:bg-neutral-600\/70:focus {
  background-color: rgb(82 82 82 / 0.7);
}
.focus\:bg-neutral-600\/80:focus {
  background-color: rgb(82 82 82 / 0.8);
}
.focus\:bg-neutral-600\/90:focus {
  background-color: rgb(82 82 82 / 0.9);
}
.focus\:bg-neutral-700:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(64 64 64 / var(--tw-bg-opacity, 1));
}
.focus\:bg-neutral-700\/10:focus {
  background-color: rgb(64 64 64 / 0.1);
}
.focus\:bg-neutral-700\/20:focus {
  background-color: rgb(64 64 64 / 0.2);
}
.focus\:bg-neutral-700\/30:focus {
  background-color: rgb(64 64 64 / 0.3);
}
.focus\:bg-neutral-700\/40:focus {
  background-color: rgb(64 64 64 / 0.4);
}
.focus\:bg-neutral-700\/5:focus {
  background-color: rgb(64 64 64 / 0.05);
}
.focus\:bg-neutral-700\/50:focus {
  background-color: rgb(64 64 64 / 0.5);
}
.focus\:bg-neutral-700\/60:focus {
  background-color: rgb(64 64 64 / 0.6);
}
.focus\:bg-neutral-700\/70:focus {
  background-color: rgb(64 64 64 / 0.7);
}
.focus\:bg-neutral-700\/80:focus {
  background-color: rgb(64 64 64 / 0.8);
}
.focus\:bg-neutral-700\/90:focus {
  background-color: rgb(64 64 64 / 0.9);
}
.focus\:bg-neutral-800:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(38 38 38 / var(--tw-bg-opacity, 1));
}
.focus\:bg-neutral-800\/10:focus {
  background-color: rgb(38 38 38 / 0.1);
}
.focus\:bg-neutral-800\/20:focus {
  background-color: rgb(38 38 38 / 0.2);
}
.focus\:bg-neutral-800\/30:focus {
  background-color: rgb(38 38 38 / 0.3);
}
.focus\:bg-neutral-800\/40:focus {
  background-color: rgb(38 38 38 / 0.4);
}
.focus\:bg-neutral-800\/5:focus {
  background-color: rgb(38 38 38 / 0.05);
}
.focus\:bg-neutral-800\/50:focus {
  background-color: rgb(38 38 38 / 0.5);
}
.focus\:bg-neutral-800\/60:focus {
  background-color: rgb(38 38 38 / 0.6);
}
.focus\:bg-neutral-800\/70:focus {
  background-color: rgb(38 38 38 / 0.7);
}
.focus\:bg-neutral-800\/80:focus {
  background-color: rgb(38 38 38 / 0.8);
}
.focus\:bg-neutral-800\/90:focus {
  background-color: rgb(38 38 38 / 0.9);
}
.focus\:bg-neutral-900:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(23 23 23 / var(--tw-bg-opacity, 1));
}
.focus\:bg-neutral-900\/10:focus {
  background-color: rgb(23 23 23 / 0.1);
}
.focus\:bg-neutral-900\/20:focus {
  background-color: rgb(23 23 23 / 0.2);
}
.focus\:bg-neutral-900\/30:focus {
  background-color: rgb(23 23 23 / 0.3);
}
.focus\:bg-neutral-900\/40:focus {
  background-color: rgb(23 23 23 / 0.4);
}
.focus\:bg-neutral-900\/5:focus {
  background-color: rgb(23 23 23 / 0.05);
}
.focus\:bg-neutral-900\/50:focus {
  background-color: rgb(23 23 23 / 0.5);
}
.focus\:bg-neutral-900\/60:focus {
  background-color: rgb(23 23 23 / 0.6);
}
.focus\:bg-neutral-900\/70:focus {
  background-color: rgb(23 23 23 / 0.7);
}
.focus\:bg-neutral-900\/80:focus {
  background-color: rgb(23 23 23 / 0.8);
}
.focus\:bg-neutral-900\/90:focus {
  background-color: rgb(23 23 23 / 0.9);
}
.focus\:bg-neutral-950:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(10 10 10 / var(--tw-bg-opacity, 1));
}
.focus\:bg-neutral-950\/10:focus {
  background-color: rgb(10 10 10 / 0.1);
}
.focus\:bg-neutral-950\/20:focus {
  background-color: rgb(10 10 10 / 0.2);
}
.focus\:bg-neutral-950\/30:focus {
  background-color: rgb(10 10 10 / 0.3);
}
.focus\:bg-neutral-950\/40:focus {
  background-color: rgb(10 10 10 / 0.4);
}
.focus\:bg-neutral-950\/5:focus {
  background-color: rgb(10 10 10 / 0.05);
}
.focus\:bg-neutral-950\/50:focus {
  background-color: rgb(10 10 10 / 0.5);
}
.focus\:bg-neutral-950\/60:focus {
  background-color: rgb(10 10 10 / 0.6);
}
.focus\:bg-neutral-950\/70:focus {
  background-color: rgb(10 10 10 / 0.7);
}
.focus\:bg-neutral-950\/80:focus {
  background-color: rgb(10 10 10 / 0.8);
}
.focus\:bg-neutral-950\/90:focus {
  background-color: rgb(10 10 10 / 0.9);
}
.focus\:bg-orange-100:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(255 237 213 / var(--tw-bg-opacity, 1));
}
.focus\:bg-orange-100\/10:focus {
  background-color: rgb(255 237 213 / 0.1);
}
.focus\:bg-orange-100\/20:focus {
  background-color: rgb(255 237 213 / 0.2);
}
.focus\:bg-orange-100\/30:focus {
  background-color: rgb(255 237 213 / 0.3);
}
.focus\:bg-orange-100\/40:focus {
  background-color: rgb(255 237 213 / 0.4);
}
.focus\:bg-orange-100\/5:focus {
  background-color: rgb(255 237 213 / 0.05);
}
.focus\:bg-orange-100\/50:focus {
  background-color: rgb(255 237 213 / 0.5);
}
.focus\:bg-orange-100\/60:focus {
  background-color: rgb(255 237 213 / 0.6);
}
.focus\:bg-orange-100\/70:focus {
  background-color: rgb(255 237 213 / 0.7);
}
.focus\:bg-orange-100\/80:focus {
  background-color: rgb(255 237 213 / 0.8);
}
.focus\:bg-orange-100\/90:focus {
  background-color: rgb(255 237 213 / 0.9);
}
.focus\:bg-orange-200:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(254 215 170 / var(--tw-bg-opacity, 1));
}
.focus\:bg-orange-200\/10:focus {
  background-color: rgb(254 215 170 / 0.1);
}
.focus\:bg-orange-200\/20:focus {
  background-color: rgb(254 215 170 / 0.2);
}
.focus\:bg-orange-200\/30:focus {
  background-color: rgb(254 215 170 / 0.3);
}
.focus\:bg-orange-200\/40:focus {
  background-color: rgb(254 215 170 / 0.4);
}
.focus\:bg-orange-200\/5:focus {
  background-color: rgb(254 215 170 / 0.05);
}
.focus\:bg-orange-200\/50:focus {
  background-color: rgb(254 215 170 / 0.5);
}
.focus\:bg-orange-200\/60:focus {
  background-color: rgb(254 215 170 / 0.6);
}
.focus\:bg-orange-200\/70:focus {
  background-color: rgb(254 215 170 / 0.7);
}
.focus\:bg-orange-200\/80:focus {
  background-color: rgb(254 215 170 / 0.8);
}
.focus\:bg-orange-200\/90:focus {
  background-color: rgb(254 215 170 / 0.9);
}
.focus\:bg-orange-300:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(253 186 116 / var(--tw-bg-opacity, 1));
}
.focus\:bg-orange-300\/10:focus {
  background-color: rgb(253 186 116 / 0.1);
}
.focus\:bg-orange-300\/20:focus {
  background-color: rgb(253 186 116 / 0.2);
}
.focus\:bg-orange-300\/30:focus {
  background-color: rgb(253 186 116 / 0.3);
}
.focus\:bg-orange-300\/40:focus {
  background-color: rgb(253 186 116 / 0.4);
}
.focus\:bg-orange-300\/5:focus {
  background-color: rgb(253 186 116 / 0.05);
}
.focus\:bg-orange-300\/50:focus {
  background-color: rgb(253 186 116 / 0.5);
}
.focus\:bg-orange-300\/60:focus {
  background-color: rgb(253 186 116 / 0.6);
}
.focus\:bg-orange-300\/70:focus {
  background-color: rgb(253 186 116 / 0.7);
}
.focus\:bg-orange-300\/80:focus {
  background-color: rgb(253 186 116 / 0.8);
}
.focus\:bg-orange-300\/90:focus {
  background-color: rgb(253 186 116 / 0.9);
}
.focus\:bg-orange-400:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(251 146 60 / var(--tw-bg-opacity, 1));
}
.focus\:bg-orange-400\/10:focus {
  background-color: rgb(251 146 60 / 0.1);
}
.focus\:bg-orange-400\/20:focus {
  background-color: rgb(251 146 60 / 0.2);
}
.focus\:bg-orange-400\/30:focus {
  background-color: rgb(251 146 60 / 0.3);
}
.focus\:bg-orange-400\/40:focus {
  background-color: rgb(251 146 60 / 0.4);
}
.focus\:bg-orange-400\/5:focus {
  background-color: rgb(251 146 60 / 0.05);
}
.focus\:bg-orange-400\/50:focus {
  background-color: rgb(251 146 60 / 0.5);
}
.focus\:bg-orange-400\/60:focus {
  background-color: rgb(251 146 60 / 0.6);
}
.focus\:bg-orange-400\/70:focus {
  background-color: rgb(251 146 60 / 0.7);
}
.focus\:bg-orange-400\/80:focus {
  background-color: rgb(251 146 60 / 0.8);
}
.focus\:bg-orange-400\/90:focus {
  background-color: rgb(251 146 60 / 0.9);
}
.focus\:bg-orange-50:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(255 247 237 / var(--tw-bg-opacity, 1));
}
.focus\:bg-orange-50\/10:focus {
  background-color: rgb(255 247 237 / 0.1);
}
.focus\:bg-orange-50\/20:focus {
  background-color: rgb(255 247 237 / 0.2);
}
.focus\:bg-orange-50\/30:focus {
  background-color: rgb(255 247 237 / 0.3);
}
.focus\:bg-orange-50\/40:focus {
  background-color: rgb(255 247 237 / 0.4);
}
.focus\:bg-orange-50\/5:focus {
  background-color: rgb(255 247 237 / 0.05);
}
.focus\:bg-orange-50\/50:focus {
  background-color: rgb(255 247 237 / 0.5);
}
.focus\:bg-orange-50\/60:focus {
  background-color: rgb(255 247 237 / 0.6);
}
.focus\:bg-orange-50\/70:focus {
  background-color: rgb(255 247 237 / 0.7);
}
.focus\:bg-orange-50\/80:focus {
  background-color: rgb(255 247 237 / 0.8);
}
.focus\:bg-orange-50\/90:focus {
  background-color: rgb(255 247 237 / 0.9);
}
.focus\:bg-orange-500:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
}
.focus\:bg-orange-500\/10:focus {
  background-color: rgb(249 115 22 / 0.1);
}
.focus\:bg-orange-500\/20:focus {
  background-color: rgb(249 115 22 / 0.2);
}
.focus\:bg-orange-500\/30:focus {
  background-color: rgb(249 115 22 / 0.3);
}
.focus\:bg-orange-500\/40:focus {
  background-color: rgb(249 115 22 / 0.4);
}
.focus\:bg-orange-500\/5:focus {
  background-color: rgb(249 115 22 / 0.05);
}
.focus\:bg-orange-500\/50:focus {
  background-color: rgb(249 115 22 / 0.5);
}
.focus\:bg-orange-500\/60:focus {
  background-color: rgb(249 115 22 / 0.6);
}
.focus\:bg-orange-500\/70:focus {
  background-color: rgb(249 115 22 / 0.7);
}
.focus\:bg-orange-500\/80:focus {
  background-color: rgb(249 115 22 / 0.8);
}
.focus\:bg-orange-500\/90:focus {
  background-color: rgb(249 115 22 / 0.9);
}
.focus\:bg-orange-600:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(234 88 12 / var(--tw-bg-opacity, 1));
}
.focus\:bg-orange-600\/10:focus {
  background-color: rgb(234 88 12 / 0.1);
}
.focus\:bg-orange-600\/20:focus {
  background-color: rgb(234 88 12 / 0.2);
}
.focus\:bg-orange-600\/30:focus {
  background-color: rgb(234 88 12 / 0.3);
}
.focus\:bg-orange-600\/40:focus {
  background-color: rgb(234 88 12 / 0.4);
}
.focus\:bg-orange-600\/5:focus {
  background-color: rgb(234 88 12 / 0.05);
}
.focus\:bg-orange-600\/50:focus {
  background-color: rgb(234 88 12 / 0.5);
}
.focus\:bg-orange-600\/60:focus {
  background-color: rgb(234 88 12 / 0.6);
}
.focus\:bg-orange-600\/70:focus {
  background-color: rgb(234 88 12 / 0.7);
}
.focus\:bg-orange-600\/80:focus {
  background-color: rgb(234 88 12 / 0.8);
}
.focus\:bg-orange-600\/90:focus {
  background-color: rgb(234 88 12 / 0.9);
}
.focus\:bg-orange-700:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(194 65 12 / var(--tw-bg-opacity, 1));
}
.focus\:bg-orange-700\/10:focus {
  background-color: rgb(194 65 12 / 0.1);
}
.focus\:bg-orange-700\/20:focus {
  background-color: rgb(194 65 12 / 0.2);
}
.focus\:bg-orange-700\/30:focus {
  background-color: rgb(194 65 12 / 0.3);
}
.focus\:bg-orange-700\/40:focus {
  background-color: rgb(194 65 12 / 0.4);
}
.focus\:bg-orange-700\/5:focus {
  background-color: rgb(194 65 12 / 0.05);
}
.focus\:bg-orange-700\/50:focus {
  background-color: rgb(194 65 12 / 0.5);
}
.focus\:bg-orange-700\/60:focus {
  background-color: rgb(194 65 12 / 0.6);
}
.focus\:bg-orange-700\/70:focus {
  background-color: rgb(194 65 12 / 0.7);
}
.focus\:bg-orange-700\/80:focus {
  background-color: rgb(194 65 12 / 0.8);
}
.focus\:bg-orange-700\/90:focus {
  background-color: rgb(194 65 12 / 0.9);
}
.focus\:bg-orange-800:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(154 52 18 / var(--tw-bg-opacity, 1));
}
.focus\:bg-orange-800\/10:focus {
  background-color: rgb(154 52 18 / 0.1);
}
.focus\:bg-orange-800\/20:focus {
  background-color: rgb(154 52 18 / 0.2);
}
.focus\:bg-orange-800\/30:focus {
  background-color: rgb(154 52 18 / 0.3);
}
.focus\:bg-orange-800\/40:focus {
  background-color: rgb(154 52 18 / 0.4);
}
.focus\:bg-orange-800\/5:focus {
  background-color: rgb(154 52 18 / 0.05);
}
.focus\:bg-orange-800\/50:focus {
  background-color: rgb(154 52 18 / 0.5);
}
.focus\:bg-orange-800\/60:focus {
  background-color: rgb(154 52 18 / 0.6);
}
.focus\:bg-orange-800\/70:focus {
  background-color: rgb(154 52 18 / 0.7);
}
.focus\:bg-orange-800\/80:focus {
  background-color: rgb(154 52 18 / 0.8);
}
.focus\:bg-orange-800\/90:focus {
  background-color: rgb(154 52 18 / 0.9);
}
.focus\:bg-orange-900:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(124 45 18 / var(--tw-bg-opacity, 1));
}
.focus\:bg-orange-900\/10:focus {
  background-color: rgb(124 45 18 / 0.1);
}
.focus\:bg-orange-900\/20:focus {
  background-color: rgb(124 45 18 / 0.2);
}
.focus\:bg-orange-900\/30:focus {
  background-color: rgb(124 45 18 / 0.3);
}
.focus\:bg-orange-900\/40:focus {
  background-color: rgb(124 45 18 / 0.4);
}
.focus\:bg-orange-900\/5:focus {
  background-color: rgb(124 45 18 / 0.05);
}
.focus\:bg-orange-900\/50:focus {
  background-color: rgb(124 45 18 / 0.5);
}
.focus\:bg-orange-900\/60:focus {
  background-color: rgb(124 45 18 / 0.6);
}
.focus\:bg-orange-900\/70:focus {
  background-color: rgb(124 45 18 / 0.7);
}
.focus\:bg-orange-900\/80:focus {
  background-color: rgb(124 45 18 / 0.8);
}
.focus\:bg-orange-900\/90:focus {
  background-color: rgb(124 45 18 / 0.9);
}
.focus\:bg-orange-950:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(67 20 7 / var(--tw-bg-opacity, 1));
}
.focus\:bg-orange-950\/10:focus {
  background-color: rgb(67 20 7 / 0.1);
}
.focus\:bg-orange-950\/20:focus {
  background-color: rgb(67 20 7 / 0.2);
}
.focus\:bg-orange-950\/30:focus {
  background-color: rgb(67 20 7 / 0.3);
}
.focus\:bg-orange-950\/40:focus {
  background-color: rgb(67 20 7 / 0.4);
}
.focus\:bg-orange-950\/5:focus {
  background-color: rgb(67 20 7 / 0.05);
}
.focus\:bg-orange-950\/50:focus {
  background-color: rgb(67 20 7 / 0.5);
}
.focus\:bg-orange-950\/60:focus {
  background-color: rgb(67 20 7 / 0.6);
}
.focus\:bg-orange-950\/70:focus {
  background-color: rgb(67 20 7 / 0.7);
}
.focus\:bg-orange-950\/80:focus {
  background-color: rgb(67 20 7 / 0.8);
}
.focus\:bg-orange-950\/90:focus {
  background-color: rgb(67 20 7 / 0.9);
}
.focus\:bg-pink-100:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(252 231 243 / var(--tw-bg-opacity, 1));
}
.focus\:bg-pink-100\/10:focus {
  background-color: rgb(252 231 243 / 0.1);
}
.focus\:bg-pink-100\/20:focus {
  background-color: rgb(252 231 243 / 0.2);
}
.focus\:bg-pink-100\/30:focus {
  background-color: rgb(252 231 243 / 0.3);
}
.focus\:bg-pink-100\/40:focus {
  background-color: rgb(252 231 243 / 0.4);
}
.focus\:bg-pink-100\/5:focus {
  background-color: rgb(252 231 243 / 0.05);
}
.focus\:bg-pink-100\/50:focus {
  background-color: rgb(252 231 243 / 0.5);
}
.focus\:bg-pink-100\/60:focus {
  background-color: rgb(252 231 243 / 0.6);
}
.focus\:bg-pink-100\/70:focus {
  background-color: rgb(252 231 243 / 0.7);
}
.focus\:bg-pink-100\/80:focus {
  background-color: rgb(252 231 243 / 0.8);
}
.focus\:bg-pink-100\/90:focus {
  background-color: rgb(252 231 243 / 0.9);
}
.focus\:bg-pink-200:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(251 207 232 / var(--tw-bg-opacity, 1));
}
.focus\:bg-pink-200\/10:focus {
  background-color: rgb(251 207 232 / 0.1);
}
.focus\:bg-pink-200\/20:focus {
  background-color: rgb(251 207 232 / 0.2);
}
.focus\:bg-pink-200\/30:focus {
  background-color: rgb(251 207 232 / 0.3);
}
.focus\:bg-pink-200\/40:focus {
  background-color: rgb(251 207 232 / 0.4);
}
.focus\:bg-pink-200\/5:focus {
  background-color: rgb(251 207 232 / 0.05);
}
.focus\:bg-pink-200\/50:focus {
  background-color: rgb(251 207 232 / 0.5);
}
.focus\:bg-pink-200\/60:focus {
  background-color: rgb(251 207 232 / 0.6);
}
.focus\:bg-pink-200\/70:focus {
  background-color: rgb(251 207 232 / 0.7);
}
.focus\:bg-pink-200\/80:focus {
  background-color: rgb(251 207 232 / 0.8);
}
.focus\:bg-pink-200\/90:focus {
  background-color: rgb(251 207 232 / 0.9);
}
.focus\:bg-pink-300:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(249 168 212 / var(--tw-bg-opacity, 1));
}
.focus\:bg-pink-300\/10:focus {
  background-color: rgb(249 168 212 / 0.1);
}
.focus\:bg-pink-300\/20:focus {
  background-color: rgb(249 168 212 / 0.2);
}
.focus\:bg-pink-300\/30:focus {
  background-color: rgb(249 168 212 / 0.3);
}
.focus\:bg-pink-300\/40:focus {
  background-color: rgb(249 168 212 / 0.4);
}
.focus\:bg-pink-300\/5:focus {
  background-color: rgb(249 168 212 / 0.05);
}
.focus\:bg-pink-300\/50:focus {
  background-color: rgb(249 168 212 / 0.5);
}
.focus\:bg-pink-300\/60:focus {
  background-color: rgb(249 168 212 / 0.6);
}
.focus\:bg-pink-300\/70:focus {
  background-color: rgb(249 168 212 / 0.7);
}
.focus\:bg-pink-300\/80:focus {
  background-color: rgb(249 168 212 / 0.8);
}
.focus\:bg-pink-300\/90:focus {
  background-color: rgb(249 168 212 / 0.9);
}
.focus\:bg-pink-400:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(244 114 182 / var(--tw-bg-opacity, 1));
}
.focus\:bg-pink-400\/10:focus {
  background-color: rgb(244 114 182 / 0.1);
}
.focus\:bg-pink-400\/20:focus {
  background-color: rgb(244 114 182 / 0.2);
}
.focus\:bg-pink-400\/30:focus {
  background-color: rgb(244 114 182 / 0.3);
}
.focus\:bg-pink-400\/40:focus {
  background-color: rgb(244 114 182 / 0.4);
}
.focus\:bg-pink-400\/5:focus {
  background-color: rgb(244 114 182 / 0.05);
}
.focus\:bg-pink-400\/50:focus {
  background-color: rgb(244 114 182 / 0.5);
}
.focus\:bg-pink-400\/60:focus {
  background-color: rgb(244 114 182 / 0.6);
}
.focus\:bg-pink-400\/70:focus {
  background-color: rgb(244 114 182 / 0.7);
}
.focus\:bg-pink-400\/80:focus {
  background-color: rgb(244 114 182 / 0.8);
}
.focus\:bg-pink-400\/90:focus {
  background-color: rgb(244 114 182 / 0.9);
}
.focus\:bg-pink-50:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(253 242 248 / var(--tw-bg-opacity, 1));
}
.focus\:bg-pink-50\/10:focus {
  background-color: rgb(253 242 248 / 0.1);
}
.focus\:bg-pink-50\/20:focus {
  background-color: rgb(253 242 248 / 0.2);
}
.focus\:bg-pink-50\/30:focus {
  background-color: rgb(253 242 248 / 0.3);
}
.focus\:bg-pink-50\/40:focus {
  background-color: rgb(253 242 248 / 0.4);
}
.focus\:bg-pink-50\/5:focus {
  background-color: rgb(253 242 248 / 0.05);
}
.focus\:bg-pink-50\/50:focus {
  background-color: rgb(253 242 248 / 0.5);
}
.focus\:bg-pink-50\/60:focus {
  background-color: rgb(253 242 248 / 0.6);
}
.focus\:bg-pink-50\/70:focus {
  background-color: rgb(253 242 248 / 0.7);
}
.focus\:bg-pink-50\/80:focus {
  background-color: rgb(253 242 248 / 0.8);
}
.focus\:bg-pink-50\/90:focus {
  background-color: rgb(253 242 248 / 0.9);
}
.focus\:bg-pink-500:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(236 72 153 / var(--tw-bg-opacity, 1));
}
.focus\:bg-pink-500\/10:focus {
  background-color: rgb(236 72 153 / 0.1);
}
.focus\:bg-pink-500\/20:focus {
  background-color: rgb(236 72 153 / 0.2);
}
.focus\:bg-pink-500\/30:focus {
  background-color: rgb(236 72 153 / 0.3);
}
.focus\:bg-pink-500\/40:focus {
  background-color: rgb(236 72 153 / 0.4);
}
.focus\:bg-pink-500\/5:focus {
  background-color: rgb(236 72 153 / 0.05);
}
.focus\:bg-pink-500\/50:focus {
  background-color: rgb(236 72 153 / 0.5);
}
.focus\:bg-pink-500\/60:focus {
  background-color: rgb(236 72 153 / 0.6);
}
.focus\:bg-pink-500\/70:focus {
  background-color: rgb(236 72 153 / 0.7);
}
.focus\:bg-pink-500\/80:focus {
  background-color: rgb(236 72 153 / 0.8);
}
.focus\:bg-pink-500\/90:focus {
  background-color: rgb(236 72 153 / 0.9);
}
.focus\:bg-pink-600:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(219 39 119 / var(--tw-bg-opacity, 1));
}
.focus\:bg-pink-600\/10:focus {
  background-color: rgb(219 39 119 / 0.1);
}
.focus\:bg-pink-600\/20:focus {
  background-color: rgb(219 39 119 / 0.2);
}
.focus\:bg-pink-600\/30:focus {
  background-color: rgb(219 39 119 / 0.3);
}
.focus\:bg-pink-600\/40:focus {
  background-color: rgb(219 39 119 / 0.4);
}
.focus\:bg-pink-600\/5:focus {
  background-color: rgb(219 39 119 / 0.05);
}
.focus\:bg-pink-600\/50:focus {
  background-color: rgb(219 39 119 / 0.5);
}
.focus\:bg-pink-600\/60:focus {
  background-color: rgb(219 39 119 / 0.6);
}
.focus\:bg-pink-600\/70:focus {
  background-color: rgb(219 39 119 / 0.7);
}
.focus\:bg-pink-600\/80:focus {
  background-color: rgb(219 39 119 / 0.8);
}
.focus\:bg-pink-600\/90:focus {
  background-color: rgb(219 39 119 / 0.9);
}
.focus\:bg-pink-700:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(190 24 93 / var(--tw-bg-opacity, 1));
}
.focus\:bg-pink-700\/10:focus {
  background-color: rgb(190 24 93 / 0.1);
}
.focus\:bg-pink-700\/20:focus {
  background-color: rgb(190 24 93 / 0.2);
}
.focus\:bg-pink-700\/30:focus {
  background-color: rgb(190 24 93 / 0.3);
}
.focus\:bg-pink-700\/40:focus {
  background-color: rgb(190 24 93 / 0.4);
}
.focus\:bg-pink-700\/5:focus {
  background-color: rgb(190 24 93 / 0.05);
}
.focus\:bg-pink-700\/50:focus {
  background-color: rgb(190 24 93 / 0.5);
}
.focus\:bg-pink-700\/60:focus {
  background-color: rgb(190 24 93 / 0.6);
}
.focus\:bg-pink-700\/70:focus {
  background-color: rgb(190 24 93 / 0.7);
}
.focus\:bg-pink-700\/80:focus {
  background-color: rgb(190 24 93 / 0.8);
}
.focus\:bg-pink-700\/90:focus {
  background-color: rgb(190 24 93 / 0.9);
}
.focus\:bg-pink-800:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(157 23 77 / var(--tw-bg-opacity, 1));
}
.focus\:bg-pink-800\/10:focus {
  background-color: rgb(157 23 77 / 0.1);
}
.focus\:bg-pink-800\/20:focus {
  background-color: rgb(157 23 77 / 0.2);
}
.focus\:bg-pink-800\/30:focus {
  background-color: rgb(157 23 77 / 0.3);
}
.focus\:bg-pink-800\/40:focus {
  background-color: rgb(157 23 77 / 0.4);
}
.focus\:bg-pink-800\/5:focus {
  background-color: rgb(157 23 77 / 0.05);
}
.focus\:bg-pink-800\/50:focus {
  background-color: rgb(157 23 77 / 0.5);
}
.focus\:bg-pink-800\/60:focus {
  background-color: rgb(157 23 77 / 0.6);
}
.focus\:bg-pink-800\/70:focus {
  background-color: rgb(157 23 77 / 0.7);
}
.focus\:bg-pink-800\/80:focus {
  background-color: rgb(157 23 77 / 0.8);
}
.focus\:bg-pink-800\/90:focus {
  background-color: rgb(157 23 77 / 0.9);
}
.focus\:bg-pink-900:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(131 24 67 / var(--tw-bg-opacity, 1));
}
.focus\:bg-pink-900\/10:focus {
  background-color: rgb(131 24 67 / 0.1);
}
.focus\:bg-pink-900\/20:focus {
  background-color: rgb(131 24 67 / 0.2);
}
.focus\:bg-pink-900\/30:focus {
  background-color: rgb(131 24 67 / 0.3);
}
.focus\:bg-pink-900\/40:focus {
  background-color: rgb(131 24 67 / 0.4);
}
.focus\:bg-pink-900\/5:focus {
  background-color: rgb(131 24 67 / 0.05);
}
.focus\:bg-pink-900\/50:focus {
  background-color: rgb(131 24 67 / 0.5);
}
.focus\:bg-pink-900\/60:focus {
  background-color: rgb(131 24 67 / 0.6);
}
.focus\:bg-pink-900\/70:focus {
  background-color: rgb(131 24 67 / 0.7);
}
.focus\:bg-pink-900\/80:focus {
  background-color: rgb(131 24 67 / 0.8);
}
.focus\:bg-pink-900\/90:focus {
  background-color: rgb(131 24 67 / 0.9);
}
.focus\:bg-pink-950:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(80 7 36 / var(--tw-bg-opacity, 1));
}
.focus\:bg-pink-950\/10:focus {
  background-color: rgb(80 7 36 / 0.1);
}
.focus\:bg-pink-950\/20:focus {
  background-color: rgb(80 7 36 / 0.2);
}
.focus\:bg-pink-950\/30:focus {
  background-color: rgb(80 7 36 / 0.3);
}
.focus\:bg-pink-950\/40:focus {
  background-color: rgb(80 7 36 / 0.4);
}
.focus\:bg-pink-950\/5:focus {
  background-color: rgb(80 7 36 / 0.05);
}
.focus\:bg-pink-950\/50:focus {
  background-color: rgb(80 7 36 / 0.5);
}
.focus\:bg-pink-950\/60:focus {
  background-color: rgb(80 7 36 / 0.6);
}
.focus\:bg-pink-950\/70:focus {
  background-color: rgb(80 7 36 / 0.7);
}
.focus\:bg-pink-950\/80:focus {
  background-color: rgb(80 7 36 / 0.8);
}
.focus\:bg-pink-950\/90:focus {
  background-color: rgb(80 7 36 / 0.9);
}
.focus\:bg-purple-100:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(243 232 255 / var(--tw-bg-opacity, 1));
}
.focus\:bg-purple-100\/10:focus {
  background-color: rgb(243 232 255 / 0.1);
}
.focus\:bg-purple-100\/20:focus {
  background-color: rgb(243 232 255 / 0.2);
}
.focus\:bg-purple-100\/30:focus {
  background-color: rgb(243 232 255 / 0.3);
}
.focus\:bg-purple-100\/40:focus {
  background-color: rgb(243 232 255 / 0.4);
}
.focus\:bg-purple-100\/5:focus {
  background-color: rgb(243 232 255 / 0.05);
}
.focus\:bg-purple-100\/50:focus {
  background-color: rgb(243 232 255 / 0.5);
}
.focus\:bg-purple-100\/60:focus {
  background-color: rgb(243 232 255 / 0.6);
}
.focus\:bg-purple-100\/70:focus {
  background-color: rgb(243 232 255 / 0.7);
}
.focus\:bg-purple-100\/80:focus {
  background-color: rgb(243 232 255 / 0.8);
}
.focus\:bg-purple-100\/90:focus {
  background-color: rgb(243 232 255 / 0.9);
}
.focus\:bg-purple-200:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(233 213 255 / var(--tw-bg-opacity, 1));
}
.focus\:bg-purple-200\/10:focus {
  background-color: rgb(233 213 255 / 0.1);
}
.focus\:bg-purple-200\/20:focus {
  background-color: rgb(233 213 255 / 0.2);
}
.focus\:bg-purple-200\/30:focus {
  background-color: rgb(233 213 255 / 0.3);
}
.focus\:bg-purple-200\/40:focus {
  background-color: rgb(233 213 255 / 0.4);
}
.focus\:bg-purple-200\/5:focus {
  background-color: rgb(233 213 255 / 0.05);
}
.focus\:bg-purple-200\/50:focus {
  background-color: rgb(233 213 255 / 0.5);
}
.focus\:bg-purple-200\/60:focus {
  background-color: rgb(233 213 255 / 0.6);
}
.focus\:bg-purple-200\/70:focus {
  background-color: rgb(233 213 255 / 0.7);
}
.focus\:bg-purple-200\/80:focus {
  background-color: rgb(233 213 255 / 0.8);
}
.focus\:bg-purple-200\/90:focus {
  background-color: rgb(233 213 255 / 0.9);
}
.focus\:bg-purple-300:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(216 180 254 / var(--tw-bg-opacity, 1));
}
.focus\:bg-purple-300\/10:focus {
  background-color: rgb(216 180 254 / 0.1);
}
.focus\:bg-purple-300\/20:focus {
  background-color: rgb(216 180 254 / 0.2);
}
.focus\:bg-purple-300\/30:focus {
  background-color: rgb(216 180 254 / 0.3);
}
.focus\:bg-purple-300\/40:focus {
  background-color: rgb(216 180 254 / 0.4);
}
.focus\:bg-purple-300\/5:focus {
  background-color: rgb(216 180 254 / 0.05);
}
.focus\:bg-purple-300\/50:focus {
  background-color: rgb(216 180 254 / 0.5);
}
.focus\:bg-purple-300\/60:focus {
  background-color: rgb(216 180 254 / 0.6);
}
.focus\:bg-purple-300\/70:focus {
  background-color: rgb(216 180 254 / 0.7);
}
.focus\:bg-purple-300\/80:focus {
  background-color: rgb(216 180 254 / 0.8);
}
.focus\:bg-purple-300\/90:focus {
  background-color: rgb(216 180 254 / 0.9);
}
.focus\:bg-purple-400:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(192 132 252 / var(--tw-bg-opacity, 1));
}
.focus\:bg-purple-400\/10:focus {
  background-color: rgb(192 132 252 / 0.1);
}
.focus\:bg-purple-400\/20:focus {
  background-color: rgb(192 132 252 / 0.2);
}
.focus\:bg-purple-400\/30:focus {
  background-color: rgb(192 132 252 / 0.3);
}
.focus\:bg-purple-400\/40:focus {
  background-color: rgb(192 132 252 / 0.4);
}
.focus\:bg-purple-400\/5:focus {
  background-color: rgb(192 132 252 / 0.05);
}
.focus\:bg-purple-400\/50:focus {
  background-color: rgb(192 132 252 / 0.5);
}
.focus\:bg-purple-400\/60:focus {
  background-color: rgb(192 132 252 / 0.6);
}
.focus\:bg-purple-400\/70:focus {
  background-color: rgb(192 132 252 / 0.7);
}
.focus\:bg-purple-400\/80:focus {
  background-color: rgb(192 132 252 / 0.8);
}
.focus\:bg-purple-400\/90:focus {
  background-color: rgb(192 132 252 / 0.9);
}
.focus\:bg-purple-50:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(250 245 255 / var(--tw-bg-opacity, 1));
}
.focus\:bg-purple-50\/10:focus {
  background-color: rgb(250 245 255 / 0.1);
}
.focus\:bg-purple-50\/20:focus {
  background-color: rgb(250 245 255 / 0.2);
}
.focus\:bg-purple-50\/30:focus {
  background-color: rgb(250 245 255 / 0.3);
}
.focus\:bg-purple-50\/40:focus {
  background-color: rgb(250 245 255 / 0.4);
}
.focus\:bg-purple-50\/5:focus {
  background-color: rgb(250 245 255 / 0.05);
}
.focus\:bg-purple-50\/50:focus {
  background-color: rgb(250 245 255 / 0.5);
}
.focus\:bg-purple-50\/60:focus {
  background-color: rgb(250 245 255 / 0.6);
}
.focus\:bg-purple-50\/70:focus {
  background-color: rgb(250 245 255 / 0.7);
}
.focus\:bg-purple-50\/80:focus {
  background-color: rgb(250 245 255 / 0.8);
}
.focus\:bg-purple-50\/90:focus {
  background-color: rgb(250 245 255 / 0.9);
}
.focus\:bg-purple-500:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(168 85 247 / var(--tw-bg-opacity, 1));
}
.focus\:bg-purple-500\/10:focus {
  background-color: rgb(168 85 247 / 0.1);
}
.focus\:bg-purple-500\/20:focus {
  background-color: rgb(168 85 247 / 0.2);
}
.focus\:bg-purple-500\/30:focus {
  background-color: rgb(168 85 247 / 0.3);
}
.focus\:bg-purple-500\/40:focus {
  background-color: rgb(168 85 247 / 0.4);
}
.focus\:bg-purple-500\/5:focus {
  background-color: rgb(168 85 247 / 0.05);
}
.focus\:bg-purple-500\/50:focus {
  background-color: rgb(168 85 247 / 0.5);
}
.focus\:bg-purple-500\/60:focus {
  background-color: rgb(168 85 247 / 0.6);
}
.focus\:bg-purple-500\/70:focus {
  background-color: rgb(168 85 247 / 0.7);
}
.focus\:bg-purple-500\/80:focus {
  background-color: rgb(168 85 247 / 0.8);
}
.focus\:bg-purple-500\/90:focus {
  background-color: rgb(168 85 247 / 0.9);
}
.focus\:bg-purple-600:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(147 51 234 / var(--tw-bg-opacity, 1));
}
.focus\:bg-purple-600\/10:focus {
  background-color: rgb(147 51 234 / 0.1);
}
.focus\:bg-purple-600\/20:focus {
  background-color: rgb(147 51 234 / 0.2);
}
.focus\:bg-purple-600\/30:focus {
  background-color: rgb(147 51 234 / 0.3);
}
.focus\:bg-purple-600\/40:focus {
  background-color: rgb(147 51 234 / 0.4);
}
.focus\:bg-purple-600\/5:focus {
  background-color: rgb(147 51 234 / 0.05);
}
.focus\:bg-purple-600\/50:focus {
  background-color: rgb(147 51 234 / 0.5);
}
.focus\:bg-purple-600\/60:focus {
  background-color: rgb(147 51 234 / 0.6);
}
.focus\:bg-purple-600\/70:focus {
  background-color: rgb(147 51 234 / 0.7);
}
.focus\:bg-purple-600\/80:focus {
  background-color: rgb(147 51 234 / 0.8);
}
.focus\:bg-purple-600\/90:focus {
  background-color: rgb(147 51 234 / 0.9);
}
.focus\:bg-purple-700:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(126 34 206 / var(--tw-bg-opacity, 1));
}
.focus\:bg-purple-700\/10:focus {
  background-color: rgb(126 34 206 / 0.1);
}
.focus\:bg-purple-700\/20:focus {
  background-color: rgb(126 34 206 / 0.2);
}
.focus\:bg-purple-700\/30:focus {
  background-color: rgb(126 34 206 / 0.3);
}
.focus\:bg-purple-700\/40:focus {
  background-color: rgb(126 34 206 / 0.4);
}
.focus\:bg-purple-700\/5:focus {
  background-color: rgb(126 34 206 / 0.05);
}
.focus\:bg-purple-700\/50:focus {
  background-color: rgb(126 34 206 / 0.5);
}
.focus\:bg-purple-700\/60:focus {
  background-color: rgb(126 34 206 / 0.6);
}
.focus\:bg-purple-700\/70:focus {
  background-color: rgb(126 34 206 / 0.7);
}
.focus\:bg-purple-700\/80:focus {
  background-color: rgb(126 34 206 / 0.8);
}
.focus\:bg-purple-700\/90:focus {
  background-color: rgb(126 34 206 / 0.9);
}
.focus\:bg-purple-800:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(107 33 168 / var(--tw-bg-opacity, 1));
}
.focus\:bg-purple-800\/10:focus {
  background-color: rgb(107 33 168 / 0.1);
}
.focus\:bg-purple-800\/20:focus {
  background-color: rgb(107 33 168 / 0.2);
}
.focus\:bg-purple-800\/30:focus {
  background-color: rgb(107 33 168 / 0.3);
}
.focus\:bg-purple-800\/40:focus {
  background-color: rgb(107 33 168 / 0.4);
}
.focus\:bg-purple-800\/5:focus {
  background-color: rgb(107 33 168 / 0.05);
}
.focus\:bg-purple-800\/50:focus {
  background-color: rgb(107 33 168 / 0.5);
}
.focus\:bg-purple-800\/60:focus {
  background-color: rgb(107 33 168 / 0.6);
}
.focus\:bg-purple-800\/70:focus {
  background-color: rgb(107 33 168 / 0.7);
}
.focus\:bg-purple-800\/80:focus {
  background-color: rgb(107 33 168 / 0.8);
}
.focus\:bg-purple-800\/90:focus {
  background-color: rgb(107 33 168 / 0.9);
}
.focus\:bg-purple-900:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(88 28 135 / var(--tw-bg-opacity, 1));
}
.focus\:bg-purple-900\/10:focus {
  background-color: rgb(88 28 135 / 0.1);
}
.focus\:bg-purple-900\/20:focus {
  background-color: rgb(88 28 135 / 0.2);
}
.focus\:bg-purple-900\/30:focus {
  background-color: rgb(88 28 135 / 0.3);
}
.focus\:bg-purple-900\/40:focus {
  background-color: rgb(88 28 135 / 0.4);
}
.focus\:bg-purple-900\/5:focus {
  background-color: rgb(88 28 135 / 0.05);
}
.focus\:bg-purple-900\/50:focus {
  background-color: rgb(88 28 135 / 0.5);
}
.focus\:bg-purple-900\/60:focus {
  background-color: rgb(88 28 135 / 0.6);
}
.focus\:bg-purple-900\/70:focus {
  background-color: rgb(88 28 135 / 0.7);
}
.focus\:bg-purple-900\/80:focus {
  background-color: rgb(88 28 135 / 0.8);
}
.focus\:bg-purple-900\/90:focus {
  background-color: rgb(88 28 135 / 0.9);
}
.focus\:bg-purple-950:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(59 7 100 / var(--tw-bg-opacity, 1));
}
.focus\:bg-purple-950\/10:focus {
  background-color: rgb(59 7 100 / 0.1);
}
.focus\:bg-purple-950\/20:focus {
  background-color: rgb(59 7 100 / 0.2);
}
.focus\:bg-purple-950\/30:focus {
  background-color: rgb(59 7 100 / 0.3);
}
.focus\:bg-purple-950\/40:focus {
  background-color: rgb(59 7 100 / 0.4);
}
.focus\:bg-purple-950\/5:focus {
  background-color: rgb(59 7 100 / 0.05);
}
.focus\:bg-purple-950\/50:focus {
  background-color: rgb(59 7 100 / 0.5);
}
.focus\:bg-purple-950\/60:focus {
  background-color: rgb(59 7 100 / 0.6);
}
.focus\:bg-purple-950\/70:focus {
  background-color: rgb(59 7 100 / 0.7);
}
.focus\:bg-purple-950\/80:focus {
  background-color: rgb(59 7 100 / 0.8);
}
.focus\:bg-purple-950\/90:focus {
  background-color: rgb(59 7 100 / 0.9);
}
.focus\:bg-red-100:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}
.focus\:bg-red-100\/10:focus {
  background-color: rgb(254 226 226 / 0.1);
}
.focus\:bg-red-100\/20:focus {
  background-color: rgb(254 226 226 / 0.2);
}
.focus\:bg-red-100\/30:focus {
  background-color: rgb(254 226 226 / 0.3);
}
.focus\:bg-red-100\/40:focus {
  background-color: rgb(254 226 226 / 0.4);
}
.focus\:bg-red-100\/5:focus {
  background-color: rgb(254 226 226 / 0.05);
}
.focus\:bg-red-100\/50:focus {
  background-color: rgb(254 226 226 / 0.5);
}
.focus\:bg-red-100\/60:focus {
  background-color: rgb(254 226 226 / 0.6);
}
.focus\:bg-red-100\/70:focus {
  background-color: rgb(254 226 226 / 0.7);
}
.focus\:bg-red-100\/80:focus {
  background-color: rgb(254 226 226 / 0.8);
}
.focus\:bg-red-100\/90:focus {
  background-color: rgb(254 226 226 / 0.9);
}
.focus\:bg-red-200:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(254 202 202 / var(--tw-bg-opacity, 1));
}
.focus\:bg-red-200\/10:focus {
  background-color: rgb(254 202 202 / 0.1);
}
.focus\:bg-red-200\/20:focus {
  background-color: rgb(254 202 202 / 0.2);
}
.focus\:bg-red-200\/30:focus {
  background-color: rgb(254 202 202 / 0.3);
}
.focus\:bg-red-200\/40:focus {
  background-color: rgb(254 202 202 / 0.4);
}
.focus\:bg-red-200\/5:focus {
  background-color: rgb(254 202 202 / 0.05);
}
.focus\:bg-red-200\/50:focus {
  background-color: rgb(254 202 202 / 0.5);
}
.focus\:bg-red-200\/60:focus {
  background-color: rgb(254 202 202 / 0.6);
}
.focus\:bg-red-200\/70:focus {
  background-color: rgb(254 202 202 / 0.7);
}
.focus\:bg-red-200\/80:focus {
  background-color: rgb(254 202 202 / 0.8);
}
.focus\:bg-red-200\/90:focus {
  background-color: rgb(254 202 202 / 0.9);
}
.focus\:bg-red-300:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(252 165 165 / var(--tw-bg-opacity, 1));
}
.focus\:bg-red-300\/10:focus {
  background-color: rgb(252 165 165 / 0.1);
}
.focus\:bg-red-300\/20:focus {
  background-color: rgb(252 165 165 / 0.2);
}
.focus\:bg-red-300\/30:focus {
  background-color: rgb(252 165 165 / 0.3);
}
.focus\:bg-red-300\/40:focus {
  background-color: rgb(252 165 165 / 0.4);
}
.focus\:bg-red-300\/5:focus {
  background-color: rgb(252 165 165 / 0.05);
}
.focus\:bg-red-300\/50:focus {
  background-color: rgb(252 165 165 / 0.5);
}
.focus\:bg-red-300\/60:focus {
  background-color: rgb(252 165 165 / 0.6);
}
.focus\:bg-red-300\/70:focus {
  background-color: rgb(252 165 165 / 0.7);
}
.focus\:bg-red-300\/80:focus {
  background-color: rgb(252 165 165 / 0.8);
}
.focus\:bg-red-300\/90:focus {
  background-color: rgb(252 165 165 / 0.9);
}
.focus\:bg-red-400:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(248 113 113 / var(--tw-bg-opacity, 1));
}
.focus\:bg-red-400\/10:focus {
  background-color: rgb(248 113 113 / 0.1);
}
.focus\:bg-red-400\/20:focus {
  background-color: rgb(248 113 113 / 0.2);
}
.focus\:bg-red-400\/30:focus {
  background-color: rgb(248 113 113 / 0.3);
}
.focus\:bg-red-400\/40:focus {
  background-color: rgb(248 113 113 / 0.4);
}
.focus\:bg-red-400\/5:focus {
  background-color: rgb(248 113 113 / 0.05);
}
.focus\:bg-red-400\/50:focus {
  background-color: rgb(248 113 113 / 0.5);
}
.focus\:bg-red-400\/60:focus {
  background-color: rgb(248 113 113 / 0.6);
}
.focus\:bg-red-400\/70:focus {
  background-color: rgb(248 113 113 / 0.7);
}
.focus\:bg-red-400\/80:focus {
  background-color: rgb(248 113 113 / 0.8);
}
.focus\:bg-red-400\/90:focus {
  background-color: rgb(248 113 113 / 0.9);
}
.focus\:bg-red-50:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}
.focus\:bg-red-50\/10:focus {
  background-color: rgb(254 242 242 / 0.1);
}
.focus\:bg-red-50\/20:focus {
  background-color: rgb(254 242 242 / 0.2);
}
.focus\:bg-red-50\/30:focus {
  background-color: rgb(254 242 242 / 0.3);
}
.focus\:bg-red-50\/40:focus {
  background-color: rgb(254 242 242 / 0.4);
}
.focus\:bg-red-50\/5:focus {
  background-color: rgb(254 242 242 / 0.05);
}
.focus\:bg-red-50\/50:focus {
  background-color: rgb(254 242 242 / 0.5);
}
.focus\:bg-red-50\/60:focus {
  background-color: rgb(254 242 242 / 0.6);
}
.focus\:bg-red-50\/70:focus {
  background-color: rgb(254 242 242 / 0.7);
}
.focus\:bg-red-50\/80:focus {
  background-color: rgb(254 242 242 / 0.8);
}
.focus\:bg-red-50\/90:focus {
  background-color: rgb(254 242 242 / 0.9);
}
.focus\:bg-red-500:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}
.focus\:bg-red-500\/10:focus {
  background-color: rgb(239 68 68 / 0.1);
}
.focus\:bg-red-500\/20:focus {
  background-color: rgb(239 68 68 / 0.2);
}
.focus\:bg-red-500\/30:focus {
  background-color: rgb(239 68 68 / 0.3);
}
.focus\:bg-red-500\/40:focus {
  background-color: rgb(239 68 68 / 0.4);
}
.focus\:bg-red-500\/5:focus {
  background-color: rgb(239 68 68 / 0.05);
}
.focus\:bg-red-500\/50:focus {
  background-color: rgb(239 68 68 / 0.5);
}
.focus\:bg-red-500\/60:focus {
  background-color: rgb(239 68 68 / 0.6);
}
.focus\:bg-red-500\/70:focus {
  background-color: rgb(239 68 68 / 0.7);
}
.focus\:bg-red-500\/80:focus {
  background-color: rgb(239 68 68 / 0.8);
}
.focus\:bg-red-500\/90:focus {
  background-color: rgb(239 68 68 / 0.9);
}
.focus\:bg-red-600:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}
.focus\:bg-red-600\/10:focus {
  background-color: rgb(220 38 38 / 0.1);
}
.focus\:bg-red-600\/20:focus {
  background-color: rgb(220 38 38 / 0.2);
}
.focus\:bg-red-600\/30:focus {
  background-color: rgb(220 38 38 / 0.3);
}
.focus\:bg-red-600\/40:focus {
  background-color: rgb(220 38 38 / 0.4);
}
.focus\:bg-red-600\/5:focus {
  background-color: rgb(220 38 38 / 0.05);
}
.focus\:bg-red-600\/50:focus {
  background-color: rgb(220 38 38 / 0.5);
}
.focus\:bg-red-600\/60:focus {
  background-color: rgb(220 38 38 / 0.6);
}
.focus\:bg-red-600\/70:focus {
  background-color: rgb(220 38 38 / 0.7);
}
.focus\:bg-red-600\/80:focus {
  background-color: rgb(220 38 38 / 0.8);
}
.focus\:bg-red-600\/90:focus {
  background-color: rgb(220 38 38 / 0.9);
}
.focus\:bg-red-700:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
}
.focus\:bg-red-700\/10:focus {
  background-color: rgb(185 28 28 / 0.1);
}
.focus\:bg-red-700\/20:focus {
  background-color: rgb(185 28 28 / 0.2);
}
.focus\:bg-red-700\/30:focus {
  background-color: rgb(185 28 28 / 0.3);
}
.focus\:bg-red-700\/40:focus {
  background-color: rgb(185 28 28 / 0.4);
}
.focus\:bg-red-700\/5:focus {
  background-color: rgb(185 28 28 / 0.05);
}
.focus\:bg-red-700\/50:focus {
  background-color: rgb(185 28 28 / 0.5);
}
.focus\:bg-red-700\/60:focus {
  background-color: rgb(185 28 28 / 0.6);
}
.focus\:bg-red-700\/70:focus {
  background-color: rgb(185 28 28 / 0.7);
}
.focus\:bg-red-700\/80:focus {
  background-color: rgb(185 28 28 / 0.8);
}
.focus\:bg-red-700\/90:focus {
  background-color: rgb(185 28 28 / 0.9);
}
.focus\:bg-red-800:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(153 27 27 / var(--tw-bg-opacity, 1));
}
.focus\:bg-red-800\/10:focus {
  background-color: rgb(153 27 27 / 0.1);
}
.focus\:bg-red-800\/20:focus {
  background-color: rgb(153 27 27 / 0.2);
}
.focus\:bg-red-800\/30:focus {
  background-color: rgb(153 27 27 / 0.3);
}
.focus\:bg-red-800\/40:focus {
  background-color: rgb(153 27 27 / 0.4);
}
.focus\:bg-red-800\/5:focus {
  background-color: rgb(153 27 27 / 0.05);
}
.focus\:bg-red-800\/50:focus {
  background-color: rgb(153 27 27 / 0.5);
}
.focus\:bg-red-800\/60:focus {
  background-color: rgb(153 27 27 / 0.6);
}
.focus\:bg-red-800\/70:focus {
  background-color: rgb(153 27 27 / 0.7);
}
.focus\:bg-red-800\/80:focus {
  background-color: rgb(153 27 27 / 0.8);
}
.focus\:bg-red-800\/90:focus {
  background-color: rgb(153 27 27 / 0.9);
}
.focus\:bg-red-900:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(127 29 29 / var(--tw-bg-opacity, 1));
}
.focus\:bg-red-900\/10:focus {
  background-color: rgb(127 29 29 / 0.1);
}
.focus\:bg-red-900\/20:focus {
  background-color: rgb(127 29 29 / 0.2);
}
.focus\:bg-red-900\/30:focus {
  background-color: rgb(127 29 29 / 0.3);
}
.focus\:bg-red-900\/40:focus {
  background-color: rgb(127 29 29 / 0.4);
}
.focus\:bg-red-900\/5:focus {
  background-color: rgb(127 29 29 / 0.05);
}
.focus\:bg-red-900\/50:focus {
  background-color: rgb(127 29 29 / 0.5);
}
.focus\:bg-red-900\/60:focus {
  background-color: rgb(127 29 29 / 0.6);
}
.focus\:bg-red-900\/70:focus {
  background-color: rgb(127 29 29 / 0.7);
}
.focus\:bg-red-900\/80:focus {
  background-color: rgb(127 29 29 / 0.8);
}
.focus\:bg-red-900\/90:focus {
  background-color: rgb(127 29 29 / 0.9);
}
.focus\:bg-red-950:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(69 10 10 / var(--tw-bg-opacity, 1));
}
.focus\:bg-red-950\/10:focus {
  background-color: rgb(69 10 10 / 0.1);
}
.focus\:bg-red-950\/20:focus {
  background-color: rgb(69 10 10 / 0.2);
}
.focus\:bg-red-950\/30:focus {
  background-color: rgb(69 10 10 / 0.3);
}
.focus\:bg-red-950\/40:focus {
  background-color: rgb(69 10 10 / 0.4);
}
.focus\:bg-red-950\/5:focus {
  background-color: rgb(69 10 10 / 0.05);
}
.focus\:bg-red-950\/50:focus {
  background-color: rgb(69 10 10 / 0.5);
}
.focus\:bg-red-950\/60:focus {
  background-color: rgb(69 10 10 / 0.6);
}
.focus\:bg-red-950\/70:focus {
  background-color: rgb(69 10 10 / 0.7);
}
.focus\:bg-red-950\/80:focus {
  background-color: rgb(69 10 10 / 0.8);
}
.focus\:bg-red-950\/90:focus {
  background-color: rgb(69 10 10 / 0.9);
}
.focus\:bg-rose-100:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(255 228 230 / var(--tw-bg-opacity, 1));
}
.focus\:bg-rose-100\/10:focus {
  background-color: rgb(255 228 230 / 0.1);
}
.focus\:bg-rose-100\/20:focus {
  background-color: rgb(255 228 230 / 0.2);
}
.focus\:bg-rose-100\/30:focus {
  background-color: rgb(255 228 230 / 0.3);
}
.focus\:bg-rose-100\/40:focus {
  background-color: rgb(255 228 230 / 0.4);
}
.focus\:bg-rose-100\/5:focus {
  background-color: rgb(255 228 230 / 0.05);
}
.focus\:bg-rose-100\/50:focus {
  background-color: rgb(255 228 230 / 0.5);
}
.focus\:bg-rose-100\/60:focus {
  background-color: rgb(255 228 230 / 0.6);
}
.focus\:bg-rose-100\/70:focus {
  background-color: rgb(255 228 230 / 0.7);
}
.focus\:bg-rose-100\/80:focus {
  background-color: rgb(255 228 230 / 0.8);
}
.focus\:bg-rose-100\/90:focus {
  background-color: rgb(255 228 230 / 0.9);
}
.focus\:bg-rose-200:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(254 205 211 / var(--tw-bg-opacity, 1));
}
.focus\:bg-rose-200\/10:focus {
  background-color: rgb(254 205 211 / 0.1);
}
.focus\:bg-rose-200\/20:focus {
  background-color: rgb(254 205 211 / 0.2);
}
.focus\:bg-rose-200\/30:focus {
  background-color: rgb(254 205 211 / 0.3);
}
.focus\:bg-rose-200\/40:focus {
  background-color: rgb(254 205 211 / 0.4);
}
.focus\:bg-rose-200\/5:focus {
  background-color: rgb(254 205 211 / 0.05);
}
.focus\:bg-rose-200\/50:focus {
  background-color: rgb(254 205 211 / 0.5);
}
.focus\:bg-rose-200\/60:focus {
  background-color: rgb(254 205 211 / 0.6);
}
.focus\:bg-rose-200\/70:focus {
  background-color: rgb(254 205 211 / 0.7);
}
.focus\:bg-rose-200\/80:focus {
  background-color: rgb(254 205 211 / 0.8);
}
.focus\:bg-rose-200\/90:focus {
  background-color: rgb(254 205 211 / 0.9);
}
.focus\:bg-rose-300:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(253 164 175 / var(--tw-bg-opacity, 1));
}
.focus\:bg-rose-300\/10:focus {
  background-color: rgb(253 164 175 / 0.1);
}
.focus\:bg-rose-300\/20:focus {
  background-color: rgb(253 164 175 / 0.2);
}
.focus\:bg-rose-300\/30:focus {
  background-color: rgb(253 164 175 / 0.3);
}
.focus\:bg-rose-300\/40:focus {
  background-color: rgb(253 164 175 / 0.4);
}
.focus\:bg-rose-300\/5:focus {
  background-color: rgb(253 164 175 / 0.05);
}
.focus\:bg-rose-300\/50:focus {
  background-color: rgb(253 164 175 / 0.5);
}
.focus\:bg-rose-300\/60:focus {
  background-color: rgb(253 164 175 / 0.6);
}
.focus\:bg-rose-300\/70:focus {
  background-color: rgb(253 164 175 / 0.7);
}
.focus\:bg-rose-300\/80:focus {
  background-color: rgb(253 164 175 / 0.8);
}
.focus\:bg-rose-300\/90:focus {
  background-color: rgb(253 164 175 / 0.9);
}
.focus\:bg-rose-400:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(251 113 133 / var(--tw-bg-opacity, 1));
}
.focus\:bg-rose-400\/10:focus {
  background-color: rgb(251 113 133 / 0.1);
}
.focus\:bg-rose-400\/20:focus {
  background-color: rgb(251 113 133 / 0.2);
}
.focus\:bg-rose-400\/30:focus {
  background-color: rgb(251 113 133 / 0.3);
}
.focus\:bg-rose-400\/40:focus {
  background-color: rgb(251 113 133 / 0.4);
}
.focus\:bg-rose-400\/5:focus {
  background-color: rgb(251 113 133 / 0.05);
}
.focus\:bg-rose-400\/50:focus {
  background-color: rgb(251 113 133 / 0.5);
}
.focus\:bg-rose-400\/60:focus {
  background-color: rgb(251 113 133 / 0.6);
}
.focus\:bg-rose-400\/70:focus {
  background-color: rgb(251 113 133 / 0.7);
}
.focus\:bg-rose-400\/80:focus {
  background-color: rgb(251 113 133 / 0.8);
}
.focus\:bg-rose-400\/90:focus {
  background-color: rgb(251 113 133 / 0.9);
}
.focus\:bg-rose-50:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(255 241 242 / var(--tw-bg-opacity, 1));
}
.focus\:bg-rose-50\/10:focus {
  background-color: rgb(255 241 242 / 0.1);
}
.focus\:bg-rose-50\/20:focus {
  background-color: rgb(255 241 242 / 0.2);
}
.focus\:bg-rose-50\/30:focus {
  background-color: rgb(255 241 242 / 0.3);
}
.focus\:bg-rose-50\/40:focus {
  background-color: rgb(255 241 242 / 0.4);
}
.focus\:bg-rose-50\/5:focus {
  background-color: rgb(255 241 242 / 0.05);
}
.focus\:bg-rose-50\/50:focus {
  background-color: rgb(255 241 242 / 0.5);
}
.focus\:bg-rose-50\/60:focus {
  background-color: rgb(255 241 242 / 0.6);
}
.focus\:bg-rose-50\/70:focus {
  background-color: rgb(255 241 242 / 0.7);
}
.focus\:bg-rose-50\/80:focus {
  background-color: rgb(255 241 242 / 0.8);
}
.focus\:bg-rose-50\/90:focus {
  background-color: rgb(255 241 242 / 0.9);
}
.focus\:bg-rose-500:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(244 63 94 / var(--tw-bg-opacity, 1));
}
.focus\:bg-rose-500\/10:focus {
  background-color: rgb(244 63 94 / 0.1);
}
.focus\:bg-rose-500\/20:focus {
  background-color: rgb(244 63 94 / 0.2);
}
.focus\:bg-rose-500\/30:focus {
  background-color: rgb(244 63 94 / 0.3);
}
.focus\:bg-rose-500\/40:focus {
  background-color: rgb(244 63 94 / 0.4);
}
.focus\:bg-rose-500\/5:focus {
  background-color: rgb(244 63 94 / 0.05);
}
.focus\:bg-rose-500\/50:focus {
  background-color: rgb(244 63 94 / 0.5);
}
.focus\:bg-rose-500\/60:focus {
  background-color: rgb(244 63 94 / 0.6);
}
.focus\:bg-rose-500\/70:focus {
  background-color: rgb(244 63 94 / 0.7);
}
.focus\:bg-rose-500\/80:focus {
  background-color: rgb(244 63 94 / 0.8);
}
.focus\:bg-rose-500\/90:focus {
  background-color: rgb(244 63 94 / 0.9);
}
.focus\:bg-rose-600:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(225 29 72 / var(--tw-bg-opacity, 1));
}
.focus\:bg-rose-600\/10:focus {
  background-color: rgb(225 29 72 / 0.1);
}
.focus\:bg-rose-600\/20:focus {
  background-color: rgb(225 29 72 / 0.2);
}
.focus\:bg-rose-600\/30:focus {
  background-color: rgb(225 29 72 / 0.3);
}
.focus\:bg-rose-600\/40:focus {
  background-color: rgb(225 29 72 / 0.4);
}
.focus\:bg-rose-600\/5:focus {
  background-color: rgb(225 29 72 / 0.05);
}
.focus\:bg-rose-600\/50:focus {
  background-color: rgb(225 29 72 / 0.5);
}
.focus\:bg-rose-600\/60:focus {
  background-color: rgb(225 29 72 / 0.6);
}
.focus\:bg-rose-600\/70:focus {
  background-color: rgb(225 29 72 / 0.7);
}
.focus\:bg-rose-600\/80:focus {
  background-color: rgb(225 29 72 / 0.8);
}
.focus\:bg-rose-600\/90:focus {
  background-color: rgb(225 29 72 / 0.9);
}
.focus\:bg-rose-700:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(190 18 60 / var(--tw-bg-opacity, 1));
}
.focus\:bg-rose-700\/10:focus {
  background-color: rgb(190 18 60 / 0.1);
}
.focus\:bg-rose-700\/20:focus {
  background-color: rgb(190 18 60 / 0.2);
}
.focus\:bg-rose-700\/30:focus {
  background-color: rgb(190 18 60 / 0.3);
}
.focus\:bg-rose-700\/40:focus {
  background-color: rgb(190 18 60 / 0.4);
}
.focus\:bg-rose-700\/5:focus {
  background-color: rgb(190 18 60 / 0.05);
}
.focus\:bg-rose-700\/50:focus {
  background-color: rgb(190 18 60 / 0.5);
}
.focus\:bg-rose-700\/60:focus {
  background-color: rgb(190 18 60 / 0.6);
}
.focus\:bg-rose-700\/70:focus {
  background-color: rgb(190 18 60 / 0.7);
}
.focus\:bg-rose-700\/80:focus {
  background-color: rgb(190 18 60 / 0.8);
}
.focus\:bg-rose-700\/90:focus {
  background-color: rgb(190 18 60 / 0.9);
}
.focus\:bg-rose-800:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(159 18 57 / var(--tw-bg-opacity, 1));
}
.focus\:bg-rose-800\/10:focus {
  background-color: rgb(159 18 57 / 0.1);
}
.focus\:bg-rose-800\/20:focus {
  background-color: rgb(159 18 57 / 0.2);
}
.focus\:bg-rose-800\/30:focus {
  background-color: rgb(159 18 57 / 0.3);
}
.focus\:bg-rose-800\/40:focus {
  background-color: rgb(159 18 57 / 0.4);
}
.focus\:bg-rose-800\/5:focus {
  background-color: rgb(159 18 57 / 0.05);
}
.focus\:bg-rose-800\/50:focus {
  background-color: rgb(159 18 57 / 0.5);
}
.focus\:bg-rose-800\/60:focus {
  background-color: rgb(159 18 57 / 0.6);
}
.focus\:bg-rose-800\/70:focus {
  background-color: rgb(159 18 57 / 0.7);
}
.focus\:bg-rose-800\/80:focus {
  background-color: rgb(159 18 57 / 0.8);
}
.focus\:bg-rose-800\/90:focus {
  background-color: rgb(159 18 57 / 0.9);
}
.focus\:bg-rose-900:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(136 19 55 / var(--tw-bg-opacity, 1));
}
.focus\:bg-rose-900\/10:focus {
  background-color: rgb(136 19 55 / 0.1);
}
.focus\:bg-rose-900\/20:focus {
  background-color: rgb(136 19 55 / 0.2);
}
.focus\:bg-rose-900\/30:focus {
  background-color: rgb(136 19 55 / 0.3);
}
.focus\:bg-rose-900\/40:focus {
  background-color: rgb(136 19 55 / 0.4);
}
.focus\:bg-rose-900\/5:focus {
  background-color: rgb(136 19 55 / 0.05);
}
.focus\:bg-rose-900\/50:focus {
  background-color: rgb(136 19 55 / 0.5);
}
.focus\:bg-rose-900\/60:focus {
  background-color: rgb(136 19 55 / 0.6);
}
.focus\:bg-rose-900\/70:focus {
  background-color: rgb(136 19 55 / 0.7);
}
.focus\:bg-rose-900\/80:focus {
  background-color: rgb(136 19 55 / 0.8);
}
.focus\:bg-rose-900\/90:focus {
  background-color: rgb(136 19 55 / 0.9);
}
.focus\:bg-rose-950:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(76 5 25 / var(--tw-bg-opacity, 1));
}
.focus\:bg-rose-950\/10:focus {
  background-color: rgb(76 5 25 / 0.1);
}
.focus\:bg-rose-950\/20:focus {
  background-color: rgb(76 5 25 / 0.2);
}
.focus\:bg-rose-950\/30:focus {
  background-color: rgb(76 5 25 / 0.3);
}
.focus\:bg-rose-950\/40:focus {
  background-color: rgb(76 5 25 / 0.4);
}
.focus\:bg-rose-950\/5:focus {
  background-color: rgb(76 5 25 / 0.05);
}
.focus\:bg-rose-950\/50:focus {
  background-color: rgb(76 5 25 / 0.5);
}
.focus\:bg-rose-950\/60:focus {
  background-color: rgb(76 5 25 / 0.6);
}
.focus\:bg-rose-950\/70:focus {
  background-color: rgb(76 5 25 / 0.7);
}
.focus\:bg-rose-950\/80:focus {
  background-color: rgb(76 5 25 / 0.8);
}
.focus\:bg-rose-950\/90:focus {
  background-color: rgb(76 5 25 / 0.9);
}
.focus\:bg-sky-100:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(224 242 254 / var(--tw-bg-opacity, 1));
}
.focus\:bg-sky-100\/10:focus {
  background-color: rgb(224 242 254 / 0.1);
}
.focus\:bg-sky-100\/20:focus {
  background-color: rgb(224 242 254 / 0.2);
}
.focus\:bg-sky-100\/30:focus {
  background-color: rgb(224 242 254 / 0.3);
}
.focus\:bg-sky-100\/40:focus {
  background-color: rgb(224 242 254 / 0.4);
}
.focus\:bg-sky-100\/5:focus {
  background-color: rgb(224 242 254 / 0.05);
}
.focus\:bg-sky-100\/50:focus {
  background-color: rgb(224 242 254 / 0.5);
}
.focus\:bg-sky-100\/60:focus {
  background-color: rgb(224 242 254 / 0.6);
}
.focus\:bg-sky-100\/70:focus {
  background-color: rgb(224 242 254 / 0.7);
}
.focus\:bg-sky-100\/80:focus {
  background-color: rgb(224 242 254 / 0.8);
}
.focus\:bg-sky-100\/90:focus {
  background-color: rgb(224 242 254 / 0.9);
}
.focus\:bg-sky-200:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(186 230 253 / var(--tw-bg-opacity, 1));
}
.focus\:bg-sky-200\/10:focus {
  background-color: rgb(186 230 253 / 0.1);
}
.focus\:bg-sky-200\/20:focus {
  background-color: rgb(186 230 253 / 0.2);
}
.focus\:bg-sky-200\/30:focus {
  background-color: rgb(186 230 253 / 0.3);
}
.focus\:bg-sky-200\/40:focus {
  background-color: rgb(186 230 253 / 0.4);
}
.focus\:bg-sky-200\/5:focus {
  background-color: rgb(186 230 253 / 0.05);
}
.focus\:bg-sky-200\/50:focus {
  background-color: rgb(186 230 253 / 0.5);
}
.focus\:bg-sky-200\/60:focus {
  background-color: rgb(186 230 253 / 0.6);
}
.focus\:bg-sky-200\/70:focus {
  background-color: rgb(186 230 253 / 0.7);
}
.focus\:bg-sky-200\/80:focus {
  background-color: rgb(186 230 253 / 0.8);
}
.focus\:bg-sky-200\/90:focus {
  background-color: rgb(186 230 253 / 0.9);
}
.focus\:bg-sky-300:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(125 211 252 / var(--tw-bg-opacity, 1));
}
.focus\:bg-sky-300\/10:focus {
  background-color: rgb(125 211 252 / 0.1);
}
.focus\:bg-sky-300\/20:focus {
  background-color: rgb(125 211 252 / 0.2);
}
.focus\:bg-sky-300\/30:focus {
  background-color: rgb(125 211 252 / 0.3);
}
.focus\:bg-sky-300\/40:focus {
  background-color: rgb(125 211 252 / 0.4);
}
.focus\:bg-sky-300\/5:focus {
  background-color: rgb(125 211 252 / 0.05);
}
.focus\:bg-sky-300\/50:focus {
  background-color: rgb(125 211 252 / 0.5);
}
.focus\:bg-sky-300\/60:focus {
  background-color: rgb(125 211 252 / 0.6);
}
.focus\:bg-sky-300\/70:focus {
  background-color: rgb(125 211 252 / 0.7);
}
.focus\:bg-sky-300\/80:focus {
  background-color: rgb(125 211 252 / 0.8);
}
.focus\:bg-sky-300\/90:focus {
  background-color: rgb(125 211 252 / 0.9);
}
.focus\:bg-sky-400:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(56 189 248 / var(--tw-bg-opacity, 1));
}
.focus\:bg-sky-400\/10:focus {
  background-color: rgb(56 189 248 / 0.1);
}
.focus\:bg-sky-400\/20:focus {
  background-color: rgb(56 189 248 / 0.2);
}
.focus\:bg-sky-400\/30:focus {
  background-color: rgb(56 189 248 / 0.3);
}
.focus\:bg-sky-400\/40:focus {
  background-color: rgb(56 189 248 / 0.4);
}
.focus\:bg-sky-400\/5:focus {
  background-color: rgb(56 189 248 / 0.05);
}
.focus\:bg-sky-400\/50:focus {
  background-color: rgb(56 189 248 / 0.5);
}
.focus\:bg-sky-400\/60:focus {
  background-color: rgb(56 189 248 / 0.6);
}
.focus\:bg-sky-400\/70:focus {
  background-color: rgb(56 189 248 / 0.7);
}
.focus\:bg-sky-400\/80:focus {
  background-color: rgb(56 189 248 / 0.8);
}
.focus\:bg-sky-400\/90:focus {
  background-color: rgb(56 189 248 / 0.9);
}
.focus\:bg-sky-50:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(240 249 255 / var(--tw-bg-opacity, 1));
}
.focus\:bg-sky-50\/10:focus {
  background-color: rgb(240 249 255 / 0.1);
}
.focus\:bg-sky-50\/20:focus {
  background-color: rgb(240 249 255 / 0.2);
}
.focus\:bg-sky-50\/30:focus {
  background-color: rgb(240 249 255 / 0.3);
}
.focus\:bg-sky-50\/40:focus {
  background-color: rgb(240 249 255 / 0.4);
}
.focus\:bg-sky-50\/5:focus {
  background-color: rgb(240 249 255 / 0.05);
}
.focus\:bg-sky-50\/50:focus {
  background-color: rgb(240 249 255 / 0.5);
}
.focus\:bg-sky-50\/60:focus {
  background-color: rgb(240 249 255 / 0.6);
}
.focus\:bg-sky-50\/70:focus {
  background-color: rgb(240 249 255 / 0.7);
}
.focus\:bg-sky-50\/80:focus {
  background-color: rgb(240 249 255 / 0.8);
}
.focus\:bg-sky-50\/90:focus {
  background-color: rgb(240 249 255 / 0.9);
}
.focus\:bg-sky-500:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(14 165 233 / var(--tw-bg-opacity, 1));
}
.focus\:bg-sky-500\/10:focus {
  background-color: rgb(14 165 233 / 0.1);
}
.focus\:bg-sky-500\/20:focus {
  background-color: rgb(14 165 233 / 0.2);
}
.focus\:bg-sky-500\/30:focus {
  background-color: rgb(14 165 233 / 0.3);
}
.focus\:bg-sky-500\/40:focus {
  background-color: rgb(14 165 233 / 0.4);
}
.focus\:bg-sky-500\/5:focus {
  background-color: rgb(14 165 233 / 0.05);
}
.focus\:bg-sky-500\/50:focus {
  background-color: rgb(14 165 233 / 0.5);
}
.focus\:bg-sky-500\/60:focus {
  background-color: rgb(14 165 233 / 0.6);
}
.focus\:bg-sky-500\/70:focus {
  background-color: rgb(14 165 233 / 0.7);
}
.focus\:bg-sky-500\/80:focus {
  background-color: rgb(14 165 233 / 0.8);
}
.focus\:bg-sky-500\/90:focus {
  background-color: rgb(14 165 233 / 0.9);
}
.focus\:bg-sky-600:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(2 132 199 / var(--tw-bg-opacity, 1));
}
.focus\:bg-sky-600\/10:focus {
  background-color: rgb(2 132 199 / 0.1);
}
.focus\:bg-sky-600\/20:focus {
  background-color: rgb(2 132 199 / 0.2);
}
.focus\:bg-sky-600\/30:focus {
  background-color: rgb(2 132 199 / 0.3);
}
.focus\:bg-sky-600\/40:focus {
  background-color: rgb(2 132 199 / 0.4);
}
.focus\:bg-sky-600\/5:focus {
  background-color: rgb(2 132 199 / 0.05);
}
.focus\:bg-sky-600\/50:focus {
  background-color: rgb(2 132 199 / 0.5);
}
.focus\:bg-sky-600\/60:focus {
  background-color: rgb(2 132 199 / 0.6);
}
.focus\:bg-sky-600\/70:focus {
  background-color: rgb(2 132 199 / 0.7);
}
.focus\:bg-sky-600\/80:focus {
  background-color: rgb(2 132 199 / 0.8);
}
.focus\:bg-sky-600\/90:focus {
  background-color: rgb(2 132 199 / 0.9);
}
.focus\:bg-sky-700:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(3 105 161 / var(--tw-bg-opacity, 1));
}
.focus\:bg-sky-700\/10:focus {
  background-color: rgb(3 105 161 / 0.1);
}
.focus\:bg-sky-700\/20:focus {
  background-color: rgb(3 105 161 / 0.2);
}
.focus\:bg-sky-700\/30:focus {
  background-color: rgb(3 105 161 / 0.3);
}
.focus\:bg-sky-700\/40:focus {
  background-color: rgb(3 105 161 / 0.4);
}
.focus\:bg-sky-700\/5:focus {
  background-color: rgb(3 105 161 / 0.05);
}
.focus\:bg-sky-700\/50:focus {
  background-color: rgb(3 105 161 / 0.5);
}
.focus\:bg-sky-700\/60:focus {
  background-color: rgb(3 105 161 / 0.6);
}
.focus\:bg-sky-700\/70:focus {
  background-color: rgb(3 105 161 / 0.7);
}
.focus\:bg-sky-700\/80:focus {
  background-color: rgb(3 105 161 / 0.8);
}
.focus\:bg-sky-700\/90:focus {
  background-color: rgb(3 105 161 / 0.9);
}
.focus\:bg-sky-800:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(7 89 133 / var(--tw-bg-opacity, 1));
}
.focus\:bg-sky-800\/10:focus {
  background-color: rgb(7 89 133 / 0.1);
}
.focus\:bg-sky-800\/20:focus {
  background-color: rgb(7 89 133 / 0.2);
}
.focus\:bg-sky-800\/30:focus {
  background-color: rgb(7 89 133 / 0.3);
}
.focus\:bg-sky-800\/40:focus {
  background-color: rgb(7 89 133 / 0.4);
}
.focus\:bg-sky-800\/5:focus {
  background-color: rgb(7 89 133 / 0.05);
}
.focus\:bg-sky-800\/50:focus {
  background-color: rgb(7 89 133 / 0.5);
}
.focus\:bg-sky-800\/60:focus {
  background-color: rgb(7 89 133 / 0.6);
}
.focus\:bg-sky-800\/70:focus {
  background-color: rgb(7 89 133 / 0.7);
}
.focus\:bg-sky-800\/80:focus {
  background-color: rgb(7 89 133 / 0.8);
}
.focus\:bg-sky-800\/90:focus {
  background-color: rgb(7 89 133 / 0.9);
}
.focus\:bg-sky-900:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(12 74 110 / var(--tw-bg-opacity, 1));
}
.focus\:bg-sky-900\/10:focus {
  background-color: rgb(12 74 110 / 0.1);
}
.focus\:bg-sky-900\/20:focus {
  background-color: rgb(12 74 110 / 0.2);
}
.focus\:bg-sky-900\/30:focus {
  background-color: rgb(12 74 110 / 0.3);
}
.focus\:bg-sky-900\/40:focus {
  background-color: rgb(12 74 110 / 0.4);
}
.focus\:bg-sky-900\/5:focus {
  background-color: rgb(12 74 110 / 0.05);
}
.focus\:bg-sky-900\/50:focus {
  background-color: rgb(12 74 110 / 0.5);
}
.focus\:bg-sky-900\/60:focus {
  background-color: rgb(12 74 110 / 0.6);
}
.focus\:bg-sky-900\/70:focus {
  background-color: rgb(12 74 110 / 0.7);
}
.focus\:bg-sky-900\/80:focus {
  background-color: rgb(12 74 110 / 0.8);
}
.focus\:bg-sky-900\/90:focus {
  background-color: rgb(12 74 110 / 0.9);
}
.focus\:bg-sky-950:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(8 47 73 / var(--tw-bg-opacity, 1));
}
.focus\:bg-sky-950\/10:focus {
  background-color: rgb(8 47 73 / 0.1);
}
.focus\:bg-sky-950\/20:focus {
  background-color: rgb(8 47 73 / 0.2);
}
.focus\:bg-sky-950\/30:focus {
  background-color: rgb(8 47 73 / 0.3);
}
.focus\:bg-sky-950\/40:focus {
  background-color: rgb(8 47 73 / 0.4);
}
.focus\:bg-sky-950\/5:focus {
  background-color: rgb(8 47 73 / 0.05);
}
.focus\:bg-sky-950\/50:focus {
  background-color: rgb(8 47 73 / 0.5);
}
.focus\:bg-sky-950\/60:focus {
  background-color: rgb(8 47 73 / 0.6);
}
.focus\:bg-sky-950\/70:focus {
  background-color: rgb(8 47 73 / 0.7);
}
.focus\:bg-sky-950\/80:focus {
  background-color: rgb(8 47 73 / 0.8);
}
.focus\:bg-sky-950\/90:focus {
  background-color: rgb(8 47 73 / 0.9);
}
.focus\:bg-slate-100:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
}
.focus\:bg-slate-100\/10:focus {
  background-color: rgb(241 245 249 / 0.1);
}
.focus\:bg-slate-100\/20:focus {
  background-color: rgb(241 245 249 / 0.2);
}
.focus\:bg-slate-100\/30:focus {
  background-color: rgb(241 245 249 / 0.3);
}
.focus\:bg-slate-100\/40:focus {
  background-color: rgb(241 245 249 / 0.4);
}
.focus\:bg-slate-100\/5:focus {
  background-color: rgb(241 245 249 / 0.05);
}
.focus\:bg-slate-100\/50:focus {
  background-color: rgb(241 245 249 / 0.5);
}
.focus\:bg-slate-100\/60:focus {
  background-color: rgb(241 245 249 / 0.6);
}
.focus\:bg-slate-100\/70:focus {
  background-color: rgb(241 245 249 / 0.7);
}
.focus\:bg-slate-100\/80:focus {
  background-color: rgb(241 245 249 / 0.8);
}
.focus\:bg-slate-100\/90:focus {
  background-color: rgb(241 245 249 / 0.9);
}
.focus\:bg-slate-200:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(226 232 240 / var(--tw-bg-opacity, 1));
}
.focus\:bg-slate-200\/10:focus {
  background-color: rgb(226 232 240 / 0.1);
}
.focus\:bg-slate-200\/20:focus {
  background-color: rgb(226 232 240 / 0.2);
}
.focus\:bg-slate-200\/30:focus {
  background-color: rgb(226 232 240 / 0.3);
}
.focus\:bg-slate-200\/40:focus {
  background-color: rgb(226 232 240 / 0.4);
}
.focus\:bg-slate-200\/5:focus {
  background-color: rgb(226 232 240 / 0.05);
}
.focus\:bg-slate-200\/50:focus {
  background-color: rgb(226 232 240 / 0.5);
}
.focus\:bg-slate-200\/60:focus {
  background-color: rgb(226 232 240 / 0.6);
}
.focus\:bg-slate-200\/70:focus {
  background-color: rgb(226 232 240 / 0.7);
}
.focus\:bg-slate-200\/80:focus {
  background-color: rgb(226 232 240 / 0.8);
}
.focus\:bg-slate-200\/90:focus {
  background-color: rgb(226 232 240 / 0.9);
}
.focus\:bg-slate-300:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(203 213 225 / var(--tw-bg-opacity, 1));
}
.focus\:bg-slate-300\/10:focus {
  background-color: rgb(203 213 225 / 0.1);
}
.focus\:bg-slate-300\/20:focus {
  background-color: rgb(203 213 225 / 0.2);
}
.focus\:bg-slate-300\/30:focus {
  background-color: rgb(203 213 225 / 0.3);
}
.focus\:bg-slate-300\/40:focus {
  background-color: rgb(203 213 225 / 0.4);
}
.focus\:bg-slate-300\/5:focus {
  background-color: rgb(203 213 225 / 0.05);
}
.focus\:bg-slate-300\/50:focus {
  background-color: rgb(203 213 225 / 0.5);
}
.focus\:bg-slate-300\/60:focus {
  background-color: rgb(203 213 225 / 0.6);
}
.focus\:bg-slate-300\/70:focus {
  background-color: rgb(203 213 225 / 0.7);
}
.focus\:bg-slate-300\/80:focus {
  background-color: rgb(203 213 225 / 0.8);
}
.focus\:bg-slate-300\/90:focus {
  background-color: rgb(203 213 225 / 0.9);
}
.focus\:bg-slate-400:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(148 163 184 / var(--tw-bg-opacity, 1));
}
.focus\:bg-slate-400\/10:focus {
  background-color: rgb(148 163 184 / 0.1);
}
.focus\:bg-slate-400\/20:focus {
  background-color: rgb(148 163 184 / 0.2);
}
.focus\:bg-slate-400\/30:focus {
  background-color: rgb(148 163 184 / 0.3);
}
.focus\:bg-slate-400\/40:focus {
  background-color: rgb(148 163 184 / 0.4);
}
.focus\:bg-slate-400\/5:focus {
  background-color: rgb(148 163 184 / 0.05);
}
.focus\:bg-slate-400\/50:focus {
  background-color: rgb(148 163 184 / 0.5);
}
.focus\:bg-slate-400\/60:focus {
  background-color: rgb(148 163 184 / 0.6);
}
.focus\:bg-slate-400\/70:focus {
  background-color: rgb(148 163 184 / 0.7);
}
.focus\:bg-slate-400\/80:focus {
  background-color: rgb(148 163 184 / 0.8);
}
.focus\:bg-slate-400\/90:focus {
  background-color: rgb(148 163 184 / 0.9);
}
.focus\:bg-slate-50:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
}
.focus\:bg-slate-50\/10:focus {
  background-color: rgb(248 250 252 / 0.1);
}
.focus\:bg-slate-50\/20:focus {
  background-color: rgb(248 250 252 / 0.2);
}
.focus\:bg-slate-50\/30:focus {
  background-color: rgb(248 250 252 / 0.3);
}
.focus\:bg-slate-50\/40:focus {
  background-color: rgb(248 250 252 / 0.4);
}
.focus\:bg-slate-50\/5:focus {
  background-color: rgb(248 250 252 / 0.05);
}
.focus\:bg-slate-50\/50:focus {
  background-color: rgb(248 250 252 / 0.5);
}
.focus\:bg-slate-50\/60:focus {
  background-color: rgb(248 250 252 / 0.6);
}
.focus\:bg-slate-50\/70:focus {
  background-color: rgb(248 250 252 / 0.7);
}
.focus\:bg-slate-50\/80:focus {
  background-color: rgb(248 250 252 / 0.8);
}
.focus\:bg-slate-50\/90:focus {
  background-color: rgb(248 250 252 / 0.9);
}
.focus\:bg-slate-500:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(100 116 139 / var(--tw-bg-opacity, 1));
}
.focus\:bg-slate-500\/10:focus {
  background-color: rgb(100 116 139 / 0.1);
}
.focus\:bg-slate-500\/20:focus {
  background-color: rgb(100 116 139 / 0.2);
}
.focus\:bg-slate-500\/30:focus {
  background-color: rgb(100 116 139 / 0.3);
}
.focus\:bg-slate-500\/40:focus {
  background-color: rgb(100 116 139 / 0.4);
}
.focus\:bg-slate-500\/5:focus {
  background-color: rgb(100 116 139 / 0.05);
}
.focus\:bg-slate-500\/50:focus {
  background-color: rgb(100 116 139 / 0.5);
}
.focus\:bg-slate-500\/60:focus {
  background-color: rgb(100 116 139 / 0.6);
}
.focus\:bg-slate-500\/70:focus {
  background-color: rgb(100 116 139 / 0.7);
}
.focus\:bg-slate-500\/80:focus {
  background-color: rgb(100 116 139 / 0.8);
}
.focus\:bg-slate-500\/90:focus {
  background-color: rgb(100 116 139 / 0.9);
}
.focus\:bg-slate-600:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(71 85 105 / var(--tw-bg-opacity, 1));
}
.focus\:bg-slate-600\/10:focus {
  background-color: rgb(71 85 105 / 0.1);
}
.focus\:bg-slate-600\/20:focus {
  background-color: rgb(71 85 105 / 0.2);
}
.focus\:bg-slate-600\/30:focus {
  background-color: rgb(71 85 105 / 0.3);
}
.focus\:bg-slate-600\/40:focus {
  background-color: rgb(71 85 105 / 0.4);
}
.focus\:bg-slate-600\/5:focus {
  background-color: rgb(71 85 105 / 0.05);
}
.focus\:bg-slate-600\/50:focus {
  background-color: rgb(71 85 105 / 0.5);
}
.focus\:bg-slate-600\/60:focus {
  background-color: rgb(71 85 105 / 0.6);
}
.focus\:bg-slate-600\/70:focus {
  background-color: rgb(71 85 105 / 0.7);
}
.focus\:bg-slate-600\/80:focus {
  background-color: rgb(71 85 105 / 0.8);
}
.focus\:bg-slate-600\/90:focus {
  background-color: rgb(71 85 105 / 0.9);
}
.focus\:bg-slate-700:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(51 65 85 / var(--tw-bg-opacity, 1));
}
.focus\:bg-slate-700\/10:focus {
  background-color: rgb(51 65 85 / 0.1);
}
.focus\:bg-slate-700\/20:focus {
  background-color: rgb(51 65 85 / 0.2);
}
.focus\:bg-slate-700\/30:focus {
  background-color: rgb(51 65 85 / 0.3);
}
.focus\:bg-slate-700\/40:focus {
  background-color: rgb(51 65 85 / 0.4);
}
.focus\:bg-slate-700\/5:focus {
  background-color: rgb(51 65 85 / 0.05);
}
.focus\:bg-slate-700\/50:focus {
  background-color: rgb(51 65 85 / 0.5);
}
.focus\:bg-slate-700\/60:focus {
  background-color: rgb(51 65 85 / 0.6);
}
.focus\:bg-slate-700\/70:focus {
  background-color: rgb(51 65 85 / 0.7);
}
.focus\:bg-slate-700\/80:focus {
  background-color: rgb(51 65 85 / 0.8);
}
.focus\:bg-slate-700\/90:focus {
  background-color: rgb(51 65 85 / 0.9);
}
.focus\:bg-slate-800:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(30 41 59 / var(--tw-bg-opacity, 1));
}
.focus\:bg-slate-800\/10:focus {
  background-color: rgb(30 41 59 / 0.1);
}
.focus\:bg-slate-800\/20:focus {
  background-color: rgb(30 41 59 / 0.2);
}
.focus\:bg-slate-800\/30:focus {
  background-color: rgb(30 41 59 / 0.3);
}
.focus\:bg-slate-800\/40:focus {
  background-color: rgb(30 41 59 / 0.4);
}
.focus\:bg-slate-800\/5:focus {
  background-color: rgb(30 41 59 / 0.05);
}
.focus\:bg-slate-800\/50:focus {
  background-color: rgb(30 41 59 / 0.5);
}
.focus\:bg-slate-800\/60:focus {
  background-color: rgb(30 41 59 / 0.6);
}
.focus\:bg-slate-800\/70:focus {
  background-color: rgb(30 41 59 / 0.7);
}
.focus\:bg-slate-800\/80:focus {
  background-color: rgb(30 41 59 / 0.8);
}
.focus\:bg-slate-800\/90:focus {
  background-color: rgb(30 41 59 / 0.9);
}
.focus\:bg-slate-900:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(15 23 42 / var(--tw-bg-opacity, 1));
}
.focus\:bg-slate-900\/10:focus {
  background-color: rgb(15 23 42 / 0.1);
}
.focus\:bg-slate-900\/20:focus {
  background-color: rgb(15 23 42 / 0.2);
}
.focus\:bg-slate-900\/30:focus {
  background-color: rgb(15 23 42 / 0.3);
}
.focus\:bg-slate-900\/40:focus {
  background-color: rgb(15 23 42 / 0.4);
}
.focus\:bg-slate-900\/5:focus {
  background-color: rgb(15 23 42 / 0.05);
}
.focus\:bg-slate-900\/50:focus {
  background-color: rgb(15 23 42 / 0.5);
}
.focus\:bg-slate-900\/60:focus {
  background-color: rgb(15 23 42 / 0.6);
}
.focus\:bg-slate-900\/70:focus {
  background-color: rgb(15 23 42 / 0.7);
}
.focus\:bg-slate-900\/80:focus {
  background-color: rgb(15 23 42 / 0.8);
}
.focus\:bg-slate-900\/90:focus {
  background-color: rgb(15 23 42 / 0.9);
}
.focus\:bg-slate-950:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(2 6 23 / var(--tw-bg-opacity, 1));
}
.focus\:bg-slate-950\/10:focus {
  background-color: rgb(2 6 23 / 0.1);
}
.focus\:bg-slate-950\/20:focus {
  background-color: rgb(2 6 23 / 0.2);
}
.focus\:bg-slate-950\/30:focus {
  background-color: rgb(2 6 23 / 0.3);
}
.focus\:bg-slate-950\/40:focus {
  background-color: rgb(2 6 23 / 0.4);
}
.focus\:bg-slate-950\/5:focus {
  background-color: rgb(2 6 23 / 0.05);
}
.focus\:bg-slate-950\/50:focus {
  background-color: rgb(2 6 23 / 0.5);
}
.focus\:bg-slate-950\/60:focus {
  background-color: rgb(2 6 23 / 0.6);
}
.focus\:bg-slate-950\/70:focus {
  background-color: rgb(2 6 23 / 0.7);
}
.focus\:bg-slate-950\/80:focus {
  background-color: rgb(2 6 23 / 0.8);
}
.focus\:bg-slate-950\/90:focus {
  background-color: rgb(2 6 23 / 0.9);
}
.focus\:bg-stone-100:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 244 / var(--tw-bg-opacity, 1));
}
.focus\:bg-stone-100\/10:focus {
  background-color: rgb(245 245 244 / 0.1);
}
.focus\:bg-stone-100\/20:focus {
  background-color: rgb(245 245 244 / 0.2);
}
.focus\:bg-stone-100\/30:focus {
  background-color: rgb(245 245 244 / 0.3);
}
.focus\:bg-stone-100\/40:focus {
  background-color: rgb(245 245 244 / 0.4);
}
.focus\:bg-stone-100\/5:focus {
  background-color: rgb(245 245 244 / 0.05);
}
.focus\:bg-stone-100\/50:focus {
  background-color: rgb(245 245 244 / 0.5);
}
.focus\:bg-stone-100\/60:focus {
  background-color: rgb(245 245 244 / 0.6);
}
.focus\:bg-stone-100\/70:focus {
  background-color: rgb(245 245 244 / 0.7);
}
.focus\:bg-stone-100\/80:focus {
  background-color: rgb(245 245 244 / 0.8);
}
.focus\:bg-stone-100\/90:focus {
  background-color: rgb(245 245 244 / 0.9);
}
.focus\:bg-stone-200:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(231 229 228 / var(--tw-bg-opacity, 1));
}
.focus\:bg-stone-200\/10:focus {
  background-color: rgb(231 229 228 / 0.1);
}
.focus\:bg-stone-200\/20:focus {
  background-color: rgb(231 229 228 / 0.2);
}
.focus\:bg-stone-200\/30:focus {
  background-color: rgb(231 229 228 / 0.3);
}
.focus\:bg-stone-200\/40:focus {
  background-color: rgb(231 229 228 / 0.4);
}
.focus\:bg-stone-200\/5:focus {
  background-color: rgb(231 229 228 / 0.05);
}
.focus\:bg-stone-200\/50:focus {
  background-color: rgb(231 229 228 / 0.5);
}
.focus\:bg-stone-200\/60:focus {
  background-color: rgb(231 229 228 / 0.6);
}
.focus\:bg-stone-200\/70:focus {
  background-color: rgb(231 229 228 / 0.7);
}
.focus\:bg-stone-200\/80:focus {
  background-color: rgb(231 229 228 / 0.8);
}
.focus\:bg-stone-200\/90:focus {
  background-color: rgb(231 229 228 / 0.9);
}
.focus\:bg-stone-300:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(214 211 209 / var(--tw-bg-opacity, 1));
}
.focus\:bg-stone-300\/10:focus {
  background-color: rgb(214 211 209 / 0.1);
}
.focus\:bg-stone-300\/20:focus {
  background-color: rgb(214 211 209 / 0.2);
}
.focus\:bg-stone-300\/30:focus {
  background-color: rgb(214 211 209 / 0.3);
}
.focus\:bg-stone-300\/40:focus {
  background-color: rgb(214 211 209 / 0.4);
}
.focus\:bg-stone-300\/5:focus {
  background-color: rgb(214 211 209 / 0.05);
}
.focus\:bg-stone-300\/50:focus {
  background-color: rgb(214 211 209 / 0.5);
}
.focus\:bg-stone-300\/60:focus {
  background-color: rgb(214 211 209 / 0.6);
}
.focus\:bg-stone-300\/70:focus {
  background-color: rgb(214 211 209 / 0.7);
}
.focus\:bg-stone-300\/80:focus {
  background-color: rgb(214 211 209 / 0.8);
}
.focus\:bg-stone-300\/90:focus {
  background-color: rgb(214 211 209 / 0.9);
}
.focus\:bg-stone-400:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(168 162 158 / var(--tw-bg-opacity, 1));
}
.focus\:bg-stone-400\/10:focus {
  background-color: rgb(168 162 158 / 0.1);
}
.focus\:bg-stone-400\/20:focus {
  background-color: rgb(168 162 158 / 0.2);
}
.focus\:bg-stone-400\/30:focus {
  background-color: rgb(168 162 158 / 0.3);
}
.focus\:bg-stone-400\/40:focus {
  background-color: rgb(168 162 158 / 0.4);
}
.focus\:bg-stone-400\/5:focus {
  background-color: rgb(168 162 158 / 0.05);
}
.focus\:bg-stone-400\/50:focus {
  background-color: rgb(168 162 158 / 0.5);
}
.focus\:bg-stone-400\/60:focus {
  background-color: rgb(168 162 158 / 0.6);
}
.focus\:bg-stone-400\/70:focus {
  background-color: rgb(168 162 158 / 0.7);
}
.focus\:bg-stone-400\/80:focus {
  background-color: rgb(168 162 158 / 0.8);
}
.focus\:bg-stone-400\/90:focus {
  background-color: rgb(168 162 158 / 0.9);
}
.focus\:bg-stone-50:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 249 / var(--tw-bg-opacity, 1));
}
.focus\:bg-stone-50\/10:focus {
  background-color: rgb(250 250 249 / 0.1);
}
.focus\:bg-stone-50\/20:focus {
  background-color: rgb(250 250 249 / 0.2);
}
.focus\:bg-stone-50\/30:focus {
  background-color: rgb(250 250 249 / 0.3);
}
.focus\:bg-stone-50\/40:focus {
  background-color: rgb(250 250 249 / 0.4);
}
.focus\:bg-stone-50\/5:focus {
  background-color: rgb(250 250 249 / 0.05);
}
.focus\:bg-stone-50\/50:focus {
  background-color: rgb(250 250 249 / 0.5);
}
.focus\:bg-stone-50\/60:focus {
  background-color: rgb(250 250 249 / 0.6);
}
.focus\:bg-stone-50\/70:focus {
  background-color: rgb(250 250 249 / 0.7);
}
.focus\:bg-stone-50\/80:focus {
  background-color: rgb(250 250 249 / 0.8);
}
.focus\:bg-stone-50\/90:focus {
  background-color: rgb(250 250 249 / 0.9);
}
.focus\:bg-stone-500:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(120 113 108 / var(--tw-bg-opacity, 1));
}
.focus\:bg-stone-500\/10:focus {
  background-color: rgb(120 113 108 / 0.1);
}
.focus\:bg-stone-500\/20:focus {
  background-color: rgb(120 113 108 / 0.2);
}
.focus\:bg-stone-500\/30:focus {
  background-color: rgb(120 113 108 / 0.3);
}
.focus\:bg-stone-500\/40:focus {
  background-color: rgb(120 113 108 / 0.4);
}
.focus\:bg-stone-500\/5:focus {
  background-color: rgb(120 113 108 / 0.05);
}
.focus\:bg-stone-500\/50:focus {
  background-color: rgb(120 113 108 / 0.5);
}
.focus\:bg-stone-500\/60:focus {
  background-color: rgb(120 113 108 / 0.6);
}
.focus\:bg-stone-500\/70:focus {
  background-color: rgb(120 113 108 / 0.7);
}
.focus\:bg-stone-500\/80:focus {
  background-color: rgb(120 113 108 / 0.8);
}
.focus\:bg-stone-500\/90:focus {
  background-color: rgb(120 113 108 / 0.9);
}
.focus\:bg-stone-600:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(87 83 78 / var(--tw-bg-opacity, 1));
}
.focus\:bg-stone-600\/10:focus {
  background-color: rgb(87 83 78 / 0.1);
}
.focus\:bg-stone-600\/20:focus {
  background-color: rgb(87 83 78 / 0.2);
}
.focus\:bg-stone-600\/30:focus {
  background-color: rgb(87 83 78 / 0.3);
}
.focus\:bg-stone-600\/40:focus {
  background-color: rgb(87 83 78 / 0.4);
}
.focus\:bg-stone-600\/5:focus {
  background-color: rgb(87 83 78 / 0.05);
}
.focus\:bg-stone-600\/50:focus {
  background-color: rgb(87 83 78 / 0.5);
}
.focus\:bg-stone-600\/60:focus {
  background-color: rgb(87 83 78 / 0.6);
}
.focus\:bg-stone-600\/70:focus {
  background-color: rgb(87 83 78 / 0.7);
}
.focus\:bg-stone-600\/80:focus {
  background-color: rgb(87 83 78 / 0.8);
}
.focus\:bg-stone-600\/90:focus {
  background-color: rgb(87 83 78 / 0.9);
}
.focus\:bg-stone-700:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(68 64 60 / var(--tw-bg-opacity, 1));
}
.focus\:bg-stone-700\/10:focus {
  background-color: rgb(68 64 60 / 0.1);
}
.focus\:bg-stone-700\/20:focus {
  background-color: rgb(68 64 60 / 0.2);
}
.focus\:bg-stone-700\/30:focus {
  background-color: rgb(68 64 60 / 0.3);
}
.focus\:bg-stone-700\/40:focus {
  background-color: rgb(68 64 60 / 0.4);
}
.focus\:bg-stone-700\/5:focus {
  background-color: rgb(68 64 60 / 0.05);
}
.focus\:bg-stone-700\/50:focus {
  background-color: rgb(68 64 60 / 0.5);
}
.focus\:bg-stone-700\/60:focus {
  background-color: rgb(68 64 60 / 0.6);
}
.focus\:bg-stone-700\/70:focus {
  background-color: rgb(68 64 60 / 0.7);
}
.focus\:bg-stone-700\/80:focus {
  background-color: rgb(68 64 60 / 0.8);
}
.focus\:bg-stone-700\/90:focus {
  background-color: rgb(68 64 60 / 0.9);
}
.focus\:bg-stone-800:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(41 37 36 / var(--tw-bg-opacity, 1));
}
.focus\:bg-stone-800\/10:focus {
  background-color: rgb(41 37 36 / 0.1);
}
.focus\:bg-stone-800\/20:focus {
  background-color: rgb(41 37 36 / 0.2);
}
.focus\:bg-stone-800\/30:focus {
  background-color: rgb(41 37 36 / 0.3);
}
.focus\:bg-stone-800\/40:focus {
  background-color: rgb(41 37 36 / 0.4);
}
.focus\:bg-stone-800\/5:focus {
  background-color: rgb(41 37 36 / 0.05);
}
.focus\:bg-stone-800\/50:focus {
  background-color: rgb(41 37 36 / 0.5);
}
.focus\:bg-stone-800\/60:focus {
  background-color: rgb(41 37 36 / 0.6);
}
.focus\:bg-stone-800\/70:focus {
  background-color: rgb(41 37 36 / 0.7);
}
.focus\:bg-stone-800\/80:focus {
  background-color: rgb(41 37 36 / 0.8);
}
.focus\:bg-stone-800\/90:focus {
  background-color: rgb(41 37 36 / 0.9);
}
.focus\:bg-stone-900:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(28 25 23 / var(--tw-bg-opacity, 1));
}
.focus\:bg-stone-900\/10:focus {
  background-color: rgb(28 25 23 / 0.1);
}
.focus\:bg-stone-900\/20:focus {
  background-color: rgb(28 25 23 / 0.2);
}
.focus\:bg-stone-900\/30:focus {
  background-color: rgb(28 25 23 / 0.3);
}
.focus\:bg-stone-900\/40:focus {
  background-color: rgb(28 25 23 / 0.4);
}
.focus\:bg-stone-900\/5:focus {
  background-color: rgb(28 25 23 / 0.05);
}
.focus\:bg-stone-900\/50:focus {
  background-color: rgb(28 25 23 / 0.5);
}
.focus\:bg-stone-900\/60:focus {
  background-color: rgb(28 25 23 / 0.6);
}
.focus\:bg-stone-900\/70:focus {
  background-color: rgb(28 25 23 / 0.7);
}
.focus\:bg-stone-900\/80:focus {
  background-color: rgb(28 25 23 / 0.8);
}
.focus\:bg-stone-900\/90:focus {
  background-color: rgb(28 25 23 / 0.9);
}
.focus\:bg-stone-950:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(12 10 9 / var(--tw-bg-opacity, 1));
}
.focus\:bg-stone-950\/10:focus {
  background-color: rgb(12 10 9 / 0.1);
}
.focus\:bg-stone-950\/20:focus {
  background-color: rgb(12 10 9 / 0.2);
}
.focus\:bg-stone-950\/30:focus {
  background-color: rgb(12 10 9 / 0.3);
}
.focus\:bg-stone-950\/40:focus {
  background-color: rgb(12 10 9 / 0.4);
}
.focus\:bg-stone-950\/5:focus {
  background-color: rgb(12 10 9 / 0.05);
}
.focus\:bg-stone-950\/50:focus {
  background-color: rgb(12 10 9 / 0.5);
}
.focus\:bg-stone-950\/60:focus {
  background-color: rgb(12 10 9 / 0.6);
}
.focus\:bg-stone-950\/70:focus {
  background-color: rgb(12 10 9 / 0.7);
}
.focus\:bg-stone-950\/80:focus {
  background-color: rgb(12 10 9 / 0.8);
}
.focus\:bg-stone-950\/90:focus {
  background-color: rgb(12 10 9 / 0.9);
}
.focus\:bg-teal-100:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(204 251 241 / var(--tw-bg-opacity, 1));
}
.focus\:bg-teal-100\/10:focus {
  background-color: rgb(204 251 241 / 0.1);
}
.focus\:bg-teal-100\/20:focus {
  background-color: rgb(204 251 241 / 0.2);
}
.focus\:bg-teal-100\/30:focus {
  background-color: rgb(204 251 241 / 0.3);
}
.focus\:bg-teal-100\/40:focus {
  background-color: rgb(204 251 241 / 0.4);
}
.focus\:bg-teal-100\/5:focus {
  background-color: rgb(204 251 241 / 0.05);
}
.focus\:bg-teal-100\/50:focus {
  background-color: rgb(204 251 241 / 0.5);
}
.focus\:bg-teal-100\/60:focus {
  background-color: rgb(204 251 241 / 0.6);
}
.focus\:bg-teal-100\/70:focus {
  background-color: rgb(204 251 241 / 0.7);
}
.focus\:bg-teal-100\/80:focus {
  background-color: rgb(204 251 241 / 0.8);
}
.focus\:bg-teal-100\/90:focus {
  background-color: rgb(204 251 241 / 0.9);
}
.focus\:bg-teal-200:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(153 246 228 / var(--tw-bg-opacity, 1));
}
.focus\:bg-teal-200\/10:focus {
  background-color: rgb(153 246 228 / 0.1);
}
.focus\:bg-teal-200\/20:focus {
  background-color: rgb(153 246 228 / 0.2);
}
.focus\:bg-teal-200\/30:focus {
  background-color: rgb(153 246 228 / 0.3);
}
.focus\:bg-teal-200\/40:focus {
  background-color: rgb(153 246 228 / 0.4);
}
.focus\:bg-teal-200\/5:focus {
  background-color: rgb(153 246 228 / 0.05);
}
.focus\:bg-teal-200\/50:focus {
  background-color: rgb(153 246 228 / 0.5);
}
.focus\:bg-teal-200\/60:focus {
  background-color: rgb(153 246 228 / 0.6);
}
.focus\:bg-teal-200\/70:focus {
  background-color: rgb(153 246 228 / 0.7);
}
.focus\:bg-teal-200\/80:focus {
  background-color: rgb(153 246 228 / 0.8);
}
.focus\:bg-teal-200\/90:focus {
  background-color: rgb(153 246 228 / 0.9);
}
.focus\:bg-teal-300:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(94 234 212 / var(--tw-bg-opacity, 1));
}
.focus\:bg-teal-300\/10:focus {
  background-color: rgb(94 234 212 / 0.1);
}
.focus\:bg-teal-300\/20:focus {
  background-color: rgb(94 234 212 / 0.2);
}
.focus\:bg-teal-300\/30:focus {
  background-color: rgb(94 234 212 / 0.3);
}
.focus\:bg-teal-300\/40:focus {
  background-color: rgb(94 234 212 / 0.4);
}
.focus\:bg-teal-300\/5:focus {
  background-color: rgb(94 234 212 / 0.05);
}
.focus\:bg-teal-300\/50:focus {
  background-color: rgb(94 234 212 / 0.5);
}
.focus\:bg-teal-300\/60:focus {
  background-color: rgb(94 234 212 / 0.6);
}
.focus\:bg-teal-300\/70:focus {
  background-color: rgb(94 234 212 / 0.7);
}
.focus\:bg-teal-300\/80:focus {
  background-color: rgb(94 234 212 / 0.8);
}
.focus\:bg-teal-300\/90:focus {
  background-color: rgb(94 234 212 / 0.9);
}
.focus\:bg-teal-400:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(45 212 191 / var(--tw-bg-opacity, 1));
}
.focus\:bg-teal-400\/10:focus {
  background-color: rgb(45 212 191 / 0.1);
}
.focus\:bg-teal-400\/20:focus {
  background-color: rgb(45 212 191 / 0.2);
}
.focus\:bg-teal-400\/30:focus {
  background-color: rgb(45 212 191 / 0.3);
}
.focus\:bg-teal-400\/40:focus {
  background-color: rgb(45 212 191 / 0.4);
}
.focus\:bg-teal-400\/5:focus {
  background-color: rgb(45 212 191 / 0.05);
}
.focus\:bg-teal-400\/50:focus {
  background-color: rgb(45 212 191 / 0.5);
}
.focus\:bg-teal-400\/60:focus {
  background-color: rgb(45 212 191 / 0.6);
}
.focus\:bg-teal-400\/70:focus {
  background-color: rgb(45 212 191 / 0.7);
}
.focus\:bg-teal-400\/80:focus {
  background-color: rgb(45 212 191 / 0.8);
}
.focus\:bg-teal-400\/90:focus {
  background-color: rgb(45 212 191 / 0.9);
}
.focus\:bg-teal-50:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 250 / var(--tw-bg-opacity, 1));
}
.focus\:bg-teal-50\/10:focus {
  background-color: rgb(240 253 250 / 0.1);
}
.focus\:bg-teal-50\/20:focus {
  background-color: rgb(240 253 250 / 0.2);
}
.focus\:bg-teal-50\/30:focus {
  background-color: rgb(240 253 250 / 0.3);
}
.focus\:bg-teal-50\/40:focus {
  background-color: rgb(240 253 250 / 0.4);
}
.focus\:bg-teal-50\/5:focus {
  background-color: rgb(240 253 250 / 0.05);
}
.focus\:bg-teal-50\/50:focus {
  background-color: rgb(240 253 250 / 0.5);
}
.focus\:bg-teal-50\/60:focus {
  background-color: rgb(240 253 250 / 0.6);
}
.focus\:bg-teal-50\/70:focus {
  background-color: rgb(240 253 250 / 0.7);
}
.focus\:bg-teal-50\/80:focus {
  background-color: rgb(240 253 250 / 0.8);
}
.focus\:bg-teal-50\/90:focus {
  background-color: rgb(240 253 250 / 0.9);
}
.focus\:bg-teal-500:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(20 184 166 / var(--tw-bg-opacity, 1));
}
.focus\:bg-teal-500\/10:focus {
  background-color: rgb(20 184 166 / 0.1);
}
.focus\:bg-teal-500\/20:focus {
  background-color: rgb(20 184 166 / 0.2);
}
.focus\:bg-teal-500\/30:focus {
  background-color: rgb(20 184 166 / 0.3);
}
.focus\:bg-teal-500\/40:focus {
  background-color: rgb(20 184 166 / 0.4);
}
.focus\:bg-teal-500\/5:focus {
  background-color: rgb(20 184 166 / 0.05);
}
.focus\:bg-teal-500\/50:focus {
  background-color: rgb(20 184 166 / 0.5);
}
.focus\:bg-teal-500\/60:focus {
  background-color: rgb(20 184 166 / 0.6);
}
.focus\:bg-teal-500\/70:focus {
  background-color: rgb(20 184 166 / 0.7);
}
.focus\:bg-teal-500\/80:focus {
  background-color: rgb(20 184 166 / 0.8);
}
.focus\:bg-teal-500\/90:focus {
  background-color: rgb(20 184 166 / 0.9);
}
.focus\:bg-teal-600:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(13 148 136 / var(--tw-bg-opacity, 1));
}
.focus\:bg-teal-600\/10:focus {
  background-color: rgb(13 148 136 / 0.1);
}
.focus\:bg-teal-600\/20:focus {
  background-color: rgb(13 148 136 / 0.2);
}
.focus\:bg-teal-600\/30:focus {
  background-color: rgb(13 148 136 / 0.3);
}
.focus\:bg-teal-600\/40:focus {
  background-color: rgb(13 148 136 / 0.4);
}
.focus\:bg-teal-600\/5:focus {
  background-color: rgb(13 148 136 / 0.05);
}
.focus\:bg-teal-600\/50:focus {
  background-color: rgb(13 148 136 / 0.5);
}
.focus\:bg-teal-600\/60:focus {
  background-color: rgb(13 148 136 / 0.6);
}
.focus\:bg-teal-600\/70:focus {
  background-color: rgb(13 148 136 / 0.7);
}
.focus\:bg-teal-600\/80:focus {
  background-color: rgb(13 148 136 / 0.8);
}
.focus\:bg-teal-600\/90:focus {
  background-color: rgb(13 148 136 / 0.9);
}
.focus\:bg-teal-700:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(15 118 110 / var(--tw-bg-opacity, 1));
}
.focus\:bg-teal-700\/10:focus {
  background-color: rgb(15 118 110 / 0.1);
}
.focus\:bg-teal-700\/20:focus {
  background-color: rgb(15 118 110 / 0.2);
}
.focus\:bg-teal-700\/30:focus {
  background-color: rgb(15 118 110 / 0.3);
}
.focus\:bg-teal-700\/40:focus {
  background-color: rgb(15 118 110 / 0.4);
}
.focus\:bg-teal-700\/5:focus {
  background-color: rgb(15 118 110 / 0.05);
}
.focus\:bg-teal-700\/50:focus {
  background-color: rgb(15 118 110 / 0.5);
}
.focus\:bg-teal-700\/60:focus {
  background-color: rgb(15 118 110 / 0.6);
}
.focus\:bg-teal-700\/70:focus {
  background-color: rgb(15 118 110 / 0.7);
}
.focus\:bg-teal-700\/80:focus {
  background-color: rgb(15 118 110 / 0.8);
}
.focus\:bg-teal-700\/90:focus {
  background-color: rgb(15 118 110 / 0.9);
}
.focus\:bg-teal-800:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(17 94 89 / var(--tw-bg-opacity, 1));
}
.focus\:bg-teal-800\/10:focus {
  background-color: rgb(17 94 89 / 0.1);
}
.focus\:bg-teal-800\/20:focus {
  background-color: rgb(17 94 89 / 0.2);
}
.focus\:bg-teal-800\/30:focus {
  background-color: rgb(17 94 89 / 0.3);
}
.focus\:bg-teal-800\/40:focus {
  background-color: rgb(17 94 89 / 0.4);
}
.focus\:bg-teal-800\/5:focus {
  background-color: rgb(17 94 89 / 0.05);
}
.focus\:bg-teal-800\/50:focus {
  background-color: rgb(17 94 89 / 0.5);
}
.focus\:bg-teal-800\/60:focus {
  background-color: rgb(17 94 89 / 0.6);
}
.focus\:bg-teal-800\/70:focus {
  background-color: rgb(17 94 89 / 0.7);
}
.focus\:bg-teal-800\/80:focus {
  background-color: rgb(17 94 89 / 0.8);
}
.focus\:bg-teal-800\/90:focus {
  background-color: rgb(17 94 89 / 0.9);
}
.focus\:bg-teal-900:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(19 78 74 / var(--tw-bg-opacity, 1));
}
.focus\:bg-teal-900\/10:focus {
  background-color: rgb(19 78 74 / 0.1);
}
.focus\:bg-teal-900\/20:focus {
  background-color: rgb(19 78 74 / 0.2);
}
.focus\:bg-teal-900\/30:focus {
  background-color: rgb(19 78 74 / 0.3);
}
.focus\:bg-teal-900\/40:focus {
  background-color: rgb(19 78 74 / 0.4);
}
.focus\:bg-teal-900\/5:focus {
  background-color: rgb(19 78 74 / 0.05);
}
.focus\:bg-teal-900\/50:focus {
  background-color: rgb(19 78 74 / 0.5);
}
.focus\:bg-teal-900\/60:focus {
  background-color: rgb(19 78 74 / 0.6);
}
.focus\:bg-teal-900\/70:focus {
  background-color: rgb(19 78 74 / 0.7);
}
.focus\:bg-teal-900\/80:focus {
  background-color: rgb(19 78 74 / 0.8);
}
.focus\:bg-teal-900\/90:focus {
  background-color: rgb(19 78 74 / 0.9);
}
.focus\:bg-teal-950:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(4 47 46 / var(--tw-bg-opacity, 1));
}
.focus\:bg-teal-950\/10:focus {
  background-color: rgb(4 47 46 / 0.1);
}
.focus\:bg-teal-950\/20:focus {
  background-color: rgb(4 47 46 / 0.2);
}
.focus\:bg-teal-950\/30:focus {
  background-color: rgb(4 47 46 / 0.3);
}
.focus\:bg-teal-950\/40:focus {
  background-color: rgb(4 47 46 / 0.4);
}
.focus\:bg-teal-950\/5:focus {
  background-color: rgb(4 47 46 / 0.05);
}
.focus\:bg-teal-950\/50:focus {
  background-color: rgb(4 47 46 / 0.5);
}
.focus\:bg-teal-950\/60:focus {
  background-color: rgb(4 47 46 / 0.6);
}
.focus\:bg-teal-950\/70:focus {
  background-color: rgb(4 47 46 / 0.7);
}
.focus\:bg-teal-950\/80:focus {
  background-color: rgb(4 47 46 / 0.8);
}
.focus\:bg-teal-950\/90:focus {
  background-color: rgb(4 47 46 / 0.9);
}
.focus\:bg-violet-100:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(237 233 254 / var(--tw-bg-opacity, 1));
}
.focus\:bg-violet-100\/10:focus {
  background-color: rgb(237 233 254 / 0.1);
}
.focus\:bg-violet-100\/20:focus {
  background-color: rgb(237 233 254 / 0.2);
}
.focus\:bg-violet-100\/30:focus {
  background-color: rgb(237 233 254 / 0.3);
}
.focus\:bg-violet-100\/40:focus {
  background-color: rgb(237 233 254 / 0.4);
}
.focus\:bg-violet-100\/5:focus {
  background-color: rgb(237 233 254 / 0.05);
}
.focus\:bg-violet-100\/50:focus {
  background-color: rgb(237 233 254 / 0.5);
}
.focus\:bg-violet-100\/60:focus {
  background-color: rgb(237 233 254 / 0.6);
}
.focus\:bg-violet-100\/70:focus {
  background-color: rgb(237 233 254 / 0.7);
}
.focus\:bg-violet-100\/80:focus {
  background-color: rgb(237 233 254 / 0.8);
}
.focus\:bg-violet-100\/90:focus {
  background-color: rgb(237 233 254 / 0.9);
}
.focus\:bg-violet-200:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(221 214 254 / var(--tw-bg-opacity, 1));
}
.focus\:bg-violet-200\/10:focus {
  background-color: rgb(221 214 254 / 0.1);
}
.focus\:bg-violet-200\/20:focus {
  background-color: rgb(221 214 254 / 0.2);
}
.focus\:bg-violet-200\/30:focus {
  background-color: rgb(221 214 254 / 0.3);
}
.focus\:bg-violet-200\/40:focus {
  background-color: rgb(221 214 254 / 0.4);
}
.focus\:bg-violet-200\/5:focus {
  background-color: rgb(221 214 254 / 0.05);
}
.focus\:bg-violet-200\/50:focus {
  background-color: rgb(221 214 254 / 0.5);
}
.focus\:bg-violet-200\/60:focus {
  background-color: rgb(221 214 254 / 0.6);
}
.focus\:bg-violet-200\/70:focus {
  background-color: rgb(221 214 254 / 0.7);
}
.focus\:bg-violet-200\/80:focus {
  background-color: rgb(221 214 254 / 0.8);
}
.focus\:bg-violet-200\/90:focus {
  background-color: rgb(221 214 254 / 0.9);
}
.focus\:bg-violet-300:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(196 181 253 / var(--tw-bg-opacity, 1));
}
.focus\:bg-violet-300\/10:focus {
  background-color: rgb(196 181 253 / 0.1);
}
.focus\:bg-violet-300\/20:focus {
  background-color: rgb(196 181 253 / 0.2);
}
.focus\:bg-violet-300\/30:focus {
  background-color: rgb(196 181 253 / 0.3);
}
.focus\:bg-violet-300\/40:focus {
  background-color: rgb(196 181 253 / 0.4);
}
.focus\:bg-violet-300\/5:focus {
  background-color: rgb(196 181 253 / 0.05);
}
.focus\:bg-violet-300\/50:focus {
  background-color: rgb(196 181 253 / 0.5);
}
.focus\:bg-violet-300\/60:focus {
  background-color: rgb(196 181 253 / 0.6);
}
.focus\:bg-violet-300\/70:focus {
  background-color: rgb(196 181 253 / 0.7);
}
.focus\:bg-violet-300\/80:focus {
  background-color: rgb(196 181 253 / 0.8);
}
.focus\:bg-violet-300\/90:focus {
  background-color: rgb(196 181 253 / 0.9);
}
.focus\:bg-violet-400:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(167 139 250 / var(--tw-bg-opacity, 1));
}
.focus\:bg-violet-400\/10:focus {
  background-color: rgb(167 139 250 / 0.1);
}
.focus\:bg-violet-400\/20:focus {
  background-color: rgb(167 139 250 / 0.2);
}
.focus\:bg-violet-400\/30:focus {
  background-color: rgb(167 139 250 / 0.3);
}
.focus\:bg-violet-400\/40:focus {
  background-color: rgb(167 139 250 / 0.4);
}
.focus\:bg-violet-400\/5:focus {
  background-color: rgb(167 139 250 / 0.05);
}
.focus\:bg-violet-400\/50:focus {
  background-color: rgb(167 139 250 / 0.5);
}
.focus\:bg-violet-400\/60:focus {
  background-color: rgb(167 139 250 / 0.6);
}
.focus\:bg-violet-400\/70:focus {
  background-color: rgb(167 139 250 / 0.7);
}
.focus\:bg-violet-400\/80:focus {
  background-color: rgb(167 139 250 / 0.8);
}
.focus\:bg-violet-400\/90:focus {
  background-color: rgb(167 139 250 / 0.9);
}
.focus\:bg-violet-50:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(245 243 255 / var(--tw-bg-opacity, 1));
}
.focus\:bg-violet-50\/10:focus {
  background-color: rgb(245 243 255 / 0.1);
}
.focus\:bg-violet-50\/20:focus {
  background-color: rgb(245 243 255 / 0.2);
}
.focus\:bg-violet-50\/30:focus {
  background-color: rgb(245 243 255 / 0.3);
}
.focus\:bg-violet-50\/40:focus {
  background-color: rgb(245 243 255 / 0.4);
}
.focus\:bg-violet-50\/5:focus {
  background-color: rgb(245 243 255 / 0.05);
}
.focus\:bg-violet-50\/50:focus {
  background-color: rgb(245 243 255 / 0.5);
}
.focus\:bg-violet-50\/60:focus {
  background-color: rgb(245 243 255 / 0.6);
}
.focus\:bg-violet-50\/70:focus {
  background-color: rgb(245 243 255 / 0.7);
}
.focus\:bg-violet-50\/80:focus {
  background-color: rgb(245 243 255 / 0.8);
}
.focus\:bg-violet-50\/90:focus {
  background-color: rgb(245 243 255 / 0.9);
}
.focus\:bg-violet-500:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(139 92 246 / var(--tw-bg-opacity, 1));
}
.focus\:bg-violet-500\/10:focus {
  background-color: rgb(139 92 246 / 0.1);
}
.focus\:bg-violet-500\/20:focus {
  background-color: rgb(139 92 246 / 0.2);
}
.focus\:bg-violet-500\/30:focus {
  background-color: rgb(139 92 246 / 0.3);
}
.focus\:bg-violet-500\/40:focus {
  background-color: rgb(139 92 246 / 0.4);
}
.focus\:bg-violet-500\/5:focus {
  background-color: rgb(139 92 246 / 0.05);
}
.focus\:bg-violet-500\/50:focus {
  background-color: rgb(139 92 246 / 0.5);
}
.focus\:bg-violet-500\/60:focus {
  background-color: rgb(139 92 246 / 0.6);
}
.focus\:bg-violet-500\/70:focus {
  background-color: rgb(139 92 246 / 0.7);
}
.focus\:bg-violet-500\/80:focus {
  background-color: rgb(139 92 246 / 0.8);
}
.focus\:bg-violet-500\/90:focus {
  background-color: rgb(139 92 246 / 0.9);
}
.focus\:bg-violet-600:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(124 58 237 / var(--tw-bg-opacity, 1));
}
.focus\:bg-violet-600\/10:focus {
  background-color: rgb(124 58 237 / 0.1);
}
.focus\:bg-violet-600\/20:focus {
  background-color: rgb(124 58 237 / 0.2);
}
.focus\:bg-violet-600\/30:focus {
  background-color: rgb(124 58 237 / 0.3);
}
.focus\:bg-violet-600\/40:focus {
  background-color: rgb(124 58 237 / 0.4);
}
.focus\:bg-violet-600\/5:focus {
  background-color: rgb(124 58 237 / 0.05);
}
.focus\:bg-violet-600\/50:focus {
  background-color: rgb(124 58 237 / 0.5);
}
.focus\:bg-violet-600\/60:focus {
  background-color: rgb(124 58 237 / 0.6);
}
.focus\:bg-violet-600\/70:focus {
  background-color: rgb(124 58 237 / 0.7);
}
.focus\:bg-violet-600\/80:focus {
  background-color: rgb(124 58 237 / 0.8);
}
.focus\:bg-violet-600\/90:focus {
  background-color: rgb(124 58 237 / 0.9);
}
.focus\:bg-violet-700:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(109 40 217 / var(--tw-bg-opacity, 1));
}
.focus\:bg-violet-700\/10:focus {
  background-color: rgb(109 40 217 / 0.1);
}
.focus\:bg-violet-700\/20:focus {
  background-color: rgb(109 40 217 / 0.2);
}
.focus\:bg-violet-700\/30:focus {
  background-color: rgb(109 40 217 / 0.3);
}
.focus\:bg-violet-700\/40:focus {
  background-color: rgb(109 40 217 / 0.4);
}
.focus\:bg-violet-700\/5:focus {
  background-color: rgb(109 40 217 / 0.05);
}
.focus\:bg-violet-700\/50:focus {
  background-color: rgb(109 40 217 / 0.5);
}
.focus\:bg-violet-700\/60:focus {
  background-color: rgb(109 40 217 / 0.6);
}
.focus\:bg-violet-700\/70:focus {
  background-color: rgb(109 40 217 / 0.7);
}
.focus\:bg-violet-700\/80:focus {
  background-color: rgb(109 40 217 / 0.8);
}
.focus\:bg-violet-700\/90:focus {
  background-color: rgb(109 40 217 / 0.9);
}
.focus\:bg-violet-800:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(91 33 182 / var(--tw-bg-opacity, 1));
}
.focus\:bg-violet-800\/10:focus {
  background-color: rgb(91 33 182 / 0.1);
}
.focus\:bg-violet-800\/20:focus {
  background-color: rgb(91 33 182 / 0.2);
}
.focus\:bg-violet-800\/30:focus {
  background-color: rgb(91 33 182 / 0.3);
}
.focus\:bg-violet-800\/40:focus {
  background-color: rgb(91 33 182 / 0.4);
}
.focus\:bg-violet-800\/5:focus {
  background-color: rgb(91 33 182 / 0.05);
}
.focus\:bg-violet-800\/50:focus {
  background-color: rgb(91 33 182 / 0.5);
}
.focus\:bg-violet-800\/60:focus {
  background-color: rgb(91 33 182 / 0.6);
}
.focus\:bg-violet-800\/70:focus {
  background-color: rgb(91 33 182 / 0.7);
}
.focus\:bg-violet-800\/80:focus {
  background-color: rgb(91 33 182 / 0.8);
}
.focus\:bg-violet-800\/90:focus {
  background-color: rgb(91 33 182 / 0.9);
}
.focus\:bg-violet-900:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(76 29 149 / var(--tw-bg-opacity, 1));
}
.focus\:bg-violet-900\/10:focus {
  background-color: rgb(76 29 149 / 0.1);
}
.focus\:bg-violet-900\/20:focus {
  background-color: rgb(76 29 149 / 0.2);
}
.focus\:bg-violet-900\/30:focus {
  background-color: rgb(76 29 149 / 0.3);
}
.focus\:bg-violet-900\/40:focus {
  background-color: rgb(76 29 149 / 0.4);
}
.focus\:bg-violet-900\/5:focus {
  background-color: rgb(76 29 149 / 0.05);
}
.focus\:bg-violet-900\/50:focus {
  background-color: rgb(76 29 149 / 0.5);
}
.focus\:bg-violet-900\/60:focus {
  background-color: rgb(76 29 149 / 0.6);
}
.focus\:bg-violet-900\/70:focus {
  background-color: rgb(76 29 149 / 0.7);
}
.focus\:bg-violet-900\/80:focus {
  background-color: rgb(76 29 149 / 0.8);
}
.focus\:bg-violet-900\/90:focus {
  background-color: rgb(76 29 149 / 0.9);
}
.focus\:bg-violet-950:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(46 16 101 / var(--tw-bg-opacity, 1));
}
.focus\:bg-violet-950\/10:focus {
  background-color: rgb(46 16 101 / 0.1);
}
.focus\:bg-violet-950\/20:focus {
  background-color: rgb(46 16 101 / 0.2);
}
.focus\:bg-violet-950\/30:focus {
  background-color: rgb(46 16 101 / 0.3);
}
.focus\:bg-violet-950\/40:focus {
  background-color: rgb(46 16 101 / 0.4);
}
.focus\:bg-violet-950\/5:focus {
  background-color: rgb(46 16 101 / 0.05);
}
.focus\:bg-violet-950\/50:focus {
  background-color: rgb(46 16 101 / 0.5);
}
.focus\:bg-violet-950\/60:focus {
  background-color: rgb(46 16 101 / 0.6);
}
.focus\:bg-violet-950\/70:focus {
  background-color: rgb(46 16 101 / 0.7);
}
.focus\:bg-violet-950\/80:focus {
  background-color: rgb(46 16 101 / 0.8);
}
.focus\:bg-violet-950\/90:focus {
  background-color: rgb(46 16 101 / 0.9);
}
.focus\:bg-yellow-100:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1));
}
.focus\:bg-yellow-100\/10:focus {
  background-color: rgb(254 249 195 / 0.1);
}
.focus\:bg-yellow-100\/20:focus {
  background-color: rgb(254 249 195 / 0.2);
}
.focus\:bg-yellow-100\/30:focus {
  background-color: rgb(254 249 195 / 0.3);
}
.focus\:bg-yellow-100\/40:focus {
  background-color: rgb(254 249 195 / 0.4);
}
.focus\:bg-yellow-100\/5:focus {
  background-color: rgb(254 249 195 / 0.05);
}
.focus\:bg-yellow-100\/50:focus {
  background-color: rgb(254 249 195 / 0.5);
}
.focus\:bg-yellow-100\/60:focus {
  background-color: rgb(254 249 195 / 0.6);
}
.focus\:bg-yellow-100\/70:focus {
  background-color: rgb(254 249 195 / 0.7);
}
.focus\:bg-yellow-100\/80:focus {
  background-color: rgb(254 249 195 / 0.8);
}
.focus\:bg-yellow-100\/90:focus {
  background-color: rgb(254 249 195 / 0.9);
}
.focus\:bg-yellow-200:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(254 240 138 / var(--tw-bg-opacity, 1));
}
.focus\:bg-yellow-200\/10:focus {
  background-color: rgb(254 240 138 / 0.1);
}
.focus\:bg-yellow-200\/20:focus {
  background-color: rgb(254 240 138 / 0.2);
}
.focus\:bg-yellow-200\/30:focus {
  background-color: rgb(254 240 138 / 0.3);
}
.focus\:bg-yellow-200\/40:focus {
  background-color: rgb(254 240 138 / 0.4);
}
.focus\:bg-yellow-200\/5:focus {
  background-color: rgb(254 240 138 / 0.05);
}
.focus\:bg-yellow-200\/50:focus {
  background-color: rgb(254 240 138 / 0.5);
}
.focus\:bg-yellow-200\/60:focus {
  background-color: rgb(254 240 138 / 0.6);
}
.focus\:bg-yellow-200\/70:focus {
  background-color: rgb(254 240 138 / 0.7);
}
.focus\:bg-yellow-200\/80:focus {
  background-color: rgb(254 240 138 / 0.8);
}
.focus\:bg-yellow-200\/90:focus {
  background-color: rgb(254 240 138 / 0.9);
}
.focus\:bg-yellow-300:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(253 224 71 / var(--tw-bg-opacity, 1));
}
.focus\:bg-yellow-300\/10:focus {
  background-color: rgb(253 224 71 / 0.1);
}
.focus\:bg-yellow-300\/20:focus {
  background-color: rgb(253 224 71 / 0.2);
}
.focus\:bg-yellow-300\/30:focus {
  background-color: rgb(253 224 71 / 0.3);
}
.focus\:bg-yellow-300\/40:focus {
  background-color: rgb(253 224 71 / 0.4);
}
.focus\:bg-yellow-300\/5:focus {
  background-color: rgb(253 224 71 / 0.05);
}
.focus\:bg-yellow-300\/50:focus {
  background-color: rgb(253 224 71 / 0.5);
}
.focus\:bg-yellow-300\/60:focus {
  background-color: rgb(253 224 71 / 0.6);
}
.focus\:bg-yellow-300\/70:focus {
  background-color: rgb(253 224 71 / 0.7);
}
.focus\:bg-yellow-300\/80:focus {
  background-color: rgb(253 224 71 / 0.8);
}
.focus\:bg-yellow-300\/90:focus {
  background-color: rgb(253 224 71 / 0.9);
}
.focus\:bg-yellow-400:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(250 204 21 / var(--tw-bg-opacity, 1));
}
.focus\:bg-yellow-400\/10:focus {
  background-color: rgb(250 204 21 / 0.1);
}
.focus\:bg-yellow-400\/20:focus {
  background-color: rgb(250 204 21 / 0.2);
}
.focus\:bg-yellow-400\/30:focus {
  background-color: rgb(250 204 21 / 0.3);
}
.focus\:bg-yellow-400\/40:focus {
  background-color: rgb(250 204 21 / 0.4);
}
.focus\:bg-yellow-400\/5:focus {
  background-color: rgb(250 204 21 / 0.05);
}
.focus\:bg-yellow-400\/50:focus {
  background-color: rgb(250 204 21 / 0.5);
}
.focus\:bg-yellow-400\/60:focus {
  background-color: rgb(250 204 21 / 0.6);
}
.focus\:bg-yellow-400\/70:focus {
  background-color: rgb(250 204 21 / 0.7);
}
.focus\:bg-yellow-400\/80:focus {
  background-color: rgb(250 204 21 / 0.8);
}
.focus\:bg-yellow-400\/90:focus {
  background-color: rgb(250 204 21 / 0.9);
}
.focus\:bg-yellow-50:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1));
}
.focus\:bg-yellow-50\/10:focus {
  background-color: rgb(254 252 232 / 0.1);
}
.focus\:bg-yellow-50\/20:focus {
  background-color: rgb(254 252 232 / 0.2);
}
.focus\:bg-yellow-50\/30:focus {
  background-color: rgb(254 252 232 / 0.3);
}
.focus\:bg-yellow-50\/40:focus {
  background-color: rgb(254 252 232 / 0.4);
}
.focus\:bg-yellow-50\/5:focus {
  background-color: rgb(254 252 232 / 0.05);
}
.focus\:bg-yellow-50\/50:focus {
  background-color: rgb(254 252 232 / 0.5);
}
.focus\:bg-yellow-50\/60:focus {
  background-color: rgb(254 252 232 / 0.6);
}
.focus\:bg-yellow-50\/70:focus {
  background-color: rgb(254 252 232 / 0.7);
}
.focus\:bg-yellow-50\/80:focus {
  background-color: rgb(254 252 232 / 0.8);
}
.focus\:bg-yellow-50\/90:focus {
  background-color: rgb(254 252 232 / 0.9);
}
.focus\:bg-yellow-500:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(234 179 8 / var(--tw-bg-opacity, 1));
}
.focus\:bg-yellow-500\/10:focus {
  background-color: rgb(234 179 8 / 0.1);
}
.focus\:bg-yellow-500\/20:focus {
  background-color: rgb(234 179 8 / 0.2);
}
.focus\:bg-yellow-500\/30:focus {
  background-color: rgb(234 179 8 / 0.3);
}
.focus\:bg-yellow-500\/40:focus {
  background-color: rgb(234 179 8 / 0.4);
}
.focus\:bg-yellow-500\/5:focus {
  background-color: rgb(234 179 8 / 0.05);
}
.focus\:bg-yellow-500\/50:focus {
  background-color: rgb(234 179 8 / 0.5);
}
.focus\:bg-yellow-500\/60:focus {
  background-color: rgb(234 179 8 / 0.6);
}
.focus\:bg-yellow-500\/70:focus {
  background-color: rgb(234 179 8 / 0.7);
}
.focus\:bg-yellow-500\/80:focus {
  background-color: rgb(234 179 8 / 0.8);
}
.focus\:bg-yellow-500\/90:focus {
  background-color: rgb(234 179 8 / 0.9);
}
.focus\:bg-yellow-600:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(202 138 4 / var(--tw-bg-opacity, 1));
}
.focus\:bg-yellow-600\/10:focus {
  background-color: rgb(202 138 4 / 0.1);
}
.focus\:bg-yellow-600\/20:focus {
  background-color: rgb(202 138 4 / 0.2);
}
.focus\:bg-yellow-600\/30:focus {
  background-color: rgb(202 138 4 / 0.3);
}
.focus\:bg-yellow-600\/40:focus {
  background-color: rgb(202 138 4 / 0.4);
}
.focus\:bg-yellow-600\/5:focus {
  background-color: rgb(202 138 4 / 0.05);
}
.focus\:bg-yellow-600\/50:focus {
  background-color: rgb(202 138 4 / 0.5);
}
.focus\:bg-yellow-600\/60:focus {
  background-color: rgb(202 138 4 / 0.6);
}
.focus\:bg-yellow-600\/70:focus {
  background-color: rgb(202 138 4 / 0.7);
}
.focus\:bg-yellow-600\/80:focus {
  background-color: rgb(202 138 4 / 0.8);
}
.focus\:bg-yellow-600\/90:focus {
  background-color: rgb(202 138 4 / 0.9);
}
.focus\:bg-yellow-700:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(161 98 7 / var(--tw-bg-opacity, 1));
}
.focus\:bg-yellow-700\/10:focus {
  background-color: rgb(161 98 7 / 0.1);
}
.focus\:bg-yellow-700\/20:focus {
  background-color: rgb(161 98 7 / 0.2);
}
.focus\:bg-yellow-700\/30:focus {
  background-color: rgb(161 98 7 / 0.3);
}
.focus\:bg-yellow-700\/40:focus {
  background-color: rgb(161 98 7 / 0.4);
}
.focus\:bg-yellow-700\/5:focus {
  background-color: rgb(161 98 7 / 0.05);
}
.focus\:bg-yellow-700\/50:focus {
  background-color: rgb(161 98 7 / 0.5);
}
.focus\:bg-yellow-700\/60:focus {
  background-color: rgb(161 98 7 / 0.6);
}
.focus\:bg-yellow-700\/70:focus {
  background-color: rgb(161 98 7 / 0.7);
}
.focus\:bg-yellow-700\/80:focus {
  background-color: rgb(161 98 7 / 0.8);
}
.focus\:bg-yellow-700\/90:focus {
  background-color: rgb(161 98 7 / 0.9);
}
.focus\:bg-yellow-800:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(133 77 14 / var(--tw-bg-opacity, 1));
}
.focus\:bg-yellow-800\/10:focus {
  background-color: rgb(133 77 14 / 0.1);
}
.focus\:bg-yellow-800\/20:focus {
  background-color: rgb(133 77 14 / 0.2);
}
.focus\:bg-yellow-800\/30:focus {
  background-color: rgb(133 77 14 / 0.3);
}
.focus\:bg-yellow-800\/40:focus {
  background-color: rgb(133 77 14 / 0.4);
}
.focus\:bg-yellow-800\/5:focus {
  background-color: rgb(133 77 14 / 0.05);
}
.focus\:bg-yellow-800\/50:focus {
  background-color: rgb(133 77 14 / 0.5);
}
.focus\:bg-yellow-800\/60:focus {
  background-color: rgb(133 77 14 / 0.6);
}
.focus\:bg-yellow-800\/70:focus {
  background-color: rgb(133 77 14 / 0.7);
}
.focus\:bg-yellow-800\/80:focus {
  background-color: rgb(133 77 14 / 0.8);
}
.focus\:bg-yellow-800\/90:focus {
  background-color: rgb(133 77 14 / 0.9);
}
.focus\:bg-yellow-900:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(113 63 18 / var(--tw-bg-opacity, 1));
}
.focus\:bg-yellow-900\/10:focus {
  background-color: rgb(113 63 18 / 0.1);
}
.focus\:bg-yellow-900\/20:focus {
  background-color: rgb(113 63 18 / 0.2);
}
.focus\:bg-yellow-900\/30:focus {
  background-color: rgb(113 63 18 / 0.3);
}
.focus\:bg-yellow-900\/40:focus {
  background-color: rgb(113 63 18 / 0.4);
}
.focus\:bg-yellow-900\/5:focus {
  background-color: rgb(113 63 18 / 0.05);
}
.focus\:bg-yellow-900\/50:focus {
  background-color: rgb(113 63 18 / 0.5);
}
.focus\:bg-yellow-900\/60:focus {
  background-color: rgb(113 63 18 / 0.6);
}
.focus\:bg-yellow-900\/70:focus {
  background-color: rgb(113 63 18 / 0.7);
}
.focus\:bg-yellow-900\/80:focus {
  background-color: rgb(113 63 18 / 0.8);
}
.focus\:bg-yellow-900\/90:focus {
  background-color: rgb(113 63 18 / 0.9);
}
.focus\:bg-yellow-950:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(66 32 6 / var(--tw-bg-opacity, 1));
}
.focus\:bg-yellow-950\/10:focus {
  background-color: rgb(66 32 6 / 0.1);
}
.focus\:bg-yellow-950\/20:focus {
  background-color: rgb(66 32 6 / 0.2);
}
.focus\:bg-yellow-950\/30:focus {
  background-color: rgb(66 32 6 / 0.3);
}
.focus\:bg-yellow-950\/40:focus {
  background-color: rgb(66 32 6 / 0.4);
}
.focus\:bg-yellow-950\/5:focus {
  background-color: rgb(66 32 6 / 0.05);
}
.focus\:bg-yellow-950\/50:focus {
  background-color: rgb(66 32 6 / 0.5);
}
.focus\:bg-yellow-950\/60:focus {
  background-color: rgb(66 32 6 / 0.6);
}
.focus\:bg-yellow-950\/70:focus {
  background-color: rgb(66 32 6 / 0.7);
}
.focus\:bg-yellow-950\/80:focus {
  background-color: rgb(66 32 6 / 0.8);
}
.focus\:bg-yellow-950\/90:focus {
  background-color: rgb(66 32 6 / 0.9);
}
.focus\:bg-zinc-100:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(244 244 245 / var(--tw-bg-opacity, 1));
}
.focus\:bg-zinc-100\/10:focus {
  background-color: rgb(244 244 245 / 0.1);
}
.focus\:bg-zinc-100\/20:focus {
  background-color: rgb(244 244 245 / 0.2);
}
.focus\:bg-zinc-100\/30:focus {
  background-color: rgb(244 244 245 / 0.3);
}
.focus\:bg-zinc-100\/40:focus {
  background-color: rgb(244 244 245 / 0.4);
}
.focus\:bg-zinc-100\/5:focus {
  background-color: rgb(244 244 245 / 0.05);
}
.focus\:bg-zinc-100\/50:focus {
  background-color: rgb(244 244 245 / 0.5);
}
.focus\:bg-zinc-100\/60:focus {
  background-color: rgb(244 244 245 / 0.6);
}
.focus\:bg-zinc-100\/70:focus {
  background-color: rgb(244 244 245 / 0.7);
}
.focus\:bg-zinc-100\/80:focus {
  background-color: rgb(244 244 245 / 0.8);
}
.focus\:bg-zinc-100\/90:focus {
  background-color: rgb(244 244 245 / 0.9);
}
.focus\:bg-zinc-200:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(228 228 231 / var(--tw-bg-opacity, 1));
}
.focus\:bg-zinc-200\/10:focus {
  background-color: rgb(228 228 231 / 0.1);
}
.focus\:bg-zinc-200\/20:focus {
  background-color: rgb(228 228 231 / 0.2);
}
.focus\:bg-zinc-200\/30:focus {
  background-color: rgb(228 228 231 / 0.3);
}
.focus\:bg-zinc-200\/40:focus {
  background-color: rgb(228 228 231 / 0.4);
}
.focus\:bg-zinc-200\/5:focus {
  background-color: rgb(228 228 231 / 0.05);
}
.focus\:bg-zinc-200\/50:focus {
  background-color: rgb(228 228 231 / 0.5);
}
.focus\:bg-zinc-200\/60:focus {
  background-color: rgb(228 228 231 / 0.6);
}
.focus\:bg-zinc-200\/70:focus {
  background-color: rgb(228 228 231 / 0.7);
}
.focus\:bg-zinc-200\/80:focus {
  background-color: rgb(228 228 231 / 0.8);
}
.focus\:bg-zinc-200\/90:focus {
  background-color: rgb(228 228 231 / 0.9);
}
.focus\:bg-zinc-300:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(212 212 216 / var(--tw-bg-opacity, 1));
}
.focus\:bg-zinc-300\/10:focus {
  background-color: rgb(212 212 216 / 0.1);
}
.focus\:bg-zinc-300\/20:focus {
  background-color: rgb(212 212 216 / 0.2);
}
.focus\:bg-zinc-300\/30:focus {
  background-color: rgb(212 212 216 / 0.3);
}
.focus\:bg-zinc-300\/40:focus {
  background-color: rgb(212 212 216 / 0.4);
}
.focus\:bg-zinc-300\/5:focus {
  background-color: rgb(212 212 216 / 0.05);
}
.focus\:bg-zinc-300\/50:focus {
  background-color: rgb(212 212 216 / 0.5);
}
.focus\:bg-zinc-300\/60:focus {
  background-color: rgb(212 212 216 / 0.6);
}
.focus\:bg-zinc-300\/70:focus {
  background-color: rgb(212 212 216 / 0.7);
}
.focus\:bg-zinc-300\/80:focus {
  background-color: rgb(212 212 216 / 0.8);
}
.focus\:bg-zinc-300\/90:focus {
  background-color: rgb(212 212 216 / 0.9);
}
.focus\:bg-zinc-400:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(161 161 170 / var(--tw-bg-opacity, 1));
}
.focus\:bg-zinc-400\/10:focus {
  background-color: rgb(161 161 170 / 0.1);
}
.focus\:bg-zinc-400\/20:focus {
  background-color: rgb(161 161 170 / 0.2);
}
.focus\:bg-zinc-400\/30:focus {
  background-color: rgb(161 161 170 / 0.3);
}
.focus\:bg-zinc-400\/40:focus {
  background-color: rgb(161 161 170 / 0.4);
}
.focus\:bg-zinc-400\/5:focus {
  background-color: rgb(161 161 170 / 0.05);
}
.focus\:bg-zinc-400\/50:focus {
  background-color: rgb(161 161 170 / 0.5);
}
.focus\:bg-zinc-400\/60:focus {
  background-color: rgb(161 161 170 / 0.6);
}
.focus\:bg-zinc-400\/70:focus {
  background-color: rgb(161 161 170 / 0.7);
}
.focus\:bg-zinc-400\/80:focus {
  background-color: rgb(161 161 170 / 0.8);
}
.focus\:bg-zinc-400\/90:focus {
  background-color: rgb(161 161 170 / 0.9);
}
.focus\:bg-zinc-50:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
}
.focus\:bg-zinc-50\/10:focus {
  background-color: rgb(250 250 250 / 0.1);
}
.focus\:bg-zinc-50\/20:focus {
  background-color: rgb(250 250 250 / 0.2);
}
.focus\:bg-zinc-50\/30:focus {
  background-color: rgb(250 250 250 / 0.3);
}
.focus\:bg-zinc-50\/40:focus {
  background-color: rgb(250 250 250 / 0.4);
}
.focus\:bg-zinc-50\/5:focus {
  background-color: rgb(250 250 250 / 0.05);
}
.focus\:bg-zinc-50\/50:focus {
  background-color: rgb(250 250 250 / 0.5);
}
.focus\:bg-zinc-50\/60:focus {
  background-color: rgb(250 250 250 / 0.6);
}
.focus\:bg-zinc-50\/70:focus {
  background-color: rgb(250 250 250 / 0.7);
}
.focus\:bg-zinc-50\/80:focus {
  background-color: rgb(250 250 250 / 0.8);
}
.focus\:bg-zinc-50\/90:focus {
  background-color: rgb(250 250 250 / 0.9);
}
.focus\:bg-zinc-500:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(113 113 122 / var(--tw-bg-opacity, 1));
}
.focus\:bg-zinc-500\/10:focus {
  background-color: rgb(113 113 122 / 0.1);
}
.focus\:bg-zinc-500\/20:focus {
  background-color: rgb(113 113 122 / 0.2);
}
.focus\:bg-zinc-500\/30:focus {
  background-color: rgb(113 113 122 / 0.3);
}
.focus\:bg-zinc-500\/40:focus {
  background-color: rgb(113 113 122 / 0.4);
}
.focus\:bg-zinc-500\/5:focus {
  background-color: rgb(113 113 122 / 0.05);
}
.focus\:bg-zinc-500\/50:focus {
  background-color: rgb(113 113 122 / 0.5);
}
.focus\:bg-zinc-500\/60:focus {
  background-color: rgb(113 113 122 / 0.6);
}
.focus\:bg-zinc-500\/70:focus {
  background-color: rgb(113 113 122 / 0.7);
}
.focus\:bg-zinc-500\/80:focus {
  background-color: rgb(113 113 122 / 0.8);
}
.focus\:bg-zinc-500\/90:focus {
  background-color: rgb(113 113 122 / 0.9);
}
.focus\:bg-zinc-600:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(82 82 91 / var(--tw-bg-opacity, 1));
}
.focus\:bg-zinc-600\/10:focus {
  background-color: rgb(82 82 91 / 0.1);
}
.focus\:bg-zinc-600\/20:focus {
  background-color: rgb(82 82 91 / 0.2);
}
.focus\:bg-zinc-600\/30:focus {
  background-color: rgb(82 82 91 / 0.3);
}
.focus\:bg-zinc-600\/40:focus {
  background-color: rgb(82 82 91 / 0.4);
}
.focus\:bg-zinc-600\/5:focus {
  background-color: rgb(82 82 91 / 0.05);
}
.focus\:bg-zinc-600\/50:focus {
  background-color: rgb(82 82 91 / 0.5);
}
.focus\:bg-zinc-600\/60:focus {
  background-color: rgb(82 82 91 / 0.6);
}
.focus\:bg-zinc-600\/70:focus {
  background-color: rgb(82 82 91 / 0.7);
}
.focus\:bg-zinc-600\/80:focus {
  background-color: rgb(82 82 91 / 0.8);
}
.focus\:bg-zinc-600\/90:focus {
  background-color: rgb(82 82 91 / 0.9);
}
.focus\:bg-zinc-700:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(63 63 70 / var(--tw-bg-opacity, 1));
}
.focus\:bg-zinc-700\/10:focus {
  background-color: rgb(63 63 70 / 0.1);
}
.focus\:bg-zinc-700\/20:focus {
  background-color: rgb(63 63 70 / 0.2);
}
.focus\:bg-zinc-700\/30:focus {
  background-color: rgb(63 63 70 / 0.3);
}
.focus\:bg-zinc-700\/40:focus {
  background-color: rgb(63 63 70 / 0.4);
}
.focus\:bg-zinc-700\/5:focus {
  background-color: rgb(63 63 70 / 0.05);
}
.focus\:bg-zinc-700\/50:focus {
  background-color: rgb(63 63 70 / 0.5);
}
.focus\:bg-zinc-700\/60:focus {
  background-color: rgb(63 63 70 / 0.6);
}
.focus\:bg-zinc-700\/70:focus {
  background-color: rgb(63 63 70 / 0.7);
}
.focus\:bg-zinc-700\/80:focus {
  background-color: rgb(63 63 70 / 0.8);
}
.focus\:bg-zinc-700\/90:focus {
  background-color: rgb(63 63 70 / 0.9);
}
.focus\:bg-zinc-800:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(39 39 42 / var(--tw-bg-opacity, 1));
}
.focus\:bg-zinc-800\/10:focus {
  background-color: rgb(39 39 42 / 0.1);
}
.focus\:bg-zinc-800\/20:focus {
  background-color: rgb(39 39 42 / 0.2);
}
.focus\:bg-zinc-800\/30:focus {
  background-color: rgb(39 39 42 / 0.3);
}
.focus\:bg-zinc-800\/40:focus {
  background-color: rgb(39 39 42 / 0.4);
}
.focus\:bg-zinc-800\/5:focus {
  background-color: rgb(39 39 42 / 0.05);
}
.focus\:bg-zinc-800\/50:focus {
  background-color: rgb(39 39 42 / 0.5);
}
.focus\:bg-zinc-800\/60:focus {
  background-color: rgb(39 39 42 / 0.6);
}
.focus\:bg-zinc-800\/70:focus {
  background-color: rgb(39 39 42 / 0.7);
}
.focus\:bg-zinc-800\/80:focus {
  background-color: rgb(39 39 42 / 0.8);
}
.focus\:bg-zinc-800\/90:focus {
  background-color: rgb(39 39 42 / 0.9);
}
.focus\:bg-zinc-900:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(24 24 27 / var(--tw-bg-opacity, 1));
}
.focus\:bg-zinc-900\/10:focus {
  background-color: rgb(24 24 27 / 0.1);
}
.focus\:bg-zinc-900\/20:focus {
  background-color: rgb(24 24 27 / 0.2);
}
.focus\:bg-zinc-900\/30:focus {
  background-color: rgb(24 24 27 / 0.3);
}
.focus\:bg-zinc-900\/40:focus {
  background-color: rgb(24 24 27 / 0.4);
}
.focus\:bg-zinc-900\/5:focus {
  background-color: rgb(24 24 27 / 0.05);
}
.focus\:bg-zinc-900\/50:focus {
  background-color: rgb(24 24 27 / 0.5);
}
.focus\:bg-zinc-900\/60:focus {
  background-color: rgb(24 24 27 / 0.6);
}
.focus\:bg-zinc-900\/70:focus {
  background-color: rgb(24 24 27 / 0.7);
}
.focus\:bg-zinc-900\/80:focus {
  background-color: rgb(24 24 27 / 0.8);
}
.focus\:bg-zinc-900\/90:focus {
  background-color: rgb(24 24 27 / 0.9);
}
.focus\:bg-zinc-950:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(9 9 11 / var(--tw-bg-opacity, 1));
}
.focus\:bg-zinc-950\/10:focus {
  background-color: rgb(9 9 11 / 0.1);
}
.focus\:bg-zinc-950\/20:focus {
  background-color: rgb(9 9 11 / 0.2);
}
.focus\:bg-zinc-950\/30:focus {
  background-color: rgb(9 9 11 / 0.3);
}
.focus\:bg-zinc-950\/40:focus {
  background-color: rgb(9 9 11 / 0.4);
}
.focus\:bg-zinc-950\/5:focus {
  background-color: rgb(9 9 11 / 0.05);
}
.focus\:bg-zinc-950\/50:focus {
  background-color: rgb(9 9 11 / 0.5);
}
.focus\:bg-zinc-950\/60:focus {
  background-color: rgb(9 9 11 / 0.6);
}
.focus\:bg-zinc-950\/70:focus {
  background-color: rgb(9 9 11 / 0.7);
}
.focus\:bg-zinc-950\/80:focus {
  background-color: rgb(9 9 11 / 0.8);
}
.focus\:bg-zinc-950\/90:focus {
  background-color: rgb(9 9 11 / 0.9);
}
.focus\:p-0:focus {
  padding: 0px;
}
.focus\:p-1:focus {
  padding: 0.25rem;
}
.focus\:p-10:focus {
  padding: 2.5rem;
}
.focus\:p-11:focus {
  padding: 2.75rem;
}
.focus\:p-12:focus {
  padding: 3rem;
}
.focus\:p-14:focus {
  padding: 3.5rem;
}
.focus\:p-16:focus {
  padding: 4rem;
}
.focus\:p-2:focus {
  padding: 0.5rem;
}
.focus\:p-20:focus {
  padding: 5rem;
}
.focus\:p-24:focus {
  padding: 6rem;
}
.focus\:p-28:focus {
  padding: 7rem;
}
.focus\:p-3:focus {
  padding: 0.75rem;
}
.focus\:p-32:focus {
  padding: 8rem;
}
.focus\:p-36:focus {
  padding: 9rem;
}
.focus\:p-4:focus {
  padding: 1rem;
}
.focus\:p-40:focus {
  padding: 10rem;
}
.focus\:p-44:focus {
  padding: 11rem;
}
.focus\:p-48:focus {
  padding: 12rem;
}
.focus\:p-5:focus {
  padding: 1.25rem;
}
.focus\:p-52:focus {
  padding: 13rem;
}
.focus\:p-56:focus {
  padding: 14rem;
}
.focus\:p-6:focus {
  padding: 1.5rem;
}
.focus\:p-60:focus {
  padding: 15rem;
}
.focus\:p-64:focus {
  padding: 16rem;
}
.focus\:p-7:focus {
  padding: 1.75rem;
}
.focus\:p-72:focus {
  padding: 18rem;
}
.focus\:p-8:focus {
  padding: 2rem;
}
.focus\:p-80:focus {
  padding: 20rem;
}
.focus\:p-9:focus {
  padding: 2.25rem;
}
.focus\:p-96:focus {
  padding: 24rem;
}
.focus\:px-0:focus {
  padding-left: 0px;
  padding-right: 0px;
}
.focus\:px-1:focus {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.focus\:px-10:focus {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.focus\:px-11:focus {
  padding-left: 2.75rem;
  padding-right: 2.75rem;
}
.focus\:px-12:focus {
  padding-left: 3rem;
  padding-right: 3rem;
}
.focus\:px-14:focus {
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}
.focus\:px-16:focus {
  padding-left: 4rem;
  padding-right: 4rem;
}
.focus\:px-2:focus {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.focus\:px-20:focus {
  padding-left: 5rem;
  padding-right: 5rem;
}
.focus\:px-24:focus {
  padding-left: 6rem;
  padding-right: 6rem;
}
.focus\:px-28:focus {
  padding-left: 7rem;
  padding-right: 7rem;
}
.focus\:px-3:focus {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.focus\:px-32:focus {
  padding-left: 8rem;
  padding-right: 8rem;
}
.focus\:px-36:focus {
  padding-left: 9rem;
  padding-right: 9rem;
}
.focus\:px-4:focus {
  padding-left: 1rem;
  padding-right: 1rem;
}
.focus\:px-40:focus {
  padding-left: 10rem;
  padding-right: 10rem;
}
.focus\:px-44:focus {
  padding-left: 11rem;
  padding-right: 11rem;
}
.focus\:px-48:focus {
  padding-left: 12rem;
  padding-right: 12rem;
}
.focus\:px-5:focus {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.focus\:px-52:focus {
  padding-left: 13rem;
  padding-right: 13rem;
}
.focus\:px-56:focus {
  padding-left: 14rem;
  padding-right: 14rem;
}
.focus\:px-6:focus {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.focus\:px-60:focus {
  padding-left: 15rem;
  padding-right: 15rem;
}
.focus\:px-64:focus {
  padding-left: 16rem;
  padding-right: 16rem;
}
.focus\:px-7:focus {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}
.focus\:px-72:focus {
  padding-left: 18rem;
  padding-right: 18rem;
}
.focus\:px-8:focus {
  padding-left: 2rem;
  padding-right: 2rem;
}
.focus\:px-80:focus {
  padding-left: 20rem;
  padding-right: 20rem;
}
.focus\:px-9:focus {
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}
.focus\:px-96:focus {
  padding-left: 24rem;
  padding-right: 24rem;
}
.focus\:py-0:focus {
  padding-top: 0px;
  padding-bottom: 0px;
}
.focus\:py-1:focus {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.focus\:py-10:focus {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.focus\:py-11:focus {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}
.focus\:py-12:focus {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.focus\:py-14:focus {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.focus\:py-16:focus {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.focus\:py-2:focus {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.focus\:py-20:focus {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.focus\:py-24:focus {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.focus\:py-28:focus {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
.focus\:py-3:focus {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.focus\:py-32:focus {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.focus\:py-36:focus {
  padding-top: 9rem;
  padding-bottom: 9rem;
}
.focus\:py-4:focus {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.focus\:py-40:focus {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.focus\:py-44:focus {
  padding-top: 11rem;
  padding-bottom: 11rem;
}
.focus\:py-48:focus {
  padding-top: 12rem;
  padding-bottom: 12rem;
}
.focus\:py-5:focus {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.focus\:py-52:focus {
  padding-top: 13rem;
  padding-bottom: 13rem;
}
.focus\:py-56:focus {
  padding-top: 14rem;
  padding-bottom: 14rem;
}
.focus\:py-6:focus {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.focus\:py-60:focus {
  padding-top: 15rem;
  padding-bottom: 15rem;
}
.focus\:py-64:focus {
  padding-top: 16rem;
  padding-bottom: 16rem;
}
.focus\:py-7:focus {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}
.focus\:py-72:focus {
  padding-top: 18rem;
  padding-bottom: 18rem;
}
.focus\:py-8:focus {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.focus\:py-80:focus {
  padding-top: 20rem;
  padding-bottom: 20rem;
}
.focus\:py-9:focus {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}
.focus\:py-96:focus {
  padding-top: 24rem;
  padding-bottom: 24rem;
}
.focus\:pb-0:focus {
  padding-bottom: 0px;
}
.focus\:pb-1:focus {
  padding-bottom: 0.25rem;
}
.focus\:pb-10:focus {
  padding-bottom: 2.5rem;
}
.focus\:pb-11:focus {
  padding-bottom: 2.75rem;
}
.focus\:pb-12:focus {
  padding-bottom: 3rem;
}
.focus\:pb-14:focus {
  padding-bottom: 3.5rem;
}
.focus\:pb-16:focus {
  padding-bottom: 4rem;
}
.focus\:pb-2:focus {
  padding-bottom: 0.5rem;
}
.focus\:pb-20:focus {
  padding-bottom: 5rem;
}
.focus\:pb-24:focus {
  padding-bottom: 6rem;
}
.focus\:pb-28:focus {
  padding-bottom: 7rem;
}
.focus\:pb-3:focus {
  padding-bottom: 0.75rem;
}
.focus\:pb-32:focus {
  padding-bottom: 8rem;
}
.focus\:pb-36:focus {
  padding-bottom: 9rem;
}
.focus\:pb-4:focus {
  padding-bottom: 1rem;
}
.focus\:pb-40:focus {
  padding-bottom: 10rem;
}
.focus\:pb-44:focus {
  padding-bottom: 11rem;
}
.focus\:pb-48:focus {
  padding-bottom: 12rem;
}
.focus\:pb-5:focus {
  padding-bottom: 1.25rem;
}
.focus\:pb-52:focus {
  padding-bottom: 13rem;
}
.focus\:pb-56:focus {
  padding-bottom: 14rem;
}
.focus\:pb-6:focus {
  padding-bottom: 1.5rem;
}
.focus\:pb-60:focus {
  padding-bottom: 15rem;
}
.focus\:pb-64:focus {
  padding-bottom: 16rem;
}
.focus\:pb-7:focus {
  padding-bottom: 1.75rem;
}
.focus\:pb-72:focus {
  padding-bottom: 18rem;
}
.focus\:pb-8:focus {
  padding-bottom: 2rem;
}
.focus\:pb-80:focus {
  padding-bottom: 20rem;
}
.focus\:pb-9:focus {
  padding-bottom: 2.25rem;
}
.focus\:pb-96:focus {
  padding-bottom: 24rem;
}
.focus\:pl-0:focus {
  padding-left: 0px;
}
.focus\:pl-1:focus {
  padding-left: 0.25rem;
}
.focus\:pl-10:focus {
  padding-left: 2.5rem;
}
.focus\:pl-11:focus {
  padding-left: 2.75rem;
}
.focus\:pl-12:focus {
  padding-left: 3rem;
}
.focus\:pl-14:focus {
  padding-left: 3.5rem;
}
.focus\:pl-16:focus {
  padding-left: 4rem;
}
.focus\:pl-2:focus {
  padding-left: 0.5rem;
}
.focus\:pl-20:focus {
  padding-left: 5rem;
}
.focus\:pl-24:focus {
  padding-left: 6rem;
}
.focus\:pl-28:focus {
  padding-left: 7rem;
}
.focus\:pl-3:focus {
  padding-left: 0.75rem;
}
.focus\:pl-32:focus {
  padding-left: 8rem;
}
.focus\:pl-36:focus {
  padding-left: 9rem;
}
.focus\:pl-4:focus {
  padding-left: 1rem;
}
.focus\:pl-40:focus {
  padding-left: 10rem;
}
.focus\:pl-44:focus {
  padding-left: 11rem;
}
.focus\:pl-48:focus {
  padding-left: 12rem;
}
.focus\:pl-5:focus {
  padding-left: 1.25rem;
}
.focus\:pl-52:focus {
  padding-left: 13rem;
}
.focus\:pl-56:focus {
  padding-left: 14rem;
}
.focus\:pl-6:focus {
  padding-left: 1.5rem;
}
.focus\:pl-60:focus {
  padding-left: 15rem;
}
.focus\:pl-64:focus {
  padding-left: 16rem;
}
.focus\:pl-7:focus {
  padding-left: 1.75rem;
}
.focus\:pl-72:focus {
  padding-left: 18rem;
}
.focus\:pl-8:focus {
  padding-left: 2rem;
}
.focus\:pl-80:focus {
  padding-left: 20rem;
}
.focus\:pl-9:focus {
  padding-left: 2.25rem;
}
.focus\:pl-96:focus {
  padding-left: 24rem;
}
.focus\:pr-0:focus {
  padding-right: 0px;
}
.focus\:pr-1:focus {
  padding-right: 0.25rem;
}
.focus\:pr-10:focus {
  padding-right: 2.5rem;
}
.focus\:pr-11:focus {
  padding-right: 2.75rem;
}
.focus\:pr-12:focus {
  padding-right: 3rem;
}
.focus\:pr-14:focus {
  padding-right: 3.5rem;
}
.focus\:pr-16:focus {
  padding-right: 4rem;
}
.focus\:pr-2:focus {
  padding-right: 0.5rem;
}
.focus\:pr-20:focus {
  padding-right: 5rem;
}
.focus\:pr-24:focus {
  padding-right: 6rem;
}
.focus\:pr-28:focus {
  padding-right: 7rem;
}
.focus\:pr-3:focus {
  padding-right: 0.75rem;
}
.focus\:pr-32:focus {
  padding-right: 8rem;
}
.focus\:pr-36:focus {
  padding-right: 9rem;
}
.focus\:pr-4:focus {
  padding-right: 1rem;
}
.focus\:pr-40:focus {
  padding-right: 10rem;
}
.focus\:pr-44:focus {
  padding-right: 11rem;
}
.focus\:pr-48:focus {
  padding-right: 12rem;
}
.focus\:pr-5:focus {
  padding-right: 1.25rem;
}
.focus\:pr-52:focus {
  padding-right: 13rem;
}
.focus\:pr-56:focus {
  padding-right: 14rem;
}
.focus\:pr-6:focus {
  padding-right: 1.5rem;
}
.focus\:pr-60:focus {
  padding-right: 15rem;
}
.focus\:pr-64:focus {
  padding-right: 16rem;
}
.focus\:pr-7:focus {
  padding-right: 1.75rem;
}
.focus\:pr-72:focus {
  padding-right: 18rem;
}
.focus\:pr-8:focus {
  padding-right: 2rem;
}
.focus\:pr-80:focus {
  padding-right: 20rem;
}
.focus\:pr-9:focus {
  padding-right: 2.25rem;
}
.focus\:pr-96:focus {
  padding-right: 24rem;
}
.focus\:pt-0:focus {
  padding-top: 0px;
}
.focus\:pt-1:focus {
  padding-top: 0.25rem;
}
.focus\:pt-10:focus {
  padding-top: 2.5rem;
}
.focus\:pt-11:focus {
  padding-top: 2.75rem;
}
.focus\:pt-12:focus {
  padding-top: 3rem;
}
.focus\:pt-14:focus {
  padding-top: 3.5rem;
}
.focus\:pt-16:focus {
  padding-top: 4rem;
}
.focus\:pt-2:focus {
  padding-top: 0.5rem;
}
.focus\:pt-20:focus {
  padding-top: 5rem;
}
.focus\:pt-24:focus {
  padding-top: 6rem;
}
.focus\:pt-28:focus {
  padding-top: 7rem;
}
.focus\:pt-3:focus {
  padding-top: 0.75rem;
}
.focus\:pt-32:focus {
  padding-top: 8rem;
}
.focus\:pt-36:focus {
  padding-top: 9rem;
}
.focus\:pt-4:focus {
  padding-top: 1rem;
}
.focus\:pt-40:focus {
  padding-top: 10rem;
}
.focus\:pt-44:focus {
  padding-top: 11rem;
}
.focus\:pt-48:focus {
  padding-top: 12rem;
}
.focus\:pt-5:focus {
  padding-top: 1.25rem;
}
.focus\:pt-52:focus {
  padding-top: 13rem;
}
.focus\:pt-56:focus {
  padding-top: 14rem;
}
.focus\:pt-6:focus {
  padding-top: 1.5rem;
}
.focus\:pt-60:focus {
  padding-top: 15rem;
}
.focus\:pt-64:focus {
  padding-top: 16rem;
}
.focus\:pt-7:focus {
  padding-top: 1.75rem;
}
.focus\:pt-72:focus {
  padding-top: 18rem;
}
.focus\:pt-8:focus {
  padding-top: 2rem;
}
.focus\:pt-80:focus {
  padding-top: 20rem;
}
.focus\:pt-9:focus {
  padding-top: 2.25rem;
}
.focus\:pt-96:focus {
  padding-top: 24rem;
}
.focus\:font-arial:focus {
  font-family: Arial, Helvetica, sans-serif;
}
.focus\:font-assistant:focus {
  font-family: Assistant, sans-serif;
}
.focus\:font-dancingscript:focus {
  font-family: Dancing Script, cursive;
}
.focus\:font-firacode:focus {
  font-family: Fira Code, monospace;
}
.focus\:font-frankRuhlLibre:focus {
  font-family: Frank Ruhl Libre, serif;
}
.focus\:font-jetbrains:focus {
  font-family: JetBrains Mono, monospace;
}
.focus\:font-lato:focus {
  font-family: Lato, sans-serif;
}
.focus\:font-lobster:focus {
  font-family: Lobster, cursive;
}
.focus\:font-lobsterTwo:focus {
  font-family: Lobster Two, cursive;
}
.focus\:font-lora:focus {
  font-family: Lora, serif;
}
.focus\:font-montserrat:focus {
  font-family: Montserrat, sans-serif;
}
.focus\:font-opensans:focus {
  font-family: Open Sans, sans-serif;
}
.focus\:font-oswald:focus {
  font-family: Oswald, sans-serif;
}
.focus\:font-pacifico:focus {
  font-family: Pacifico, cursive;
}
.focus\:font-poppins:focus {
  font-family: Poppins, sans-serif;
}
.focus\:font-raleway:focus {
  font-family: Raleway, sans-serif;
}
.focus\:font-roboto:focus {
  font-family: Roboto, sans-serif;
}
.focus\:text-lg:focus {
  font-size: 1.125rem;
}
.focus\:text-accent-foreground:focus {
  color: var(--accent-foreground);
}
.focus\:text-amber-100:focus {
  --tw-text-opacity: 1;
  color: rgb(254 243 199 / var(--tw-text-opacity, 1));
}
.focus\:text-amber-200:focus {
  --tw-text-opacity: 1;
  color: rgb(253 230 138 / var(--tw-text-opacity, 1));
}
.focus\:text-amber-300:focus {
  --tw-text-opacity: 1;
  color: rgb(252 211 77 / var(--tw-text-opacity, 1));
}
.focus\:text-amber-400:focus {
  --tw-text-opacity: 1;
  color: rgb(251 191 36 / var(--tw-text-opacity, 1));
}
.focus\:text-amber-50:focus {
  --tw-text-opacity: 1;
  color: rgb(255 251 235 / var(--tw-text-opacity, 1));
}
.focus\:text-amber-500:focus {
  --tw-text-opacity: 1;
  color: rgb(245 158 11 / var(--tw-text-opacity, 1));
}
.focus\:text-amber-600:focus {
  --tw-text-opacity: 1;
  color: rgb(217 119 6 / var(--tw-text-opacity, 1));
}
.focus\:text-amber-700:focus {
  --tw-text-opacity: 1;
  color: rgb(180 83 9 / var(--tw-text-opacity, 1));
}
.focus\:text-amber-800:focus {
  --tw-text-opacity: 1;
  color: rgb(146 64 14 / var(--tw-text-opacity, 1));
}
.focus\:text-amber-900:focus {
  --tw-text-opacity: 1;
  color: rgb(120 53 15 / var(--tw-text-opacity, 1));
}
.focus\:text-amber-950:focus {
  --tw-text-opacity: 1;
  color: rgb(69 26 3 / var(--tw-text-opacity, 1));
}
.focus\:text-blue-100:focus {
  --tw-text-opacity: 1;
  color: rgb(219 234 254 / var(--tw-text-opacity, 1));
}
.focus\:text-blue-200:focus {
  --tw-text-opacity: 1;
  color: rgb(191 219 254 / var(--tw-text-opacity, 1));
}
.focus\:text-blue-300:focus {
  --tw-text-opacity: 1;
  color: rgb(147 197 253 / var(--tw-text-opacity, 1));
}
.focus\:text-blue-400:focus {
  --tw-text-opacity: 1;
  color: rgb(96 165 250 / var(--tw-text-opacity, 1));
}
.focus\:text-blue-50:focus {
  --tw-text-opacity: 1;
  color: rgb(239 246 255 / var(--tw-text-opacity, 1));
}
.focus\:text-blue-500:focus {
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / var(--tw-text-opacity, 1));
}
.focus\:text-blue-600:focus {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.focus\:text-blue-700:focus {
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / var(--tw-text-opacity, 1));
}
.focus\:text-blue-800:focus {
  --tw-text-opacity: 1;
  color: rgb(30 64 175 / var(--tw-text-opacity, 1));
}
.focus\:text-blue-900:focus {
  --tw-text-opacity: 1;
  color: rgb(30 58 138 / var(--tw-text-opacity, 1));
}
.focus\:text-blue-950:focus {
  --tw-text-opacity: 1;
  color: rgb(23 37 84 / var(--tw-text-opacity, 1));
}
.focus\:text-cyan-100:focus {
  --tw-text-opacity: 1;
  color: rgb(207 250 254 / var(--tw-text-opacity, 1));
}
.focus\:text-cyan-200:focus {
  --tw-text-opacity: 1;
  color: rgb(165 243 252 / var(--tw-text-opacity, 1));
}
.focus\:text-cyan-300:focus {
  --tw-text-opacity: 1;
  color: rgb(103 232 249 / var(--tw-text-opacity, 1));
}
.focus\:text-cyan-400:focus {
  --tw-text-opacity: 1;
  color: rgb(34 211 238 / var(--tw-text-opacity, 1));
}
.focus\:text-cyan-50:focus {
  --tw-text-opacity: 1;
  color: rgb(236 254 255 / var(--tw-text-opacity, 1));
}
.focus\:text-cyan-500:focus {
  --tw-text-opacity: 1;
  color: rgb(6 182 212 / var(--tw-text-opacity, 1));
}
.focus\:text-cyan-600:focus {
  --tw-text-opacity: 1;
  color: rgb(8 145 178 / var(--tw-text-opacity, 1));
}
.focus\:text-cyan-700:focus {
  --tw-text-opacity: 1;
  color: rgb(14 116 144 / var(--tw-text-opacity, 1));
}
.focus\:text-cyan-800:focus {
  --tw-text-opacity: 1;
  color: rgb(21 94 117 / var(--tw-text-opacity, 1));
}
.focus\:text-cyan-900:focus {
  --tw-text-opacity: 1;
  color: rgb(22 78 99 / var(--tw-text-opacity, 1));
}
.focus\:text-cyan-950:focus {
  --tw-text-opacity: 1;
  color: rgb(8 51 68 / var(--tw-text-opacity, 1));
}
.focus\:text-emerald-100:focus {
  --tw-text-opacity: 1;
  color: rgb(209 250 229 / var(--tw-text-opacity, 1));
}
.focus\:text-emerald-200:focus {
  --tw-text-opacity: 1;
  color: rgb(167 243 208 / var(--tw-text-opacity, 1));
}
.focus\:text-emerald-300:focus {
  --tw-text-opacity: 1;
  color: rgb(110 231 183 / var(--tw-text-opacity, 1));
}
.focus\:text-emerald-400:focus {
  --tw-text-opacity: 1;
  color: rgb(52 211 153 / var(--tw-text-opacity, 1));
}
.focus\:text-emerald-50:focus {
  --tw-text-opacity: 1;
  color: rgb(236 253 245 / var(--tw-text-opacity, 1));
}
.focus\:text-emerald-500:focus {
  --tw-text-opacity: 1;
  color: rgb(16 185 129 / var(--tw-text-opacity, 1));
}
.focus\:text-emerald-600:focus {
  --tw-text-opacity: 1;
  color: rgb(5 150 105 / var(--tw-text-opacity, 1));
}
.focus\:text-emerald-700:focus {
  --tw-text-opacity: 1;
  color: rgb(4 120 87 / var(--tw-text-opacity, 1));
}
.focus\:text-emerald-800:focus {
  --tw-text-opacity: 1;
  color: rgb(6 95 70 / var(--tw-text-opacity, 1));
}
.focus\:text-emerald-900:focus {
  --tw-text-opacity: 1;
  color: rgb(6 78 59 / var(--tw-text-opacity, 1));
}
.focus\:text-emerald-950:focus {
  --tw-text-opacity: 1;
  color: rgb(2 44 34 / var(--tw-text-opacity, 1));
}
.focus\:text-fuchsia-100:focus {
  --tw-text-opacity: 1;
  color: rgb(250 232 255 / var(--tw-text-opacity, 1));
}
.focus\:text-fuchsia-200:focus {
  --tw-text-opacity: 1;
  color: rgb(245 208 254 / var(--tw-text-opacity, 1));
}
.focus\:text-fuchsia-300:focus {
  --tw-text-opacity: 1;
  color: rgb(240 171 252 / var(--tw-text-opacity, 1));
}
.focus\:text-fuchsia-400:focus {
  --tw-text-opacity: 1;
  color: rgb(232 121 249 / var(--tw-text-opacity, 1));
}
.focus\:text-fuchsia-50:focus {
  --tw-text-opacity: 1;
  color: rgb(253 244 255 / var(--tw-text-opacity, 1));
}
.focus\:text-fuchsia-500:focus {
  --tw-text-opacity: 1;
  color: rgb(217 70 239 / var(--tw-text-opacity, 1));
}
.focus\:text-fuchsia-600:focus {
  --tw-text-opacity: 1;
  color: rgb(192 38 211 / var(--tw-text-opacity, 1));
}
.focus\:text-fuchsia-700:focus {
  --tw-text-opacity: 1;
  color: rgb(162 28 175 / var(--tw-text-opacity, 1));
}
.focus\:text-fuchsia-800:focus {
  --tw-text-opacity: 1;
  color: rgb(134 25 143 / var(--tw-text-opacity, 1));
}
.focus\:text-fuchsia-900:focus {
  --tw-text-opacity: 1;
  color: rgb(112 26 117 / var(--tw-text-opacity, 1));
}
.focus\:text-fuchsia-950:focus {
  --tw-text-opacity: 1;
  color: rgb(74 4 78 / var(--tw-text-opacity, 1));
}
.focus\:text-gray-100:focus {
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / var(--tw-text-opacity, 1));
}
.focus\:text-gray-200:focus {
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity, 1));
}
.focus\:text-gray-300:focus {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}
.focus\:text-gray-400:focus {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.focus\:text-gray-50:focus {
  --tw-text-opacity: 1;
  color: rgb(249 250 251 / var(--tw-text-opacity, 1));
}
.focus\:text-gray-500:focus {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.focus\:text-gray-600:focus {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.focus\:text-gray-700:focus {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.focus\:text-gray-800:focus {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.focus\:text-gray-900:focus {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.focus\:text-gray-950:focus {
  --tw-text-opacity: 1;
  color: rgb(3 7 18 / var(--tw-text-opacity, 1));
}
.focus\:text-green-100:focus {
  --tw-text-opacity: 1;
  color: rgb(220 252 231 / var(--tw-text-opacity, 1));
}
.focus\:text-green-200:focus {
  --tw-text-opacity: 1;
  color: rgb(187 247 208 / var(--tw-text-opacity, 1));
}
.focus\:text-green-300:focus {
  --tw-text-opacity: 1;
  color: rgb(134 239 172 / var(--tw-text-opacity, 1));
}
.focus\:text-green-400:focus {
  --tw-text-opacity: 1;
  color: rgb(74 222 128 / var(--tw-text-opacity, 1));
}
.focus\:text-green-50:focus {
  --tw-text-opacity: 1;
  color: rgb(240 253 244 / var(--tw-text-opacity, 1));
}
.focus\:text-green-500:focus {
  --tw-text-opacity: 1;
  color: rgb(34 197 94 / var(--tw-text-opacity, 1));
}
.focus\:text-green-600:focus {
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}
.focus\:text-green-700:focus {
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / var(--tw-text-opacity, 1));
}
.focus\:text-green-800:focus {
  --tw-text-opacity: 1;
  color: rgb(22 101 52 / var(--tw-text-opacity, 1));
}
.focus\:text-green-900:focus {
  --tw-text-opacity: 1;
  color: rgb(20 83 45 / var(--tw-text-opacity, 1));
}
.focus\:text-green-950:focus {
  --tw-text-opacity: 1;
  color: rgb(5 46 22 / var(--tw-text-opacity, 1));
}
.focus\:text-indigo-100:focus {
  --tw-text-opacity: 1;
  color: rgb(224 231 255 / var(--tw-text-opacity, 1));
}
.focus\:text-indigo-200:focus {
  --tw-text-opacity: 1;
  color: rgb(199 210 254 / var(--tw-text-opacity, 1));
}
.focus\:text-indigo-300:focus {
  --tw-text-opacity: 1;
  color: rgb(165 180 252 / var(--tw-text-opacity, 1));
}
.focus\:text-indigo-400:focus {
  --tw-text-opacity: 1;
  color: rgb(129 140 248 / var(--tw-text-opacity, 1));
}
.focus\:text-indigo-50:focus {
  --tw-text-opacity: 1;
  color: rgb(238 242 255 / var(--tw-text-opacity, 1));
}
.focus\:text-indigo-500:focus {
  --tw-text-opacity: 1;
  color: rgb(99 102 241 / var(--tw-text-opacity, 1));
}
.focus\:text-indigo-600:focus {
  --tw-text-opacity: 1;
  color: rgb(79 70 229 / var(--tw-text-opacity, 1));
}
.focus\:text-indigo-700:focus {
  --tw-text-opacity: 1;
  color: rgb(67 56 202 / var(--tw-text-opacity, 1));
}
.focus\:text-indigo-800:focus {
  --tw-text-opacity: 1;
  color: rgb(55 48 163 / var(--tw-text-opacity, 1));
}
.focus\:text-indigo-900:focus {
  --tw-text-opacity: 1;
  color: rgb(49 46 129 / var(--tw-text-opacity, 1));
}
.focus\:text-indigo-950:focus {
  --tw-text-opacity: 1;
  color: rgb(30 27 75 / var(--tw-text-opacity, 1));
}
.focus\:text-lime-100:focus {
  --tw-text-opacity: 1;
  color: rgb(236 252 203 / var(--tw-text-opacity, 1));
}
.focus\:text-lime-200:focus {
  --tw-text-opacity: 1;
  color: rgb(217 249 157 / var(--tw-text-opacity, 1));
}
.focus\:text-lime-300:focus {
  --tw-text-opacity: 1;
  color: rgb(190 242 100 / var(--tw-text-opacity, 1));
}
.focus\:text-lime-400:focus {
  --tw-text-opacity: 1;
  color: rgb(163 230 53 / var(--tw-text-opacity, 1));
}
.focus\:text-lime-50:focus {
  --tw-text-opacity: 1;
  color: rgb(247 254 231 / var(--tw-text-opacity, 1));
}
.focus\:text-lime-500:focus {
  --tw-text-opacity: 1;
  color: rgb(132 204 22 / var(--tw-text-opacity, 1));
}
.focus\:text-lime-600:focus {
  --tw-text-opacity: 1;
  color: rgb(101 163 13 / var(--tw-text-opacity, 1));
}
.focus\:text-lime-700:focus {
  --tw-text-opacity: 1;
  color: rgb(77 124 15 / var(--tw-text-opacity, 1));
}
.focus\:text-lime-800:focus {
  --tw-text-opacity: 1;
  color: rgb(63 98 18 / var(--tw-text-opacity, 1));
}
.focus\:text-lime-900:focus {
  --tw-text-opacity: 1;
  color: rgb(54 83 20 / var(--tw-text-opacity, 1));
}
.focus\:text-lime-950:focus {
  --tw-text-opacity: 1;
  color: rgb(26 46 5 / var(--tw-text-opacity, 1));
}
.focus\:text-neutral-100:focus {
  --tw-text-opacity: 1;
  color: rgb(245 245 245 / var(--tw-text-opacity, 1));
}
.focus\:text-neutral-200:focus {
  --tw-text-opacity: 1;
  color: rgb(229 229 229 / var(--tw-text-opacity, 1));
}
.focus\:text-neutral-300:focus {
  --tw-text-opacity: 1;
  color: rgb(212 212 212 / var(--tw-text-opacity, 1));
}
.focus\:text-neutral-400:focus {
  --tw-text-opacity: 1;
  color: rgb(163 163 163 / var(--tw-text-opacity, 1));
}
.focus\:text-neutral-50:focus {
  --tw-text-opacity: 1;
  color: rgb(250 250 250 / var(--tw-text-opacity, 1));
}
.focus\:text-neutral-500:focus {
  --tw-text-opacity: 1;
  color: rgb(115 115 115 / var(--tw-text-opacity, 1));
}
.focus\:text-neutral-600:focus {
  --tw-text-opacity: 1;
  color: rgb(82 82 82 / var(--tw-text-opacity, 1));
}
.focus\:text-neutral-700:focus {
  --tw-text-opacity: 1;
  color: rgb(64 64 64 / var(--tw-text-opacity, 1));
}
.focus\:text-neutral-800:focus {
  --tw-text-opacity: 1;
  color: rgb(38 38 38 / var(--tw-text-opacity, 1));
}
.focus\:text-neutral-900:focus {
  --tw-text-opacity: 1;
  color: rgb(23 23 23 / var(--tw-text-opacity, 1));
}
.focus\:text-neutral-950:focus {
  --tw-text-opacity: 1;
  color: rgb(10 10 10 / var(--tw-text-opacity, 1));
}
.focus\:text-orange-100:focus {
  --tw-text-opacity: 1;
  color: rgb(255 237 213 / var(--tw-text-opacity, 1));
}
.focus\:text-orange-200:focus {
  --tw-text-opacity: 1;
  color: rgb(254 215 170 / var(--tw-text-opacity, 1));
}
.focus\:text-orange-300:focus {
  --tw-text-opacity: 1;
  color: rgb(253 186 116 / var(--tw-text-opacity, 1));
}
.focus\:text-orange-400:focus {
  --tw-text-opacity: 1;
  color: rgb(251 146 60 / var(--tw-text-opacity, 1));
}
.focus\:text-orange-50:focus {
  --tw-text-opacity: 1;
  color: rgb(255 247 237 / var(--tw-text-opacity, 1));
}
.focus\:text-orange-500:focus {
  --tw-text-opacity: 1;
  color: rgb(249 115 22 / var(--tw-text-opacity, 1));
}
.focus\:text-orange-600:focus {
  --tw-text-opacity: 1;
  color: rgb(234 88 12 / var(--tw-text-opacity, 1));
}
.focus\:text-orange-700:focus {
  --tw-text-opacity: 1;
  color: rgb(194 65 12 / var(--tw-text-opacity, 1));
}
.focus\:text-orange-800:focus {
  --tw-text-opacity: 1;
  color: rgb(154 52 18 / var(--tw-text-opacity, 1));
}
.focus\:text-orange-900:focus {
  --tw-text-opacity: 1;
  color: rgb(124 45 18 / var(--tw-text-opacity, 1));
}
.focus\:text-orange-950:focus {
  --tw-text-opacity: 1;
  color: rgb(67 20 7 / var(--tw-text-opacity, 1));
}
.focus\:text-pink-100:focus {
  --tw-text-opacity: 1;
  color: rgb(252 231 243 / var(--tw-text-opacity, 1));
}
.focus\:text-pink-200:focus {
  --tw-text-opacity: 1;
  color: rgb(251 207 232 / var(--tw-text-opacity, 1));
}
.focus\:text-pink-300:focus {
  --tw-text-opacity: 1;
  color: rgb(249 168 212 / var(--tw-text-opacity, 1));
}
.focus\:text-pink-400:focus {
  --tw-text-opacity: 1;
  color: rgb(244 114 182 / var(--tw-text-opacity, 1));
}
.focus\:text-pink-50:focus {
  --tw-text-opacity: 1;
  color: rgb(253 242 248 / var(--tw-text-opacity, 1));
}
.focus\:text-pink-500:focus {
  --tw-text-opacity: 1;
  color: rgb(236 72 153 / var(--tw-text-opacity, 1));
}
.focus\:text-pink-600:focus {
  --tw-text-opacity: 1;
  color: rgb(219 39 119 / var(--tw-text-opacity, 1));
}
.focus\:text-pink-700:focus {
  --tw-text-opacity: 1;
  color: rgb(190 24 93 / var(--tw-text-opacity, 1));
}
.focus\:text-pink-800:focus {
  --tw-text-opacity: 1;
  color: rgb(157 23 77 / var(--tw-text-opacity, 1));
}
.focus\:text-pink-900:focus {
  --tw-text-opacity: 1;
  color: rgb(131 24 67 / var(--tw-text-opacity, 1));
}
.focus\:text-pink-950:focus {
  --tw-text-opacity: 1;
  color: rgb(80 7 36 / var(--tw-text-opacity, 1));
}
.focus\:text-purple-100:focus {
  --tw-text-opacity: 1;
  color: rgb(243 232 255 / var(--tw-text-opacity, 1));
}
.focus\:text-purple-200:focus {
  --tw-text-opacity: 1;
  color: rgb(233 213 255 / var(--tw-text-opacity, 1));
}
.focus\:text-purple-300:focus {
  --tw-text-opacity: 1;
  color: rgb(216 180 254 / var(--tw-text-opacity, 1));
}
.focus\:text-purple-400:focus {
  --tw-text-opacity: 1;
  color: rgb(192 132 252 / var(--tw-text-opacity, 1));
}
.focus\:text-purple-50:focus {
  --tw-text-opacity: 1;
  color: rgb(250 245 255 / var(--tw-text-opacity, 1));
}
.focus\:text-purple-500:focus {
  --tw-text-opacity: 1;
  color: rgb(168 85 247 / var(--tw-text-opacity, 1));
}
.focus\:text-purple-600:focus {
  --tw-text-opacity: 1;
  color: rgb(147 51 234 / var(--tw-text-opacity, 1));
}
.focus\:text-purple-700:focus {
  --tw-text-opacity: 1;
  color: rgb(126 34 206 / var(--tw-text-opacity, 1));
}
.focus\:text-purple-800:focus {
  --tw-text-opacity: 1;
  color: rgb(107 33 168 / var(--tw-text-opacity, 1));
}
.focus\:text-purple-900:focus {
  --tw-text-opacity: 1;
  color: rgb(88 28 135 / var(--tw-text-opacity, 1));
}
.focus\:text-purple-950:focus {
  --tw-text-opacity: 1;
  color: rgb(59 7 100 / var(--tw-text-opacity, 1));
}
.focus\:text-red-100:focus {
  --tw-text-opacity: 1;
  color: rgb(254 226 226 / var(--tw-text-opacity, 1));
}
.focus\:text-red-200:focus {
  --tw-text-opacity: 1;
  color: rgb(254 202 202 / var(--tw-text-opacity, 1));
}
.focus\:text-red-300:focus {
  --tw-text-opacity: 1;
  color: rgb(252 165 165 / var(--tw-text-opacity, 1));
}
.focus\:text-red-400:focus {
  --tw-text-opacity: 1;
  color: rgb(248 113 113 / var(--tw-text-opacity, 1));
}
.focus\:text-red-50:focus {
  --tw-text-opacity: 1;
  color: rgb(254 242 242 / var(--tw-text-opacity, 1));
}
.focus\:text-red-500:focus {
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.focus\:text-red-600:focus {
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.focus\:text-red-700:focus {
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity, 1));
}
.focus\:text-red-800:focus {
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / var(--tw-text-opacity, 1));
}
.focus\:text-red-900:focus {
  --tw-text-opacity: 1;
  color: rgb(127 29 29 / var(--tw-text-opacity, 1));
}
.focus\:text-red-950:focus {
  --tw-text-opacity: 1;
  color: rgb(69 10 10 / var(--tw-text-opacity, 1));
}
.focus\:text-rose-100:focus {
  --tw-text-opacity: 1;
  color: rgb(255 228 230 / var(--tw-text-opacity, 1));
}
.focus\:text-rose-200:focus {
  --tw-text-opacity: 1;
  color: rgb(254 205 211 / var(--tw-text-opacity, 1));
}
.focus\:text-rose-300:focus {
  --tw-text-opacity: 1;
  color: rgb(253 164 175 / var(--tw-text-opacity, 1));
}
.focus\:text-rose-400:focus {
  --tw-text-opacity: 1;
  color: rgb(251 113 133 / var(--tw-text-opacity, 1));
}
.focus\:text-rose-50:focus {
  --tw-text-opacity: 1;
  color: rgb(255 241 242 / var(--tw-text-opacity, 1));
}
.focus\:text-rose-500:focus {
  --tw-text-opacity: 1;
  color: rgb(244 63 94 / var(--tw-text-opacity, 1));
}
.focus\:text-rose-600:focus {
  --tw-text-opacity: 1;
  color: rgb(225 29 72 / var(--tw-text-opacity, 1));
}
.focus\:text-rose-700:focus {
  --tw-text-opacity: 1;
  color: rgb(190 18 60 / var(--tw-text-opacity, 1));
}
.focus\:text-rose-800:focus {
  --tw-text-opacity: 1;
  color: rgb(159 18 57 / var(--tw-text-opacity, 1));
}
.focus\:text-rose-900:focus {
  --tw-text-opacity: 1;
  color: rgb(136 19 55 / var(--tw-text-opacity, 1));
}
.focus\:text-rose-950:focus {
  --tw-text-opacity: 1;
  color: rgb(76 5 25 / var(--tw-text-opacity, 1));
}
.focus\:text-sky-100:focus {
  --tw-text-opacity: 1;
  color: rgb(224 242 254 / var(--tw-text-opacity, 1));
}
.focus\:text-sky-200:focus {
  --tw-text-opacity: 1;
  color: rgb(186 230 253 / var(--tw-text-opacity, 1));
}
.focus\:text-sky-300:focus {
  --tw-text-opacity: 1;
  color: rgb(125 211 252 / var(--tw-text-opacity, 1));
}
.focus\:text-sky-400:focus {
  --tw-text-opacity: 1;
  color: rgb(56 189 248 / var(--tw-text-opacity, 1));
}
.focus\:text-sky-50:focus {
  --tw-text-opacity: 1;
  color: rgb(240 249 255 / var(--tw-text-opacity, 1));
}
.focus\:text-sky-500:focus {
  --tw-text-opacity: 1;
  color: rgb(14 165 233 / var(--tw-text-opacity, 1));
}
.focus\:text-sky-600:focus {
  --tw-text-opacity: 1;
  color: rgb(2 132 199 / var(--tw-text-opacity, 1));
}
.focus\:text-sky-700:focus {
  --tw-text-opacity: 1;
  color: rgb(3 105 161 / var(--tw-text-opacity, 1));
}
.focus\:text-sky-800:focus {
  --tw-text-opacity: 1;
  color: rgb(7 89 133 / var(--tw-text-opacity, 1));
}
.focus\:text-sky-900:focus {
  --tw-text-opacity: 1;
  color: rgb(12 74 110 / var(--tw-text-opacity, 1));
}
.focus\:text-sky-950:focus {
  --tw-text-opacity: 1;
  color: rgb(8 47 73 / var(--tw-text-opacity, 1));
}
.focus\:text-slate-100:focus {
  --tw-text-opacity: 1;
  color: rgb(241 245 249 / var(--tw-text-opacity, 1));
}
.focus\:text-slate-200:focus {
  --tw-text-opacity: 1;
  color: rgb(226 232 240 / var(--tw-text-opacity, 1));
}
.focus\:text-slate-300:focus {
  --tw-text-opacity: 1;
  color: rgb(203 213 225 / var(--tw-text-opacity, 1));
}
.focus\:text-slate-400:focus {
  --tw-text-opacity: 1;
  color: rgb(148 163 184 / var(--tw-text-opacity, 1));
}
.focus\:text-slate-50:focus {
  --tw-text-opacity: 1;
  color: rgb(248 250 252 / var(--tw-text-opacity, 1));
}
.focus\:text-slate-500:focus {
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}
.focus\:text-slate-600:focus {
  --tw-text-opacity: 1;
  color: rgb(71 85 105 / var(--tw-text-opacity, 1));
}
.focus\:text-slate-700:focus {
  --tw-text-opacity: 1;
  color: rgb(51 65 85 / var(--tw-text-opacity, 1));
}
.focus\:text-slate-800:focus {
  --tw-text-opacity: 1;
  color: rgb(30 41 59 / var(--tw-text-opacity, 1));
}
.focus\:text-slate-900:focus {
  --tw-text-opacity: 1;
  color: rgb(15 23 42 / var(--tw-text-opacity, 1));
}
.focus\:text-slate-950:focus {
  --tw-text-opacity: 1;
  color: rgb(2 6 23 / var(--tw-text-opacity, 1));
}
.focus\:text-stone-100:focus {
  --tw-text-opacity: 1;
  color: rgb(245 245 244 / var(--tw-text-opacity, 1));
}
.focus\:text-stone-200:focus {
  --tw-text-opacity: 1;
  color: rgb(231 229 228 / var(--tw-text-opacity, 1));
}
.focus\:text-stone-300:focus {
  --tw-text-opacity: 1;
  color: rgb(214 211 209 / var(--tw-text-opacity, 1));
}
.focus\:text-stone-400:focus {
  --tw-text-opacity: 1;
  color: rgb(168 162 158 / var(--tw-text-opacity, 1));
}
.focus\:text-stone-50:focus {
  --tw-text-opacity: 1;
  color: rgb(250 250 249 / var(--tw-text-opacity, 1));
}
.focus\:text-stone-500:focus {
  --tw-text-opacity: 1;
  color: rgb(120 113 108 / var(--tw-text-opacity, 1));
}
.focus\:text-stone-600:focus {
  --tw-text-opacity: 1;
  color: rgb(87 83 78 / var(--tw-text-opacity, 1));
}
.focus\:text-stone-700:focus {
  --tw-text-opacity: 1;
  color: rgb(68 64 60 / var(--tw-text-opacity, 1));
}
.focus\:text-stone-800:focus {
  --tw-text-opacity: 1;
  color: rgb(41 37 36 / var(--tw-text-opacity, 1));
}
.focus\:text-stone-900:focus {
  --tw-text-opacity: 1;
  color: rgb(28 25 23 / var(--tw-text-opacity, 1));
}
.focus\:text-stone-950:focus {
  --tw-text-opacity: 1;
  color: rgb(12 10 9 / var(--tw-text-opacity, 1));
}
.focus\:text-teal-100:focus {
  --tw-text-opacity: 1;
  color: rgb(204 251 241 / var(--tw-text-opacity, 1));
}
.focus\:text-teal-200:focus {
  --tw-text-opacity: 1;
  color: rgb(153 246 228 / var(--tw-text-opacity, 1));
}
.focus\:text-teal-300:focus {
  --tw-text-opacity: 1;
  color: rgb(94 234 212 / var(--tw-text-opacity, 1));
}
.focus\:text-teal-400:focus {
  --tw-text-opacity: 1;
  color: rgb(45 212 191 / var(--tw-text-opacity, 1));
}
.focus\:text-teal-50:focus {
  --tw-text-opacity: 1;
  color: rgb(240 253 250 / var(--tw-text-opacity, 1));
}
.focus\:text-teal-500:focus {
  --tw-text-opacity: 1;
  color: rgb(20 184 166 / var(--tw-text-opacity, 1));
}
.focus\:text-teal-600:focus {
  --tw-text-opacity: 1;
  color: rgb(13 148 136 / var(--tw-text-opacity, 1));
}
.focus\:text-teal-700:focus {
  --tw-text-opacity: 1;
  color: rgb(15 118 110 / var(--tw-text-opacity, 1));
}
.focus\:text-teal-800:focus {
  --tw-text-opacity: 1;
  color: rgb(17 94 89 / var(--tw-text-opacity, 1));
}
.focus\:text-teal-900:focus {
  --tw-text-opacity: 1;
  color: rgb(19 78 74 / var(--tw-text-opacity, 1));
}
.focus\:text-teal-950:focus {
  --tw-text-opacity: 1;
  color: rgb(4 47 46 / var(--tw-text-opacity, 1));
}
.focus\:text-violet-100:focus {
  --tw-text-opacity: 1;
  color: rgb(237 233 254 / var(--tw-text-opacity, 1));
}
.focus\:text-violet-200:focus {
  --tw-text-opacity: 1;
  color: rgb(221 214 254 / var(--tw-text-opacity, 1));
}
.focus\:text-violet-300:focus {
  --tw-text-opacity: 1;
  color: rgb(196 181 253 / var(--tw-text-opacity, 1));
}
.focus\:text-violet-400:focus {
  --tw-text-opacity: 1;
  color: rgb(167 139 250 / var(--tw-text-opacity, 1));
}
.focus\:text-violet-50:focus {
  --tw-text-opacity: 1;
  color: rgb(245 243 255 / var(--tw-text-opacity, 1));
}
.focus\:text-violet-500:focus {
  --tw-text-opacity: 1;
  color: rgb(139 92 246 / var(--tw-text-opacity, 1));
}
.focus\:text-violet-600:focus {
  --tw-text-opacity: 1;
  color: rgb(124 58 237 / var(--tw-text-opacity, 1));
}
.focus\:text-violet-700:focus {
  --tw-text-opacity: 1;
  color: rgb(109 40 217 / var(--tw-text-opacity, 1));
}
.focus\:text-violet-800:focus {
  --tw-text-opacity: 1;
  color: rgb(91 33 182 / var(--tw-text-opacity, 1));
}
.focus\:text-violet-900:focus {
  --tw-text-opacity: 1;
  color: rgb(76 29 149 / var(--tw-text-opacity, 1));
}
.focus\:text-violet-950:focus {
  --tw-text-opacity: 1;
  color: rgb(46 16 101 / var(--tw-text-opacity, 1));
}
.focus\:text-white:focus {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.focus\:text-yellow-100:focus {
  --tw-text-opacity: 1;
  color: rgb(254 249 195 / var(--tw-text-opacity, 1));
}
.focus\:text-yellow-200:focus {
  --tw-text-opacity: 1;
  color: rgb(254 240 138 / var(--tw-text-opacity, 1));
}
.focus\:text-yellow-300:focus {
  --tw-text-opacity: 1;
  color: rgb(253 224 71 / var(--tw-text-opacity, 1));
}
.focus\:text-yellow-400:focus {
  --tw-text-opacity: 1;
  color: rgb(250 204 21 / var(--tw-text-opacity, 1));
}
.focus\:text-yellow-50:focus {
  --tw-text-opacity: 1;
  color: rgb(254 252 232 / var(--tw-text-opacity, 1));
}
.focus\:text-yellow-500:focus {
  --tw-text-opacity: 1;
  color: rgb(234 179 8 / var(--tw-text-opacity, 1));
}
.focus\:text-yellow-600:focus {
  --tw-text-opacity: 1;
  color: rgb(202 138 4 / var(--tw-text-opacity, 1));
}
.focus\:text-yellow-700:focus {
  --tw-text-opacity: 1;
  color: rgb(161 98 7 / var(--tw-text-opacity, 1));
}
.focus\:text-yellow-800:focus {
  --tw-text-opacity: 1;
  color: rgb(133 77 14 / var(--tw-text-opacity, 1));
}
.focus\:text-yellow-900:focus {
  --tw-text-opacity: 1;
  color: rgb(113 63 18 / var(--tw-text-opacity, 1));
}
.focus\:text-yellow-950:focus {
  --tw-text-opacity: 1;
  color: rgb(66 32 6 / var(--tw-text-opacity, 1));
}
.focus\:text-zinc-100:focus {
  --tw-text-opacity: 1;
  color: rgb(244 244 245 / var(--tw-text-opacity, 1));
}
.focus\:text-zinc-200:focus {
  --tw-text-opacity: 1;
  color: rgb(228 228 231 / var(--tw-text-opacity, 1));
}
.focus\:text-zinc-300:focus {
  --tw-text-opacity: 1;
  color: rgb(212 212 216 / var(--tw-text-opacity, 1));
}
.focus\:text-zinc-400:focus {
  --tw-text-opacity: 1;
  color: rgb(161 161 170 / var(--tw-text-opacity, 1));
}
.focus\:text-zinc-50:focus {
  --tw-text-opacity: 1;
  color: rgb(250 250 250 / var(--tw-text-opacity, 1));
}
.focus\:text-zinc-500:focus {
  --tw-text-opacity: 1;
  color: rgb(113 113 122 / var(--tw-text-opacity, 1));
}
.focus\:text-zinc-600:focus {
  --tw-text-opacity: 1;
  color: rgb(82 82 91 / var(--tw-text-opacity, 1));
}
.focus\:text-zinc-700:focus {
  --tw-text-opacity: 1;
  color: rgb(63 63 70 / var(--tw-text-opacity, 1));
}
.focus\:text-zinc-800:focus {
  --tw-text-opacity: 1;
  color: rgb(39 39 42 / var(--tw-text-opacity, 1));
}
.focus\:text-zinc-900:focus {
  --tw-text-opacity: 1;
  color: rgb(24 24 27 / var(--tw-text-opacity, 1));
}
.focus\:text-zinc-950:focus {
  --tw-text-opacity: 1;
  color: rgb(9 9 11 / var(--tw-text-opacity, 1));
}
.focus\:opacity-100:focus {
  opacity: 1;
}
.focus\:shadow-lg:focus {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.focus\:shadow-md:focus {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.focus\:shadow-sm:focus {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.focus\:shadow-amber-100:focus {
  --tw-shadow-color: #fef3c7;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-100\/10:focus {
  --tw-shadow-color: rgb(254 243 199 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-100\/20:focus {
  --tw-shadow-color: rgb(254 243 199 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-100\/30:focus {
  --tw-shadow-color: rgb(254 243 199 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-100\/40:focus {
  --tw-shadow-color: rgb(254 243 199 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-100\/5:focus {
  --tw-shadow-color: rgb(254 243 199 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-100\/50:focus {
  --tw-shadow-color: rgb(254 243 199 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-100\/60:focus {
  --tw-shadow-color: rgb(254 243 199 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-100\/70:focus {
  --tw-shadow-color: rgb(254 243 199 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-100\/80:focus {
  --tw-shadow-color: rgb(254 243 199 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-100\/90:focus {
  --tw-shadow-color: rgb(254 243 199 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-200:focus {
  --tw-shadow-color: #fde68a;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-200\/10:focus {
  --tw-shadow-color: rgb(253 230 138 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-200\/20:focus {
  --tw-shadow-color: rgb(253 230 138 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-200\/30:focus {
  --tw-shadow-color: rgb(253 230 138 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-200\/40:focus {
  --tw-shadow-color: rgb(253 230 138 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-200\/5:focus {
  --tw-shadow-color: rgb(253 230 138 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-200\/50:focus {
  --tw-shadow-color: rgb(253 230 138 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-200\/60:focus {
  --tw-shadow-color: rgb(253 230 138 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-200\/70:focus {
  --tw-shadow-color: rgb(253 230 138 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-200\/80:focus {
  --tw-shadow-color: rgb(253 230 138 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-200\/90:focus {
  --tw-shadow-color: rgb(253 230 138 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-300:focus {
  --tw-shadow-color: #fcd34d;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-300\/10:focus {
  --tw-shadow-color: rgb(252 211 77 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-300\/20:focus {
  --tw-shadow-color: rgb(252 211 77 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-300\/30:focus {
  --tw-shadow-color: rgb(252 211 77 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-300\/40:focus {
  --tw-shadow-color: rgb(252 211 77 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-300\/5:focus {
  --tw-shadow-color: rgb(252 211 77 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-300\/50:focus {
  --tw-shadow-color: rgb(252 211 77 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-300\/60:focus {
  --tw-shadow-color: rgb(252 211 77 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-300\/70:focus {
  --tw-shadow-color: rgb(252 211 77 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-300\/80:focus {
  --tw-shadow-color: rgb(252 211 77 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-300\/90:focus {
  --tw-shadow-color: rgb(252 211 77 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-400:focus {
  --tw-shadow-color: #fbbf24;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-400\/10:focus {
  --tw-shadow-color: rgb(251 191 36 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-400\/20:focus {
  --tw-shadow-color: rgb(251 191 36 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-400\/30:focus {
  --tw-shadow-color: rgb(251 191 36 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-400\/40:focus {
  --tw-shadow-color: rgb(251 191 36 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-400\/5:focus {
  --tw-shadow-color: rgb(251 191 36 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-400\/50:focus {
  --tw-shadow-color: rgb(251 191 36 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-400\/60:focus {
  --tw-shadow-color: rgb(251 191 36 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-400\/70:focus {
  --tw-shadow-color: rgb(251 191 36 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-400\/80:focus {
  --tw-shadow-color: rgb(251 191 36 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-400\/90:focus {
  --tw-shadow-color: rgb(251 191 36 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-50:focus {
  --tw-shadow-color: #fffbeb;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-50\/10:focus {
  --tw-shadow-color: rgb(255 251 235 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-50\/20:focus {
  --tw-shadow-color: rgb(255 251 235 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-50\/30:focus {
  --tw-shadow-color: rgb(255 251 235 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-50\/40:focus {
  --tw-shadow-color: rgb(255 251 235 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-50\/5:focus {
  --tw-shadow-color: rgb(255 251 235 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-50\/50:focus {
  --tw-shadow-color: rgb(255 251 235 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-50\/60:focus {
  --tw-shadow-color: rgb(255 251 235 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-50\/70:focus {
  --tw-shadow-color: rgb(255 251 235 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-50\/80:focus {
  --tw-shadow-color: rgb(255 251 235 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-50\/90:focus {
  --tw-shadow-color: rgb(255 251 235 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-500:focus {
  --tw-shadow-color: #f59e0b;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-500\/10:focus {
  --tw-shadow-color: rgb(245 158 11 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-500\/20:focus {
  --tw-shadow-color: rgb(245 158 11 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-500\/30:focus {
  --tw-shadow-color: rgb(245 158 11 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-500\/40:focus {
  --tw-shadow-color: rgb(245 158 11 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-500\/5:focus {
  --tw-shadow-color: rgb(245 158 11 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-500\/50:focus {
  --tw-shadow-color: rgb(245 158 11 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-500\/60:focus {
  --tw-shadow-color: rgb(245 158 11 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-500\/70:focus {
  --tw-shadow-color: rgb(245 158 11 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-500\/80:focus {
  --tw-shadow-color: rgb(245 158 11 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-500\/90:focus {
  --tw-shadow-color: rgb(245 158 11 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-600:focus {
  --tw-shadow-color: #d97706;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-600\/10:focus {
  --tw-shadow-color: rgb(217 119 6 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-600\/20:focus {
  --tw-shadow-color: rgb(217 119 6 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-600\/30:focus {
  --tw-shadow-color: rgb(217 119 6 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-600\/40:focus {
  --tw-shadow-color: rgb(217 119 6 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-600\/5:focus {
  --tw-shadow-color: rgb(217 119 6 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-600\/50:focus {
  --tw-shadow-color: rgb(217 119 6 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-600\/60:focus {
  --tw-shadow-color: rgb(217 119 6 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-600\/70:focus {
  --tw-shadow-color: rgb(217 119 6 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-600\/80:focus {
  --tw-shadow-color: rgb(217 119 6 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-600\/90:focus {
  --tw-shadow-color: rgb(217 119 6 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-700:focus {
  --tw-shadow-color: #b45309;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-700\/10:focus {
  --tw-shadow-color: rgb(180 83 9 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-700\/20:focus {
  --tw-shadow-color: rgb(180 83 9 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-700\/30:focus {
  --tw-shadow-color: rgb(180 83 9 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-700\/40:focus {
  --tw-shadow-color: rgb(180 83 9 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-700\/5:focus {
  --tw-shadow-color: rgb(180 83 9 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-700\/50:focus {
  --tw-shadow-color: rgb(180 83 9 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-700\/60:focus {
  --tw-shadow-color: rgb(180 83 9 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-700\/70:focus {
  --tw-shadow-color: rgb(180 83 9 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-700\/80:focus {
  --tw-shadow-color: rgb(180 83 9 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-700\/90:focus {
  --tw-shadow-color: rgb(180 83 9 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-800:focus {
  --tw-shadow-color: #92400e;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-800\/10:focus {
  --tw-shadow-color: rgb(146 64 14 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-800\/20:focus {
  --tw-shadow-color: rgb(146 64 14 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-800\/30:focus {
  --tw-shadow-color: rgb(146 64 14 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-800\/40:focus {
  --tw-shadow-color: rgb(146 64 14 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-800\/5:focus {
  --tw-shadow-color: rgb(146 64 14 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-800\/50:focus {
  --tw-shadow-color: rgb(146 64 14 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-800\/60:focus {
  --tw-shadow-color: rgb(146 64 14 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-800\/70:focus {
  --tw-shadow-color: rgb(146 64 14 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-800\/80:focus {
  --tw-shadow-color: rgb(146 64 14 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-800\/90:focus {
  --tw-shadow-color: rgb(146 64 14 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-900:focus {
  --tw-shadow-color: #78350f;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-900\/10:focus {
  --tw-shadow-color: rgb(120 53 15 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-900\/20:focus {
  --tw-shadow-color: rgb(120 53 15 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-900\/30:focus {
  --tw-shadow-color: rgb(120 53 15 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-900\/40:focus {
  --tw-shadow-color: rgb(120 53 15 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-900\/5:focus {
  --tw-shadow-color: rgb(120 53 15 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-900\/50:focus {
  --tw-shadow-color: rgb(120 53 15 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-900\/60:focus {
  --tw-shadow-color: rgb(120 53 15 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-900\/70:focus {
  --tw-shadow-color: rgb(120 53 15 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-900\/80:focus {
  --tw-shadow-color: rgb(120 53 15 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-900\/90:focus {
  --tw-shadow-color: rgb(120 53 15 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-950:focus {
  --tw-shadow-color: #451a03;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-950\/10:focus {
  --tw-shadow-color: rgb(69 26 3 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-950\/20:focus {
  --tw-shadow-color: rgb(69 26 3 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-950\/30:focus {
  --tw-shadow-color: rgb(69 26 3 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-950\/40:focus {
  --tw-shadow-color: rgb(69 26 3 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-950\/5:focus {
  --tw-shadow-color: rgb(69 26 3 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-950\/50:focus {
  --tw-shadow-color: rgb(69 26 3 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-950\/60:focus {
  --tw-shadow-color: rgb(69 26 3 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-950\/70:focus {
  --tw-shadow-color: rgb(69 26 3 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-950\/80:focus {
  --tw-shadow-color: rgb(69 26 3 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-amber-950\/90:focus {
  --tw-shadow-color: rgb(69 26 3 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-100:focus {
  --tw-shadow-color: #dbeafe;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-100\/10:focus {
  --tw-shadow-color: rgb(219 234 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-100\/20:focus {
  --tw-shadow-color: rgb(219 234 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-100\/30:focus {
  --tw-shadow-color: rgb(219 234 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-100\/40:focus {
  --tw-shadow-color: rgb(219 234 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-100\/5:focus {
  --tw-shadow-color: rgb(219 234 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-100\/50:focus {
  --tw-shadow-color: rgb(219 234 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-100\/60:focus {
  --tw-shadow-color: rgb(219 234 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-100\/70:focus {
  --tw-shadow-color: rgb(219 234 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-100\/80:focus {
  --tw-shadow-color: rgb(219 234 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-100\/90:focus {
  --tw-shadow-color: rgb(219 234 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-200:focus {
  --tw-shadow-color: #bfdbfe;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-200\/10:focus {
  --tw-shadow-color: rgb(191 219 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-200\/20:focus {
  --tw-shadow-color: rgb(191 219 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-200\/30:focus {
  --tw-shadow-color: rgb(191 219 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-200\/40:focus {
  --tw-shadow-color: rgb(191 219 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-200\/5:focus {
  --tw-shadow-color: rgb(191 219 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-200\/50:focus {
  --tw-shadow-color: rgb(191 219 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-200\/60:focus {
  --tw-shadow-color: rgb(191 219 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-200\/70:focus {
  --tw-shadow-color: rgb(191 219 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-200\/80:focus {
  --tw-shadow-color: rgb(191 219 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-200\/90:focus {
  --tw-shadow-color: rgb(191 219 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-300:focus {
  --tw-shadow-color: #93c5fd;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-300\/10:focus {
  --tw-shadow-color: rgb(147 197 253 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-300\/20:focus {
  --tw-shadow-color: rgb(147 197 253 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-300\/30:focus {
  --tw-shadow-color: rgb(147 197 253 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-300\/40:focus {
  --tw-shadow-color: rgb(147 197 253 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-300\/5:focus {
  --tw-shadow-color: rgb(147 197 253 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-300\/50:focus {
  --tw-shadow-color: rgb(147 197 253 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-300\/60:focus {
  --tw-shadow-color: rgb(147 197 253 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-300\/70:focus {
  --tw-shadow-color: rgb(147 197 253 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-300\/80:focus {
  --tw-shadow-color: rgb(147 197 253 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-300\/90:focus {
  --tw-shadow-color: rgb(147 197 253 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-400:focus {
  --tw-shadow-color: #60a5fa;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-400\/10:focus {
  --tw-shadow-color: rgb(96 165 250 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-400\/20:focus {
  --tw-shadow-color: rgb(96 165 250 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-400\/30:focus {
  --tw-shadow-color: rgb(96 165 250 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-400\/40:focus {
  --tw-shadow-color: rgb(96 165 250 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-400\/5:focus {
  --tw-shadow-color: rgb(96 165 250 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-400\/50:focus {
  --tw-shadow-color: rgb(96 165 250 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-400\/60:focus {
  --tw-shadow-color: rgb(96 165 250 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-400\/70:focus {
  --tw-shadow-color: rgb(96 165 250 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-400\/80:focus {
  --tw-shadow-color: rgb(96 165 250 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-400\/90:focus {
  --tw-shadow-color: rgb(96 165 250 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-50:focus {
  --tw-shadow-color: #eff6ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-50\/10:focus {
  --tw-shadow-color: rgb(239 246 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-50\/20:focus {
  --tw-shadow-color: rgb(239 246 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-50\/30:focus {
  --tw-shadow-color: rgb(239 246 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-50\/40:focus {
  --tw-shadow-color: rgb(239 246 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-50\/5:focus {
  --tw-shadow-color: rgb(239 246 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-50\/50:focus {
  --tw-shadow-color: rgb(239 246 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-50\/60:focus {
  --tw-shadow-color: rgb(239 246 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-50\/70:focus {
  --tw-shadow-color: rgb(239 246 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-50\/80:focus {
  --tw-shadow-color: rgb(239 246 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-50\/90:focus {
  --tw-shadow-color: rgb(239 246 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-500:focus {
  --tw-shadow-color: #3b82f6;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-500\/10:focus {
  --tw-shadow-color: rgb(59 130 246 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-500\/20:focus {
  --tw-shadow-color: rgb(59 130 246 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-500\/30:focus {
  --tw-shadow-color: rgb(59 130 246 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-500\/40:focus {
  --tw-shadow-color: rgb(59 130 246 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-500\/5:focus {
  --tw-shadow-color: rgb(59 130 246 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-500\/50:focus {
  --tw-shadow-color: rgb(59 130 246 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-500\/60:focus {
  --tw-shadow-color: rgb(59 130 246 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-500\/70:focus {
  --tw-shadow-color: rgb(59 130 246 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-500\/80:focus {
  --tw-shadow-color: rgb(59 130 246 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-500\/90:focus {
  --tw-shadow-color: rgb(59 130 246 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-600:focus {
  --tw-shadow-color: #2563eb;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-600\/10:focus {
  --tw-shadow-color: rgb(37 99 235 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-600\/20:focus {
  --tw-shadow-color: rgb(37 99 235 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-600\/30:focus {
  --tw-shadow-color: rgb(37 99 235 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-600\/40:focus {
  --tw-shadow-color: rgb(37 99 235 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-600\/5:focus {
  --tw-shadow-color: rgb(37 99 235 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-600\/50:focus {
  --tw-shadow-color: rgb(37 99 235 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-600\/60:focus {
  --tw-shadow-color: rgb(37 99 235 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-600\/70:focus {
  --tw-shadow-color: rgb(37 99 235 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-600\/80:focus {
  --tw-shadow-color: rgb(37 99 235 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-600\/90:focus {
  --tw-shadow-color: rgb(37 99 235 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-700:focus {
  --tw-shadow-color: #1d4ed8;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-700\/10:focus {
  --tw-shadow-color: rgb(29 78 216 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-700\/20:focus {
  --tw-shadow-color: rgb(29 78 216 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-700\/30:focus {
  --tw-shadow-color: rgb(29 78 216 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-700\/40:focus {
  --tw-shadow-color: rgb(29 78 216 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-700\/5:focus {
  --tw-shadow-color: rgb(29 78 216 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-700\/50:focus {
  --tw-shadow-color: rgb(29 78 216 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-700\/60:focus {
  --tw-shadow-color: rgb(29 78 216 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-700\/70:focus {
  --tw-shadow-color: rgb(29 78 216 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-700\/80:focus {
  --tw-shadow-color: rgb(29 78 216 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-700\/90:focus {
  --tw-shadow-color: rgb(29 78 216 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-800:focus {
  --tw-shadow-color: #1e40af;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-800\/10:focus {
  --tw-shadow-color: rgb(30 64 175 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-800\/20:focus {
  --tw-shadow-color: rgb(30 64 175 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-800\/30:focus {
  --tw-shadow-color: rgb(30 64 175 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-800\/40:focus {
  --tw-shadow-color: rgb(30 64 175 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-800\/5:focus {
  --tw-shadow-color: rgb(30 64 175 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-800\/50:focus {
  --tw-shadow-color: rgb(30 64 175 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-800\/60:focus {
  --tw-shadow-color: rgb(30 64 175 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-800\/70:focus {
  --tw-shadow-color: rgb(30 64 175 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-800\/80:focus {
  --tw-shadow-color: rgb(30 64 175 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-800\/90:focus {
  --tw-shadow-color: rgb(30 64 175 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-900:focus {
  --tw-shadow-color: #1e3a8a;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-900\/10:focus {
  --tw-shadow-color: rgb(30 58 138 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-900\/20:focus {
  --tw-shadow-color: rgb(30 58 138 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-900\/30:focus {
  --tw-shadow-color: rgb(30 58 138 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-900\/40:focus {
  --tw-shadow-color: rgb(30 58 138 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-900\/5:focus {
  --tw-shadow-color: rgb(30 58 138 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-900\/50:focus {
  --tw-shadow-color: rgb(30 58 138 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-900\/60:focus {
  --tw-shadow-color: rgb(30 58 138 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-900\/70:focus {
  --tw-shadow-color: rgb(30 58 138 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-900\/80:focus {
  --tw-shadow-color: rgb(30 58 138 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-900\/90:focus {
  --tw-shadow-color: rgb(30 58 138 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-950:focus {
  --tw-shadow-color: #172554;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-950\/10:focus {
  --tw-shadow-color: rgb(23 37 84 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-950\/20:focus {
  --tw-shadow-color: rgb(23 37 84 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-950\/30:focus {
  --tw-shadow-color: rgb(23 37 84 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-950\/40:focus {
  --tw-shadow-color: rgb(23 37 84 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-950\/5:focus {
  --tw-shadow-color: rgb(23 37 84 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-950\/50:focus {
  --tw-shadow-color: rgb(23 37 84 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-950\/60:focus {
  --tw-shadow-color: rgb(23 37 84 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-950\/70:focus {
  --tw-shadow-color: rgb(23 37 84 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-950\/80:focus {
  --tw-shadow-color: rgb(23 37 84 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-blue-950\/90:focus {
  --tw-shadow-color: rgb(23 37 84 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-100:focus {
  --tw-shadow-color: #cffafe;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-100\/10:focus {
  --tw-shadow-color: rgb(207 250 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-100\/20:focus {
  --tw-shadow-color: rgb(207 250 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-100\/30:focus {
  --tw-shadow-color: rgb(207 250 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-100\/40:focus {
  --tw-shadow-color: rgb(207 250 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-100\/5:focus {
  --tw-shadow-color: rgb(207 250 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-100\/50:focus {
  --tw-shadow-color: rgb(207 250 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-100\/60:focus {
  --tw-shadow-color: rgb(207 250 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-100\/70:focus {
  --tw-shadow-color: rgb(207 250 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-100\/80:focus {
  --tw-shadow-color: rgb(207 250 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-100\/90:focus {
  --tw-shadow-color: rgb(207 250 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-200:focus {
  --tw-shadow-color: #a5f3fc;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-200\/10:focus {
  --tw-shadow-color: rgb(165 243 252 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-200\/20:focus {
  --tw-shadow-color: rgb(165 243 252 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-200\/30:focus {
  --tw-shadow-color: rgb(165 243 252 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-200\/40:focus {
  --tw-shadow-color: rgb(165 243 252 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-200\/5:focus {
  --tw-shadow-color: rgb(165 243 252 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-200\/50:focus {
  --tw-shadow-color: rgb(165 243 252 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-200\/60:focus {
  --tw-shadow-color: rgb(165 243 252 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-200\/70:focus {
  --tw-shadow-color: rgb(165 243 252 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-200\/80:focus {
  --tw-shadow-color: rgb(165 243 252 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-200\/90:focus {
  --tw-shadow-color: rgb(165 243 252 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-300:focus {
  --tw-shadow-color: #67e8f9;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-300\/10:focus {
  --tw-shadow-color: rgb(103 232 249 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-300\/20:focus {
  --tw-shadow-color: rgb(103 232 249 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-300\/30:focus {
  --tw-shadow-color: rgb(103 232 249 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-300\/40:focus {
  --tw-shadow-color: rgb(103 232 249 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-300\/5:focus {
  --tw-shadow-color: rgb(103 232 249 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-300\/50:focus {
  --tw-shadow-color: rgb(103 232 249 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-300\/60:focus {
  --tw-shadow-color: rgb(103 232 249 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-300\/70:focus {
  --tw-shadow-color: rgb(103 232 249 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-300\/80:focus {
  --tw-shadow-color: rgb(103 232 249 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-300\/90:focus {
  --tw-shadow-color: rgb(103 232 249 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-400:focus {
  --tw-shadow-color: #22d3ee;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-400\/10:focus {
  --tw-shadow-color: rgb(34 211 238 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-400\/20:focus {
  --tw-shadow-color: rgb(34 211 238 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-400\/30:focus {
  --tw-shadow-color: rgb(34 211 238 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-400\/40:focus {
  --tw-shadow-color: rgb(34 211 238 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-400\/5:focus {
  --tw-shadow-color: rgb(34 211 238 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-400\/50:focus {
  --tw-shadow-color: rgb(34 211 238 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-400\/60:focus {
  --tw-shadow-color: rgb(34 211 238 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-400\/70:focus {
  --tw-shadow-color: rgb(34 211 238 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-400\/80:focus {
  --tw-shadow-color: rgb(34 211 238 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-400\/90:focus {
  --tw-shadow-color: rgb(34 211 238 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-50:focus {
  --tw-shadow-color: #ecfeff;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-50\/10:focus {
  --tw-shadow-color: rgb(236 254 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-50\/20:focus {
  --tw-shadow-color: rgb(236 254 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-50\/30:focus {
  --tw-shadow-color: rgb(236 254 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-50\/40:focus {
  --tw-shadow-color: rgb(236 254 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-50\/5:focus {
  --tw-shadow-color: rgb(236 254 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-50\/50:focus {
  --tw-shadow-color: rgb(236 254 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-50\/60:focus {
  --tw-shadow-color: rgb(236 254 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-50\/70:focus {
  --tw-shadow-color: rgb(236 254 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-50\/80:focus {
  --tw-shadow-color: rgb(236 254 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-50\/90:focus {
  --tw-shadow-color: rgb(236 254 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-500:focus {
  --tw-shadow-color: #06b6d4;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-500\/10:focus {
  --tw-shadow-color: rgb(6 182 212 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-500\/20:focus {
  --tw-shadow-color: rgb(6 182 212 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-500\/30:focus {
  --tw-shadow-color: rgb(6 182 212 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-500\/40:focus {
  --tw-shadow-color: rgb(6 182 212 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-500\/5:focus {
  --tw-shadow-color: rgb(6 182 212 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-500\/50:focus {
  --tw-shadow-color: rgb(6 182 212 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-500\/60:focus {
  --tw-shadow-color: rgb(6 182 212 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-500\/70:focus {
  --tw-shadow-color: rgb(6 182 212 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-500\/80:focus {
  --tw-shadow-color: rgb(6 182 212 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-500\/90:focus {
  --tw-shadow-color: rgb(6 182 212 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-600:focus {
  --tw-shadow-color: #0891b2;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-600\/10:focus {
  --tw-shadow-color: rgb(8 145 178 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-600\/20:focus {
  --tw-shadow-color: rgb(8 145 178 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-600\/30:focus {
  --tw-shadow-color: rgb(8 145 178 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-600\/40:focus {
  --tw-shadow-color: rgb(8 145 178 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-600\/5:focus {
  --tw-shadow-color: rgb(8 145 178 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-600\/50:focus {
  --tw-shadow-color: rgb(8 145 178 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-600\/60:focus {
  --tw-shadow-color: rgb(8 145 178 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-600\/70:focus {
  --tw-shadow-color: rgb(8 145 178 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-600\/80:focus {
  --tw-shadow-color: rgb(8 145 178 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-600\/90:focus {
  --tw-shadow-color: rgb(8 145 178 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-700:focus {
  --tw-shadow-color: #0e7490;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-700\/10:focus {
  --tw-shadow-color: rgb(14 116 144 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-700\/20:focus {
  --tw-shadow-color: rgb(14 116 144 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-700\/30:focus {
  --tw-shadow-color: rgb(14 116 144 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-700\/40:focus {
  --tw-shadow-color: rgb(14 116 144 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-700\/5:focus {
  --tw-shadow-color: rgb(14 116 144 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-700\/50:focus {
  --tw-shadow-color: rgb(14 116 144 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-700\/60:focus {
  --tw-shadow-color: rgb(14 116 144 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-700\/70:focus {
  --tw-shadow-color: rgb(14 116 144 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-700\/80:focus {
  --tw-shadow-color: rgb(14 116 144 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-700\/90:focus {
  --tw-shadow-color: rgb(14 116 144 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-800:focus {
  --tw-shadow-color: #155e75;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-800\/10:focus {
  --tw-shadow-color: rgb(21 94 117 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-800\/20:focus {
  --tw-shadow-color: rgb(21 94 117 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-800\/30:focus {
  --tw-shadow-color: rgb(21 94 117 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-800\/40:focus {
  --tw-shadow-color: rgb(21 94 117 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-800\/5:focus {
  --tw-shadow-color: rgb(21 94 117 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-800\/50:focus {
  --tw-shadow-color: rgb(21 94 117 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-800\/60:focus {
  --tw-shadow-color: rgb(21 94 117 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-800\/70:focus {
  --tw-shadow-color: rgb(21 94 117 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-800\/80:focus {
  --tw-shadow-color: rgb(21 94 117 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-800\/90:focus {
  --tw-shadow-color: rgb(21 94 117 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-900:focus {
  --tw-shadow-color: #164e63;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-900\/10:focus {
  --tw-shadow-color: rgb(22 78 99 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-900\/20:focus {
  --tw-shadow-color: rgb(22 78 99 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-900\/30:focus {
  --tw-shadow-color: rgb(22 78 99 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-900\/40:focus {
  --tw-shadow-color: rgb(22 78 99 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-900\/5:focus {
  --tw-shadow-color: rgb(22 78 99 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-900\/50:focus {
  --tw-shadow-color: rgb(22 78 99 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-900\/60:focus {
  --tw-shadow-color: rgb(22 78 99 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-900\/70:focus {
  --tw-shadow-color: rgb(22 78 99 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-900\/80:focus {
  --tw-shadow-color: rgb(22 78 99 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-900\/90:focus {
  --tw-shadow-color: rgb(22 78 99 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-950:focus {
  --tw-shadow-color: #083344;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-950\/10:focus {
  --tw-shadow-color: rgb(8 51 68 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-950\/20:focus {
  --tw-shadow-color: rgb(8 51 68 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-950\/30:focus {
  --tw-shadow-color: rgb(8 51 68 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-950\/40:focus {
  --tw-shadow-color: rgb(8 51 68 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-950\/5:focus {
  --tw-shadow-color: rgb(8 51 68 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-950\/50:focus {
  --tw-shadow-color: rgb(8 51 68 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-950\/60:focus {
  --tw-shadow-color: rgb(8 51 68 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-950\/70:focus {
  --tw-shadow-color: rgb(8 51 68 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-950\/80:focus {
  --tw-shadow-color: rgb(8 51 68 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-cyan-950\/90:focus {
  --tw-shadow-color: rgb(8 51 68 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-100:focus {
  --tw-shadow-color: #d1fae5;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-100\/10:focus {
  --tw-shadow-color: rgb(209 250 229 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-100\/20:focus {
  --tw-shadow-color: rgb(209 250 229 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-100\/30:focus {
  --tw-shadow-color: rgb(209 250 229 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-100\/40:focus {
  --tw-shadow-color: rgb(209 250 229 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-100\/5:focus {
  --tw-shadow-color: rgb(209 250 229 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-100\/50:focus {
  --tw-shadow-color: rgb(209 250 229 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-100\/60:focus {
  --tw-shadow-color: rgb(209 250 229 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-100\/70:focus {
  --tw-shadow-color: rgb(209 250 229 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-100\/80:focus {
  --tw-shadow-color: rgb(209 250 229 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-100\/90:focus {
  --tw-shadow-color: rgb(209 250 229 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-200:focus {
  --tw-shadow-color: #a7f3d0;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-200\/10:focus {
  --tw-shadow-color: rgb(167 243 208 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-200\/20:focus {
  --tw-shadow-color: rgb(167 243 208 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-200\/30:focus {
  --tw-shadow-color: rgb(167 243 208 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-200\/40:focus {
  --tw-shadow-color: rgb(167 243 208 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-200\/5:focus {
  --tw-shadow-color: rgb(167 243 208 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-200\/50:focus {
  --tw-shadow-color: rgb(167 243 208 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-200\/60:focus {
  --tw-shadow-color: rgb(167 243 208 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-200\/70:focus {
  --tw-shadow-color: rgb(167 243 208 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-200\/80:focus {
  --tw-shadow-color: rgb(167 243 208 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-200\/90:focus {
  --tw-shadow-color: rgb(167 243 208 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-300:focus {
  --tw-shadow-color: #6ee7b7;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-300\/10:focus {
  --tw-shadow-color: rgb(110 231 183 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-300\/20:focus {
  --tw-shadow-color: rgb(110 231 183 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-300\/30:focus {
  --tw-shadow-color: rgb(110 231 183 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-300\/40:focus {
  --tw-shadow-color: rgb(110 231 183 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-300\/5:focus {
  --tw-shadow-color: rgb(110 231 183 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-300\/50:focus {
  --tw-shadow-color: rgb(110 231 183 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-300\/60:focus {
  --tw-shadow-color: rgb(110 231 183 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-300\/70:focus {
  --tw-shadow-color: rgb(110 231 183 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-300\/80:focus {
  --tw-shadow-color: rgb(110 231 183 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-300\/90:focus {
  --tw-shadow-color: rgb(110 231 183 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-400:focus {
  --tw-shadow-color: #34d399;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-400\/10:focus {
  --tw-shadow-color: rgb(52 211 153 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-400\/20:focus {
  --tw-shadow-color: rgb(52 211 153 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-400\/30:focus {
  --tw-shadow-color: rgb(52 211 153 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-400\/40:focus {
  --tw-shadow-color: rgb(52 211 153 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-400\/5:focus {
  --tw-shadow-color: rgb(52 211 153 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-400\/50:focus {
  --tw-shadow-color: rgb(52 211 153 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-400\/60:focus {
  --tw-shadow-color: rgb(52 211 153 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-400\/70:focus {
  --tw-shadow-color: rgb(52 211 153 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-400\/80:focus {
  --tw-shadow-color: rgb(52 211 153 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-400\/90:focus {
  --tw-shadow-color: rgb(52 211 153 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-50:focus {
  --tw-shadow-color: #ecfdf5;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-50\/10:focus {
  --tw-shadow-color: rgb(236 253 245 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-50\/20:focus {
  --tw-shadow-color: rgb(236 253 245 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-50\/30:focus {
  --tw-shadow-color: rgb(236 253 245 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-50\/40:focus {
  --tw-shadow-color: rgb(236 253 245 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-50\/5:focus {
  --tw-shadow-color: rgb(236 253 245 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-50\/50:focus {
  --tw-shadow-color: rgb(236 253 245 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-50\/60:focus {
  --tw-shadow-color: rgb(236 253 245 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-50\/70:focus {
  --tw-shadow-color: rgb(236 253 245 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-50\/80:focus {
  --tw-shadow-color: rgb(236 253 245 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-50\/90:focus {
  --tw-shadow-color: rgb(236 253 245 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-500:focus {
  --tw-shadow-color: #10b981;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-500\/10:focus {
  --tw-shadow-color: rgb(16 185 129 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-500\/20:focus {
  --tw-shadow-color: rgb(16 185 129 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-500\/30:focus {
  --tw-shadow-color: rgb(16 185 129 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-500\/40:focus {
  --tw-shadow-color: rgb(16 185 129 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-500\/5:focus {
  --tw-shadow-color: rgb(16 185 129 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-500\/50:focus {
  --tw-shadow-color: rgb(16 185 129 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-500\/60:focus {
  --tw-shadow-color: rgb(16 185 129 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-500\/70:focus {
  --tw-shadow-color: rgb(16 185 129 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-500\/80:focus {
  --tw-shadow-color: rgb(16 185 129 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-500\/90:focus {
  --tw-shadow-color: rgb(16 185 129 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-600:focus {
  --tw-shadow-color: #059669;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-600\/10:focus {
  --tw-shadow-color: rgb(5 150 105 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-600\/20:focus {
  --tw-shadow-color: rgb(5 150 105 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-600\/30:focus {
  --tw-shadow-color: rgb(5 150 105 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-600\/40:focus {
  --tw-shadow-color: rgb(5 150 105 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-600\/5:focus {
  --tw-shadow-color: rgb(5 150 105 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-600\/50:focus {
  --tw-shadow-color: rgb(5 150 105 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-600\/60:focus {
  --tw-shadow-color: rgb(5 150 105 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-600\/70:focus {
  --tw-shadow-color: rgb(5 150 105 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-600\/80:focus {
  --tw-shadow-color: rgb(5 150 105 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-600\/90:focus {
  --tw-shadow-color: rgb(5 150 105 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-700:focus {
  --tw-shadow-color: #047857;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-700\/10:focus {
  --tw-shadow-color: rgb(4 120 87 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-700\/20:focus {
  --tw-shadow-color: rgb(4 120 87 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-700\/30:focus {
  --tw-shadow-color: rgb(4 120 87 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-700\/40:focus {
  --tw-shadow-color: rgb(4 120 87 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-700\/5:focus {
  --tw-shadow-color: rgb(4 120 87 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-700\/50:focus {
  --tw-shadow-color: rgb(4 120 87 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-700\/60:focus {
  --tw-shadow-color: rgb(4 120 87 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-700\/70:focus {
  --tw-shadow-color: rgb(4 120 87 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-700\/80:focus {
  --tw-shadow-color: rgb(4 120 87 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-700\/90:focus {
  --tw-shadow-color: rgb(4 120 87 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-800:focus {
  --tw-shadow-color: #065f46;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-800\/10:focus {
  --tw-shadow-color: rgb(6 95 70 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-800\/20:focus {
  --tw-shadow-color: rgb(6 95 70 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-800\/30:focus {
  --tw-shadow-color: rgb(6 95 70 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-800\/40:focus {
  --tw-shadow-color: rgb(6 95 70 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-800\/5:focus {
  --tw-shadow-color: rgb(6 95 70 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-800\/50:focus {
  --tw-shadow-color: rgb(6 95 70 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-800\/60:focus {
  --tw-shadow-color: rgb(6 95 70 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-800\/70:focus {
  --tw-shadow-color: rgb(6 95 70 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-800\/80:focus {
  --tw-shadow-color: rgb(6 95 70 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-800\/90:focus {
  --tw-shadow-color: rgb(6 95 70 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-900:focus {
  --tw-shadow-color: #064e3b;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-900\/10:focus {
  --tw-shadow-color: rgb(6 78 59 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-900\/20:focus {
  --tw-shadow-color: rgb(6 78 59 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-900\/30:focus {
  --tw-shadow-color: rgb(6 78 59 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-900\/40:focus {
  --tw-shadow-color: rgb(6 78 59 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-900\/5:focus {
  --tw-shadow-color: rgb(6 78 59 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-900\/50:focus {
  --tw-shadow-color: rgb(6 78 59 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-900\/60:focus {
  --tw-shadow-color: rgb(6 78 59 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-900\/70:focus {
  --tw-shadow-color: rgb(6 78 59 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-900\/80:focus {
  --tw-shadow-color: rgb(6 78 59 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-900\/90:focus {
  --tw-shadow-color: rgb(6 78 59 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-950:focus {
  --tw-shadow-color: #022c22;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-950\/10:focus {
  --tw-shadow-color: rgb(2 44 34 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-950\/20:focus {
  --tw-shadow-color: rgb(2 44 34 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-950\/30:focus {
  --tw-shadow-color: rgb(2 44 34 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-950\/40:focus {
  --tw-shadow-color: rgb(2 44 34 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-950\/5:focus {
  --tw-shadow-color: rgb(2 44 34 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-950\/50:focus {
  --tw-shadow-color: rgb(2 44 34 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-950\/60:focus {
  --tw-shadow-color: rgb(2 44 34 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-950\/70:focus {
  --tw-shadow-color: rgb(2 44 34 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-950\/80:focus {
  --tw-shadow-color: rgb(2 44 34 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-emerald-950\/90:focus {
  --tw-shadow-color: rgb(2 44 34 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-100:focus {
  --tw-shadow-color: #fae8ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-100\/10:focus {
  --tw-shadow-color: rgb(250 232 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-100\/20:focus {
  --tw-shadow-color: rgb(250 232 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-100\/30:focus {
  --tw-shadow-color: rgb(250 232 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-100\/40:focus {
  --tw-shadow-color: rgb(250 232 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-100\/5:focus {
  --tw-shadow-color: rgb(250 232 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-100\/50:focus {
  --tw-shadow-color: rgb(250 232 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-100\/60:focus {
  --tw-shadow-color: rgb(250 232 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-100\/70:focus {
  --tw-shadow-color: rgb(250 232 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-100\/80:focus {
  --tw-shadow-color: rgb(250 232 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-100\/90:focus {
  --tw-shadow-color: rgb(250 232 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-200:focus {
  --tw-shadow-color: #f5d0fe;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-200\/10:focus {
  --tw-shadow-color: rgb(245 208 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-200\/20:focus {
  --tw-shadow-color: rgb(245 208 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-200\/30:focus {
  --tw-shadow-color: rgb(245 208 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-200\/40:focus {
  --tw-shadow-color: rgb(245 208 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-200\/5:focus {
  --tw-shadow-color: rgb(245 208 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-200\/50:focus {
  --tw-shadow-color: rgb(245 208 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-200\/60:focus {
  --tw-shadow-color: rgb(245 208 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-200\/70:focus {
  --tw-shadow-color: rgb(245 208 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-200\/80:focus {
  --tw-shadow-color: rgb(245 208 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-200\/90:focus {
  --tw-shadow-color: rgb(245 208 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-300:focus {
  --tw-shadow-color: #f0abfc;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-300\/10:focus {
  --tw-shadow-color: rgb(240 171 252 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-300\/20:focus {
  --tw-shadow-color: rgb(240 171 252 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-300\/30:focus {
  --tw-shadow-color: rgb(240 171 252 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-300\/40:focus {
  --tw-shadow-color: rgb(240 171 252 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-300\/5:focus {
  --tw-shadow-color: rgb(240 171 252 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-300\/50:focus {
  --tw-shadow-color: rgb(240 171 252 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-300\/60:focus {
  --tw-shadow-color: rgb(240 171 252 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-300\/70:focus {
  --tw-shadow-color: rgb(240 171 252 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-300\/80:focus {
  --tw-shadow-color: rgb(240 171 252 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-300\/90:focus {
  --tw-shadow-color: rgb(240 171 252 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-400:focus {
  --tw-shadow-color: #e879f9;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-400\/10:focus {
  --tw-shadow-color: rgb(232 121 249 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-400\/20:focus {
  --tw-shadow-color: rgb(232 121 249 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-400\/30:focus {
  --tw-shadow-color: rgb(232 121 249 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-400\/40:focus {
  --tw-shadow-color: rgb(232 121 249 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-400\/5:focus {
  --tw-shadow-color: rgb(232 121 249 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-400\/50:focus {
  --tw-shadow-color: rgb(232 121 249 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-400\/60:focus {
  --tw-shadow-color: rgb(232 121 249 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-400\/70:focus {
  --tw-shadow-color: rgb(232 121 249 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-400\/80:focus {
  --tw-shadow-color: rgb(232 121 249 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-400\/90:focus {
  --tw-shadow-color: rgb(232 121 249 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-50:focus {
  --tw-shadow-color: #fdf4ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-50\/10:focus {
  --tw-shadow-color: rgb(253 244 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-50\/20:focus {
  --tw-shadow-color: rgb(253 244 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-50\/30:focus {
  --tw-shadow-color: rgb(253 244 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-50\/40:focus {
  --tw-shadow-color: rgb(253 244 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-50\/5:focus {
  --tw-shadow-color: rgb(253 244 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-50\/50:focus {
  --tw-shadow-color: rgb(253 244 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-50\/60:focus {
  --tw-shadow-color: rgb(253 244 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-50\/70:focus {
  --tw-shadow-color: rgb(253 244 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-50\/80:focus {
  --tw-shadow-color: rgb(253 244 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-50\/90:focus {
  --tw-shadow-color: rgb(253 244 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-500:focus {
  --tw-shadow-color: #d946ef;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-500\/10:focus {
  --tw-shadow-color: rgb(217 70 239 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-500\/20:focus {
  --tw-shadow-color: rgb(217 70 239 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-500\/30:focus {
  --tw-shadow-color: rgb(217 70 239 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-500\/40:focus {
  --tw-shadow-color: rgb(217 70 239 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-500\/5:focus {
  --tw-shadow-color: rgb(217 70 239 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-500\/50:focus {
  --tw-shadow-color: rgb(217 70 239 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-500\/60:focus {
  --tw-shadow-color: rgb(217 70 239 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-500\/70:focus {
  --tw-shadow-color: rgb(217 70 239 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-500\/80:focus {
  --tw-shadow-color: rgb(217 70 239 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-500\/90:focus {
  --tw-shadow-color: rgb(217 70 239 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-600:focus {
  --tw-shadow-color: #c026d3;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-600\/10:focus {
  --tw-shadow-color: rgb(192 38 211 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-600\/20:focus {
  --tw-shadow-color: rgb(192 38 211 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-600\/30:focus {
  --tw-shadow-color: rgb(192 38 211 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-600\/40:focus {
  --tw-shadow-color: rgb(192 38 211 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-600\/5:focus {
  --tw-shadow-color: rgb(192 38 211 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-600\/50:focus {
  --tw-shadow-color: rgb(192 38 211 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-600\/60:focus {
  --tw-shadow-color: rgb(192 38 211 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-600\/70:focus {
  --tw-shadow-color: rgb(192 38 211 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-600\/80:focus {
  --tw-shadow-color: rgb(192 38 211 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-600\/90:focus {
  --tw-shadow-color: rgb(192 38 211 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-700:focus {
  --tw-shadow-color: #a21caf;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-700\/10:focus {
  --tw-shadow-color: rgb(162 28 175 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-700\/20:focus {
  --tw-shadow-color: rgb(162 28 175 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-700\/30:focus {
  --tw-shadow-color: rgb(162 28 175 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-700\/40:focus {
  --tw-shadow-color: rgb(162 28 175 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-700\/5:focus {
  --tw-shadow-color: rgb(162 28 175 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-700\/50:focus {
  --tw-shadow-color: rgb(162 28 175 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-700\/60:focus {
  --tw-shadow-color: rgb(162 28 175 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-700\/70:focus {
  --tw-shadow-color: rgb(162 28 175 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-700\/80:focus {
  --tw-shadow-color: rgb(162 28 175 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-700\/90:focus {
  --tw-shadow-color: rgb(162 28 175 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-800:focus {
  --tw-shadow-color: #86198f;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-800\/10:focus {
  --tw-shadow-color: rgb(134 25 143 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-800\/20:focus {
  --tw-shadow-color: rgb(134 25 143 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-800\/30:focus {
  --tw-shadow-color: rgb(134 25 143 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-800\/40:focus {
  --tw-shadow-color: rgb(134 25 143 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-800\/5:focus {
  --tw-shadow-color: rgb(134 25 143 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-800\/50:focus {
  --tw-shadow-color: rgb(134 25 143 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-800\/60:focus {
  --tw-shadow-color: rgb(134 25 143 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-800\/70:focus {
  --tw-shadow-color: rgb(134 25 143 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-800\/80:focus {
  --tw-shadow-color: rgb(134 25 143 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-800\/90:focus {
  --tw-shadow-color: rgb(134 25 143 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-900:focus {
  --tw-shadow-color: #701a75;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-900\/10:focus {
  --tw-shadow-color: rgb(112 26 117 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-900\/20:focus {
  --tw-shadow-color: rgb(112 26 117 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-900\/30:focus {
  --tw-shadow-color: rgb(112 26 117 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-900\/40:focus {
  --tw-shadow-color: rgb(112 26 117 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-900\/5:focus {
  --tw-shadow-color: rgb(112 26 117 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-900\/50:focus {
  --tw-shadow-color: rgb(112 26 117 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-900\/60:focus {
  --tw-shadow-color: rgb(112 26 117 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-900\/70:focus {
  --tw-shadow-color: rgb(112 26 117 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-900\/80:focus {
  --tw-shadow-color: rgb(112 26 117 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-900\/90:focus {
  --tw-shadow-color: rgb(112 26 117 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-950:focus {
  --tw-shadow-color: #4a044e;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-950\/10:focus {
  --tw-shadow-color: rgb(74 4 78 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-950\/20:focus {
  --tw-shadow-color: rgb(74 4 78 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-950\/30:focus {
  --tw-shadow-color: rgb(74 4 78 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-950\/40:focus {
  --tw-shadow-color: rgb(74 4 78 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-950\/5:focus {
  --tw-shadow-color: rgb(74 4 78 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-950\/50:focus {
  --tw-shadow-color: rgb(74 4 78 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-950\/60:focus {
  --tw-shadow-color: rgb(74 4 78 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-950\/70:focus {
  --tw-shadow-color: rgb(74 4 78 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-950\/80:focus {
  --tw-shadow-color: rgb(74 4 78 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-fuchsia-950\/90:focus {
  --tw-shadow-color: rgb(74 4 78 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-100:focus {
  --tw-shadow-color: #f3f4f6;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-100\/10:focus {
  --tw-shadow-color: rgb(243 244 246 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-100\/20:focus {
  --tw-shadow-color: rgb(243 244 246 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-100\/30:focus {
  --tw-shadow-color: rgb(243 244 246 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-100\/40:focus {
  --tw-shadow-color: rgb(243 244 246 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-100\/5:focus {
  --tw-shadow-color: rgb(243 244 246 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-100\/50:focus {
  --tw-shadow-color: rgb(243 244 246 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-100\/60:focus {
  --tw-shadow-color: rgb(243 244 246 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-100\/70:focus {
  --tw-shadow-color: rgb(243 244 246 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-100\/80:focus {
  --tw-shadow-color: rgb(243 244 246 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-100\/90:focus {
  --tw-shadow-color: rgb(243 244 246 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-200:focus {
  --tw-shadow-color: #e5e7eb;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-200\/10:focus {
  --tw-shadow-color: rgb(229 231 235 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-200\/20:focus {
  --tw-shadow-color: rgb(229 231 235 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-200\/30:focus {
  --tw-shadow-color: rgb(229 231 235 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-200\/40:focus {
  --tw-shadow-color: rgb(229 231 235 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-200\/5:focus {
  --tw-shadow-color: rgb(229 231 235 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-200\/50:focus {
  --tw-shadow-color: rgb(229 231 235 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-200\/60:focus {
  --tw-shadow-color: rgb(229 231 235 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-200\/70:focus {
  --tw-shadow-color: rgb(229 231 235 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-200\/80:focus {
  --tw-shadow-color: rgb(229 231 235 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-200\/90:focus {
  --tw-shadow-color: rgb(229 231 235 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-300:focus {
  --tw-shadow-color: #d1d5db;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-300\/10:focus {
  --tw-shadow-color: rgb(209 213 219 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-300\/20:focus {
  --tw-shadow-color: rgb(209 213 219 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-300\/30:focus {
  --tw-shadow-color: rgb(209 213 219 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-300\/40:focus {
  --tw-shadow-color: rgb(209 213 219 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-300\/5:focus {
  --tw-shadow-color: rgb(209 213 219 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-300\/50:focus {
  --tw-shadow-color: rgb(209 213 219 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-300\/60:focus {
  --tw-shadow-color: rgb(209 213 219 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-300\/70:focus {
  --tw-shadow-color: rgb(209 213 219 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-300\/80:focus {
  --tw-shadow-color: rgb(209 213 219 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-300\/90:focus {
  --tw-shadow-color: rgb(209 213 219 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-400:focus {
  --tw-shadow-color: #9ca3af;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-400\/10:focus {
  --tw-shadow-color: rgb(156 163 175 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-400\/20:focus {
  --tw-shadow-color: rgb(156 163 175 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-400\/30:focus {
  --tw-shadow-color: rgb(156 163 175 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-400\/40:focus {
  --tw-shadow-color: rgb(156 163 175 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-400\/5:focus {
  --tw-shadow-color: rgb(156 163 175 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-400\/50:focus {
  --tw-shadow-color: rgb(156 163 175 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-400\/60:focus {
  --tw-shadow-color: rgb(156 163 175 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-400\/70:focus {
  --tw-shadow-color: rgb(156 163 175 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-400\/80:focus {
  --tw-shadow-color: rgb(156 163 175 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-400\/90:focus {
  --tw-shadow-color: rgb(156 163 175 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-50:focus {
  --tw-shadow-color: #f9fafb;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-50\/10:focus {
  --tw-shadow-color: rgb(249 250 251 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-50\/20:focus {
  --tw-shadow-color: rgb(249 250 251 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-50\/30:focus {
  --tw-shadow-color: rgb(249 250 251 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-50\/40:focus {
  --tw-shadow-color: rgb(249 250 251 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-50\/5:focus {
  --tw-shadow-color: rgb(249 250 251 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-50\/50:focus {
  --tw-shadow-color: rgb(249 250 251 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-50\/60:focus {
  --tw-shadow-color: rgb(249 250 251 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-50\/70:focus {
  --tw-shadow-color: rgb(249 250 251 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-50\/80:focus {
  --tw-shadow-color: rgb(249 250 251 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-50\/90:focus {
  --tw-shadow-color: rgb(249 250 251 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-500:focus {
  --tw-shadow-color: #6b7280;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-500\/10:focus {
  --tw-shadow-color: rgb(107 114 128 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-500\/20:focus {
  --tw-shadow-color: rgb(107 114 128 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-500\/30:focus {
  --tw-shadow-color: rgb(107 114 128 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-500\/40:focus {
  --tw-shadow-color: rgb(107 114 128 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-500\/5:focus {
  --tw-shadow-color: rgb(107 114 128 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-500\/50:focus {
  --tw-shadow-color: rgb(107 114 128 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-500\/60:focus {
  --tw-shadow-color: rgb(107 114 128 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-500\/70:focus {
  --tw-shadow-color: rgb(107 114 128 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-500\/80:focus {
  --tw-shadow-color: rgb(107 114 128 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-500\/90:focus {
  --tw-shadow-color: rgb(107 114 128 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-600:focus {
  --tw-shadow-color: #4b5563;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-600\/10:focus {
  --tw-shadow-color: rgb(75 85 99 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-600\/20:focus {
  --tw-shadow-color: rgb(75 85 99 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-600\/30:focus {
  --tw-shadow-color: rgb(75 85 99 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-600\/40:focus {
  --tw-shadow-color: rgb(75 85 99 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-600\/5:focus {
  --tw-shadow-color: rgb(75 85 99 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-600\/50:focus {
  --tw-shadow-color: rgb(75 85 99 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-600\/60:focus {
  --tw-shadow-color: rgb(75 85 99 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-600\/70:focus {
  --tw-shadow-color: rgb(75 85 99 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-600\/80:focus {
  --tw-shadow-color: rgb(75 85 99 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-600\/90:focus {
  --tw-shadow-color: rgb(75 85 99 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-700:focus {
  --tw-shadow-color: #374151;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-700\/10:focus {
  --tw-shadow-color: rgb(55 65 81 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-700\/20:focus {
  --tw-shadow-color: rgb(55 65 81 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-700\/30:focus {
  --tw-shadow-color: rgb(55 65 81 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-700\/40:focus {
  --tw-shadow-color: rgb(55 65 81 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-700\/5:focus {
  --tw-shadow-color: rgb(55 65 81 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-700\/50:focus {
  --tw-shadow-color: rgb(55 65 81 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-700\/60:focus {
  --tw-shadow-color: rgb(55 65 81 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-700\/70:focus {
  --tw-shadow-color: rgb(55 65 81 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-700\/80:focus {
  --tw-shadow-color: rgb(55 65 81 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-700\/90:focus {
  --tw-shadow-color: rgb(55 65 81 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-800:focus {
  --tw-shadow-color: #1f2937;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-800\/10:focus {
  --tw-shadow-color: rgb(31 41 55 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-800\/20:focus {
  --tw-shadow-color: rgb(31 41 55 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-800\/30:focus {
  --tw-shadow-color: rgb(31 41 55 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-800\/40:focus {
  --tw-shadow-color: rgb(31 41 55 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-800\/5:focus {
  --tw-shadow-color: rgb(31 41 55 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-800\/50:focus {
  --tw-shadow-color: rgb(31 41 55 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-800\/60:focus {
  --tw-shadow-color: rgb(31 41 55 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-800\/70:focus {
  --tw-shadow-color: rgb(31 41 55 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-800\/80:focus {
  --tw-shadow-color: rgb(31 41 55 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-800\/90:focus {
  --tw-shadow-color: rgb(31 41 55 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-900:focus {
  --tw-shadow-color: #111827;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-900\/10:focus {
  --tw-shadow-color: rgb(17 24 39 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-900\/20:focus {
  --tw-shadow-color: rgb(17 24 39 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-900\/30:focus {
  --tw-shadow-color: rgb(17 24 39 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-900\/40:focus {
  --tw-shadow-color: rgb(17 24 39 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-900\/5:focus {
  --tw-shadow-color: rgb(17 24 39 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-900\/50:focus {
  --tw-shadow-color: rgb(17 24 39 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-900\/60:focus {
  --tw-shadow-color: rgb(17 24 39 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-900\/70:focus {
  --tw-shadow-color: rgb(17 24 39 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-900\/80:focus {
  --tw-shadow-color: rgb(17 24 39 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-900\/90:focus {
  --tw-shadow-color: rgb(17 24 39 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-950:focus {
  --tw-shadow-color: #030712;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-950\/10:focus {
  --tw-shadow-color: rgb(3 7 18 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-950\/20:focus {
  --tw-shadow-color: rgb(3 7 18 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-950\/30:focus {
  --tw-shadow-color: rgb(3 7 18 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-950\/40:focus {
  --tw-shadow-color: rgb(3 7 18 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-950\/5:focus {
  --tw-shadow-color: rgb(3 7 18 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-950\/50:focus {
  --tw-shadow-color: rgb(3 7 18 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-950\/60:focus {
  --tw-shadow-color: rgb(3 7 18 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-950\/70:focus {
  --tw-shadow-color: rgb(3 7 18 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-950\/80:focus {
  --tw-shadow-color: rgb(3 7 18 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-gray-950\/90:focus {
  --tw-shadow-color: rgb(3 7 18 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-100:focus {
  --tw-shadow-color: #dcfce7;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-100\/10:focus {
  --tw-shadow-color: rgb(220 252 231 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-100\/20:focus {
  --tw-shadow-color: rgb(220 252 231 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-100\/30:focus {
  --tw-shadow-color: rgb(220 252 231 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-100\/40:focus {
  --tw-shadow-color: rgb(220 252 231 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-100\/5:focus {
  --tw-shadow-color: rgb(220 252 231 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-100\/50:focus {
  --tw-shadow-color: rgb(220 252 231 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-100\/60:focus {
  --tw-shadow-color: rgb(220 252 231 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-100\/70:focus {
  --tw-shadow-color: rgb(220 252 231 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-100\/80:focus {
  --tw-shadow-color: rgb(220 252 231 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-100\/90:focus {
  --tw-shadow-color: rgb(220 252 231 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-200:focus {
  --tw-shadow-color: #bbf7d0;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-200\/10:focus {
  --tw-shadow-color: rgb(187 247 208 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-200\/20:focus {
  --tw-shadow-color: rgb(187 247 208 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-200\/30:focus {
  --tw-shadow-color: rgb(187 247 208 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-200\/40:focus {
  --tw-shadow-color: rgb(187 247 208 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-200\/5:focus {
  --tw-shadow-color: rgb(187 247 208 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-200\/50:focus {
  --tw-shadow-color: rgb(187 247 208 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-200\/60:focus {
  --tw-shadow-color: rgb(187 247 208 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-200\/70:focus {
  --tw-shadow-color: rgb(187 247 208 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-200\/80:focus {
  --tw-shadow-color: rgb(187 247 208 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-200\/90:focus {
  --tw-shadow-color: rgb(187 247 208 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-300:focus {
  --tw-shadow-color: #86efac;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-300\/10:focus {
  --tw-shadow-color: rgb(134 239 172 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-300\/20:focus {
  --tw-shadow-color: rgb(134 239 172 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-300\/30:focus {
  --tw-shadow-color: rgb(134 239 172 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-300\/40:focus {
  --tw-shadow-color: rgb(134 239 172 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-300\/5:focus {
  --tw-shadow-color: rgb(134 239 172 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-300\/50:focus {
  --tw-shadow-color: rgb(134 239 172 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-300\/60:focus {
  --tw-shadow-color: rgb(134 239 172 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-300\/70:focus {
  --tw-shadow-color: rgb(134 239 172 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-300\/80:focus {
  --tw-shadow-color: rgb(134 239 172 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-300\/90:focus {
  --tw-shadow-color: rgb(134 239 172 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-400:focus {
  --tw-shadow-color: #4ade80;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-400\/10:focus {
  --tw-shadow-color: rgb(74 222 128 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-400\/20:focus {
  --tw-shadow-color: rgb(74 222 128 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-400\/30:focus {
  --tw-shadow-color: rgb(74 222 128 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-400\/40:focus {
  --tw-shadow-color: rgb(74 222 128 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-400\/5:focus {
  --tw-shadow-color: rgb(74 222 128 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-400\/50:focus {
  --tw-shadow-color: rgb(74 222 128 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-400\/60:focus {
  --tw-shadow-color: rgb(74 222 128 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-400\/70:focus {
  --tw-shadow-color: rgb(74 222 128 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-400\/80:focus {
  --tw-shadow-color: rgb(74 222 128 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-400\/90:focus {
  --tw-shadow-color: rgb(74 222 128 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-50:focus {
  --tw-shadow-color: #f0fdf4;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-50\/10:focus {
  --tw-shadow-color: rgb(240 253 244 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-50\/20:focus {
  --tw-shadow-color: rgb(240 253 244 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-50\/30:focus {
  --tw-shadow-color: rgb(240 253 244 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-50\/40:focus {
  --tw-shadow-color: rgb(240 253 244 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-50\/5:focus {
  --tw-shadow-color: rgb(240 253 244 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-50\/50:focus {
  --tw-shadow-color: rgb(240 253 244 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-50\/60:focus {
  --tw-shadow-color: rgb(240 253 244 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-50\/70:focus {
  --tw-shadow-color: rgb(240 253 244 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-50\/80:focus {
  --tw-shadow-color: rgb(240 253 244 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-50\/90:focus {
  --tw-shadow-color: rgb(240 253 244 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-500:focus {
  --tw-shadow-color: #22c55e;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-500\/10:focus {
  --tw-shadow-color: rgb(34 197 94 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-500\/20:focus {
  --tw-shadow-color: rgb(34 197 94 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-500\/30:focus {
  --tw-shadow-color: rgb(34 197 94 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-500\/40:focus {
  --tw-shadow-color: rgb(34 197 94 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-500\/5:focus {
  --tw-shadow-color: rgb(34 197 94 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-500\/50:focus {
  --tw-shadow-color: rgb(34 197 94 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-500\/60:focus {
  --tw-shadow-color: rgb(34 197 94 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-500\/70:focus {
  --tw-shadow-color: rgb(34 197 94 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-500\/80:focus {
  --tw-shadow-color: rgb(34 197 94 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-500\/90:focus {
  --tw-shadow-color: rgb(34 197 94 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-600:focus {
  --tw-shadow-color: #16a34a;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-600\/10:focus {
  --tw-shadow-color: rgb(22 163 74 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-600\/20:focus {
  --tw-shadow-color: rgb(22 163 74 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-600\/30:focus {
  --tw-shadow-color: rgb(22 163 74 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-600\/40:focus {
  --tw-shadow-color: rgb(22 163 74 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-600\/5:focus {
  --tw-shadow-color: rgb(22 163 74 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-600\/50:focus {
  --tw-shadow-color: rgb(22 163 74 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-600\/60:focus {
  --tw-shadow-color: rgb(22 163 74 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-600\/70:focus {
  --tw-shadow-color: rgb(22 163 74 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-600\/80:focus {
  --tw-shadow-color: rgb(22 163 74 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-600\/90:focus {
  --tw-shadow-color: rgb(22 163 74 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-700:focus {
  --tw-shadow-color: #15803d;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-700\/10:focus {
  --tw-shadow-color: rgb(21 128 61 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-700\/20:focus {
  --tw-shadow-color: rgb(21 128 61 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-700\/30:focus {
  --tw-shadow-color: rgb(21 128 61 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-700\/40:focus {
  --tw-shadow-color: rgb(21 128 61 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-700\/5:focus {
  --tw-shadow-color: rgb(21 128 61 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-700\/50:focus {
  --tw-shadow-color: rgb(21 128 61 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-700\/60:focus {
  --tw-shadow-color: rgb(21 128 61 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-700\/70:focus {
  --tw-shadow-color: rgb(21 128 61 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-700\/80:focus {
  --tw-shadow-color: rgb(21 128 61 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-700\/90:focus {
  --tw-shadow-color: rgb(21 128 61 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-800:focus {
  --tw-shadow-color: #166534;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-800\/10:focus {
  --tw-shadow-color: rgb(22 101 52 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-800\/20:focus {
  --tw-shadow-color: rgb(22 101 52 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-800\/30:focus {
  --tw-shadow-color: rgb(22 101 52 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-800\/40:focus {
  --tw-shadow-color: rgb(22 101 52 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-800\/5:focus {
  --tw-shadow-color: rgb(22 101 52 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-800\/50:focus {
  --tw-shadow-color: rgb(22 101 52 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-800\/60:focus {
  --tw-shadow-color: rgb(22 101 52 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-800\/70:focus {
  --tw-shadow-color: rgb(22 101 52 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-800\/80:focus {
  --tw-shadow-color: rgb(22 101 52 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-800\/90:focus {
  --tw-shadow-color: rgb(22 101 52 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-900:focus {
  --tw-shadow-color: #14532d;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-900\/10:focus {
  --tw-shadow-color: rgb(20 83 45 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-900\/20:focus {
  --tw-shadow-color: rgb(20 83 45 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-900\/30:focus {
  --tw-shadow-color: rgb(20 83 45 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-900\/40:focus {
  --tw-shadow-color: rgb(20 83 45 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-900\/5:focus {
  --tw-shadow-color: rgb(20 83 45 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-900\/50:focus {
  --tw-shadow-color: rgb(20 83 45 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-900\/60:focus {
  --tw-shadow-color: rgb(20 83 45 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-900\/70:focus {
  --tw-shadow-color: rgb(20 83 45 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-900\/80:focus {
  --tw-shadow-color: rgb(20 83 45 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-900\/90:focus {
  --tw-shadow-color: rgb(20 83 45 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-950:focus {
  --tw-shadow-color: #052e16;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-950\/10:focus {
  --tw-shadow-color: rgb(5 46 22 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-950\/20:focus {
  --tw-shadow-color: rgb(5 46 22 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-950\/30:focus {
  --tw-shadow-color: rgb(5 46 22 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-950\/40:focus {
  --tw-shadow-color: rgb(5 46 22 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-950\/5:focus {
  --tw-shadow-color: rgb(5 46 22 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-950\/50:focus {
  --tw-shadow-color: rgb(5 46 22 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-950\/60:focus {
  --tw-shadow-color: rgb(5 46 22 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-950\/70:focus {
  --tw-shadow-color: rgb(5 46 22 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-950\/80:focus {
  --tw-shadow-color: rgb(5 46 22 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-green-950\/90:focus {
  --tw-shadow-color: rgb(5 46 22 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-100:focus {
  --tw-shadow-color: #e0e7ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-100\/10:focus {
  --tw-shadow-color: rgb(224 231 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-100\/20:focus {
  --tw-shadow-color: rgb(224 231 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-100\/30:focus {
  --tw-shadow-color: rgb(224 231 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-100\/40:focus {
  --tw-shadow-color: rgb(224 231 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-100\/5:focus {
  --tw-shadow-color: rgb(224 231 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-100\/50:focus {
  --tw-shadow-color: rgb(224 231 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-100\/60:focus {
  --tw-shadow-color: rgb(224 231 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-100\/70:focus {
  --tw-shadow-color: rgb(224 231 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-100\/80:focus {
  --tw-shadow-color: rgb(224 231 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-100\/90:focus {
  --tw-shadow-color: rgb(224 231 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-200:focus {
  --tw-shadow-color: #c7d2fe;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-200\/10:focus {
  --tw-shadow-color: rgb(199 210 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-200\/20:focus {
  --tw-shadow-color: rgb(199 210 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-200\/30:focus {
  --tw-shadow-color: rgb(199 210 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-200\/40:focus {
  --tw-shadow-color: rgb(199 210 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-200\/5:focus {
  --tw-shadow-color: rgb(199 210 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-200\/50:focus {
  --tw-shadow-color: rgb(199 210 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-200\/60:focus {
  --tw-shadow-color: rgb(199 210 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-200\/70:focus {
  --tw-shadow-color: rgb(199 210 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-200\/80:focus {
  --tw-shadow-color: rgb(199 210 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-200\/90:focus {
  --tw-shadow-color: rgb(199 210 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-300:focus {
  --tw-shadow-color: #a5b4fc;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-300\/10:focus {
  --tw-shadow-color: rgb(165 180 252 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-300\/20:focus {
  --tw-shadow-color: rgb(165 180 252 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-300\/30:focus {
  --tw-shadow-color: rgb(165 180 252 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-300\/40:focus {
  --tw-shadow-color: rgb(165 180 252 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-300\/5:focus {
  --tw-shadow-color: rgb(165 180 252 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-300\/50:focus {
  --tw-shadow-color: rgb(165 180 252 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-300\/60:focus {
  --tw-shadow-color: rgb(165 180 252 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-300\/70:focus {
  --tw-shadow-color: rgb(165 180 252 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-300\/80:focus {
  --tw-shadow-color: rgb(165 180 252 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-300\/90:focus {
  --tw-shadow-color: rgb(165 180 252 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-400:focus {
  --tw-shadow-color: #818cf8;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-400\/10:focus {
  --tw-shadow-color: rgb(129 140 248 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-400\/20:focus {
  --tw-shadow-color: rgb(129 140 248 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-400\/30:focus {
  --tw-shadow-color: rgb(129 140 248 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-400\/40:focus {
  --tw-shadow-color: rgb(129 140 248 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-400\/5:focus {
  --tw-shadow-color: rgb(129 140 248 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-400\/50:focus {
  --tw-shadow-color: rgb(129 140 248 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-400\/60:focus {
  --tw-shadow-color: rgb(129 140 248 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-400\/70:focus {
  --tw-shadow-color: rgb(129 140 248 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-400\/80:focus {
  --tw-shadow-color: rgb(129 140 248 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-400\/90:focus {
  --tw-shadow-color: rgb(129 140 248 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-50:focus {
  --tw-shadow-color: #eef2ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-50\/10:focus {
  --tw-shadow-color: rgb(238 242 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-50\/20:focus {
  --tw-shadow-color: rgb(238 242 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-50\/30:focus {
  --tw-shadow-color: rgb(238 242 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-50\/40:focus {
  --tw-shadow-color: rgb(238 242 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-50\/5:focus {
  --tw-shadow-color: rgb(238 242 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-50\/50:focus {
  --tw-shadow-color: rgb(238 242 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-50\/60:focus {
  --tw-shadow-color: rgb(238 242 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-50\/70:focus {
  --tw-shadow-color: rgb(238 242 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-50\/80:focus {
  --tw-shadow-color: rgb(238 242 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-50\/90:focus {
  --tw-shadow-color: rgb(238 242 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-500:focus {
  --tw-shadow-color: #6366f1;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-500\/10:focus {
  --tw-shadow-color: rgb(99 102 241 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-500\/20:focus {
  --tw-shadow-color: rgb(99 102 241 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-500\/30:focus {
  --tw-shadow-color: rgb(99 102 241 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-500\/40:focus {
  --tw-shadow-color: rgb(99 102 241 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-500\/5:focus {
  --tw-shadow-color: rgb(99 102 241 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-500\/50:focus {
  --tw-shadow-color: rgb(99 102 241 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-500\/60:focus {
  --tw-shadow-color: rgb(99 102 241 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-500\/70:focus {
  --tw-shadow-color: rgb(99 102 241 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-500\/80:focus {
  --tw-shadow-color: rgb(99 102 241 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-500\/90:focus {
  --tw-shadow-color: rgb(99 102 241 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-600:focus {
  --tw-shadow-color: #4f46e5;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-600\/10:focus {
  --tw-shadow-color: rgb(79 70 229 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-600\/20:focus {
  --tw-shadow-color: rgb(79 70 229 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-600\/30:focus {
  --tw-shadow-color: rgb(79 70 229 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-600\/40:focus {
  --tw-shadow-color: rgb(79 70 229 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-600\/5:focus {
  --tw-shadow-color: rgb(79 70 229 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-600\/50:focus {
  --tw-shadow-color: rgb(79 70 229 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-600\/60:focus {
  --tw-shadow-color: rgb(79 70 229 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-600\/70:focus {
  --tw-shadow-color: rgb(79 70 229 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-600\/80:focus {
  --tw-shadow-color: rgb(79 70 229 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-600\/90:focus {
  --tw-shadow-color: rgb(79 70 229 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-700:focus {
  --tw-shadow-color: #4338ca;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-700\/10:focus {
  --tw-shadow-color: rgb(67 56 202 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-700\/20:focus {
  --tw-shadow-color: rgb(67 56 202 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-700\/30:focus {
  --tw-shadow-color: rgb(67 56 202 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-700\/40:focus {
  --tw-shadow-color: rgb(67 56 202 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-700\/5:focus {
  --tw-shadow-color: rgb(67 56 202 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-700\/50:focus {
  --tw-shadow-color: rgb(67 56 202 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-700\/60:focus {
  --tw-shadow-color: rgb(67 56 202 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-700\/70:focus {
  --tw-shadow-color: rgb(67 56 202 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-700\/80:focus {
  --tw-shadow-color: rgb(67 56 202 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-700\/90:focus {
  --tw-shadow-color: rgb(67 56 202 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-800:focus {
  --tw-shadow-color: #3730a3;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-800\/10:focus {
  --tw-shadow-color: rgb(55 48 163 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-800\/20:focus {
  --tw-shadow-color: rgb(55 48 163 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-800\/30:focus {
  --tw-shadow-color: rgb(55 48 163 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-800\/40:focus {
  --tw-shadow-color: rgb(55 48 163 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-800\/5:focus {
  --tw-shadow-color: rgb(55 48 163 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-800\/50:focus {
  --tw-shadow-color: rgb(55 48 163 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-800\/60:focus {
  --tw-shadow-color: rgb(55 48 163 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-800\/70:focus {
  --tw-shadow-color: rgb(55 48 163 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-800\/80:focus {
  --tw-shadow-color: rgb(55 48 163 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-800\/90:focus {
  --tw-shadow-color: rgb(55 48 163 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-900:focus {
  --tw-shadow-color: #312e81;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-900\/10:focus {
  --tw-shadow-color: rgb(49 46 129 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-900\/20:focus {
  --tw-shadow-color: rgb(49 46 129 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-900\/30:focus {
  --tw-shadow-color: rgb(49 46 129 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-900\/40:focus {
  --tw-shadow-color: rgb(49 46 129 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-900\/5:focus {
  --tw-shadow-color: rgb(49 46 129 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-900\/50:focus {
  --tw-shadow-color: rgb(49 46 129 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-900\/60:focus {
  --tw-shadow-color: rgb(49 46 129 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-900\/70:focus {
  --tw-shadow-color: rgb(49 46 129 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-900\/80:focus {
  --tw-shadow-color: rgb(49 46 129 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-900\/90:focus {
  --tw-shadow-color: rgb(49 46 129 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-950:focus {
  --tw-shadow-color: #1e1b4b;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-950\/10:focus {
  --tw-shadow-color: rgb(30 27 75 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-950\/20:focus {
  --tw-shadow-color: rgb(30 27 75 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-950\/30:focus {
  --tw-shadow-color: rgb(30 27 75 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-950\/40:focus {
  --tw-shadow-color: rgb(30 27 75 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-950\/5:focus {
  --tw-shadow-color: rgb(30 27 75 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-950\/50:focus {
  --tw-shadow-color: rgb(30 27 75 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-950\/60:focus {
  --tw-shadow-color: rgb(30 27 75 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-950\/70:focus {
  --tw-shadow-color: rgb(30 27 75 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-950\/80:focus {
  --tw-shadow-color: rgb(30 27 75 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-indigo-950\/90:focus {
  --tw-shadow-color: rgb(30 27 75 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-100:focus {
  --tw-shadow-color: #ecfccb;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-100\/10:focus {
  --tw-shadow-color: rgb(236 252 203 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-100\/20:focus {
  --tw-shadow-color: rgb(236 252 203 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-100\/30:focus {
  --tw-shadow-color: rgb(236 252 203 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-100\/40:focus {
  --tw-shadow-color: rgb(236 252 203 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-100\/5:focus {
  --tw-shadow-color: rgb(236 252 203 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-100\/50:focus {
  --tw-shadow-color: rgb(236 252 203 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-100\/60:focus {
  --tw-shadow-color: rgb(236 252 203 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-100\/70:focus {
  --tw-shadow-color: rgb(236 252 203 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-100\/80:focus {
  --tw-shadow-color: rgb(236 252 203 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-100\/90:focus {
  --tw-shadow-color: rgb(236 252 203 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-200:focus {
  --tw-shadow-color: #d9f99d;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-200\/10:focus {
  --tw-shadow-color: rgb(217 249 157 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-200\/20:focus {
  --tw-shadow-color: rgb(217 249 157 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-200\/30:focus {
  --tw-shadow-color: rgb(217 249 157 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-200\/40:focus {
  --tw-shadow-color: rgb(217 249 157 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-200\/5:focus {
  --tw-shadow-color: rgb(217 249 157 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-200\/50:focus {
  --tw-shadow-color: rgb(217 249 157 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-200\/60:focus {
  --tw-shadow-color: rgb(217 249 157 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-200\/70:focus {
  --tw-shadow-color: rgb(217 249 157 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-200\/80:focus {
  --tw-shadow-color: rgb(217 249 157 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-200\/90:focus {
  --tw-shadow-color: rgb(217 249 157 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-300:focus {
  --tw-shadow-color: #bef264;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-300\/10:focus {
  --tw-shadow-color: rgb(190 242 100 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-300\/20:focus {
  --tw-shadow-color: rgb(190 242 100 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-300\/30:focus {
  --tw-shadow-color: rgb(190 242 100 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-300\/40:focus {
  --tw-shadow-color: rgb(190 242 100 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-300\/5:focus {
  --tw-shadow-color: rgb(190 242 100 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-300\/50:focus {
  --tw-shadow-color: rgb(190 242 100 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-300\/60:focus {
  --tw-shadow-color: rgb(190 242 100 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-300\/70:focus {
  --tw-shadow-color: rgb(190 242 100 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-300\/80:focus {
  --tw-shadow-color: rgb(190 242 100 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-300\/90:focus {
  --tw-shadow-color: rgb(190 242 100 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-400:focus {
  --tw-shadow-color: #a3e635;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-400\/10:focus {
  --tw-shadow-color: rgb(163 230 53 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-400\/20:focus {
  --tw-shadow-color: rgb(163 230 53 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-400\/30:focus {
  --tw-shadow-color: rgb(163 230 53 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-400\/40:focus {
  --tw-shadow-color: rgb(163 230 53 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-400\/5:focus {
  --tw-shadow-color: rgb(163 230 53 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-400\/50:focus {
  --tw-shadow-color: rgb(163 230 53 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-400\/60:focus {
  --tw-shadow-color: rgb(163 230 53 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-400\/70:focus {
  --tw-shadow-color: rgb(163 230 53 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-400\/80:focus {
  --tw-shadow-color: rgb(163 230 53 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-400\/90:focus {
  --tw-shadow-color: rgb(163 230 53 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-50:focus {
  --tw-shadow-color: #f7fee7;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-50\/10:focus {
  --tw-shadow-color: rgb(247 254 231 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-50\/20:focus {
  --tw-shadow-color: rgb(247 254 231 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-50\/30:focus {
  --tw-shadow-color: rgb(247 254 231 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-50\/40:focus {
  --tw-shadow-color: rgb(247 254 231 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-50\/5:focus {
  --tw-shadow-color: rgb(247 254 231 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-50\/50:focus {
  --tw-shadow-color: rgb(247 254 231 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-50\/60:focus {
  --tw-shadow-color: rgb(247 254 231 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-50\/70:focus {
  --tw-shadow-color: rgb(247 254 231 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-50\/80:focus {
  --tw-shadow-color: rgb(247 254 231 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-50\/90:focus {
  --tw-shadow-color: rgb(247 254 231 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-500:focus {
  --tw-shadow-color: #84cc16;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-500\/10:focus {
  --tw-shadow-color: rgb(132 204 22 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-500\/20:focus {
  --tw-shadow-color: rgb(132 204 22 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-500\/30:focus {
  --tw-shadow-color: rgb(132 204 22 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-500\/40:focus {
  --tw-shadow-color: rgb(132 204 22 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-500\/5:focus {
  --tw-shadow-color: rgb(132 204 22 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-500\/50:focus {
  --tw-shadow-color: rgb(132 204 22 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-500\/60:focus {
  --tw-shadow-color: rgb(132 204 22 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-500\/70:focus {
  --tw-shadow-color: rgb(132 204 22 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-500\/80:focus {
  --tw-shadow-color: rgb(132 204 22 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-500\/90:focus {
  --tw-shadow-color: rgb(132 204 22 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-600:focus {
  --tw-shadow-color: #65a30d;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-600\/10:focus {
  --tw-shadow-color: rgb(101 163 13 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-600\/20:focus {
  --tw-shadow-color: rgb(101 163 13 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-600\/30:focus {
  --tw-shadow-color: rgb(101 163 13 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-600\/40:focus {
  --tw-shadow-color: rgb(101 163 13 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-600\/5:focus {
  --tw-shadow-color: rgb(101 163 13 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-600\/50:focus {
  --tw-shadow-color: rgb(101 163 13 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-600\/60:focus {
  --tw-shadow-color: rgb(101 163 13 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-600\/70:focus {
  --tw-shadow-color: rgb(101 163 13 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-600\/80:focus {
  --tw-shadow-color: rgb(101 163 13 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-600\/90:focus {
  --tw-shadow-color: rgb(101 163 13 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-700:focus {
  --tw-shadow-color: #4d7c0f;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-700\/10:focus {
  --tw-shadow-color: rgb(77 124 15 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-700\/20:focus {
  --tw-shadow-color: rgb(77 124 15 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-700\/30:focus {
  --tw-shadow-color: rgb(77 124 15 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-700\/40:focus {
  --tw-shadow-color: rgb(77 124 15 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-700\/5:focus {
  --tw-shadow-color: rgb(77 124 15 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-700\/50:focus {
  --tw-shadow-color: rgb(77 124 15 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-700\/60:focus {
  --tw-shadow-color: rgb(77 124 15 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-700\/70:focus {
  --tw-shadow-color: rgb(77 124 15 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-700\/80:focus {
  --tw-shadow-color: rgb(77 124 15 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-700\/90:focus {
  --tw-shadow-color: rgb(77 124 15 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-800:focus {
  --tw-shadow-color: #3f6212;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-800\/10:focus {
  --tw-shadow-color: rgb(63 98 18 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-800\/20:focus {
  --tw-shadow-color: rgb(63 98 18 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-800\/30:focus {
  --tw-shadow-color: rgb(63 98 18 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-800\/40:focus {
  --tw-shadow-color: rgb(63 98 18 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-800\/5:focus {
  --tw-shadow-color: rgb(63 98 18 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-800\/50:focus {
  --tw-shadow-color: rgb(63 98 18 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-800\/60:focus {
  --tw-shadow-color: rgb(63 98 18 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-800\/70:focus {
  --tw-shadow-color: rgb(63 98 18 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-800\/80:focus {
  --tw-shadow-color: rgb(63 98 18 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-800\/90:focus {
  --tw-shadow-color: rgb(63 98 18 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-900:focus {
  --tw-shadow-color: #365314;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-900\/10:focus {
  --tw-shadow-color: rgb(54 83 20 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-900\/20:focus {
  --tw-shadow-color: rgb(54 83 20 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-900\/30:focus {
  --tw-shadow-color: rgb(54 83 20 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-900\/40:focus {
  --tw-shadow-color: rgb(54 83 20 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-900\/5:focus {
  --tw-shadow-color: rgb(54 83 20 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-900\/50:focus {
  --tw-shadow-color: rgb(54 83 20 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-900\/60:focus {
  --tw-shadow-color: rgb(54 83 20 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-900\/70:focus {
  --tw-shadow-color: rgb(54 83 20 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-900\/80:focus {
  --tw-shadow-color: rgb(54 83 20 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-900\/90:focus {
  --tw-shadow-color: rgb(54 83 20 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-950:focus {
  --tw-shadow-color: #1a2e05;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-950\/10:focus {
  --tw-shadow-color: rgb(26 46 5 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-950\/20:focus {
  --tw-shadow-color: rgb(26 46 5 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-950\/30:focus {
  --tw-shadow-color: rgb(26 46 5 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-950\/40:focus {
  --tw-shadow-color: rgb(26 46 5 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-950\/5:focus {
  --tw-shadow-color: rgb(26 46 5 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-950\/50:focus {
  --tw-shadow-color: rgb(26 46 5 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-950\/60:focus {
  --tw-shadow-color: rgb(26 46 5 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-950\/70:focus {
  --tw-shadow-color: rgb(26 46 5 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-950\/80:focus {
  --tw-shadow-color: rgb(26 46 5 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-lime-950\/90:focus {
  --tw-shadow-color: rgb(26 46 5 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-100:focus {
  --tw-shadow-color: #f5f5f5;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-100\/10:focus {
  --tw-shadow-color: rgb(245 245 245 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-100\/20:focus {
  --tw-shadow-color: rgb(245 245 245 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-100\/30:focus {
  --tw-shadow-color: rgb(245 245 245 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-100\/40:focus {
  --tw-shadow-color: rgb(245 245 245 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-100\/5:focus {
  --tw-shadow-color: rgb(245 245 245 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-100\/50:focus {
  --tw-shadow-color: rgb(245 245 245 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-100\/60:focus {
  --tw-shadow-color: rgb(245 245 245 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-100\/70:focus {
  --tw-shadow-color: rgb(245 245 245 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-100\/80:focus {
  --tw-shadow-color: rgb(245 245 245 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-100\/90:focus {
  --tw-shadow-color: rgb(245 245 245 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-200:focus {
  --tw-shadow-color: #e5e5e5;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-200\/10:focus {
  --tw-shadow-color: rgb(229 229 229 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-200\/20:focus {
  --tw-shadow-color: rgb(229 229 229 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-200\/30:focus {
  --tw-shadow-color: rgb(229 229 229 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-200\/40:focus {
  --tw-shadow-color: rgb(229 229 229 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-200\/5:focus {
  --tw-shadow-color: rgb(229 229 229 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-200\/50:focus {
  --tw-shadow-color: rgb(229 229 229 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-200\/60:focus {
  --tw-shadow-color: rgb(229 229 229 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-200\/70:focus {
  --tw-shadow-color: rgb(229 229 229 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-200\/80:focus {
  --tw-shadow-color: rgb(229 229 229 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-200\/90:focus {
  --tw-shadow-color: rgb(229 229 229 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-300:focus {
  --tw-shadow-color: #d4d4d4;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-300\/10:focus {
  --tw-shadow-color: rgb(212 212 212 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-300\/20:focus {
  --tw-shadow-color: rgb(212 212 212 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-300\/30:focus {
  --tw-shadow-color: rgb(212 212 212 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-300\/40:focus {
  --tw-shadow-color: rgb(212 212 212 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-300\/5:focus {
  --tw-shadow-color: rgb(212 212 212 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-300\/50:focus {
  --tw-shadow-color: rgb(212 212 212 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-300\/60:focus {
  --tw-shadow-color: rgb(212 212 212 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-300\/70:focus {
  --tw-shadow-color: rgb(212 212 212 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-300\/80:focus {
  --tw-shadow-color: rgb(212 212 212 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-300\/90:focus {
  --tw-shadow-color: rgb(212 212 212 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-400:focus {
  --tw-shadow-color: #a3a3a3;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-400\/10:focus {
  --tw-shadow-color: rgb(163 163 163 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-400\/20:focus {
  --tw-shadow-color: rgb(163 163 163 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-400\/30:focus {
  --tw-shadow-color: rgb(163 163 163 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-400\/40:focus {
  --tw-shadow-color: rgb(163 163 163 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-400\/5:focus {
  --tw-shadow-color: rgb(163 163 163 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-400\/50:focus {
  --tw-shadow-color: rgb(163 163 163 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-400\/60:focus {
  --tw-shadow-color: rgb(163 163 163 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-400\/70:focus {
  --tw-shadow-color: rgb(163 163 163 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-400\/80:focus {
  --tw-shadow-color: rgb(163 163 163 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-400\/90:focus {
  --tw-shadow-color: rgb(163 163 163 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-50:focus {
  --tw-shadow-color: #fafafa;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-50\/10:focus {
  --tw-shadow-color: rgb(250 250 250 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-50\/20:focus {
  --tw-shadow-color: rgb(250 250 250 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-50\/30:focus {
  --tw-shadow-color: rgb(250 250 250 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-50\/40:focus {
  --tw-shadow-color: rgb(250 250 250 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-50\/5:focus {
  --tw-shadow-color: rgb(250 250 250 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-50\/50:focus {
  --tw-shadow-color: rgb(250 250 250 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-50\/60:focus {
  --tw-shadow-color: rgb(250 250 250 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-50\/70:focus {
  --tw-shadow-color: rgb(250 250 250 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-50\/80:focus {
  --tw-shadow-color: rgb(250 250 250 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-50\/90:focus {
  --tw-shadow-color: rgb(250 250 250 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-500:focus {
  --tw-shadow-color: #737373;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-500\/10:focus {
  --tw-shadow-color: rgb(115 115 115 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-500\/20:focus {
  --tw-shadow-color: rgb(115 115 115 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-500\/30:focus {
  --tw-shadow-color: rgb(115 115 115 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-500\/40:focus {
  --tw-shadow-color: rgb(115 115 115 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-500\/5:focus {
  --tw-shadow-color: rgb(115 115 115 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-500\/50:focus {
  --tw-shadow-color: rgb(115 115 115 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-500\/60:focus {
  --tw-shadow-color: rgb(115 115 115 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-500\/70:focus {
  --tw-shadow-color: rgb(115 115 115 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-500\/80:focus {
  --tw-shadow-color: rgb(115 115 115 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-500\/90:focus {
  --tw-shadow-color: rgb(115 115 115 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-600:focus {
  --tw-shadow-color: #525252;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-600\/10:focus {
  --tw-shadow-color: rgb(82 82 82 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-600\/20:focus {
  --tw-shadow-color: rgb(82 82 82 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-600\/30:focus {
  --tw-shadow-color: rgb(82 82 82 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-600\/40:focus {
  --tw-shadow-color: rgb(82 82 82 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-600\/5:focus {
  --tw-shadow-color: rgb(82 82 82 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-600\/50:focus {
  --tw-shadow-color: rgb(82 82 82 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-600\/60:focus {
  --tw-shadow-color: rgb(82 82 82 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-600\/70:focus {
  --tw-shadow-color: rgb(82 82 82 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-600\/80:focus {
  --tw-shadow-color: rgb(82 82 82 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-600\/90:focus {
  --tw-shadow-color: rgb(82 82 82 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-700:focus {
  --tw-shadow-color: #404040;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-700\/10:focus {
  --tw-shadow-color: rgb(64 64 64 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-700\/20:focus {
  --tw-shadow-color: rgb(64 64 64 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-700\/30:focus {
  --tw-shadow-color: rgb(64 64 64 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-700\/40:focus {
  --tw-shadow-color: rgb(64 64 64 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-700\/5:focus {
  --tw-shadow-color: rgb(64 64 64 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-700\/50:focus {
  --tw-shadow-color: rgb(64 64 64 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-700\/60:focus {
  --tw-shadow-color: rgb(64 64 64 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-700\/70:focus {
  --tw-shadow-color: rgb(64 64 64 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-700\/80:focus {
  --tw-shadow-color: rgb(64 64 64 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-700\/90:focus {
  --tw-shadow-color: rgb(64 64 64 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-800:focus {
  --tw-shadow-color: #262626;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-800\/10:focus {
  --tw-shadow-color: rgb(38 38 38 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-800\/20:focus {
  --tw-shadow-color: rgb(38 38 38 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-800\/30:focus {
  --tw-shadow-color: rgb(38 38 38 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-800\/40:focus {
  --tw-shadow-color: rgb(38 38 38 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-800\/5:focus {
  --tw-shadow-color: rgb(38 38 38 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-800\/50:focus {
  --tw-shadow-color: rgb(38 38 38 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-800\/60:focus {
  --tw-shadow-color: rgb(38 38 38 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-800\/70:focus {
  --tw-shadow-color: rgb(38 38 38 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-800\/80:focus {
  --tw-shadow-color: rgb(38 38 38 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-800\/90:focus {
  --tw-shadow-color: rgb(38 38 38 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-900:focus {
  --tw-shadow-color: #171717;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-900\/10:focus {
  --tw-shadow-color: rgb(23 23 23 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-900\/20:focus {
  --tw-shadow-color: rgb(23 23 23 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-900\/30:focus {
  --tw-shadow-color: rgb(23 23 23 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-900\/40:focus {
  --tw-shadow-color: rgb(23 23 23 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-900\/5:focus {
  --tw-shadow-color: rgb(23 23 23 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-900\/50:focus {
  --tw-shadow-color: rgb(23 23 23 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-900\/60:focus {
  --tw-shadow-color: rgb(23 23 23 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-900\/70:focus {
  --tw-shadow-color: rgb(23 23 23 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-900\/80:focus {
  --tw-shadow-color: rgb(23 23 23 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-900\/90:focus {
  --tw-shadow-color: rgb(23 23 23 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-950:focus {
  --tw-shadow-color: #0a0a0a;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-950\/10:focus {
  --tw-shadow-color: rgb(10 10 10 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-950\/20:focus {
  --tw-shadow-color: rgb(10 10 10 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-950\/30:focus {
  --tw-shadow-color: rgb(10 10 10 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-950\/40:focus {
  --tw-shadow-color: rgb(10 10 10 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-950\/5:focus {
  --tw-shadow-color: rgb(10 10 10 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-950\/50:focus {
  --tw-shadow-color: rgb(10 10 10 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-950\/60:focus {
  --tw-shadow-color: rgb(10 10 10 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-950\/70:focus {
  --tw-shadow-color: rgb(10 10 10 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-950\/80:focus {
  --tw-shadow-color: rgb(10 10 10 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-neutral-950\/90:focus {
  --tw-shadow-color: rgb(10 10 10 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-100:focus {
  --tw-shadow-color: #ffedd5;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-100\/10:focus {
  --tw-shadow-color: rgb(255 237 213 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-100\/20:focus {
  --tw-shadow-color: rgb(255 237 213 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-100\/30:focus {
  --tw-shadow-color: rgb(255 237 213 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-100\/40:focus {
  --tw-shadow-color: rgb(255 237 213 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-100\/5:focus {
  --tw-shadow-color: rgb(255 237 213 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-100\/50:focus {
  --tw-shadow-color: rgb(255 237 213 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-100\/60:focus {
  --tw-shadow-color: rgb(255 237 213 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-100\/70:focus {
  --tw-shadow-color: rgb(255 237 213 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-100\/80:focus {
  --tw-shadow-color: rgb(255 237 213 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-100\/90:focus {
  --tw-shadow-color: rgb(255 237 213 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-200:focus {
  --tw-shadow-color: #fed7aa;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-200\/10:focus {
  --tw-shadow-color: rgb(254 215 170 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-200\/20:focus {
  --tw-shadow-color: rgb(254 215 170 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-200\/30:focus {
  --tw-shadow-color: rgb(254 215 170 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-200\/40:focus {
  --tw-shadow-color: rgb(254 215 170 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-200\/5:focus {
  --tw-shadow-color: rgb(254 215 170 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-200\/50:focus {
  --tw-shadow-color: rgb(254 215 170 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-200\/60:focus {
  --tw-shadow-color: rgb(254 215 170 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-200\/70:focus {
  --tw-shadow-color: rgb(254 215 170 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-200\/80:focus {
  --tw-shadow-color: rgb(254 215 170 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-200\/90:focus {
  --tw-shadow-color: rgb(254 215 170 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-300:focus {
  --tw-shadow-color: #fdba74;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-300\/10:focus {
  --tw-shadow-color: rgb(253 186 116 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-300\/20:focus {
  --tw-shadow-color: rgb(253 186 116 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-300\/30:focus {
  --tw-shadow-color: rgb(253 186 116 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-300\/40:focus {
  --tw-shadow-color: rgb(253 186 116 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-300\/5:focus {
  --tw-shadow-color: rgb(253 186 116 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-300\/50:focus {
  --tw-shadow-color: rgb(253 186 116 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-300\/60:focus {
  --tw-shadow-color: rgb(253 186 116 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-300\/70:focus {
  --tw-shadow-color: rgb(253 186 116 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-300\/80:focus {
  --tw-shadow-color: rgb(253 186 116 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-300\/90:focus {
  --tw-shadow-color: rgb(253 186 116 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-400:focus {
  --tw-shadow-color: #fb923c;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-400\/10:focus {
  --tw-shadow-color: rgb(251 146 60 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-400\/20:focus {
  --tw-shadow-color: rgb(251 146 60 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-400\/30:focus {
  --tw-shadow-color: rgb(251 146 60 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-400\/40:focus {
  --tw-shadow-color: rgb(251 146 60 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-400\/5:focus {
  --tw-shadow-color: rgb(251 146 60 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-400\/50:focus {
  --tw-shadow-color: rgb(251 146 60 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-400\/60:focus {
  --tw-shadow-color: rgb(251 146 60 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-400\/70:focus {
  --tw-shadow-color: rgb(251 146 60 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-400\/80:focus {
  --tw-shadow-color: rgb(251 146 60 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-400\/90:focus {
  --tw-shadow-color: rgb(251 146 60 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-50:focus {
  --tw-shadow-color: #fff7ed;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-50\/10:focus {
  --tw-shadow-color: rgb(255 247 237 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-50\/20:focus {
  --tw-shadow-color: rgb(255 247 237 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-50\/30:focus {
  --tw-shadow-color: rgb(255 247 237 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-50\/40:focus {
  --tw-shadow-color: rgb(255 247 237 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-50\/5:focus {
  --tw-shadow-color: rgb(255 247 237 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-50\/50:focus {
  --tw-shadow-color: rgb(255 247 237 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-50\/60:focus {
  --tw-shadow-color: rgb(255 247 237 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-50\/70:focus {
  --tw-shadow-color: rgb(255 247 237 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-50\/80:focus {
  --tw-shadow-color: rgb(255 247 237 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-50\/90:focus {
  --tw-shadow-color: rgb(255 247 237 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-500:focus {
  --tw-shadow-color: #f97316;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-500\/10:focus {
  --tw-shadow-color: rgb(249 115 22 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-500\/20:focus {
  --tw-shadow-color: rgb(249 115 22 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-500\/30:focus {
  --tw-shadow-color: rgb(249 115 22 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-500\/40:focus {
  --tw-shadow-color: rgb(249 115 22 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-500\/5:focus {
  --tw-shadow-color: rgb(249 115 22 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-500\/50:focus {
  --tw-shadow-color: rgb(249 115 22 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-500\/60:focus {
  --tw-shadow-color: rgb(249 115 22 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-500\/70:focus {
  --tw-shadow-color: rgb(249 115 22 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-500\/80:focus {
  --tw-shadow-color: rgb(249 115 22 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-500\/90:focus {
  --tw-shadow-color: rgb(249 115 22 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-600:focus {
  --tw-shadow-color: #ea580c;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-600\/10:focus {
  --tw-shadow-color: rgb(234 88 12 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-600\/20:focus {
  --tw-shadow-color: rgb(234 88 12 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-600\/30:focus {
  --tw-shadow-color: rgb(234 88 12 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-600\/40:focus {
  --tw-shadow-color: rgb(234 88 12 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-600\/5:focus {
  --tw-shadow-color: rgb(234 88 12 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-600\/50:focus {
  --tw-shadow-color: rgb(234 88 12 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-600\/60:focus {
  --tw-shadow-color: rgb(234 88 12 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-600\/70:focus {
  --tw-shadow-color: rgb(234 88 12 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-600\/80:focus {
  --tw-shadow-color: rgb(234 88 12 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-600\/90:focus {
  --tw-shadow-color: rgb(234 88 12 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-700:focus {
  --tw-shadow-color: #c2410c;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-700\/10:focus {
  --tw-shadow-color: rgb(194 65 12 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-700\/20:focus {
  --tw-shadow-color: rgb(194 65 12 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-700\/30:focus {
  --tw-shadow-color: rgb(194 65 12 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-700\/40:focus {
  --tw-shadow-color: rgb(194 65 12 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-700\/5:focus {
  --tw-shadow-color: rgb(194 65 12 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-700\/50:focus {
  --tw-shadow-color: rgb(194 65 12 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-700\/60:focus {
  --tw-shadow-color: rgb(194 65 12 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-700\/70:focus {
  --tw-shadow-color: rgb(194 65 12 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-700\/80:focus {
  --tw-shadow-color: rgb(194 65 12 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-700\/90:focus {
  --tw-shadow-color: rgb(194 65 12 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-800:focus {
  --tw-shadow-color: #9a3412;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-800\/10:focus {
  --tw-shadow-color: rgb(154 52 18 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-800\/20:focus {
  --tw-shadow-color: rgb(154 52 18 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-800\/30:focus {
  --tw-shadow-color: rgb(154 52 18 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-800\/40:focus {
  --tw-shadow-color: rgb(154 52 18 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-800\/5:focus {
  --tw-shadow-color: rgb(154 52 18 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-800\/50:focus {
  --tw-shadow-color: rgb(154 52 18 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-800\/60:focus {
  --tw-shadow-color: rgb(154 52 18 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-800\/70:focus {
  --tw-shadow-color: rgb(154 52 18 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-800\/80:focus {
  --tw-shadow-color: rgb(154 52 18 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-800\/90:focus {
  --tw-shadow-color: rgb(154 52 18 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-900:focus {
  --tw-shadow-color: #7c2d12;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-900\/10:focus {
  --tw-shadow-color: rgb(124 45 18 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-900\/20:focus {
  --tw-shadow-color: rgb(124 45 18 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-900\/30:focus {
  --tw-shadow-color: rgb(124 45 18 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-900\/40:focus {
  --tw-shadow-color: rgb(124 45 18 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-900\/5:focus {
  --tw-shadow-color: rgb(124 45 18 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-900\/50:focus {
  --tw-shadow-color: rgb(124 45 18 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-900\/60:focus {
  --tw-shadow-color: rgb(124 45 18 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-900\/70:focus {
  --tw-shadow-color: rgb(124 45 18 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-900\/80:focus {
  --tw-shadow-color: rgb(124 45 18 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-900\/90:focus {
  --tw-shadow-color: rgb(124 45 18 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-950:focus {
  --tw-shadow-color: #431407;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-950\/10:focus {
  --tw-shadow-color: rgb(67 20 7 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-950\/20:focus {
  --tw-shadow-color: rgb(67 20 7 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-950\/30:focus {
  --tw-shadow-color: rgb(67 20 7 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-950\/40:focus {
  --tw-shadow-color: rgb(67 20 7 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-950\/5:focus {
  --tw-shadow-color: rgb(67 20 7 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-950\/50:focus {
  --tw-shadow-color: rgb(67 20 7 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-950\/60:focus {
  --tw-shadow-color: rgb(67 20 7 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-950\/70:focus {
  --tw-shadow-color: rgb(67 20 7 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-950\/80:focus {
  --tw-shadow-color: rgb(67 20 7 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-orange-950\/90:focus {
  --tw-shadow-color: rgb(67 20 7 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-100:focus {
  --tw-shadow-color: #fce7f3;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-100\/10:focus {
  --tw-shadow-color: rgb(252 231 243 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-100\/20:focus {
  --tw-shadow-color: rgb(252 231 243 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-100\/30:focus {
  --tw-shadow-color: rgb(252 231 243 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-100\/40:focus {
  --tw-shadow-color: rgb(252 231 243 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-100\/5:focus {
  --tw-shadow-color: rgb(252 231 243 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-100\/50:focus {
  --tw-shadow-color: rgb(252 231 243 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-100\/60:focus {
  --tw-shadow-color: rgb(252 231 243 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-100\/70:focus {
  --tw-shadow-color: rgb(252 231 243 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-100\/80:focus {
  --tw-shadow-color: rgb(252 231 243 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-100\/90:focus {
  --tw-shadow-color: rgb(252 231 243 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-200:focus {
  --tw-shadow-color: #fbcfe8;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-200\/10:focus {
  --tw-shadow-color: rgb(251 207 232 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-200\/20:focus {
  --tw-shadow-color: rgb(251 207 232 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-200\/30:focus {
  --tw-shadow-color: rgb(251 207 232 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-200\/40:focus {
  --tw-shadow-color: rgb(251 207 232 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-200\/5:focus {
  --tw-shadow-color: rgb(251 207 232 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-200\/50:focus {
  --tw-shadow-color: rgb(251 207 232 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-200\/60:focus {
  --tw-shadow-color: rgb(251 207 232 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-200\/70:focus {
  --tw-shadow-color: rgb(251 207 232 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-200\/80:focus {
  --tw-shadow-color: rgb(251 207 232 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-200\/90:focus {
  --tw-shadow-color: rgb(251 207 232 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-300:focus {
  --tw-shadow-color: #f9a8d4;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-300\/10:focus {
  --tw-shadow-color: rgb(249 168 212 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-300\/20:focus {
  --tw-shadow-color: rgb(249 168 212 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-300\/30:focus {
  --tw-shadow-color: rgb(249 168 212 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-300\/40:focus {
  --tw-shadow-color: rgb(249 168 212 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-300\/5:focus {
  --tw-shadow-color: rgb(249 168 212 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-300\/50:focus {
  --tw-shadow-color: rgb(249 168 212 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-300\/60:focus {
  --tw-shadow-color: rgb(249 168 212 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-300\/70:focus {
  --tw-shadow-color: rgb(249 168 212 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-300\/80:focus {
  --tw-shadow-color: rgb(249 168 212 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-300\/90:focus {
  --tw-shadow-color: rgb(249 168 212 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-400:focus {
  --tw-shadow-color: #f472b6;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-400\/10:focus {
  --tw-shadow-color: rgb(244 114 182 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-400\/20:focus {
  --tw-shadow-color: rgb(244 114 182 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-400\/30:focus {
  --tw-shadow-color: rgb(244 114 182 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-400\/40:focus {
  --tw-shadow-color: rgb(244 114 182 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-400\/5:focus {
  --tw-shadow-color: rgb(244 114 182 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-400\/50:focus {
  --tw-shadow-color: rgb(244 114 182 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-400\/60:focus {
  --tw-shadow-color: rgb(244 114 182 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-400\/70:focus {
  --tw-shadow-color: rgb(244 114 182 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-400\/80:focus {
  --tw-shadow-color: rgb(244 114 182 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-400\/90:focus {
  --tw-shadow-color: rgb(244 114 182 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-50:focus {
  --tw-shadow-color: #fdf2f8;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-50\/10:focus {
  --tw-shadow-color: rgb(253 242 248 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-50\/20:focus {
  --tw-shadow-color: rgb(253 242 248 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-50\/30:focus {
  --tw-shadow-color: rgb(253 242 248 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-50\/40:focus {
  --tw-shadow-color: rgb(253 242 248 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-50\/5:focus {
  --tw-shadow-color: rgb(253 242 248 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-50\/50:focus {
  --tw-shadow-color: rgb(253 242 248 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-50\/60:focus {
  --tw-shadow-color: rgb(253 242 248 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-50\/70:focus {
  --tw-shadow-color: rgb(253 242 248 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-50\/80:focus {
  --tw-shadow-color: rgb(253 242 248 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-50\/90:focus {
  --tw-shadow-color: rgb(253 242 248 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-500:focus {
  --tw-shadow-color: #ec4899;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-500\/10:focus {
  --tw-shadow-color: rgb(236 72 153 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-500\/20:focus {
  --tw-shadow-color: rgb(236 72 153 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-500\/30:focus {
  --tw-shadow-color: rgb(236 72 153 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-500\/40:focus {
  --tw-shadow-color: rgb(236 72 153 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-500\/5:focus {
  --tw-shadow-color: rgb(236 72 153 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-500\/50:focus {
  --tw-shadow-color: rgb(236 72 153 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-500\/60:focus {
  --tw-shadow-color: rgb(236 72 153 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-500\/70:focus {
  --tw-shadow-color: rgb(236 72 153 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-500\/80:focus {
  --tw-shadow-color: rgb(236 72 153 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-500\/90:focus {
  --tw-shadow-color: rgb(236 72 153 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-600:focus {
  --tw-shadow-color: #db2777;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-600\/10:focus {
  --tw-shadow-color: rgb(219 39 119 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-600\/20:focus {
  --tw-shadow-color: rgb(219 39 119 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-600\/30:focus {
  --tw-shadow-color: rgb(219 39 119 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-600\/40:focus {
  --tw-shadow-color: rgb(219 39 119 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-600\/5:focus {
  --tw-shadow-color: rgb(219 39 119 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-600\/50:focus {
  --tw-shadow-color: rgb(219 39 119 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-600\/60:focus {
  --tw-shadow-color: rgb(219 39 119 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-600\/70:focus {
  --tw-shadow-color: rgb(219 39 119 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-600\/80:focus {
  --tw-shadow-color: rgb(219 39 119 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-600\/90:focus {
  --tw-shadow-color: rgb(219 39 119 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-700:focus {
  --tw-shadow-color: #be185d;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-700\/10:focus {
  --tw-shadow-color: rgb(190 24 93 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-700\/20:focus {
  --tw-shadow-color: rgb(190 24 93 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-700\/30:focus {
  --tw-shadow-color: rgb(190 24 93 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-700\/40:focus {
  --tw-shadow-color: rgb(190 24 93 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-700\/5:focus {
  --tw-shadow-color: rgb(190 24 93 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-700\/50:focus {
  --tw-shadow-color: rgb(190 24 93 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-700\/60:focus {
  --tw-shadow-color: rgb(190 24 93 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-700\/70:focus {
  --tw-shadow-color: rgb(190 24 93 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-700\/80:focus {
  --tw-shadow-color: rgb(190 24 93 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-700\/90:focus {
  --tw-shadow-color: rgb(190 24 93 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-800:focus {
  --tw-shadow-color: #9d174d;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-800\/10:focus {
  --tw-shadow-color: rgb(157 23 77 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-800\/20:focus {
  --tw-shadow-color: rgb(157 23 77 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-800\/30:focus {
  --tw-shadow-color: rgb(157 23 77 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-800\/40:focus {
  --tw-shadow-color: rgb(157 23 77 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-800\/5:focus {
  --tw-shadow-color: rgb(157 23 77 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-800\/50:focus {
  --tw-shadow-color: rgb(157 23 77 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-800\/60:focus {
  --tw-shadow-color: rgb(157 23 77 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-800\/70:focus {
  --tw-shadow-color: rgb(157 23 77 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-800\/80:focus {
  --tw-shadow-color: rgb(157 23 77 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-800\/90:focus {
  --tw-shadow-color: rgb(157 23 77 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-900:focus {
  --tw-shadow-color: #831843;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-900\/10:focus {
  --tw-shadow-color: rgb(131 24 67 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-900\/20:focus {
  --tw-shadow-color: rgb(131 24 67 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-900\/30:focus {
  --tw-shadow-color: rgb(131 24 67 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-900\/40:focus {
  --tw-shadow-color: rgb(131 24 67 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-900\/5:focus {
  --tw-shadow-color: rgb(131 24 67 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-900\/50:focus {
  --tw-shadow-color: rgb(131 24 67 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-900\/60:focus {
  --tw-shadow-color: rgb(131 24 67 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-900\/70:focus {
  --tw-shadow-color: rgb(131 24 67 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-900\/80:focus {
  --tw-shadow-color: rgb(131 24 67 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-900\/90:focus {
  --tw-shadow-color: rgb(131 24 67 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-950:focus {
  --tw-shadow-color: #500724;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-950\/10:focus {
  --tw-shadow-color: rgb(80 7 36 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-950\/20:focus {
  --tw-shadow-color: rgb(80 7 36 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-950\/30:focus {
  --tw-shadow-color: rgb(80 7 36 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-950\/40:focus {
  --tw-shadow-color: rgb(80 7 36 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-950\/5:focus {
  --tw-shadow-color: rgb(80 7 36 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-950\/50:focus {
  --tw-shadow-color: rgb(80 7 36 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-950\/60:focus {
  --tw-shadow-color: rgb(80 7 36 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-950\/70:focus {
  --tw-shadow-color: rgb(80 7 36 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-950\/80:focus {
  --tw-shadow-color: rgb(80 7 36 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-pink-950\/90:focus {
  --tw-shadow-color: rgb(80 7 36 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-100:focus {
  --tw-shadow-color: #f3e8ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-100\/10:focus {
  --tw-shadow-color: rgb(243 232 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-100\/20:focus {
  --tw-shadow-color: rgb(243 232 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-100\/30:focus {
  --tw-shadow-color: rgb(243 232 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-100\/40:focus {
  --tw-shadow-color: rgb(243 232 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-100\/5:focus {
  --tw-shadow-color: rgb(243 232 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-100\/50:focus {
  --tw-shadow-color: rgb(243 232 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-100\/60:focus {
  --tw-shadow-color: rgb(243 232 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-100\/70:focus {
  --tw-shadow-color: rgb(243 232 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-100\/80:focus {
  --tw-shadow-color: rgb(243 232 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-100\/90:focus {
  --tw-shadow-color: rgb(243 232 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-200:focus {
  --tw-shadow-color: #e9d5ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-200\/10:focus {
  --tw-shadow-color: rgb(233 213 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-200\/20:focus {
  --tw-shadow-color: rgb(233 213 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-200\/30:focus {
  --tw-shadow-color: rgb(233 213 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-200\/40:focus {
  --tw-shadow-color: rgb(233 213 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-200\/5:focus {
  --tw-shadow-color: rgb(233 213 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-200\/50:focus {
  --tw-shadow-color: rgb(233 213 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-200\/60:focus {
  --tw-shadow-color: rgb(233 213 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-200\/70:focus {
  --tw-shadow-color: rgb(233 213 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-200\/80:focus {
  --tw-shadow-color: rgb(233 213 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-200\/90:focus {
  --tw-shadow-color: rgb(233 213 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-300:focus {
  --tw-shadow-color: #d8b4fe;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-300\/10:focus {
  --tw-shadow-color: rgb(216 180 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-300\/20:focus {
  --tw-shadow-color: rgb(216 180 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-300\/30:focus {
  --tw-shadow-color: rgb(216 180 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-300\/40:focus {
  --tw-shadow-color: rgb(216 180 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-300\/5:focus {
  --tw-shadow-color: rgb(216 180 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-300\/50:focus {
  --tw-shadow-color: rgb(216 180 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-300\/60:focus {
  --tw-shadow-color: rgb(216 180 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-300\/70:focus {
  --tw-shadow-color: rgb(216 180 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-300\/80:focus {
  --tw-shadow-color: rgb(216 180 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-300\/90:focus {
  --tw-shadow-color: rgb(216 180 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-400:focus {
  --tw-shadow-color: #c084fc;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-400\/10:focus {
  --tw-shadow-color: rgb(192 132 252 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-400\/20:focus {
  --tw-shadow-color: rgb(192 132 252 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-400\/30:focus {
  --tw-shadow-color: rgb(192 132 252 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-400\/40:focus {
  --tw-shadow-color: rgb(192 132 252 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-400\/5:focus {
  --tw-shadow-color: rgb(192 132 252 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-400\/50:focus {
  --tw-shadow-color: rgb(192 132 252 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-400\/60:focus {
  --tw-shadow-color: rgb(192 132 252 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-400\/70:focus {
  --tw-shadow-color: rgb(192 132 252 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-400\/80:focus {
  --tw-shadow-color: rgb(192 132 252 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-400\/90:focus {
  --tw-shadow-color: rgb(192 132 252 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-50:focus {
  --tw-shadow-color: #faf5ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-50\/10:focus {
  --tw-shadow-color: rgb(250 245 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-50\/20:focus {
  --tw-shadow-color: rgb(250 245 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-50\/30:focus {
  --tw-shadow-color: rgb(250 245 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-50\/40:focus {
  --tw-shadow-color: rgb(250 245 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-50\/5:focus {
  --tw-shadow-color: rgb(250 245 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-50\/50:focus {
  --tw-shadow-color: rgb(250 245 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-50\/60:focus {
  --tw-shadow-color: rgb(250 245 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-50\/70:focus {
  --tw-shadow-color: rgb(250 245 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-50\/80:focus {
  --tw-shadow-color: rgb(250 245 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-50\/90:focus {
  --tw-shadow-color: rgb(250 245 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-500:focus {
  --tw-shadow-color: #a855f7;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-500\/10:focus {
  --tw-shadow-color: rgb(168 85 247 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-500\/20:focus {
  --tw-shadow-color: rgb(168 85 247 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-500\/30:focus {
  --tw-shadow-color: rgb(168 85 247 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-500\/40:focus {
  --tw-shadow-color: rgb(168 85 247 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-500\/5:focus {
  --tw-shadow-color: rgb(168 85 247 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-500\/50:focus {
  --tw-shadow-color: rgb(168 85 247 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-500\/60:focus {
  --tw-shadow-color: rgb(168 85 247 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-500\/70:focus {
  --tw-shadow-color: rgb(168 85 247 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-500\/80:focus {
  --tw-shadow-color: rgb(168 85 247 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-500\/90:focus {
  --tw-shadow-color: rgb(168 85 247 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-600:focus {
  --tw-shadow-color: #9333ea;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-600\/10:focus {
  --tw-shadow-color: rgb(147 51 234 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-600\/20:focus {
  --tw-shadow-color: rgb(147 51 234 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-600\/30:focus {
  --tw-shadow-color: rgb(147 51 234 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-600\/40:focus {
  --tw-shadow-color: rgb(147 51 234 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-600\/5:focus {
  --tw-shadow-color: rgb(147 51 234 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-600\/50:focus {
  --tw-shadow-color: rgb(147 51 234 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-600\/60:focus {
  --tw-shadow-color: rgb(147 51 234 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-600\/70:focus {
  --tw-shadow-color: rgb(147 51 234 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-600\/80:focus {
  --tw-shadow-color: rgb(147 51 234 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-600\/90:focus {
  --tw-shadow-color: rgb(147 51 234 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-700:focus {
  --tw-shadow-color: #7e22ce;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-700\/10:focus {
  --tw-shadow-color: rgb(126 34 206 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-700\/20:focus {
  --tw-shadow-color: rgb(126 34 206 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-700\/30:focus {
  --tw-shadow-color: rgb(126 34 206 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-700\/40:focus {
  --tw-shadow-color: rgb(126 34 206 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-700\/5:focus {
  --tw-shadow-color: rgb(126 34 206 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-700\/50:focus {
  --tw-shadow-color: rgb(126 34 206 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-700\/60:focus {
  --tw-shadow-color: rgb(126 34 206 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-700\/70:focus {
  --tw-shadow-color: rgb(126 34 206 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-700\/80:focus {
  --tw-shadow-color: rgb(126 34 206 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-700\/90:focus {
  --tw-shadow-color: rgb(126 34 206 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-800:focus {
  --tw-shadow-color: #6b21a8;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-800\/10:focus {
  --tw-shadow-color: rgb(107 33 168 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-800\/20:focus {
  --tw-shadow-color: rgb(107 33 168 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-800\/30:focus {
  --tw-shadow-color: rgb(107 33 168 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-800\/40:focus {
  --tw-shadow-color: rgb(107 33 168 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-800\/5:focus {
  --tw-shadow-color: rgb(107 33 168 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-800\/50:focus {
  --tw-shadow-color: rgb(107 33 168 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-800\/60:focus {
  --tw-shadow-color: rgb(107 33 168 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-800\/70:focus {
  --tw-shadow-color: rgb(107 33 168 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-800\/80:focus {
  --tw-shadow-color: rgb(107 33 168 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-800\/90:focus {
  --tw-shadow-color: rgb(107 33 168 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-900:focus {
  --tw-shadow-color: #581c87;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-900\/10:focus {
  --tw-shadow-color: rgb(88 28 135 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-900\/20:focus {
  --tw-shadow-color: rgb(88 28 135 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-900\/30:focus {
  --tw-shadow-color: rgb(88 28 135 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-900\/40:focus {
  --tw-shadow-color: rgb(88 28 135 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-900\/5:focus {
  --tw-shadow-color: rgb(88 28 135 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-900\/50:focus {
  --tw-shadow-color: rgb(88 28 135 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-900\/60:focus {
  --tw-shadow-color: rgb(88 28 135 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-900\/70:focus {
  --tw-shadow-color: rgb(88 28 135 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-900\/80:focus {
  --tw-shadow-color: rgb(88 28 135 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-900\/90:focus {
  --tw-shadow-color: rgb(88 28 135 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-950:focus {
  --tw-shadow-color: #3b0764;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-950\/10:focus {
  --tw-shadow-color: rgb(59 7 100 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-950\/20:focus {
  --tw-shadow-color: rgb(59 7 100 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-950\/30:focus {
  --tw-shadow-color: rgb(59 7 100 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-950\/40:focus {
  --tw-shadow-color: rgb(59 7 100 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-950\/5:focus {
  --tw-shadow-color: rgb(59 7 100 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-950\/50:focus {
  --tw-shadow-color: rgb(59 7 100 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-950\/60:focus {
  --tw-shadow-color: rgb(59 7 100 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-950\/70:focus {
  --tw-shadow-color: rgb(59 7 100 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-950\/80:focus {
  --tw-shadow-color: rgb(59 7 100 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-purple-950\/90:focus {
  --tw-shadow-color: rgb(59 7 100 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-100:focus {
  --tw-shadow-color: #fee2e2;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-100\/10:focus {
  --tw-shadow-color: rgb(254 226 226 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-100\/20:focus {
  --tw-shadow-color: rgb(254 226 226 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-100\/30:focus {
  --tw-shadow-color: rgb(254 226 226 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-100\/40:focus {
  --tw-shadow-color: rgb(254 226 226 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-100\/5:focus {
  --tw-shadow-color: rgb(254 226 226 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-100\/50:focus {
  --tw-shadow-color: rgb(254 226 226 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-100\/60:focus {
  --tw-shadow-color: rgb(254 226 226 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-100\/70:focus {
  --tw-shadow-color: rgb(254 226 226 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-100\/80:focus {
  --tw-shadow-color: rgb(254 226 226 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-100\/90:focus {
  --tw-shadow-color: rgb(254 226 226 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-200:focus {
  --tw-shadow-color: #fecaca;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-200\/10:focus {
  --tw-shadow-color: rgb(254 202 202 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-200\/20:focus {
  --tw-shadow-color: rgb(254 202 202 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-200\/30:focus {
  --tw-shadow-color: rgb(254 202 202 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-200\/40:focus {
  --tw-shadow-color: rgb(254 202 202 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-200\/5:focus {
  --tw-shadow-color: rgb(254 202 202 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-200\/50:focus {
  --tw-shadow-color: rgb(254 202 202 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-200\/60:focus {
  --tw-shadow-color: rgb(254 202 202 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-200\/70:focus {
  --tw-shadow-color: rgb(254 202 202 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-200\/80:focus {
  --tw-shadow-color: rgb(254 202 202 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-200\/90:focus {
  --tw-shadow-color: rgb(254 202 202 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-300:focus {
  --tw-shadow-color: #fca5a5;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-300\/10:focus {
  --tw-shadow-color: rgb(252 165 165 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-300\/20:focus {
  --tw-shadow-color: rgb(252 165 165 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-300\/30:focus {
  --tw-shadow-color: rgb(252 165 165 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-300\/40:focus {
  --tw-shadow-color: rgb(252 165 165 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-300\/5:focus {
  --tw-shadow-color: rgb(252 165 165 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-300\/50:focus {
  --tw-shadow-color: rgb(252 165 165 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-300\/60:focus {
  --tw-shadow-color: rgb(252 165 165 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-300\/70:focus {
  --tw-shadow-color: rgb(252 165 165 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-300\/80:focus {
  --tw-shadow-color: rgb(252 165 165 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-300\/90:focus {
  --tw-shadow-color: rgb(252 165 165 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-400:focus {
  --tw-shadow-color: #f87171;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-400\/10:focus {
  --tw-shadow-color: rgb(248 113 113 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-400\/20:focus {
  --tw-shadow-color: rgb(248 113 113 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-400\/30:focus {
  --tw-shadow-color: rgb(248 113 113 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-400\/40:focus {
  --tw-shadow-color: rgb(248 113 113 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-400\/5:focus {
  --tw-shadow-color: rgb(248 113 113 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-400\/50:focus {
  --tw-shadow-color: rgb(248 113 113 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-400\/60:focus {
  --tw-shadow-color: rgb(248 113 113 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-400\/70:focus {
  --tw-shadow-color: rgb(248 113 113 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-400\/80:focus {
  --tw-shadow-color: rgb(248 113 113 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-400\/90:focus {
  --tw-shadow-color: rgb(248 113 113 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-50:focus {
  --tw-shadow-color: #fef2f2;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-50\/10:focus {
  --tw-shadow-color: rgb(254 242 242 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-50\/20:focus {
  --tw-shadow-color: rgb(254 242 242 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-50\/30:focus {
  --tw-shadow-color: rgb(254 242 242 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-50\/40:focus {
  --tw-shadow-color: rgb(254 242 242 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-50\/5:focus {
  --tw-shadow-color: rgb(254 242 242 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-50\/50:focus {
  --tw-shadow-color: rgb(254 242 242 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-50\/60:focus {
  --tw-shadow-color: rgb(254 242 242 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-50\/70:focus {
  --tw-shadow-color: rgb(254 242 242 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-50\/80:focus {
  --tw-shadow-color: rgb(254 242 242 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-50\/90:focus {
  --tw-shadow-color: rgb(254 242 242 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-500:focus {
  --tw-shadow-color: #ef4444;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-500\/10:focus {
  --tw-shadow-color: rgb(239 68 68 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-500\/20:focus {
  --tw-shadow-color: rgb(239 68 68 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-500\/30:focus {
  --tw-shadow-color: rgb(239 68 68 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-500\/40:focus {
  --tw-shadow-color: rgb(239 68 68 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-500\/5:focus {
  --tw-shadow-color: rgb(239 68 68 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-500\/50:focus {
  --tw-shadow-color: rgb(239 68 68 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-500\/60:focus {
  --tw-shadow-color: rgb(239 68 68 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-500\/70:focus {
  --tw-shadow-color: rgb(239 68 68 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-500\/80:focus {
  --tw-shadow-color: rgb(239 68 68 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-500\/90:focus {
  --tw-shadow-color: rgb(239 68 68 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-600:focus {
  --tw-shadow-color: #dc2626;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-600\/10:focus {
  --tw-shadow-color: rgb(220 38 38 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-600\/20:focus {
  --tw-shadow-color: rgb(220 38 38 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-600\/30:focus {
  --tw-shadow-color: rgb(220 38 38 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-600\/40:focus {
  --tw-shadow-color: rgb(220 38 38 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-600\/5:focus {
  --tw-shadow-color: rgb(220 38 38 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-600\/50:focus {
  --tw-shadow-color: rgb(220 38 38 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-600\/60:focus {
  --tw-shadow-color: rgb(220 38 38 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-600\/70:focus {
  --tw-shadow-color: rgb(220 38 38 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-600\/80:focus {
  --tw-shadow-color: rgb(220 38 38 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-600\/90:focus {
  --tw-shadow-color: rgb(220 38 38 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-700:focus {
  --tw-shadow-color: #b91c1c;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-700\/10:focus {
  --tw-shadow-color: rgb(185 28 28 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-700\/20:focus {
  --tw-shadow-color: rgb(185 28 28 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-700\/30:focus {
  --tw-shadow-color: rgb(185 28 28 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-700\/40:focus {
  --tw-shadow-color: rgb(185 28 28 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-700\/5:focus {
  --tw-shadow-color: rgb(185 28 28 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-700\/50:focus {
  --tw-shadow-color: rgb(185 28 28 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-700\/60:focus {
  --tw-shadow-color: rgb(185 28 28 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-700\/70:focus {
  --tw-shadow-color: rgb(185 28 28 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-700\/80:focus {
  --tw-shadow-color: rgb(185 28 28 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-700\/90:focus {
  --tw-shadow-color: rgb(185 28 28 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-800:focus {
  --tw-shadow-color: #991b1b;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-800\/10:focus {
  --tw-shadow-color: rgb(153 27 27 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-800\/20:focus {
  --tw-shadow-color: rgb(153 27 27 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-800\/30:focus {
  --tw-shadow-color: rgb(153 27 27 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-800\/40:focus {
  --tw-shadow-color: rgb(153 27 27 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-800\/5:focus {
  --tw-shadow-color: rgb(153 27 27 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-800\/50:focus {
  --tw-shadow-color: rgb(153 27 27 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-800\/60:focus {
  --tw-shadow-color: rgb(153 27 27 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-800\/70:focus {
  --tw-shadow-color: rgb(153 27 27 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-800\/80:focus {
  --tw-shadow-color: rgb(153 27 27 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-800\/90:focus {
  --tw-shadow-color: rgb(153 27 27 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-900:focus {
  --tw-shadow-color: #7f1d1d;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-900\/10:focus {
  --tw-shadow-color: rgb(127 29 29 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-900\/20:focus {
  --tw-shadow-color: rgb(127 29 29 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-900\/30:focus {
  --tw-shadow-color: rgb(127 29 29 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-900\/40:focus {
  --tw-shadow-color: rgb(127 29 29 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-900\/5:focus {
  --tw-shadow-color: rgb(127 29 29 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-900\/50:focus {
  --tw-shadow-color: rgb(127 29 29 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-900\/60:focus {
  --tw-shadow-color: rgb(127 29 29 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-900\/70:focus {
  --tw-shadow-color: rgb(127 29 29 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-900\/80:focus {
  --tw-shadow-color: rgb(127 29 29 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-900\/90:focus {
  --tw-shadow-color: rgb(127 29 29 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-950:focus {
  --tw-shadow-color: #450a0a;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-950\/10:focus {
  --tw-shadow-color: rgb(69 10 10 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-950\/20:focus {
  --tw-shadow-color: rgb(69 10 10 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-950\/30:focus {
  --tw-shadow-color: rgb(69 10 10 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-950\/40:focus {
  --tw-shadow-color: rgb(69 10 10 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-950\/5:focus {
  --tw-shadow-color: rgb(69 10 10 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-950\/50:focus {
  --tw-shadow-color: rgb(69 10 10 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-950\/60:focus {
  --tw-shadow-color: rgb(69 10 10 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-950\/70:focus {
  --tw-shadow-color: rgb(69 10 10 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-950\/80:focus {
  --tw-shadow-color: rgb(69 10 10 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-red-950\/90:focus {
  --tw-shadow-color: rgb(69 10 10 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-100:focus {
  --tw-shadow-color: #ffe4e6;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-100\/10:focus {
  --tw-shadow-color: rgb(255 228 230 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-100\/20:focus {
  --tw-shadow-color: rgb(255 228 230 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-100\/30:focus {
  --tw-shadow-color: rgb(255 228 230 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-100\/40:focus {
  --tw-shadow-color: rgb(255 228 230 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-100\/5:focus {
  --tw-shadow-color: rgb(255 228 230 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-100\/50:focus {
  --tw-shadow-color: rgb(255 228 230 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-100\/60:focus {
  --tw-shadow-color: rgb(255 228 230 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-100\/70:focus {
  --tw-shadow-color: rgb(255 228 230 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-100\/80:focus {
  --tw-shadow-color: rgb(255 228 230 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-100\/90:focus {
  --tw-shadow-color: rgb(255 228 230 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-200:focus {
  --tw-shadow-color: #fecdd3;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-200\/10:focus {
  --tw-shadow-color: rgb(254 205 211 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-200\/20:focus {
  --tw-shadow-color: rgb(254 205 211 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-200\/30:focus {
  --tw-shadow-color: rgb(254 205 211 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-200\/40:focus {
  --tw-shadow-color: rgb(254 205 211 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-200\/5:focus {
  --tw-shadow-color: rgb(254 205 211 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-200\/50:focus {
  --tw-shadow-color: rgb(254 205 211 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-200\/60:focus {
  --tw-shadow-color: rgb(254 205 211 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-200\/70:focus {
  --tw-shadow-color: rgb(254 205 211 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-200\/80:focus {
  --tw-shadow-color: rgb(254 205 211 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-200\/90:focus {
  --tw-shadow-color: rgb(254 205 211 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-300:focus {
  --tw-shadow-color: #fda4af;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-300\/10:focus {
  --tw-shadow-color: rgb(253 164 175 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-300\/20:focus {
  --tw-shadow-color: rgb(253 164 175 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-300\/30:focus {
  --tw-shadow-color: rgb(253 164 175 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-300\/40:focus {
  --tw-shadow-color: rgb(253 164 175 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-300\/5:focus {
  --tw-shadow-color: rgb(253 164 175 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-300\/50:focus {
  --tw-shadow-color: rgb(253 164 175 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-300\/60:focus {
  --tw-shadow-color: rgb(253 164 175 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-300\/70:focus {
  --tw-shadow-color: rgb(253 164 175 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-300\/80:focus {
  --tw-shadow-color: rgb(253 164 175 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-300\/90:focus {
  --tw-shadow-color: rgb(253 164 175 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-400:focus {
  --tw-shadow-color: #fb7185;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-400\/10:focus {
  --tw-shadow-color: rgb(251 113 133 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-400\/20:focus {
  --tw-shadow-color: rgb(251 113 133 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-400\/30:focus {
  --tw-shadow-color: rgb(251 113 133 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-400\/40:focus {
  --tw-shadow-color: rgb(251 113 133 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-400\/5:focus {
  --tw-shadow-color: rgb(251 113 133 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-400\/50:focus {
  --tw-shadow-color: rgb(251 113 133 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-400\/60:focus {
  --tw-shadow-color: rgb(251 113 133 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-400\/70:focus {
  --tw-shadow-color: rgb(251 113 133 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-400\/80:focus {
  --tw-shadow-color: rgb(251 113 133 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-400\/90:focus {
  --tw-shadow-color: rgb(251 113 133 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-50:focus {
  --tw-shadow-color: #fff1f2;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-50\/10:focus {
  --tw-shadow-color: rgb(255 241 242 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-50\/20:focus {
  --tw-shadow-color: rgb(255 241 242 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-50\/30:focus {
  --tw-shadow-color: rgb(255 241 242 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-50\/40:focus {
  --tw-shadow-color: rgb(255 241 242 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-50\/5:focus {
  --tw-shadow-color: rgb(255 241 242 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-50\/50:focus {
  --tw-shadow-color: rgb(255 241 242 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-50\/60:focus {
  --tw-shadow-color: rgb(255 241 242 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-50\/70:focus {
  --tw-shadow-color: rgb(255 241 242 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-50\/80:focus {
  --tw-shadow-color: rgb(255 241 242 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-50\/90:focus {
  --tw-shadow-color: rgb(255 241 242 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-500:focus {
  --tw-shadow-color: #f43f5e;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-500\/10:focus {
  --tw-shadow-color: rgb(244 63 94 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-500\/20:focus {
  --tw-shadow-color: rgb(244 63 94 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-500\/30:focus {
  --tw-shadow-color: rgb(244 63 94 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-500\/40:focus {
  --tw-shadow-color: rgb(244 63 94 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-500\/5:focus {
  --tw-shadow-color: rgb(244 63 94 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-500\/50:focus {
  --tw-shadow-color: rgb(244 63 94 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-500\/60:focus {
  --tw-shadow-color: rgb(244 63 94 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-500\/70:focus {
  --tw-shadow-color: rgb(244 63 94 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-500\/80:focus {
  --tw-shadow-color: rgb(244 63 94 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-500\/90:focus {
  --tw-shadow-color: rgb(244 63 94 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-600:focus {
  --tw-shadow-color: #e11d48;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-600\/10:focus {
  --tw-shadow-color: rgb(225 29 72 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-600\/20:focus {
  --tw-shadow-color: rgb(225 29 72 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-600\/30:focus {
  --tw-shadow-color: rgb(225 29 72 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-600\/40:focus {
  --tw-shadow-color: rgb(225 29 72 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-600\/5:focus {
  --tw-shadow-color: rgb(225 29 72 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-600\/50:focus {
  --tw-shadow-color: rgb(225 29 72 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-600\/60:focus {
  --tw-shadow-color: rgb(225 29 72 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-600\/70:focus {
  --tw-shadow-color: rgb(225 29 72 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-600\/80:focus {
  --tw-shadow-color: rgb(225 29 72 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-600\/90:focus {
  --tw-shadow-color: rgb(225 29 72 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-700:focus {
  --tw-shadow-color: #be123c;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-700\/10:focus {
  --tw-shadow-color: rgb(190 18 60 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-700\/20:focus {
  --tw-shadow-color: rgb(190 18 60 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-700\/30:focus {
  --tw-shadow-color: rgb(190 18 60 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-700\/40:focus {
  --tw-shadow-color: rgb(190 18 60 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-700\/5:focus {
  --tw-shadow-color: rgb(190 18 60 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-700\/50:focus {
  --tw-shadow-color: rgb(190 18 60 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-700\/60:focus {
  --tw-shadow-color: rgb(190 18 60 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-700\/70:focus {
  --tw-shadow-color: rgb(190 18 60 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-700\/80:focus {
  --tw-shadow-color: rgb(190 18 60 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-700\/90:focus {
  --tw-shadow-color: rgb(190 18 60 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-800:focus {
  --tw-shadow-color: #9f1239;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-800\/10:focus {
  --tw-shadow-color: rgb(159 18 57 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-800\/20:focus {
  --tw-shadow-color: rgb(159 18 57 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-800\/30:focus {
  --tw-shadow-color: rgb(159 18 57 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-800\/40:focus {
  --tw-shadow-color: rgb(159 18 57 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-800\/5:focus {
  --tw-shadow-color: rgb(159 18 57 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-800\/50:focus {
  --tw-shadow-color: rgb(159 18 57 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-800\/60:focus {
  --tw-shadow-color: rgb(159 18 57 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-800\/70:focus {
  --tw-shadow-color: rgb(159 18 57 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-800\/80:focus {
  --tw-shadow-color: rgb(159 18 57 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-800\/90:focus {
  --tw-shadow-color: rgb(159 18 57 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-900:focus {
  --tw-shadow-color: #881337;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-900\/10:focus {
  --tw-shadow-color: rgb(136 19 55 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-900\/20:focus {
  --tw-shadow-color: rgb(136 19 55 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-900\/30:focus {
  --tw-shadow-color: rgb(136 19 55 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-900\/40:focus {
  --tw-shadow-color: rgb(136 19 55 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-900\/5:focus {
  --tw-shadow-color: rgb(136 19 55 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-900\/50:focus {
  --tw-shadow-color: rgb(136 19 55 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-900\/60:focus {
  --tw-shadow-color: rgb(136 19 55 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-900\/70:focus {
  --tw-shadow-color: rgb(136 19 55 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-900\/80:focus {
  --tw-shadow-color: rgb(136 19 55 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-900\/90:focus {
  --tw-shadow-color: rgb(136 19 55 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-950:focus {
  --tw-shadow-color: #4c0519;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-950\/10:focus {
  --tw-shadow-color: rgb(76 5 25 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-950\/20:focus {
  --tw-shadow-color: rgb(76 5 25 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-950\/30:focus {
  --tw-shadow-color: rgb(76 5 25 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-950\/40:focus {
  --tw-shadow-color: rgb(76 5 25 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-950\/5:focus {
  --tw-shadow-color: rgb(76 5 25 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-950\/50:focus {
  --tw-shadow-color: rgb(76 5 25 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-950\/60:focus {
  --tw-shadow-color: rgb(76 5 25 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-950\/70:focus {
  --tw-shadow-color: rgb(76 5 25 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-950\/80:focus {
  --tw-shadow-color: rgb(76 5 25 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-rose-950\/90:focus {
  --tw-shadow-color: rgb(76 5 25 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-100:focus {
  --tw-shadow-color: #e0f2fe;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-100\/10:focus {
  --tw-shadow-color: rgb(224 242 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-100\/20:focus {
  --tw-shadow-color: rgb(224 242 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-100\/30:focus {
  --tw-shadow-color: rgb(224 242 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-100\/40:focus {
  --tw-shadow-color: rgb(224 242 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-100\/5:focus {
  --tw-shadow-color: rgb(224 242 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-100\/50:focus {
  --tw-shadow-color: rgb(224 242 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-100\/60:focus {
  --tw-shadow-color: rgb(224 242 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-100\/70:focus {
  --tw-shadow-color: rgb(224 242 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-100\/80:focus {
  --tw-shadow-color: rgb(224 242 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-100\/90:focus {
  --tw-shadow-color: rgb(224 242 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-200:focus {
  --tw-shadow-color: #bae6fd;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-200\/10:focus {
  --tw-shadow-color: rgb(186 230 253 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-200\/20:focus {
  --tw-shadow-color: rgb(186 230 253 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-200\/30:focus {
  --tw-shadow-color: rgb(186 230 253 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-200\/40:focus {
  --tw-shadow-color: rgb(186 230 253 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-200\/5:focus {
  --tw-shadow-color: rgb(186 230 253 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-200\/50:focus {
  --tw-shadow-color: rgb(186 230 253 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-200\/60:focus {
  --tw-shadow-color: rgb(186 230 253 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-200\/70:focus {
  --tw-shadow-color: rgb(186 230 253 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-200\/80:focus {
  --tw-shadow-color: rgb(186 230 253 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-200\/90:focus {
  --tw-shadow-color: rgb(186 230 253 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-300:focus {
  --tw-shadow-color: #7dd3fc;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-300\/10:focus {
  --tw-shadow-color: rgb(125 211 252 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-300\/20:focus {
  --tw-shadow-color: rgb(125 211 252 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-300\/30:focus {
  --tw-shadow-color: rgb(125 211 252 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-300\/40:focus {
  --tw-shadow-color: rgb(125 211 252 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-300\/5:focus {
  --tw-shadow-color: rgb(125 211 252 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-300\/50:focus {
  --tw-shadow-color: rgb(125 211 252 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-300\/60:focus {
  --tw-shadow-color: rgb(125 211 252 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-300\/70:focus {
  --tw-shadow-color: rgb(125 211 252 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-300\/80:focus {
  --tw-shadow-color: rgb(125 211 252 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-300\/90:focus {
  --tw-shadow-color: rgb(125 211 252 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-400:focus {
  --tw-shadow-color: #38bdf8;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-400\/10:focus {
  --tw-shadow-color: rgb(56 189 248 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-400\/20:focus {
  --tw-shadow-color: rgb(56 189 248 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-400\/30:focus {
  --tw-shadow-color: rgb(56 189 248 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-400\/40:focus {
  --tw-shadow-color: rgb(56 189 248 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-400\/5:focus {
  --tw-shadow-color: rgb(56 189 248 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-400\/50:focus {
  --tw-shadow-color: rgb(56 189 248 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-400\/60:focus {
  --tw-shadow-color: rgb(56 189 248 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-400\/70:focus {
  --tw-shadow-color: rgb(56 189 248 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-400\/80:focus {
  --tw-shadow-color: rgb(56 189 248 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-400\/90:focus {
  --tw-shadow-color: rgb(56 189 248 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-50:focus {
  --tw-shadow-color: #f0f9ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-50\/10:focus {
  --tw-shadow-color: rgb(240 249 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-50\/20:focus {
  --tw-shadow-color: rgb(240 249 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-50\/30:focus {
  --tw-shadow-color: rgb(240 249 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-50\/40:focus {
  --tw-shadow-color: rgb(240 249 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-50\/5:focus {
  --tw-shadow-color: rgb(240 249 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-50\/50:focus {
  --tw-shadow-color: rgb(240 249 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-50\/60:focus {
  --tw-shadow-color: rgb(240 249 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-50\/70:focus {
  --tw-shadow-color: rgb(240 249 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-50\/80:focus {
  --tw-shadow-color: rgb(240 249 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-50\/90:focus {
  --tw-shadow-color: rgb(240 249 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-500:focus {
  --tw-shadow-color: #0ea5e9;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-500\/10:focus {
  --tw-shadow-color: rgb(14 165 233 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-500\/20:focus {
  --tw-shadow-color: rgb(14 165 233 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-500\/30:focus {
  --tw-shadow-color: rgb(14 165 233 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-500\/40:focus {
  --tw-shadow-color: rgb(14 165 233 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-500\/5:focus {
  --tw-shadow-color: rgb(14 165 233 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-500\/50:focus {
  --tw-shadow-color: rgb(14 165 233 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-500\/60:focus {
  --tw-shadow-color: rgb(14 165 233 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-500\/70:focus {
  --tw-shadow-color: rgb(14 165 233 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-500\/80:focus {
  --tw-shadow-color: rgb(14 165 233 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-500\/90:focus {
  --tw-shadow-color: rgb(14 165 233 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-600:focus {
  --tw-shadow-color: #0284c7;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-600\/10:focus {
  --tw-shadow-color: rgb(2 132 199 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-600\/20:focus {
  --tw-shadow-color: rgb(2 132 199 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-600\/30:focus {
  --tw-shadow-color: rgb(2 132 199 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-600\/40:focus {
  --tw-shadow-color: rgb(2 132 199 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-600\/5:focus {
  --tw-shadow-color: rgb(2 132 199 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-600\/50:focus {
  --tw-shadow-color: rgb(2 132 199 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-600\/60:focus {
  --tw-shadow-color: rgb(2 132 199 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-600\/70:focus {
  --tw-shadow-color: rgb(2 132 199 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-600\/80:focus {
  --tw-shadow-color: rgb(2 132 199 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-600\/90:focus {
  --tw-shadow-color: rgb(2 132 199 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-700:focus {
  --tw-shadow-color: #0369a1;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-700\/10:focus {
  --tw-shadow-color: rgb(3 105 161 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-700\/20:focus {
  --tw-shadow-color: rgb(3 105 161 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-700\/30:focus {
  --tw-shadow-color: rgb(3 105 161 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-700\/40:focus {
  --tw-shadow-color: rgb(3 105 161 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-700\/5:focus {
  --tw-shadow-color: rgb(3 105 161 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-700\/50:focus {
  --tw-shadow-color: rgb(3 105 161 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-700\/60:focus {
  --tw-shadow-color: rgb(3 105 161 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-700\/70:focus {
  --tw-shadow-color: rgb(3 105 161 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-700\/80:focus {
  --tw-shadow-color: rgb(3 105 161 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-700\/90:focus {
  --tw-shadow-color: rgb(3 105 161 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-800:focus {
  --tw-shadow-color: #075985;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-800\/10:focus {
  --tw-shadow-color: rgb(7 89 133 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-800\/20:focus {
  --tw-shadow-color: rgb(7 89 133 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-800\/30:focus {
  --tw-shadow-color: rgb(7 89 133 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-800\/40:focus {
  --tw-shadow-color: rgb(7 89 133 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-800\/5:focus {
  --tw-shadow-color: rgb(7 89 133 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-800\/50:focus {
  --tw-shadow-color: rgb(7 89 133 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-800\/60:focus {
  --tw-shadow-color: rgb(7 89 133 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-800\/70:focus {
  --tw-shadow-color: rgb(7 89 133 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-800\/80:focus {
  --tw-shadow-color: rgb(7 89 133 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-800\/90:focus {
  --tw-shadow-color: rgb(7 89 133 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-900:focus {
  --tw-shadow-color: #0c4a6e;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-900\/10:focus {
  --tw-shadow-color: rgb(12 74 110 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-900\/20:focus {
  --tw-shadow-color: rgb(12 74 110 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-900\/30:focus {
  --tw-shadow-color: rgb(12 74 110 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-900\/40:focus {
  --tw-shadow-color: rgb(12 74 110 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-900\/5:focus {
  --tw-shadow-color: rgb(12 74 110 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-900\/50:focus {
  --tw-shadow-color: rgb(12 74 110 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-900\/60:focus {
  --tw-shadow-color: rgb(12 74 110 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-900\/70:focus {
  --tw-shadow-color: rgb(12 74 110 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-900\/80:focus {
  --tw-shadow-color: rgb(12 74 110 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-900\/90:focus {
  --tw-shadow-color: rgb(12 74 110 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-950:focus {
  --tw-shadow-color: #082f49;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-950\/10:focus {
  --tw-shadow-color: rgb(8 47 73 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-950\/20:focus {
  --tw-shadow-color: rgb(8 47 73 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-950\/30:focus {
  --tw-shadow-color: rgb(8 47 73 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-950\/40:focus {
  --tw-shadow-color: rgb(8 47 73 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-950\/5:focus {
  --tw-shadow-color: rgb(8 47 73 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-950\/50:focus {
  --tw-shadow-color: rgb(8 47 73 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-950\/60:focus {
  --tw-shadow-color: rgb(8 47 73 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-950\/70:focus {
  --tw-shadow-color: rgb(8 47 73 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-950\/80:focus {
  --tw-shadow-color: rgb(8 47 73 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-sky-950\/90:focus {
  --tw-shadow-color: rgb(8 47 73 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-100:focus {
  --tw-shadow-color: #f1f5f9;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-100\/10:focus {
  --tw-shadow-color: rgb(241 245 249 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-100\/20:focus {
  --tw-shadow-color: rgb(241 245 249 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-100\/30:focus {
  --tw-shadow-color: rgb(241 245 249 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-100\/40:focus {
  --tw-shadow-color: rgb(241 245 249 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-100\/5:focus {
  --tw-shadow-color: rgb(241 245 249 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-100\/50:focus {
  --tw-shadow-color: rgb(241 245 249 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-100\/60:focus {
  --tw-shadow-color: rgb(241 245 249 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-100\/70:focus {
  --tw-shadow-color: rgb(241 245 249 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-100\/80:focus {
  --tw-shadow-color: rgb(241 245 249 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-100\/90:focus {
  --tw-shadow-color: rgb(241 245 249 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-200:focus {
  --tw-shadow-color: #e2e8f0;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-200\/10:focus {
  --tw-shadow-color: rgb(226 232 240 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-200\/20:focus {
  --tw-shadow-color: rgb(226 232 240 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-200\/30:focus {
  --tw-shadow-color: rgb(226 232 240 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-200\/40:focus {
  --tw-shadow-color: rgb(226 232 240 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-200\/5:focus {
  --tw-shadow-color: rgb(226 232 240 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-200\/50:focus {
  --tw-shadow-color: rgb(226 232 240 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-200\/60:focus {
  --tw-shadow-color: rgb(226 232 240 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-200\/70:focus {
  --tw-shadow-color: rgb(226 232 240 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-200\/80:focus {
  --tw-shadow-color: rgb(226 232 240 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-200\/90:focus {
  --tw-shadow-color: rgb(226 232 240 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-300:focus {
  --tw-shadow-color: #cbd5e1;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-300\/10:focus {
  --tw-shadow-color: rgb(203 213 225 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-300\/20:focus {
  --tw-shadow-color: rgb(203 213 225 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-300\/30:focus {
  --tw-shadow-color: rgb(203 213 225 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-300\/40:focus {
  --tw-shadow-color: rgb(203 213 225 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-300\/5:focus {
  --tw-shadow-color: rgb(203 213 225 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-300\/50:focus {
  --tw-shadow-color: rgb(203 213 225 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-300\/60:focus {
  --tw-shadow-color: rgb(203 213 225 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-300\/70:focus {
  --tw-shadow-color: rgb(203 213 225 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-300\/80:focus {
  --tw-shadow-color: rgb(203 213 225 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-300\/90:focus {
  --tw-shadow-color: rgb(203 213 225 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-400:focus {
  --tw-shadow-color: #94a3b8;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-400\/10:focus {
  --tw-shadow-color: rgb(148 163 184 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-400\/20:focus {
  --tw-shadow-color: rgb(148 163 184 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-400\/30:focus {
  --tw-shadow-color: rgb(148 163 184 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-400\/40:focus {
  --tw-shadow-color: rgb(148 163 184 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-400\/5:focus {
  --tw-shadow-color: rgb(148 163 184 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-400\/50:focus {
  --tw-shadow-color: rgb(148 163 184 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-400\/60:focus {
  --tw-shadow-color: rgb(148 163 184 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-400\/70:focus {
  --tw-shadow-color: rgb(148 163 184 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-400\/80:focus {
  --tw-shadow-color: rgb(148 163 184 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-400\/90:focus {
  --tw-shadow-color: rgb(148 163 184 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-50:focus {
  --tw-shadow-color: #f8fafc;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-50\/10:focus {
  --tw-shadow-color: rgb(248 250 252 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-50\/20:focus {
  --tw-shadow-color: rgb(248 250 252 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-50\/30:focus {
  --tw-shadow-color: rgb(248 250 252 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-50\/40:focus {
  --tw-shadow-color: rgb(248 250 252 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-50\/5:focus {
  --tw-shadow-color: rgb(248 250 252 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-50\/50:focus {
  --tw-shadow-color: rgb(248 250 252 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-50\/60:focus {
  --tw-shadow-color: rgb(248 250 252 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-50\/70:focus {
  --tw-shadow-color: rgb(248 250 252 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-50\/80:focus {
  --tw-shadow-color: rgb(248 250 252 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-50\/90:focus {
  --tw-shadow-color: rgb(248 250 252 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-500:focus {
  --tw-shadow-color: #64748b;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-500\/10:focus {
  --tw-shadow-color: rgb(100 116 139 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-500\/20:focus {
  --tw-shadow-color: rgb(100 116 139 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-500\/30:focus {
  --tw-shadow-color: rgb(100 116 139 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-500\/40:focus {
  --tw-shadow-color: rgb(100 116 139 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-500\/5:focus {
  --tw-shadow-color: rgb(100 116 139 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-500\/50:focus {
  --tw-shadow-color: rgb(100 116 139 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-500\/60:focus {
  --tw-shadow-color: rgb(100 116 139 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-500\/70:focus {
  --tw-shadow-color: rgb(100 116 139 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-500\/80:focus {
  --tw-shadow-color: rgb(100 116 139 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-500\/90:focus {
  --tw-shadow-color: rgb(100 116 139 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-600:focus {
  --tw-shadow-color: #475569;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-600\/10:focus {
  --tw-shadow-color: rgb(71 85 105 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-600\/20:focus {
  --tw-shadow-color: rgb(71 85 105 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-600\/30:focus {
  --tw-shadow-color: rgb(71 85 105 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-600\/40:focus {
  --tw-shadow-color: rgb(71 85 105 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-600\/5:focus {
  --tw-shadow-color: rgb(71 85 105 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-600\/50:focus {
  --tw-shadow-color: rgb(71 85 105 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-600\/60:focus {
  --tw-shadow-color: rgb(71 85 105 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-600\/70:focus {
  --tw-shadow-color: rgb(71 85 105 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-600\/80:focus {
  --tw-shadow-color: rgb(71 85 105 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-600\/90:focus {
  --tw-shadow-color: rgb(71 85 105 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-700:focus {
  --tw-shadow-color: #334155;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-700\/10:focus {
  --tw-shadow-color: rgb(51 65 85 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-700\/20:focus {
  --tw-shadow-color: rgb(51 65 85 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-700\/30:focus {
  --tw-shadow-color: rgb(51 65 85 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-700\/40:focus {
  --tw-shadow-color: rgb(51 65 85 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-700\/5:focus {
  --tw-shadow-color: rgb(51 65 85 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-700\/50:focus {
  --tw-shadow-color: rgb(51 65 85 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-700\/60:focus {
  --tw-shadow-color: rgb(51 65 85 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-700\/70:focus {
  --tw-shadow-color: rgb(51 65 85 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-700\/80:focus {
  --tw-shadow-color: rgb(51 65 85 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-700\/90:focus {
  --tw-shadow-color: rgb(51 65 85 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-800:focus {
  --tw-shadow-color: #1e293b;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-800\/10:focus {
  --tw-shadow-color: rgb(30 41 59 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-800\/20:focus {
  --tw-shadow-color: rgb(30 41 59 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-800\/30:focus {
  --tw-shadow-color: rgb(30 41 59 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-800\/40:focus {
  --tw-shadow-color: rgb(30 41 59 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-800\/5:focus {
  --tw-shadow-color: rgb(30 41 59 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-800\/50:focus {
  --tw-shadow-color: rgb(30 41 59 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-800\/60:focus {
  --tw-shadow-color: rgb(30 41 59 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-800\/70:focus {
  --tw-shadow-color: rgb(30 41 59 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-800\/80:focus {
  --tw-shadow-color: rgb(30 41 59 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-800\/90:focus {
  --tw-shadow-color: rgb(30 41 59 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-900:focus {
  --tw-shadow-color: #0f172a;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-900\/10:focus {
  --tw-shadow-color: rgb(15 23 42 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-900\/20:focus {
  --tw-shadow-color: rgb(15 23 42 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-900\/30:focus {
  --tw-shadow-color: rgb(15 23 42 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-900\/40:focus {
  --tw-shadow-color: rgb(15 23 42 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-900\/5:focus {
  --tw-shadow-color: rgb(15 23 42 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-900\/50:focus {
  --tw-shadow-color: rgb(15 23 42 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-900\/60:focus {
  --tw-shadow-color: rgb(15 23 42 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-900\/70:focus {
  --tw-shadow-color: rgb(15 23 42 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-900\/80:focus {
  --tw-shadow-color: rgb(15 23 42 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-900\/90:focus {
  --tw-shadow-color: rgb(15 23 42 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-950:focus {
  --tw-shadow-color: #020617;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-950\/10:focus {
  --tw-shadow-color: rgb(2 6 23 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-950\/20:focus {
  --tw-shadow-color: rgb(2 6 23 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-950\/30:focus {
  --tw-shadow-color: rgb(2 6 23 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-950\/40:focus {
  --tw-shadow-color: rgb(2 6 23 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-950\/5:focus {
  --tw-shadow-color: rgb(2 6 23 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-950\/50:focus {
  --tw-shadow-color: rgb(2 6 23 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-950\/60:focus {
  --tw-shadow-color: rgb(2 6 23 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-950\/70:focus {
  --tw-shadow-color: rgb(2 6 23 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-950\/80:focus {
  --tw-shadow-color: rgb(2 6 23 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-slate-950\/90:focus {
  --tw-shadow-color: rgb(2 6 23 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-100:focus {
  --tw-shadow-color: #f5f5f4;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-100\/10:focus {
  --tw-shadow-color: rgb(245 245 244 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-100\/20:focus {
  --tw-shadow-color: rgb(245 245 244 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-100\/30:focus {
  --tw-shadow-color: rgb(245 245 244 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-100\/40:focus {
  --tw-shadow-color: rgb(245 245 244 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-100\/5:focus {
  --tw-shadow-color: rgb(245 245 244 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-100\/50:focus {
  --tw-shadow-color: rgb(245 245 244 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-100\/60:focus {
  --tw-shadow-color: rgb(245 245 244 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-100\/70:focus {
  --tw-shadow-color: rgb(245 245 244 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-100\/80:focus {
  --tw-shadow-color: rgb(245 245 244 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-100\/90:focus {
  --tw-shadow-color: rgb(245 245 244 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-200:focus {
  --tw-shadow-color: #e7e5e4;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-200\/10:focus {
  --tw-shadow-color: rgb(231 229 228 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-200\/20:focus {
  --tw-shadow-color: rgb(231 229 228 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-200\/30:focus {
  --tw-shadow-color: rgb(231 229 228 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-200\/40:focus {
  --tw-shadow-color: rgb(231 229 228 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-200\/5:focus {
  --tw-shadow-color: rgb(231 229 228 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-200\/50:focus {
  --tw-shadow-color: rgb(231 229 228 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-200\/60:focus {
  --tw-shadow-color: rgb(231 229 228 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-200\/70:focus {
  --tw-shadow-color: rgb(231 229 228 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-200\/80:focus {
  --tw-shadow-color: rgb(231 229 228 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-200\/90:focus {
  --tw-shadow-color: rgb(231 229 228 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-300:focus {
  --tw-shadow-color: #d6d3d1;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-300\/10:focus {
  --tw-shadow-color: rgb(214 211 209 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-300\/20:focus {
  --tw-shadow-color: rgb(214 211 209 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-300\/30:focus {
  --tw-shadow-color: rgb(214 211 209 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-300\/40:focus {
  --tw-shadow-color: rgb(214 211 209 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-300\/5:focus {
  --tw-shadow-color: rgb(214 211 209 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-300\/50:focus {
  --tw-shadow-color: rgb(214 211 209 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-300\/60:focus {
  --tw-shadow-color: rgb(214 211 209 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-300\/70:focus {
  --tw-shadow-color: rgb(214 211 209 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-300\/80:focus {
  --tw-shadow-color: rgb(214 211 209 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-300\/90:focus {
  --tw-shadow-color: rgb(214 211 209 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-400:focus {
  --tw-shadow-color: #a8a29e;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-400\/10:focus {
  --tw-shadow-color: rgb(168 162 158 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-400\/20:focus {
  --tw-shadow-color: rgb(168 162 158 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-400\/30:focus {
  --tw-shadow-color: rgb(168 162 158 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-400\/40:focus {
  --tw-shadow-color: rgb(168 162 158 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-400\/5:focus {
  --tw-shadow-color: rgb(168 162 158 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-400\/50:focus {
  --tw-shadow-color: rgb(168 162 158 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-400\/60:focus {
  --tw-shadow-color: rgb(168 162 158 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-400\/70:focus {
  --tw-shadow-color: rgb(168 162 158 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-400\/80:focus {
  --tw-shadow-color: rgb(168 162 158 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-400\/90:focus {
  --tw-shadow-color: rgb(168 162 158 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-50:focus {
  --tw-shadow-color: #fafaf9;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-50\/10:focus {
  --tw-shadow-color: rgb(250 250 249 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-50\/20:focus {
  --tw-shadow-color: rgb(250 250 249 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-50\/30:focus {
  --tw-shadow-color: rgb(250 250 249 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-50\/40:focus {
  --tw-shadow-color: rgb(250 250 249 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-50\/5:focus {
  --tw-shadow-color: rgb(250 250 249 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-50\/50:focus {
  --tw-shadow-color: rgb(250 250 249 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-50\/60:focus {
  --tw-shadow-color: rgb(250 250 249 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-50\/70:focus {
  --tw-shadow-color: rgb(250 250 249 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-50\/80:focus {
  --tw-shadow-color: rgb(250 250 249 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-50\/90:focus {
  --tw-shadow-color: rgb(250 250 249 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-500:focus {
  --tw-shadow-color: #78716c;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-500\/10:focus {
  --tw-shadow-color: rgb(120 113 108 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-500\/20:focus {
  --tw-shadow-color: rgb(120 113 108 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-500\/30:focus {
  --tw-shadow-color: rgb(120 113 108 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-500\/40:focus {
  --tw-shadow-color: rgb(120 113 108 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-500\/5:focus {
  --tw-shadow-color: rgb(120 113 108 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-500\/50:focus {
  --tw-shadow-color: rgb(120 113 108 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-500\/60:focus {
  --tw-shadow-color: rgb(120 113 108 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-500\/70:focus {
  --tw-shadow-color: rgb(120 113 108 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-500\/80:focus {
  --tw-shadow-color: rgb(120 113 108 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-500\/90:focus {
  --tw-shadow-color: rgb(120 113 108 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-600:focus {
  --tw-shadow-color: #57534e;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-600\/10:focus {
  --tw-shadow-color: rgb(87 83 78 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-600\/20:focus {
  --tw-shadow-color: rgb(87 83 78 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-600\/30:focus {
  --tw-shadow-color: rgb(87 83 78 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-600\/40:focus {
  --tw-shadow-color: rgb(87 83 78 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-600\/5:focus {
  --tw-shadow-color: rgb(87 83 78 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-600\/50:focus {
  --tw-shadow-color: rgb(87 83 78 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-600\/60:focus {
  --tw-shadow-color: rgb(87 83 78 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-600\/70:focus {
  --tw-shadow-color: rgb(87 83 78 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-600\/80:focus {
  --tw-shadow-color: rgb(87 83 78 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-600\/90:focus {
  --tw-shadow-color: rgb(87 83 78 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-700:focus {
  --tw-shadow-color: #44403c;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-700\/10:focus {
  --tw-shadow-color: rgb(68 64 60 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-700\/20:focus {
  --tw-shadow-color: rgb(68 64 60 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-700\/30:focus {
  --tw-shadow-color: rgb(68 64 60 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-700\/40:focus {
  --tw-shadow-color: rgb(68 64 60 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-700\/5:focus {
  --tw-shadow-color: rgb(68 64 60 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-700\/50:focus {
  --tw-shadow-color: rgb(68 64 60 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-700\/60:focus {
  --tw-shadow-color: rgb(68 64 60 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-700\/70:focus {
  --tw-shadow-color: rgb(68 64 60 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-700\/80:focus {
  --tw-shadow-color: rgb(68 64 60 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-700\/90:focus {
  --tw-shadow-color: rgb(68 64 60 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-800:focus {
  --tw-shadow-color: #292524;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-800\/10:focus {
  --tw-shadow-color: rgb(41 37 36 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-800\/20:focus {
  --tw-shadow-color: rgb(41 37 36 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-800\/30:focus {
  --tw-shadow-color: rgb(41 37 36 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-800\/40:focus {
  --tw-shadow-color: rgb(41 37 36 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-800\/5:focus {
  --tw-shadow-color: rgb(41 37 36 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-800\/50:focus {
  --tw-shadow-color: rgb(41 37 36 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-800\/60:focus {
  --tw-shadow-color: rgb(41 37 36 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-800\/70:focus {
  --tw-shadow-color: rgb(41 37 36 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-800\/80:focus {
  --tw-shadow-color: rgb(41 37 36 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-800\/90:focus {
  --tw-shadow-color: rgb(41 37 36 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-900:focus {
  --tw-shadow-color: #1c1917;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-900\/10:focus {
  --tw-shadow-color: rgb(28 25 23 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-900\/20:focus {
  --tw-shadow-color: rgb(28 25 23 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-900\/30:focus {
  --tw-shadow-color: rgb(28 25 23 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-900\/40:focus {
  --tw-shadow-color: rgb(28 25 23 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-900\/5:focus {
  --tw-shadow-color: rgb(28 25 23 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-900\/50:focus {
  --tw-shadow-color: rgb(28 25 23 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-900\/60:focus {
  --tw-shadow-color: rgb(28 25 23 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-900\/70:focus {
  --tw-shadow-color: rgb(28 25 23 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-900\/80:focus {
  --tw-shadow-color: rgb(28 25 23 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-900\/90:focus {
  --tw-shadow-color: rgb(28 25 23 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-950:focus {
  --tw-shadow-color: #0c0a09;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-950\/10:focus {
  --tw-shadow-color: rgb(12 10 9 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-950\/20:focus {
  --tw-shadow-color: rgb(12 10 9 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-950\/30:focus {
  --tw-shadow-color: rgb(12 10 9 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-950\/40:focus {
  --tw-shadow-color: rgb(12 10 9 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-950\/5:focus {
  --tw-shadow-color: rgb(12 10 9 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-950\/50:focus {
  --tw-shadow-color: rgb(12 10 9 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-950\/60:focus {
  --tw-shadow-color: rgb(12 10 9 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-950\/70:focus {
  --tw-shadow-color: rgb(12 10 9 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-950\/80:focus {
  --tw-shadow-color: rgb(12 10 9 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-stone-950\/90:focus {
  --tw-shadow-color: rgb(12 10 9 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-100:focus {
  --tw-shadow-color: #ccfbf1;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-100\/10:focus {
  --tw-shadow-color: rgb(204 251 241 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-100\/20:focus {
  --tw-shadow-color: rgb(204 251 241 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-100\/30:focus {
  --tw-shadow-color: rgb(204 251 241 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-100\/40:focus {
  --tw-shadow-color: rgb(204 251 241 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-100\/5:focus {
  --tw-shadow-color: rgb(204 251 241 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-100\/50:focus {
  --tw-shadow-color: rgb(204 251 241 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-100\/60:focus {
  --tw-shadow-color: rgb(204 251 241 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-100\/70:focus {
  --tw-shadow-color: rgb(204 251 241 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-100\/80:focus {
  --tw-shadow-color: rgb(204 251 241 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-100\/90:focus {
  --tw-shadow-color: rgb(204 251 241 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-200:focus {
  --tw-shadow-color: #99f6e4;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-200\/10:focus {
  --tw-shadow-color: rgb(153 246 228 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-200\/20:focus {
  --tw-shadow-color: rgb(153 246 228 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-200\/30:focus {
  --tw-shadow-color: rgb(153 246 228 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-200\/40:focus {
  --tw-shadow-color: rgb(153 246 228 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-200\/5:focus {
  --tw-shadow-color: rgb(153 246 228 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-200\/50:focus {
  --tw-shadow-color: rgb(153 246 228 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-200\/60:focus {
  --tw-shadow-color: rgb(153 246 228 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-200\/70:focus {
  --tw-shadow-color: rgb(153 246 228 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-200\/80:focus {
  --tw-shadow-color: rgb(153 246 228 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-200\/90:focus {
  --tw-shadow-color: rgb(153 246 228 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-300:focus {
  --tw-shadow-color: #5eead4;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-300\/10:focus {
  --tw-shadow-color: rgb(94 234 212 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-300\/20:focus {
  --tw-shadow-color: rgb(94 234 212 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-300\/30:focus {
  --tw-shadow-color: rgb(94 234 212 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-300\/40:focus {
  --tw-shadow-color: rgb(94 234 212 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-300\/5:focus {
  --tw-shadow-color: rgb(94 234 212 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-300\/50:focus {
  --tw-shadow-color: rgb(94 234 212 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-300\/60:focus {
  --tw-shadow-color: rgb(94 234 212 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-300\/70:focus {
  --tw-shadow-color: rgb(94 234 212 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-300\/80:focus {
  --tw-shadow-color: rgb(94 234 212 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-300\/90:focus {
  --tw-shadow-color: rgb(94 234 212 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-400:focus {
  --tw-shadow-color: #2dd4bf;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-400\/10:focus {
  --tw-shadow-color: rgb(45 212 191 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-400\/20:focus {
  --tw-shadow-color: rgb(45 212 191 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-400\/30:focus {
  --tw-shadow-color: rgb(45 212 191 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-400\/40:focus {
  --tw-shadow-color: rgb(45 212 191 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-400\/5:focus {
  --tw-shadow-color: rgb(45 212 191 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-400\/50:focus {
  --tw-shadow-color: rgb(45 212 191 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-400\/60:focus {
  --tw-shadow-color: rgb(45 212 191 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-400\/70:focus {
  --tw-shadow-color: rgb(45 212 191 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-400\/80:focus {
  --tw-shadow-color: rgb(45 212 191 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-400\/90:focus {
  --tw-shadow-color: rgb(45 212 191 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-50:focus {
  --tw-shadow-color: #f0fdfa;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-50\/10:focus {
  --tw-shadow-color: rgb(240 253 250 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-50\/20:focus {
  --tw-shadow-color: rgb(240 253 250 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-50\/30:focus {
  --tw-shadow-color: rgb(240 253 250 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-50\/40:focus {
  --tw-shadow-color: rgb(240 253 250 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-50\/5:focus {
  --tw-shadow-color: rgb(240 253 250 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-50\/50:focus {
  --tw-shadow-color: rgb(240 253 250 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-50\/60:focus {
  --tw-shadow-color: rgb(240 253 250 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-50\/70:focus {
  --tw-shadow-color: rgb(240 253 250 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-50\/80:focus {
  --tw-shadow-color: rgb(240 253 250 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-50\/90:focus {
  --tw-shadow-color: rgb(240 253 250 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-500:focus {
  --tw-shadow-color: #14b8a6;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-500\/10:focus {
  --tw-shadow-color: rgb(20 184 166 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-500\/20:focus {
  --tw-shadow-color: rgb(20 184 166 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-500\/30:focus {
  --tw-shadow-color: rgb(20 184 166 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-500\/40:focus {
  --tw-shadow-color: rgb(20 184 166 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-500\/5:focus {
  --tw-shadow-color: rgb(20 184 166 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-500\/50:focus {
  --tw-shadow-color: rgb(20 184 166 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-500\/60:focus {
  --tw-shadow-color: rgb(20 184 166 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-500\/70:focus {
  --tw-shadow-color: rgb(20 184 166 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-500\/80:focus {
  --tw-shadow-color: rgb(20 184 166 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-500\/90:focus {
  --tw-shadow-color: rgb(20 184 166 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-600:focus {
  --tw-shadow-color: #0d9488;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-600\/10:focus {
  --tw-shadow-color: rgb(13 148 136 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-600\/20:focus {
  --tw-shadow-color: rgb(13 148 136 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-600\/30:focus {
  --tw-shadow-color: rgb(13 148 136 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-600\/40:focus {
  --tw-shadow-color: rgb(13 148 136 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-600\/5:focus {
  --tw-shadow-color: rgb(13 148 136 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-600\/50:focus {
  --tw-shadow-color: rgb(13 148 136 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-600\/60:focus {
  --tw-shadow-color: rgb(13 148 136 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-600\/70:focus {
  --tw-shadow-color: rgb(13 148 136 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-600\/80:focus {
  --tw-shadow-color: rgb(13 148 136 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-600\/90:focus {
  --tw-shadow-color: rgb(13 148 136 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-700:focus {
  --tw-shadow-color: #0f766e;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-700\/10:focus {
  --tw-shadow-color: rgb(15 118 110 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-700\/20:focus {
  --tw-shadow-color: rgb(15 118 110 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-700\/30:focus {
  --tw-shadow-color: rgb(15 118 110 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-700\/40:focus {
  --tw-shadow-color: rgb(15 118 110 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-700\/5:focus {
  --tw-shadow-color: rgb(15 118 110 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-700\/50:focus {
  --tw-shadow-color: rgb(15 118 110 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-700\/60:focus {
  --tw-shadow-color: rgb(15 118 110 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-700\/70:focus {
  --tw-shadow-color: rgb(15 118 110 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-700\/80:focus {
  --tw-shadow-color: rgb(15 118 110 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-700\/90:focus {
  --tw-shadow-color: rgb(15 118 110 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-800:focus {
  --tw-shadow-color: #115e59;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-800\/10:focus {
  --tw-shadow-color: rgb(17 94 89 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-800\/20:focus {
  --tw-shadow-color: rgb(17 94 89 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-800\/30:focus {
  --tw-shadow-color: rgb(17 94 89 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-800\/40:focus {
  --tw-shadow-color: rgb(17 94 89 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-800\/5:focus {
  --tw-shadow-color: rgb(17 94 89 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-800\/50:focus {
  --tw-shadow-color: rgb(17 94 89 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-800\/60:focus {
  --tw-shadow-color: rgb(17 94 89 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-800\/70:focus {
  --tw-shadow-color: rgb(17 94 89 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-800\/80:focus {
  --tw-shadow-color: rgb(17 94 89 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-800\/90:focus {
  --tw-shadow-color: rgb(17 94 89 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-900:focus {
  --tw-shadow-color: #134e4a;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-900\/10:focus {
  --tw-shadow-color: rgb(19 78 74 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-900\/20:focus {
  --tw-shadow-color: rgb(19 78 74 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-900\/30:focus {
  --tw-shadow-color: rgb(19 78 74 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-900\/40:focus {
  --tw-shadow-color: rgb(19 78 74 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-900\/5:focus {
  --tw-shadow-color: rgb(19 78 74 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-900\/50:focus {
  --tw-shadow-color: rgb(19 78 74 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-900\/60:focus {
  --tw-shadow-color: rgb(19 78 74 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-900\/70:focus {
  --tw-shadow-color: rgb(19 78 74 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-900\/80:focus {
  --tw-shadow-color: rgb(19 78 74 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-900\/90:focus {
  --tw-shadow-color: rgb(19 78 74 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-950:focus {
  --tw-shadow-color: #042f2e;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-950\/10:focus {
  --tw-shadow-color: rgb(4 47 46 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-950\/20:focus {
  --tw-shadow-color: rgb(4 47 46 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-950\/30:focus {
  --tw-shadow-color: rgb(4 47 46 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-950\/40:focus {
  --tw-shadow-color: rgb(4 47 46 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-950\/5:focus {
  --tw-shadow-color: rgb(4 47 46 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-950\/50:focus {
  --tw-shadow-color: rgb(4 47 46 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-950\/60:focus {
  --tw-shadow-color: rgb(4 47 46 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-950\/70:focus {
  --tw-shadow-color: rgb(4 47 46 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-950\/80:focus {
  --tw-shadow-color: rgb(4 47 46 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-teal-950\/90:focus {
  --tw-shadow-color: rgb(4 47 46 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-100:focus {
  --tw-shadow-color: #ede9fe;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-100\/10:focus {
  --tw-shadow-color: rgb(237 233 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-100\/20:focus {
  --tw-shadow-color: rgb(237 233 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-100\/30:focus {
  --tw-shadow-color: rgb(237 233 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-100\/40:focus {
  --tw-shadow-color: rgb(237 233 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-100\/5:focus {
  --tw-shadow-color: rgb(237 233 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-100\/50:focus {
  --tw-shadow-color: rgb(237 233 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-100\/60:focus {
  --tw-shadow-color: rgb(237 233 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-100\/70:focus {
  --tw-shadow-color: rgb(237 233 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-100\/80:focus {
  --tw-shadow-color: rgb(237 233 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-100\/90:focus {
  --tw-shadow-color: rgb(237 233 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-200:focus {
  --tw-shadow-color: #ddd6fe;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-200\/10:focus {
  --tw-shadow-color: rgb(221 214 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-200\/20:focus {
  --tw-shadow-color: rgb(221 214 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-200\/30:focus {
  --tw-shadow-color: rgb(221 214 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-200\/40:focus {
  --tw-shadow-color: rgb(221 214 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-200\/5:focus {
  --tw-shadow-color: rgb(221 214 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-200\/50:focus {
  --tw-shadow-color: rgb(221 214 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-200\/60:focus {
  --tw-shadow-color: rgb(221 214 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-200\/70:focus {
  --tw-shadow-color: rgb(221 214 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-200\/80:focus {
  --tw-shadow-color: rgb(221 214 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-200\/90:focus {
  --tw-shadow-color: rgb(221 214 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-300:focus {
  --tw-shadow-color: #c4b5fd;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-300\/10:focus {
  --tw-shadow-color: rgb(196 181 253 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-300\/20:focus {
  --tw-shadow-color: rgb(196 181 253 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-300\/30:focus {
  --tw-shadow-color: rgb(196 181 253 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-300\/40:focus {
  --tw-shadow-color: rgb(196 181 253 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-300\/5:focus {
  --tw-shadow-color: rgb(196 181 253 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-300\/50:focus {
  --tw-shadow-color: rgb(196 181 253 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-300\/60:focus {
  --tw-shadow-color: rgb(196 181 253 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-300\/70:focus {
  --tw-shadow-color: rgb(196 181 253 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-300\/80:focus {
  --tw-shadow-color: rgb(196 181 253 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-300\/90:focus {
  --tw-shadow-color: rgb(196 181 253 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-400:focus {
  --tw-shadow-color: #a78bfa;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-400\/10:focus {
  --tw-shadow-color: rgb(167 139 250 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-400\/20:focus {
  --tw-shadow-color: rgb(167 139 250 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-400\/30:focus {
  --tw-shadow-color: rgb(167 139 250 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-400\/40:focus {
  --tw-shadow-color: rgb(167 139 250 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-400\/5:focus {
  --tw-shadow-color: rgb(167 139 250 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-400\/50:focus {
  --tw-shadow-color: rgb(167 139 250 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-400\/60:focus {
  --tw-shadow-color: rgb(167 139 250 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-400\/70:focus {
  --tw-shadow-color: rgb(167 139 250 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-400\/80:focus {
  --tw-shadow-color: rgb(167 139 250 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-400\/90:focus {
  --tw-shadow-color: rgb(167 139 250 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-50:focus {
  --tw-shadow-color: #f5f3ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-50\/10:focus {
  --tw-shadow-color: rgb(245 243 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-50\/20:focus {
  --tw-shadow-color: rgb(245 243 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-50\/30:focus {
  --tw-shadow-color: rgb(245 243 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-50\/40:focus {
  --tw-shadow-color: rgb(245 243 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-50\/5:focus {
  --tw-shadow-color: rgb(245 243 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-50\/50:focus {
  --tw-shadow-color: rgb(245 243 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-50\/60:focus {
  --tw-shadow-color: rgb(245 243 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-50\/70:focus {
  --tw-shadow-color: rgb(245 243 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-50\/80:focus {
  --tw-shadow-color: rgb(245 243 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-50\/90:focus {
  --tw-shadow-color: rgb(245 243 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-500:focus {
  --tw-shadow-color: #8b5cf6;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-500\/10:focus {
  --tw-shadow-color: rgb(139 92 246 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-500\/20:focus {
  --tw-shadow-color: rgb(139 92 246 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-500\/30:focus {
  --tw-shadow-color: rgb(139 92 246 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-500\/40:focus {
  --tw-shadow-color: rgb(139 92 246 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-500\/5:focus {
  --tw-shadow-color: rgb(139 92 246 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-500\/50:focus {
  --tw-shadow-color: rgb(139 92 246 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-500\/60:focus {
  --tw-shadow-color: rgb(139 92 246 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-500\/70:focus {
  --tw-shadow-color: rgb(139 92 246 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-500\/80:focus {
  --tw-shadow-color: rgb(139 92 246 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-500\/90:focus {
  --tw-shadow-color: rgb(139 92 246 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-600:focus {
  --tw-shadow-color: #7c3aed;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-600\/10:focus {
  --tw-shadow-color: rgb(124 58 237 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-600\/20:focus {
  --tw-shadow-color: rgb(124 58 237 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-600\/30:focus {
  --tw-shadow-color: rgb(124 58 237 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-600\/40:focus {
  --tw-shadow-color: rgb(124 58 237 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-600\/5:focus {
  --tw-shadow-color: rgb(124 58 237 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-600\/50:focus {
  --tw-shadow-color: rgb(124 58 237 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-600\/60:focus {
  --tw-shadow-color: rgb(124 58 237 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-600\/70:focus {
  --tw-shadow-color: rgb(124 58 237 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-600\/80:focus {
  --tw-shadow-color: rgb(124 58 237 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-600\/90:focus {
  --tw-shadow-color: rgb(124 58 237 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-700:focus {
  --tw-shadow-color: #6d28d9;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-700\/10:focus {
  --tw-shadow-color: rgb(109 40 217 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-700\/20:focus {
  --tw-shadow-color: rgb(109 40 217 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-700\/30:focus {
  --tw-shadow-color: rgb(109 40 217 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-700\/40:focus {
  --tw-shadow-color: rgb(109 40 217 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-700\/5:focus {
  --tw-shadow-color: rgb(109 40 217 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-700\/50:focus {
  --tw-shadow-color: rgb(109 40 217 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-700\/60:focus {
  --tw-shadow-color: rgb(109 40 217 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-700\/70:focus {
  --tw-shadow-color: rgb(109 40 217 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-700\/80:focus {
  --tw-shadow-color: rgb(109 40 217 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-700\/90:focus {
  --tw-shadow-color: rgb(109 40 217 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-800:focus {
  --tw-shadow-color: #5b21b6;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-800\/10:focus {
  --tw-shadow-color: rgb(91 33 182 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-800\/20:focus {
  --tw-shadow-color: rgb(91 33 182 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-800\/30:focus {
  --tw-shadow-color: rgb(91 33 182 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-800\/40:focus {
  --tw-shadow-color: rgb(91 33 182 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-800\/5:focus {
  --tw-shadow-color: rgb(91 33 182 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-800\/50:focus {
  --tw-shadow-color: rgb(91 33 182 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-800\/60:focus {
  --tw-shadow-color: rgb(91 33 182 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-800\/70:focus {
  --tw-shadow-color: rgb(91 33 182 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-800\/80:focus {
  --tw-shadow-color: rgb(91 33 182 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-800\/90:focus {
  --tw-shadow-color: rgb(91 33 182 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-900:focus {
  --tw-shadow-color: #4c1d95;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-900\/10:focus {
  --tw-shadow-color: rgb(76 29 149 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-900\/20:focus {
  --tw-shadow-color: rgb(76 29 149 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-900\/30:focus {
  --tw-shadow-color: rgb(76 29 149 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-900\/40:focus {
  --tw-shadow-color: rgb(76 29 149 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-900\/5:focus {
  --tw-shadow-color: rgb(76 29 149 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-900\/50:focus {
  --tw-shadow-color: rgb(76 29 149 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-900\/60:focus {
  --tw-shadow-color: rgb(76 29 149 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-900\/70:focus {
  --tw-shadow-color: rgb(76 29 149 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-900\/80:focus {
  --tw-shadow-color: rgb(76 29 149 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-900\/90:focus {
  --tw-shadow-color: rgb(76 29 149 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-950:focus {
  --tw-shadow-color: #2e1065;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-950\/10:focus {
  --tw-shadow-color: rgb(46 16 101 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-950\/20:focus {
  --tw-shadow-color: rgb(46 16 101 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-950\/30:focus {
  --tw-shadow-color: rgb(46 16 101 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-950\/40:focus {
  --tw-shadow-color: rgb(46 16 101 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-950\/5:focus {
  --tw-shadow-color: rgb(46 16 101 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-950\/50:focus {
  --tw-shadow-color: rgb(46 16 101 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-950\/60:focus {
  --tw-shadow-color: rgb(46 16 101 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-950\/70:focus {
  --tw-shadow-color: rgb(46 16 101 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-950\/80:focus {
  --tw-shadow-color: rgb(46 16 101 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-violet-950\/90:focus {
  --tw-shadow-color: rgb(46 16 101 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-100:focus {
  --tw-shadow-color: #fef9c3;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-100\/10:focus {
  --tw-shadow-color: rgb(254 249 195 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-100\/20:focus {
  --tw-shadow-color: rgb(254 249 195 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-100\/30:focus {
  --tw-shadow-color: rgb(254 249 195 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-100\/40:focus {
  --tw-shadow-color: rgb(254 249 195 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-100\/5:focus {
  --tw-shadow-color: rgb(254 249 195 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-100\/50:focus {
  --tw-shadow-color: rgb(254 249 195 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-100\/60:focus {
  --tw-shadow-color: rgb(254 249 195 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-100\/70:focus {
  --tw-shadow-color: rgb(254 249 195 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-100\/80:focus {
  --tw-shadow-color: rgb(254 249 195 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-100\/90:focus {
  --tw-shadow-color: rgb(254 249 195 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-200:focus {
  --tw-shadow-color: #fef08a;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-200\/10:focus {
  --tw-shadow-color: rgb(254 240 138 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-200\/20:focus {
  --tw-shadow-color: rgb(254 240 138 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-200\/30:focus {
  --tw-shadow-color: rgb(254 240 138 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-200\/40:focus {
  --tw-shadow-color: rgb(254 240 138 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-200\/5:focus {
  --tw-shadow-color: rgb(254 240 138 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-200\/50:focus {
  --tw-shadow-color: rgb(254 240 138 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-200\/60:focus {
  --tw-shadow-color: rgb(254 240 138 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-200\/70:focus {
  --tw-shadow-color: rgb(254 240 138 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-200\/80:focus {
  --tw-shadow-color: rgb(254 240 138 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-200\/90:focus {
  --tw-shadow-color: rgb(254 240 138 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-300:focus {
  --tw-shadow-color: #fde047;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-300\/10:focus {
  --tw-shadow-color: rgb(253 224 71 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-300\/20:focus {
  --tw-shadow-color: rgb(253 224 71 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-300\/30:focus {
  --tw-shadow-color: rgb(253 224 71 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-300\/40:focus {
  --tw-shadow-color: rgb(253 224 71 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-300\/5:focus {
  --tw-shadow-color: rgb(253 224 71 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-300\/50:focus {
  --tw-shadow-color: rgb(253 224 71 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-300\/60:focus {
  --tw-shadow-color: rgb(253 224 71 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-300\/70:focus {
  --tw-shadow-color: rgb(253 224 71 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-300\/80:focus {
  --tw-shadow-color: rgb(253 224 71 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-300\/90:focus {
  --tw-shadow-color: rgb(253 224 71 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-400:focus {
  --tw-shadow-color: #facc15;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-400\/10:focus {
  --tw-shadow-color: rgb(250 204 21 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-400\/20:focus {
  --tw-shadow-color: rgb(250 204 21 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-400\/30:focus {
  --tw-shadow-color: rgb(250 204 21 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-400\/40:focus {
  --tw-shadow-color: rgb(250 204 21 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-400\/5:focus {
  --tw-shadow-color: rgb(250 204 21 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-400\/50:focus {
  --tw-shadow-color: rgb(250 204 21 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-400\/60:focus {
  --tw-shadow-color: rgb(250 204 21 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-400\/70:focus {
  --tw-shadow-color: rgb(250 204 21 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-400\/80:focus {
  --tw-shadow-color: rgb(250 204 21 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-400\/90:focus {
  --tw-shadow-color: rgb(250 204 21 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-50:focus {
  --tw-shadow-color: #fefce8;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-50\/10:focus {
  --tw-shadow-color: rgb(254 252 232 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-50\/20:focus {
  --tw-shadow-color: rgb(254 252 232 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-50\/30:focus {
  --tw-shadow-color: rgb(254 252 232 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-50\/40:focus {
  --tw-shadow-color: rgb(254 252 232 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-50\/5:focus {
  --tw-shadow-color: rgb(254 252 232 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-50\/50:focus {
  --tw-shadow-color: rgb(254 252 232 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-50\/60:focus {
  --tw-shadow-color: rgb(254 252 232 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-50\/70:focus {
  --tw-shadow-color: rgb(254 252 232 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-50\/80:focus {
  --tw-shadow-color: rgb(254 252 232 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-50\/90:focus {
  --tw-shadow-color: rgb(254 252 232 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-500:focus {
  --tw-shadow-color: #eab308;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-500\/10:focus {
  --tw-shadow-color: rgb(234 179 8 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-500\/20:focus {
  --tw-shadow-color: rgb(234 179 8 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-500\/30:focus {
  --tw-shadow-color: rgb(234 179 8 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-500\/40:focus {
  --tw-shadow-color: rgb(234 179 8 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-500\/5:focus {
  --tw-shadow-color: rgb(234 179 8 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-500\/50:focus {
  --tw-shadow-color: rgb(234 179 8 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-500\/60:focus {
  --tw-shadow-color: rgb(234 179 8 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-500\/70:focus {
  --tw-shadow-color: rgb(234 179 8 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-500\/80:focus {
  --tw-shadow-color: rgb(234 179 8 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-500\/90:focus {
  --tw-shadow-color: rgb(234 179 8 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-600:focus {
  --tw-shadow-color: #ca8a04;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-600\/10:focus {
  --tw-shadow-color: rgb(202 138 4 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-600\/20:focus {
  --tw-shadow-color: rgb(202 138 4 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-600\/30:focus {
  --tw-shadow-color: rgb(202 138 4 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-600\/40:focus {
  --tw-shadow-color: rgb(202 138 4 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-600\/5:focus {
  --tw-shadow-color: rgb(202 138 4 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-600\/50:focus {
  --tw-shadow-color: rgb(202 138 4 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-600\/60:focus {
  --tw-shadow-color: rgb(202 138 4 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-600\/70:focus {
  --tw-shadow-color: rgb(202 138 4 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-600\/80:focus {
  --tw-shadow-color: rgb(202 138 4 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-600\/90:focus {
  --tw-shadow-color: rgb(202 138 4 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-700:focus {
  --tw-shadow-color: #a16207;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-700\/10:focus {
  --tw-shadow-color: rgb(161 98 7 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-700\/20:focus {
  --tw-shadow-color: rgb(161 98 7 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-700\/30:focus {
  --tw-shadow-color: rgb(161 98 7 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-700\/40:focus {
  --tw-shadow-color: rgb(161 98 7 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-700\/5:focus {
  --tw-shadow-color: rgb(161 98 7 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-700\/50:focus {
  --tw-shadow-color: rgb(161 98 7 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-700\/60:focus {
  --tw-shadow-color: rgb(161 98 7 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-700\/70:focus {
  --tw-shadow-color: rgb(161 98 7 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-700\/80:focus {
  --tw-shadow-color: rgb(161 98 7 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-700\/90:focus {
  --tw-shadow-color: rgb(161 98 7 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-800:focus {
  --tw-shadow-color: #854d0e;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-800\/10:focus {
  --tw-shadow-color: rgb(133 77 14 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-800\/20:focus {
  --tw-shadow-color: rgb(133 77 14 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-800\/30:focus {
  --tw-shadow-color: rgb(133 77 14 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-800\/40:focus {
  --tw-shadow-color: rgb(133 77 14 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-800\/5:focus {
  --tw-shadow-color: rgb(133 77 14 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-800\/50:focus {
  --tw-shadow-color: rgb(133 77 14 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-800\/60:focus {
  --tw-shadow-color: rgb(133 77 14 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-800\/70:focus {
  --tw-shadow-color: rgb(133 77 14 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-800\/80:focus {
  --tw-shadow-color: rgb(133 77 14 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-800\/90:focus {
  --tw-shadow-color: rgb(133 77 14 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-900:focus {
  --tw-shadow-color: #713f12;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-900\/10:focus {
  --tw-shadow-color: rgb(113 63 18 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-900\/20:focus {
  --tw-shadow-color: rgb(113 63 18 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-900\/30:focus {
  --tw-shadow-color: rgb(113 63 18 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-900\/40:focus {
  --tw-shadow-color: rgb(113 63 18 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-900\/5:focus {
  --tw-shadow-color: rgb(113 63 18 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-900\/50:focus {
  --tw-shadow-color: rgb(113 63 18 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-900\/60:focus {
  --tw-shadow-color: rgb(113 63 18 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-900\/70:focus {
  --tw-shadow-color: rgb(113 63 18 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-900\/80:focus {
  --tw-shadow-color: rgb(113 63 18 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-900\/90:focus {
  --tw-shadow-color: rgb(113 63 18 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-950:focus {
  --tw-shadow-color: #422006;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-950\/10:focus {
  --tw-shadow-color: rgb(66 32 6 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-950\/20:focus {
  --tw-shadow-color: rgb(66 32 6 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-950\/30:focus {
  --tw-shadow-color: rgb(66 32 6 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-950\/40:focus {
  --tw-shadow-color: rgb(66 32 6 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-950\/5:focus {
  --tw-shadow-color: rgb(66 32 6 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-950\/50:focus {
  --tw-shadow-color: rgb(66 32 6 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-950\/60:focus {
  --tw-shadow-color: rgb(66 32 6 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-950\/70:focus {
  --tw-shadow-color: rgb(66 32 6 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-950\/80:focus {
  --tw-shadow-color: rgb(66 32 6 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-yellow-950\/90:focus {
  --tw-shadow-color: rgb(66 32 6 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-100:focus {
  --tw-shadow-color: #f4f4f5;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-100\/10:focus {
  --tw-shadow-color: rgb(244 244 245 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-100\/20:focus {
  --tw-shadow-color: rgb(244 244 245 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-100\/30:focus {
  --tw-shadow-color: rgb(244 244 245 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-100\/40:focus {
  --tw-shadow-color: rgb(244 244 245 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-100\/5:focus {
  --tw-shadow-color: rgb(244 244 245 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-100\/50:focus {
  --tw-shadow-color: rgb(244 244 245 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-100\/60:focus {
  --tw-shadow-color: rgb(244 244 245 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-100\/70:focus {
  --tw-shadow-color: rgb(244 244 245 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-100\/80:focus {
  --tw-shadow-color: rgb(244 244 245 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-100\/90:focus {
  --tw-shadow-color: rgb(244 244 245 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-200:focus {
  --tw-shadow-color: #e4e4e7;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-200\/10:focus {
  --tw-shadow-color: rgb(228 228 231 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-200\/20:focus {
  --tw-shadow-color: rgb(228 228 231 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-200\/30:focus {
  --tw-shadow-color: rgb(228 228 231 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-200\/40:focus {
  --tw-shadow-color: rgb(228 228 231 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-200\/5:focus {
  --tw-shadow-color: rgb(228 228 231 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-200\/50:focus {
  --tw-shadow-color: rgb(228 228 231 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-200\/60:focus {
  --tw-shadow-color: rgb(228 228 231 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-200\/70:focus {
  --tw-shadow-color: rgb(228 228 231 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-200\/80:focus {
  --tw-shadow-color: rgb(228 228 231 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-200\/90:focus {
  --tw-shadow-color: rgb(228 228 231 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-300:focus {
  --tw-shadow-color: #d4d4d8;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-300\/10:focus {
  --tw-shadow-color: rgb(212 212 216 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-300\/20:focus {
  --tw-shadow-color: rgb(212 212 216 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-300\/30:focus {
  --tw-shadow-color: rgb(212 212 216 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-300\/40:focus {
  --tw-shadow-color: rgb(212 212 216 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-300\/5:focus {
  --tw-shadow-color: rgb(212 212 216 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-300\/50:focus {
  --tw-shadow-color: rgb(212 212 216 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-300\/60:focus {
  --tw-shadow-color: rgb(212 212 216 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-300\/70:focus {
  --tw-shadow-color: rgb(212 212 216 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-300\/80:focus {
  --tw-shadow-color: rgb(212 212 216 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-300\/90:focus {
  --tw-shadow-color: rgb(212 212 216 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-400:focus {
  --tw-shadow-color: #a1a1aa;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-400\/10:focus {
  --tw-shadow-color: rgb(161 161 170 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-400\/20:focus {
  --tw-shadow-color: rgb(161 161 170 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-400\/30:focus {
  --tw-shadow-color: rgb(161 161 170 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-400\/40:focus {
  --tw-shadow-color: rgb(161 161 170 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-400\/5:focus {
  --tw-shadow-color: rgb(161 161 170 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-400\/50:focus {
  --tw-shadow-color: rgb(161 161 170 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-400\/60:focus {
  --tw-shadow-color: rgb(161 161 170 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-400\/70:focus {
  --tw-shadow-color: rgb(161 161 170 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-400\/80:focus {
  --tw-shadow-color: rgb(161 161 170 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-400\/90:focus {
  --tw-shadow-color: rgb(161 161 170 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-50:focus {
  --tw-shadow-color: #fafafa;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-50\/10:focus {
  --tw-shadow-color: rgb(250 250 250 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-50\/20:focus {
  --tw-shadow-color: rgb(250 250 250 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-50\/30:focus {
  --tw-shadow-color: rgb(250 250 250 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-50\/40:focus {
  --tw-shadow-color: rgb(250 250 250 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-50\/5:focus {
  --tw-shadow-color: rgb(250 250 250 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-50\/50:focus {
  --tw-shadow-color: rgb(250 250 250 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-50\/60:focus {
  --tw-shadow-color: rgb(250 250 250 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-50\/70:focus {
  --tw-shadow-color: rgb(250 250 250 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-50\/80:focus {
  --tw-shadow-color: rgb(250 250 250 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-50\/90:focus {
  --tw-shadow-color: rgb(250 250 250 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-500:focus {
  --tw-shadow-color: #71717a;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-500\/10:focus {
  --tw-shadow-color: rgb(113 113 122 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-500\/20:focus {
  --tw-shadow-color: rgb(113 113 122 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-500\/30:focus {
  --tw-shadow-color: rgb(113 113 122 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-500\/40:focus {
  --tw-shadow-color: rgb(113 113 122 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-500\/5:focus {
  --tw-shadow-color: rgb(113 113 122 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-500\/50:focus {
  --tw-shadow-color: rgb(113 113 122 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-500\/60:focus {
  --tw-shadow-color: rgb(113 113 122 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-500\/70:focus {
  --tw-shadow-color: rgb(113 113 122 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-500\/80:focus {
  --tw-shadow-color: rgb(113 113 122 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-500\/90:focus {
  --tw-shadow-color: rgb(113 113 122 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-600:focus {
  --tw-shadow-color: #52525b;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-600\/10:focus {
  --tw-shadow-color: rgb(82 82 91 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-600\/20:focus {
  --tw-shadow-color: rgb(82 82 91 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-600\/30:focus {
  --tw-shadow-color: rgb(82 82 91 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-600\/40:focus {
  --tw-shadow-color: rgb(82 82 91 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-600\/5:focus {
  --tw-shadow-color: rgb(82 82 91 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-600\/50:focus {
  --tw-shadow-color: rgb(82 82 91 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-600\/60:focus {
  --tw-shadow-color: rgb(82 82 91 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-600\/70:focus {
  --tw-shadow-color: rgb(82 82 91 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-600\/80:focus {
  --tw-shadow-color: rgb(82 82 91 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-600\/90:focus {
  --tw-shadow-color: rgb(82 82 91 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-700:focus {
  --tw-shadow-color: #3f3f46;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-700\/10:focus {
  --tw-shadow-color: rgb(63 63 70 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-700\/20:focus {
  --tw-shadow-color: rgb(63 63 70 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-700\/30:focus {
  --tw-shadow-color: rgb(63 63 70 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-700\/40:focus {
  --tw-shadow-color: rgb(63 63 70 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-700\/5:focus {
  --tw-shadow-color: rgb(63 63 70 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-700\/50:focus {
  --tw-shadow-color: rgb(63 63 70 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-700\/60:focus {
  --tw-shadow-color: rgb(63 63 70 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-700\/70:focus {
  --tw-shadow-color: rgb(63 63 70 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-700\/80:focus {
  --tw-shadow-color: rgb(63 63 70 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-700\/90:focus {
  --tw-shadow-color: rgb(63 63 70 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-800:focus {
  --tw-shadow-color: #27272a;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-800\/10:focus {
  --tw-shadow-color: rgb(39 39 42 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-800\/20:focus {
  --tw-shadow-color: rgb(39 39 42 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-800\/30:focus {
  --tw-shadow-color: rgb(39 39 42 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-800\/40:focus {
  --tw-shadow-color: rgb(39 39 42 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-800\/5:focus {
  --tw-shadow-color: rgb(39 39 42 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-800\/50:focus {
  --tw-shadow-color: rgb(39 39 42 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-800\/60:focus {
  --tw-shadow-color: rgb(39 39 42 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-800\/70:focus {
  --tw-shadow-color: rgb(39 39 42 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-800\/80:focus {
  --tw-shadow-color: rgb(39 39 42 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-800\/90:focus {
  --tw-shadow-color: rgb(39 39 42 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-900:focus {
  --tw-shadow-color: #18181b;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-900\/10:focus {
  --tw-shadow-color: rgb(24 24 27 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-900\/20:focus {
  --tw-shadow-color: rgb(24 24 27 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-900\/30:focus {
  --tw-shadow-color: rgb(24 24 27 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-900\/40:focus {
  --tw-shadow-color: rgb(24 24 27 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-900\/5:focus {
  --tw-shadow-color: rgb(24 24 27 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-900\/50:focus {
  --tw-shadow-color: rgb(24 24 27 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-900\/60:focus {
  --tw-shadow-color: rgb(24 24 27 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-900\/70:focus {
  --tw-shadow-color: rgb(24 24 27 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-900\/80:focus {
  --tw-shadow-color: rgb(24 24 27 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-900\/90:focus {
  --tw-shadow-color: rgb(24 24 27 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-950:focus {
  --tw-shadow-color: #09090b;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-950\/10:focus {
  --tw-shadow-color: rgb(9 9 11 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-950\/20:focus {
  --tw-shadow-color: rgb(9 9 11 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-950\/30:focus {
  --tw-shadow-color: rgb(9 9 11 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-950\/40:focus {
  --tw-shadow-color: rgb(9 9 11 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-950\/5:focus {
  --tw-shadow-color: rgb(9 9 11 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-950\/50:focus {
  --tw-shadow-color: rgb(9 9 11 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-950\/60:focus {
  --tw-shadow-color: rgb(9 9 11 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-950\/70:focus {
  --tw-shadow-color: rgb(9 9 11 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-950\/80:focus {
  --tw-shadow-color: rgb(9 9 11 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:shadow-zinc-950\/90:focus {
  --tw-shadow-color: rgb(9 9 11 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:ring-1:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-4:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-8:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-amber-100:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 243 199 / var(--tw-ring-opacity, 1));
}
.focus\:ring-amber-200:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(253 230 138 / var(--tw-ring-opacity, 1));
}
.focus\:ring-amber-300:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(252 211 77 / var(--tw-ring-opacity, 1));
}
.focus\:ring-amber-400:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(251 191 36 / var(--tw-ring-opacity, 1));
}
.focus\:ring-amber-50:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 251 235 / var(--tw-ring-opacity, 1));
}
.focus\:ring-amber-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(245 158 11 / var(--tw-ring-opacity, 1));
}
.focus\:ring-amber-600:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(217 119 6 / var(--tw-ring-opacity, 1));
}
.focus\:ring-amber-700:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(180 83 9 / var(--tw-ring-opacity, 1));
}
.focus\:ring-amber-800:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(146 64 14 / var(--tw-ring-opacity, 1));
}
.focus\:ring-amber-900:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(120 53 15 / var(--tw-ring-opacity, 1));
}
.focus\:ring-amber-950:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(69 26 3 / var(--tw-ring-opacity, 1));
}
.focus\:ring-black:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity, 1));
}
.focus\:ring-blue-100:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(219 234 254 / var(--tw-ring-opacity, 1));
}
.focus\:ring-blue-200:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(191 219 254 / var(--tw-ring-opacity, 1));
}
.focus\:ring-blue-300:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(147 197 253 / var(--tw-ring-opacity, 1));
}
.focus\:ring-blue-400:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(96 165 250 / var(--tw-ring-opacity, 1));
}
.focus\:ring-blue-50:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(239 246 255 / var(--tw-ring-opacity, 1));
}
.focus\:ring-blue-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
}
.focus\:ring-blue-600:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(37 99 235 / var(--tw-ring-opacity, 1));
}
.focus\:ring-blue-700:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(29 78 216 / var(--tw-ring-opacity, 1));
}
.focus\:ring-blue-800:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(30 64 175 / var(--tw-ring-opacity, 1));
}
.focus\:ring-blue-900:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(30 58 138 / var(--tw-ring-opacity, 1));
}
.focus\:ring-blue-950:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(23 37 84 / var(--tw-ring-opacity, 1));
}
.focus\:ring-cyan-100:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(207 250 254 / var(--tw-ring-opacity, 1));
}
.focus\:ring-cyan-200:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(165 243 252 / var(--tw-ring-opacity, 1));
}
.focus\:ring-cyan-300:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(103 232 249 / var(--tw-ring-opacity, 1));
}
.focus\:ring-cyan-400:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(34 211 238 / var(--tw-ring-opacity, 1));
}
.focus\:ring-cyan-50:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(236 254 255 / var(--tw-ring-opacity, 1));
}
.focus\:ring-cyan-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(6 182 212 / var(--tw-ring-opacity, 1));
}
.focus\:ring-cyan-600:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(8 145 178 / var(--tw-ring-opacity, 1));
}
.focus\:ring-cyan-700:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(14 116 144 / var(--tw-ring-opacity, 1));
}
.focus\:ring-cyan-800:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(21 94 117 / var(--tw-ring-opacity, 1));
}
.focus\:ring-cyan-900:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(22 78 99 / var(--tw-ring-opacity, 1));
}
.focus\:ring-cyan-950:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(8 51 68 / var(--tw-ring-opacity, 1));
}
.focus\:ring-emerald-100:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(209 250 229 / var(--tw-ring-opacity, 1));
}
.focus\:ring-emerald-200:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(167 243 208 / var(--tw-ring-opacity, 1));
}
.focus\:ring-emerald-300:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(110 231 183 / var(--tw-ring-opacity, 1));
}
.focus\:ring-emerald-400:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(52 211 153 / var(--tw-ring-opacity, 1));
}
.focus\:ring-emerald-50:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(236 253 245 / var(--tw-ring-opacity, 1));
}
.focus\:ring-emerald-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(16 185 129 / var(--tw-ring-opacity, 1));
}
.focus\:ring-emerald-600:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(5 150 105 / var(--tw-ring-opacity, 1));
}
.focus\:ring-emerald-700:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(4 120 87 / var(--tw-ring-opacity, 1));
}
.focus\:ring-emerald-800:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(6 95 70 / var(--tw-ring-opacity, 1));
}
.focus\:ring-emerald-900:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(6 78 59 / var(--tw-ring-opacity, 1));
}
.focus\:ring-emerald-950:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(2 44 34 / var(--tw-ring-opacity, 1));
}
.focus\:ring-fuchsia-100:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(250 232 255 / var(--tw-ring-opacity, 1));
}
.focus\:ring-fuchsia-200:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(245 208 254 / var(--tw-ring-opacity, 1));
}
.focus\:ring-fuchsia-300:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(240 171 252 / var(--tw-ring-opacity, 1));
}
.focus\:ring-fuchsia-400:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(232 121 249 / var(--tw-ring-opacity, 1));
}
.focus\:ring-fuchsia-50:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(253 244 255 / var(--tw-ring-opacity, 1));
}
.focus\:ring-fuchsia-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(217 70 239 / var(--tw-ring-opacity, 1));
}
.focus\:ring-fuchsia-600:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(192 38 211 / var(--tw-ring-opacity, 1));
}
.focus\:ring-fuchsia-700:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(162 28 175 / var(--tw-ring-opacity, 1));
}
.focus\:ring-fuchsia-800:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(134 25 143 / var(--tw-ring-opacity, 1));
}
.focus\:ring-fuchsia-900:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(112 26 117 / var(--tw-ring-opacity, 1));
}
.focus\:ring-fuchsia-950:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(74 4 78 / var(--tw-ring-opacity, 1));
}
.focus\:ring-gray-100:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(243 244 246 / var(--tw-ring-opacity, 1));
}
.focus\:ring-gray-200:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity, 1));
}
.focus\:ring-gray-300:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity, 1));
}
.focus\:ring-gray-400:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(156 163 175 / var(--tw-ring-opacity, 1));
}
.focus\:ring-gray-50:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(249 250 251 / var(--tw-ring-opacity, 1));
}
.focus\:ring-gray-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(107 114 128 / var(--tw-ring-opacity, 1));
}
.focus\:ring-gray-600:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(75 85 99 / var(--tw-ring-opacity, 1));
}
.focus\:ring-gray-700:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(55 65 81 / var(--tw-ring-opacity, 1));
}
.focus\:ring-gray-800:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(31 41 55 / var(--tw-ring-opacity, 1));
}
.focus\:ring-gray-900:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(17 24 39 / var(--tw-ring-opacity, 1));
}
.focus\:ring-gray-950:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(3 7 18 / var(--tw-ring-opacity, 1));
}
.focus\:ring-green-100:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(220 252 231 / var(--tw-ring-opacity, 1));
}
.focus\:ring-green-200:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(187 247 208 / var(--tw-ring-opacity, 1));
}
.focus\:ring-green-300:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(134 239 172 / var(--tw-ring-opacity, 1));
}
.focus\:ring-green-400:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(74 222 128 / var(--tw-ring-opacity, 1));
}
.focus\:ring-green-50:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(240 253 244 / var(--tw-ring-opacity, 1));
}
.focus\:ring-green-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(34 197 94 / var(--tw-ring-opacity, 1));
}
.focus\:ring-green-600:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(22 163 74 / var(--tw-ring-opacity, 1));
}
.focus\:ring-green-700:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(21 128 61 / var(--tw-ring-opacity, 1));
}
.focus\:ring-green-800:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(22 101 52 / var(--tw-ring-opacity, 1));
}
.focus\:ring-green-900:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(20 83 45 / var(--tw-ring-opacity, 1));
}
.focus\:ring-green-950:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(5 46 22 / var(--tw-ring-opacity, 1));
}
.focus\:ring-indigo-100:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(224 231 255 / var(--tw-ring-opacity, 1));
}
.focus\:ring-indigo-200:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(199 210 254 / var(--tw-ring-opacity, 1));
}
.focus\:ring-indigo-300:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(165 180 252 / var(--tw-ring-opacity, 1));
}
.focus\:ring-indigo-400:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(129 140 248 / var(--tw-ring-opacity, 1));
}
.focus\:ring-indigo-50:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(238 242 255 / var(--tw-ring-opacity, 1));
}
.focus\:ring-indigo-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(99 102 241 / var(--tw-ring-opacity, 1));
}
.focus\:ring-indigo-600:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(79 70 229 / var(--tw-ring-opacity, 1));
}
.focus\:ring-indigo-700:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(67 56 202 / var(--tw-ring-opacity, 1));
}
.focus\:ring-indigo-800:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(55 48 163 / var(--tw-ring-opacity, 1));
}
.focus\:ring-indigo-900:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(49 46 129 / var(--tw-ring-opacity, 1));
}
.focus\:ring-indigo-950:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(30 27 75 / var(--tw-ring-opacity, 1));
}
.focus\:ring-lime-100:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(236 252 203 / var(--tw-ring-opacity, 1));
}
.focus\:ring-lime-200:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(217 249 157 / var(--tw-ring-opacity, 1));
}
.focus\:ring-lime-300:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(190 242 100 / var(--tw-ring-opacity, 1));
}
.focus\:ring-lime-400:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(163 230 53 / var(--tw-ring-opacity, 1));
}
.focus\:ring-lime-50:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(247 254 231 / var(--tw-ring-opacity, 1));
}
.focus\:ring-lime-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(132 204 22 / var(--tw-ring-opacity, 1));
}
.focus\:ring-lime-600:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(101 163 13 / var(--tw-ring-opacity, 1));
}
.focus\:ring-lime-700:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(77 124 15 / var(--tw-ring-opacity, 1));
}
.focus\:ring-lime-800:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(63 98 18 / var(--tw-ring-opacity, 1));
}
.focus\:ring-lime-900:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(54 83 20 / var(--tw-ring-opacity, 1));
}
.focus\:ring-lime-950:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(26 46 5 / var(--tw-ring-opacity, 1));
}
.focus\:ring-neutral-100:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(245 245 245 / var(--tw-ring-opacity, 1));
}
.focus\:ring-neutral-200:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(229 229 229 / var(--tw-ring-opacity, 1));
}
.focus\:ring-neutral-300:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(212 212 212 / var(--tw-ring-opacity, 1));
}
.focus\:ring-neutral-400:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(163 163 163 / var(--tw-ring-opacity, 1));
}
.focus\:ring-neutral-50:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(250 250 250 / var(--tw-ring-opacity, 1));
}
.focus\:ring-neutral-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(115 115 115 / var(--tw-ring-opacity, 1));
}
.focus\:ring-neutral-600:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(82 82 82 / var(--tw-ring-opacity, 1));
}
.focus\:ring-neutral-700:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(64 64 64 / var(--tw-ring-opacity, 1));
}
.focus\:ring-neutral-800:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(38 38 38 / var(--tw-ring-opacity, 1));
}
.focus\:ring-neutral-900:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(23 23 23 / var(--tw-ring-opacity, 1));
}
.focus\:ring-neutral-950:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(10 10 10 / var(--tw-ring-opacity, 1));
}
.focus\:ring-orange-100:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 237 213 / var(--tw-ring-opacity, 1));
}
.focus\:ring-orange-200:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 215 170 / var(--tw-ring-opacity, 1));
}
.focus\:ring-orange-300:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(253 186 116 / var(--tw-ring-opacity, 1));
}
.focus\:ring-orange-400:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(251 146 60 / var(--tw-ring-opacity, 1));
}
.focus\:ring-orange-50:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 247 237 / var(--tw-ring-opacity, 1));
}
.focus\:ring-orange-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(249 115 22 / var(--tw-ring-opacity, 1));
}
.focus\:ring-orange-600:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(234 88 12 / var(--tw-ring-opacity, 1));
}
.focus\:ring-orange-700:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(194 65 12 / var(--tw-ring-opacity, 1));
}
.focus\:ring-orange-800:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(154 52 18 / var(--tw-ring-opacity, 1));
}
.focus\:ring-orange-900:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(124 45 18 / var(--tw-ring-opacity, 1));
}
.focus\:ring-orange-950:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(67 20 7 / var(--tw-ring-opacity, 1));
}
.focus\:ring-pink-100:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(252 231 243 / var(--tw-ring-opacity, 1));
}
.focus\:ring-pink-200:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(251 207 232 / var(--tw-ring-opacity, 1));
}
.focus\:ring-pink-300:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(249 168 212 / var(--tw-ring-opacity, 1));
}
.focus\:ring-pink-400:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(244 114 182 / var(--tw-ring-opacity, 1));
}
.focus\:ring-pink-50:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(253 242 248 / var(--tw-ring-opacity, 1));
}
.focus\:ring-pink-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(236 72 153 / var(--tw-ring-opacity, 1));
}
.focus\:ring-pink-600:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(219 39 119 / var(--tw-ring-opacity, 1));
}
.focus\:ring-pink-700:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(190 24 93 / var(--tw-ring-opacity, 1));
}
.focus\:ring-pink-800:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(157 23 77 / var(--tw-ring-opacity, 1));
}
.focus\:ring-pink-900:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(131 24 67 / var(--tw-ring-opacity, 1));
}
.focus\:ring-pink-950:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(80 7 36 / var(--tw-ring-opacity, 1));
}
.focus\:ring-purple-100:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(243 232 255 / var(--tw-ring-opacity, 1));
}
.focus\:ring-purple-200:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(233 213 255 / var(--tw-ring-opacity, 1));
}
.focus\:ring-purple-300:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(216 180 254 / var(--tw-ring-opacity, 1));
}
.focus\:ring-purple-400:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(192 132 252 / var(--tw-ring-opacity, 1));
}
.focus\:ring-purple-50:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(250 245 255 / var(--tw-ring-opacity, 1));
}
.focus\:ring-purple-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(168 85 247 / var(--tw-ring-opacity, 1));
}
.focus\:ring-purple-600:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(147 51 234 / var(--tw-ring-opacity, 1));
}
.focus\:ring-purple-700:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(126 34 206 / var(--tw-ring-opacity, 1));
}
.focus\:ring-purple-800:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(107 33 168 / var(--tw-ring-opacity, 1));
}
.focus\:ring-purple-900:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(88 28 135 / var(--tw-ring-opacity, 1));
}
.focus\:ring-purple-950:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 7 100 / var(--tw-ring-opacity, 1));
}
.focus\:ring-red-100:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 226 226 / var(--tw-ring-opacity, 1));
}
.focus\:ring-red-200:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 202 202 / var(--tw-ring-opacity, 1));
}
.focus\:ring-red-300:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(252 165 165 / var(--tw-ring-opacity, 1));
}
.focus\:ring-red-400:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(248 113 113 / var(--tw-ring-opacity, 1));
}
.focus\:ring-red-50:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 242 242 / var(--tw-ring-opacity, 1));
}
.focus\:ring-red-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity, 1));
}
.focus\:ring-red-600:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(220 38 38 / var(--tw-ring-opacity, 1));
}
.focus\:ring-red-700:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(185 28 28 / var(--tw-ring-opacity, 1));
}
.focus\:ring-red-800:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(153 27 27 / var(--tw-ring-opacity, 1));
}
.focus\:ring-red-900:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(127 29 29 / var(--tw-ring-opacity, 1));
}
.focus\:ring-red-950:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(69 10 10 / var(--tw-ring-opacity, 1));
}
.focus\:ring-ring:focus {
  --tw-ring-color: var(--ring);
}
.focus\:ring-rose-100:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 228 230 / var(--tw-ring-opacity, 1));
}
.focus\:ring-rose-200:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 205 211 / var(--tw-ring-opacity, 1));
}
.focus\:ring-rose-300:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(253 164 175 / var(--tw-ring-opacity, 1));
}
.focus\:ring-rose-400:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(251 113 133 / var(--tw-ring-opacity, 1));
}
.focus\:ring-rose-50:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 241 242 / var(--tw-ring-opacity, 1));
}
.focus\:ring-rose-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(244 63 94 / var(--tw-ring-opacity, 1));
}
.focus\:ring-rose-600:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(225 29 72 / var(--tw-ring-opacity, 1));
}
.focus\:ring-rose-700:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(190 18 60 / var(--tw-ring-opacity, 1));
}
.focus\:ring-rose-800:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(159 18 57 / var(--tw-ring-opacity, 1));
}
.focus\:ring-rose-900:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(136 19 55 / var(--tw-ring-opacity, 1));
}
.focus\:ring-rose-950:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(76 5 25 / var(--tw-ring-opacity, 1));
}
.focus\:ring-sky-100:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(224 242 254 / var(--tw-ring-opacity, 1));
}
.focus\:ring-sky-200:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(186 230 253 / var(--tw-ring-opacity, 1));
}
.focus\:ring-sky-300:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(125 211 252 / var(--tw-ring-opacity, 1));
}
.focus\:ring-sky-400:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(56 189 248 / var(--tw-ring-opacity, 1));
}
.focus\:ring-sky-50:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(240 249 255 / var(--tw-ring-opacity, 1));
}
.focus\:ring-sky-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(14 165 233 / var(--tw-ring-opacity, 1));
}
.focus\:ring-sky-600:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(2 132 199 / var(--tw-ring-opacity, 1));
}
.focus\:ring-sky-700:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(3 105 161 / var(--tw-ring-opacity, 1));
}
.focus\:ring-sky-800:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(7 89 133 / var(--tw-ring-opacity, 1));
}
.focus\:ring-sky-900:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(12 74 110 / var(--tw-ring-opacity, 1));
}
.focus\:ring-sky-950:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(8 47 73 / var(--tw-ring-opacity, 1));
}
.focus\:ring-slate-100:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(241 245 249 / var(--tw-ring-opacity, 1));
}
.focus\:ring-slate-200:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(226 232 240 / var(--tw-ring-opacity, 1));
}
.focus\:ring-slate-300:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(203 213 225 / var(--tw-ring-opacity, 1));
}
.focus\:ring-slate-400:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(148 163 184 / var(--tw-ring-opacity, 1));
}
.focus\:ring-slate-50:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(248 250 252 / var(--tw-ring-opacity, 1));
}
.focus\:ring-slate-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(100 116 139 / var(--tw-ring-opacity, 1));
}
.focus\:ring-slate-600:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(71 85 105 / var(--tw-ring-opacity, 1));
}
.focus\:ring-slate-700:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(51 65 85 / var(--tw-ring-opacity, 1));
}
.focus\:ring-slate-800:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(30 41 59 / var(--tw-ring-opacity, 1));
}
.focus\:ring-slate-900:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(15 23 42 / var(--tw-ring-opacity, 1));
}
.focus\:ring-slate-950:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(2 6 23 / var(--tw-ring-opacity, 1));
}
.focus\:ring-stone-100:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(245 245 244 / var(--tw-ring-opacity, 1));
}
.focus\:ring-stone-200:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(231 229 228 / var(--tw-ring-opacity, 1));
}
.focus\:ring-stone-300:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(214 211 209 / var(--tw-ring-opacity, 1));
}
.focus\:ring-stone-400:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(168 162 158 / var(--tw-ring-opacity, 1));
}
.focus\:ring-stone-50:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(250 250 249 / var(--tw-ring-opacity, 1));
}
.focus\:ring-stone-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(120 113 108 / var(--tw-ring-opacity, 1));
}
.focus\:ring-stone-600:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(87 83 78 / var(--tw-ring-opacity, 1));
}
.focus\:ring-stone-700:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(68 64 60 / var(--tw-ring-opacity, 1));
}
.focus\:ring-stone-800:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(41 37 36 / var(--tw-ring-opacity, 1));
}
.focus\:ring-stone-900:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(28 25 23 / var(--tw-ring-opacity, 1));
}
.focus\:ring-stone-950:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(12 10 9 / var(--tw-ring-opacity, 1));
}
.focus\:ring-teal-100:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(204 251 241 / var(--tw-ring-opacity, 1));
}
.focus\:ring-teal-200:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(153 246 228 / var(--tw-ring-opacity, 1));
}
.focus\:ring-teal-300:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(94 234 212 / var(--tw-ring-opacity, 1));
}
.focus\:ring-teal-400:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(45 212 191 / var(--tw-ring-opacity, 1));
}
.focus\:ring-teal-50:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(240 253 250 / var(--tw-ring-opacity, 1));
}
.focus\:ring-teal-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(20 184 166 / var(--tw-ring-opacity, 1));
}
.focus\:ring-teal-600:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(13 148 136 / var(--tw-ring-opacity, 1));
}
.focus\:ring-teal-700:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(15 118 110 / var(--tw-ring-opacity, 1));
}
.focus\:ring-teal-800:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(17 94 89 / var(--tw-ring-opacity, 1));
}
.focus\:ring-teal-900:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(19 78 74 / var(--tw-ring-opacity, 1));
}
.focus\:ring-teal-950:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(4 47 46 / var(--tw-ring-opacity, 1));
}
.focus\:ring-violet-100:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(237 233 254 / var(--tw-ring-opacity, 1));
}
.focus\:ring-violet-200:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(221 214 254 / var(--tw-ring-opacity, 1));
}
.focus\:ring-violet-300:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(196 181 253 / var(--tw-ring-opacity, 1));
}
.focus\:ring-violet-400:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(167 139 250 / var(--tw-ring-opacity, 1));
}
.focus\:ring-violet-50:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(245 243 255 / var(--tw-ring-opacity, 1));
}
.focus\:ring-violet-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(139 92 246 / var(--tw-ring-opacity, 1));
}
.focus\:ring-violet-600:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(124 58 237 / var(--tw-ring-opacity, 1));
}
.focus\:ring-violet-700:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(109 40 217 / var(--tw-ring-opacity, 1));
}
.focus\:ring-violet-800:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(91 33 182 / var(--tw-ring-opacity, 1));
}
.focus\:ring-violet-900:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(76 29 149 / var(--tw-ring-opacity, 1));
}
.focus\:ring-violet-950:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(46 16 101 / var(--tw-ring-opacity, 1));
}
.focus\:ring-white:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity, 1));
}
.focus\:ring-yellow-100:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 249 195 / var(--tw-ring-opacity, 1));
}
.focus\:ring-yellow-200:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 240 138 / var(--tw-ring-opacity, 1));
}
.focus\:ring-yellow-300:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(253 224 71 / var(--tw-ring-opacity, 1));
}
.focus\:ring-yellow-400:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(250 204 21 / var(--tw-ring-opacity, 1));
}
.focus\:ring-yellow-50:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 252 232 / var(--tw-ring-opacity, 1));
}
.focus\:ring-yellow-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(234 179 8 / var(--tw-ring-opacity, 1));
}
.focus\:ring-yellow-600:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(202 138 4 / var(--tw-ring-opacity, 1));
}
.focus\:ring-yellow-700:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(161 98 7 / var(--tw-ring-opacity, 1));
}
.focus\:ring-yellow-800:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(133 77 14 / var(--tw-ring-opacity, 1));
}
.focus\:ring-yellow-900:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(113 63 18 / var(--tw-ring-opacity, 1));
}
.focus\:ring-yellow-950:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(66 32 6 / var(--tw-ring-opacity, 1));
}
.focus\:ring-zinc-100:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(244 244 245 / var(--tw-ring-opacity, 1));
}
.focus\:ring-zinc-200:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(228 228 231 / var(--tw-ring-opacity, 1));
}
.focus\:ring-zinc-300:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(212 212 216 / var(--tw-ring-opacity, 1));
}
.focus\:ring-zinc-400:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(161 161 170 / var(--tw-ring-opacity, 1));
}
.focus\:ring-zinc-50:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(250 250 250 / var(--tw-ring-opacity, 1));
}
.focus\:ring-zinc-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(113 113 122 / var(--tw-ring-opacity, 1));
}
.focus\:ring-zinc-600:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(82 82 91 / var(--tw-ring-opacity, 1));
}
.focus\:ring-zinc-700:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(63 63 70 / var(--tw-ring-opacity, 1));
}
.focus\:ring-zinc-800:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(39 39 42 / var(--tw-ring-opacity, 1));
}
.focus\:ring-zinc-900:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(24 24 27 / var(--tw-ring-opacity, 1));
}
.focus\:ring-zinc-950:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(9 9 11 / var(--tw-ring-opacity, 1));
}
.focus\:ring-offset-2:focus {
  --tw-ring-offset-width: 2px;
}
.focus\:blur-2xl:focus {
  --tw-blur: blur(40px);
  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);
}
.focus\:blur-3xl:focus {
  --tw-blur: blur(64px);
  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);
}
.focus\:blur-lg:focus {
  --tw-blur: blur(16px);
  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);
}
.focus\:blur-md:focus {
  --tw-blur: blur(12px);
  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);
}
.focus\:blur-sm:focus {
  --tw-blur: blur(4px);
  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);
}
.focus\:blur-xl:focus {
  --tw-blur: blur(24px);
  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);
}
.focus\:drop-shadow-lg:focus {
  --tw-drop-shadow: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
  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);
}
.focus\:drop-shadow-md:focus {
  --tw-drop-shadow: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
  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);
}
.focus\:drop-shadow-sm:focus {
  --tw-drop-shadow: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05));
  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);
}
.focus\:backdrop-blur-lg:focus {
  --tw-backdrop-blur: blur(16px);
  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);
}
.focus\:backdrop-blur-md:focus {
  --tw-backdrop-blur: blur(12px);
  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);
}
.focus\:motion-blur-in-lg:focus {
  --motion-origin-blur: 16px;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-blur-in-md:focus {
  --motion-origin-blur: 12px;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-blur-out-lg:focus {
  --motion-end-blur: 16px;
  --motion-filter-out-animation: motion-filter-out calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-out-animation), var(--motion-translate-out-animation), var(--motion-rotate-out-animation), var(--motion-filter-out-animation), var(--motion-opacity-out-animation), var(--motion-background-color-out-animation), var(--motion-text-color-out-animation);
}
.focus\:motion-blur-out-md:focus {
  --motion-end-blur: 12px;
  --motion-filter-out-animation: motion-filter-out calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-out-animation), var(--motion-translate-out-animation), var(--motion-rotate-out-animation), var(--motion-filter-out-animation), var(--motion-opacity-out-animation), var(--motion-background-color-out-animation), var(--motion-text-color-out-animation);
}
.focus\:motion-blur-loop-lg:focus {
  --motion-loop-blur: 16px;
  --motion-filter-loop-animation: motion-filter-loop-mirror calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both var(--motion-filter-loop-count, var(--motion-loop-count));
  animation-composition: accumulate;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus\:motion-blur-loop-md:focus {
  --motion-loop-blur: 12px;
  --motion-filter-loop-animation: motion-filter-loop-mirror calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both var(--motion-filter-loop-count, var(--motion-loop-count));
  animation-composition: accumulate;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.focus-visible\:outline-none:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus-visible\:ring-1:focus-visible {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-visible\:ring-2:focus-visible {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-visible\:ring-ring:focus-visible {
  --tw-ring-color: var(--ring);
}
.focus-visible\:ring-offset-1:focus-visible {
  --tw-ring-offset-width: 1px;
}
.focus-visible\:ring-offset-2:focus-visible {
  --tw-ring-offset-width: 2px;
}
.focus-visible\:ring-offset-background:focus-visible {
  --tw-ring-offset-color: var(--background);
}
.active\:m-0:active {
  margin: 0px;
}
.active\:m-1:active {
  margin: 0.25rem;
}
.active\:m-10:active {
  margin: 2.5rem;
}
.active\:m-11:active {
  margin: 2.75rem;
}
.active\:m-12:active {
  margin: 3rem;
}
.active\:m-14:active {
  margin: 3.5rem;
}
.active\:m-16:active {
  margin: 4rem;
}
.active\:m-2:active {
  margin: 0.5rem;
}
.active\:m-20:active {
  margin: 5rem;
}
.active\:m-24:active {
  margin: 6rem;
}
.active\:m-28:active {
  margin: 7rem;
}
.active\:m-3:active {
  margin: 0.75rem;
}
.active\:m-32:active {
  margin: 8rem;
}
.active\:m-36:active {
  margin: 9rem;
}
.active\:m-4:active {
  margin: 1rem;
}
.active\:m-40:active {
  margin: 10rem;
}
.active\:m-44:active {
  margin: 11rem;
}
.active\:m-48:active {
  margin: 12rem;
}
.active\:m-5:active {
  margin: 1.25rem;
}
.active\:m-52:active {
  margin: 13rem;
}
.active\:m-56:active {
  margin: 14rem;
}
.active\:m-6:active {
  margin: 1.5rem;
}
.active\:m-60:active {
  margin: 15rem;
}
.active\:m-64:active {
  margin: 16rem;
}
.active\:m-7:active {
  margin: 1.75rem;
}
.active\:m-72:active {
  margin: 18rem;
}
.active\:m-8:active {
  margin: 2rem;
}
.active\:m-80:active {
  margin: 20rem;
}
.active\:m-9:active {
  margin: 2.25rem;
}
.active\:m-96:active {
  margin: 24rem;
}
.active\:mx-0:active {
  margin-left: 0px;
  margin-right: 0px;
}
.active\:mx-1:active {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.active\:mx-10:active {
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}
.active\:mx-11:active {
  margin-left: 2.75rem;
  margin-right: 2.75rem;
}
.active\:mx-12:active {
  margin-left: 3rem;
  margin-right: 3rem;
}
.active\:mx-14:active {
  margin-left: 3.5rem;
  margin-right: 3.5rem;
}
.active\:mx-16:active {
  margin-left: 4rem;
  margin-right: 4rem;
}
.active\:mx-2:active {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.active\:mx-20:active {
  margin-left: 5rem;
  margin-right: 5rem;
}
.active\:mx-24:active {
  margin-left: 6rem;
  margin-right: 6rem;
}
.active\:mx-28:active {
  margin-left: 7rem;
  margin-right: 7rem;
}
.active\:mx-3:active {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}
.active\:mx-32:active {
  margin-left: 8rem;
  margin-right: 8rem;
}
.active\:mx-36:active {
  margin-left: 9rem;
  margin-right: 9rem;
}
.active\:mx-4:active {
  margin-left: 1rem;
  margin-right: 1rem;
}
.active\:mx-40:active {
  margin-left: 10rem;
  margin-right: 10rem;
}
.active\:mx-44:active {
  margin-left: 11rem;
  margin-right: 11rem;
}
.active\:mx-48:active {
  margin-left: 12rem;
  margin-right: 12rem;
}
.active\:mx-5:active {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}
.active\:mx-52:active {
  margin-left: 13rem;
  margin-right: 13rem;
}
.active\:mx-56:active {
  margin-left: 14rem;
  margin-right: 14rem;
}
.active\:mx-6:active {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.active\:mx-60:active {
  margin-left: 15rem;
  margin-right: 15rem;
}
.active\:mx-64:active {
  margin-left: 16rem;
  margin-right: 16rem;
}
.active\:mx-7:active {
  margin-left: 1.75rem;
  margin-right: 1.75rem;
}
.active\:mx-72:active {
  margin-left: 18rem;
  margin-right: 18rem;
}
.active\:mx-8:active {
  margin-left: 2rem;
  margin-right: 2rem;
}
.active\:mx-80:active {
  margin-left: 20rem;
  margin-right: 20rem;
}
.active\:mx-9:active {
  margin-left: 2.25rem;
  margin-right: 2.25rem;
}
.active\:mx-96:active {
  margin-left: 24rem;
  margin-right: 24rem;
}
.active\:my-0:active {
  margin-top: 0px;
  margin-bottom: 0px;
}
.active\:my-1:active {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.active\:my-10:active {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.active\:my-11:active {
  margin-top: 2.75rem;
  margin-bottom: 2.75rem;
}
.active\:my-12:active {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.active\:my-14:active {
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}
.active\:my-16:active {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.active\:my-2:active {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.active\:my-20:active {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.active\:my-24:active {
  margin-top: 6rem;
  margin-bottom: 6rem;
}
.active\:my-28:active {
  margin-top: 7rem;
  margin-bottom: 7rem;
}
.active\:my-3:active {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.active\:my-32:active {
  margin-top: 8rem;
  margin-bottom: 8rem;
}
.active\:my-36:active {
  margin-top: 9rem;
  margin-bottom: 9rem;
}
.active\:my-4:active {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.active\:my-40:active {
  margin-top: 10rem;
  margin-bottom: 10rem;
}
.active\:my-44:active {
  margin-top: 11rem;
  margin-bottom: 11rem;
}
.active\:my-48:active {
  margin-top: 12rem;
  margin-bottom: 12rem;
}
.active\:my-5:active {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.active\:my-52:active {
  margin-top: 13rem;
  margin-bottom: 13rem;
}
.active\:my-56:active {
  margin-top: 14rem;
  margin-bottom: 14rem;
}
.active\:my-6:active {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.active\:my-60:active {
  margin-top: 15rem;
  margin-bottom: 15rem;
}
.active\:my-64:active {
  margin-top: 16rem;
  margin-bottom: 16rem;
}
.active\:my-7:active {
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}
.active\:my-72:active {
  margin-top: 18rem;
  margin-bottom: 18rem;
}
.active\:my-8:active {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.active\:my-80:active {
  margin-top: 20rem;
  margin-bottom: 20rem;
}
.active\:my-9:active {
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
}
.active\:my-96:active {
  margin-top: 24rem;
  margin-bottom: 24rem;
}
.active\:mb-0:active {
  margin-bottom: 0px;
}
.active\:mb-1:active {
  margin-bottom: 0.25rem;
}
.active\:mb-10:active {
  margin-bottom: 2.5rem;
}
.active\:mb-11:active {
  margin-bottom: 2.75rem;
}
.active\:mb-12:active {
  margin-bottom: 3rem;
}
.active\:mb-14:active {
  margin-bottom: 3.5rem;
}
.active\:mb-16:active {
  margin-bottom: 4rem;
}
.active\:mb-2:active {
  margin-bottom: 0.5rem;
}
.active\:mb-20:active {
  margin-bottom: 5rem;
}
.active\:mb-24:active {
  margin-bottom: 6rem;
}
.active\:mb-28:active {
  margin-bottom: 7rem;
}
.active\:mb-3:active {
  margin-bottom: 0.75rem;
}
.active\:mb-32:active {
  margin-bottom: 8rem;
}
.active\:mb-36:active {
  margin-bottom: 9rem;
}
.active\:mb-4:active {
  margin-bottom: 1rem;
}
.active\:mb-40:active {
  margin-bottom: 10rem;
}
.active\:mb-44:active {
  margin-bottom: 11rem;
}
.active\:mb-48:active {
  margin-bottom: 12rem;
}
.active\:mb-5:active {
  margin-bottom: 1.25rem;
}
.active\:mb-52:active {
  margin-bottom: 13rem;
}
.active\:mb-56:active {
  margin-bottom: 14rem;
}
.active\:mb-6:active {
  margin-bottom: 1.5rem;
}
.active\:mb-60:active {
  margin-bottom: 15rem;
}
.active\:mb-64:active {
  margin-bottom: 16rem;
}
.active\:mb-7:active {
  margin-bottom: 1.75rem;
}
.active\:mb-72:active {
  margin-bottom: 18rem;
}
.active\:mb-8:active {
  margin-bottom: 2rem;
}
.active\:mb-80:active {
  margin-bottom: 20rem;
}
.active\:mb-9:active {
  margin-bottom: 2.25rem;
}
.active\:mb-96:active {
  margin-bottom: 24rem;
}
.active\:ml-0:active {
  margin-left: 0px;
}
.active\:ml-1:active {
  margin-left: 0.25rem;
}
.active\:ml-10:active {
  margin-left: 2.5rem;
}
.active\:ml-11:active {
  margin-left: 2.75rem;
}
.active\:ml-12:active {
  margin-left: 3rem;
}
.active\:ml-14:active {
  margin-left: 3.5rem;
}
.active\:ml-16:active {
  margin-left: 4rem;
}
.active\:ml-2:active {
  margin-left: 0.5rem;
}
.active\:ml-20:active {
  margin-left: 5rem;
}
.active\:ml-24:active {
  margin-left: 6rem;
}
.active\:ml-28:active {
  margin-left: 7rem;
}
.active\:ml-3:active {
  margin-left: 0.75rem;
}
.active\:ml-32:active {
  margin-left: 8rem;
}
.active\:ml-36:active {
  margin-left: 9rem;
}
.active\:ml-4:active {
  margin-left: 1rem;
}
.active\:ml-40:active {
  margin-left: 10rem;
}
.active\:ml-44:active {
  margin-left: 11rem;
}
.active\:ml-48:active {
  margin-left: 12rem;
}
.active\:ml-5:active {
  margin-left: 1.25rem;
}
.active\:ml-52:active {
  margin-left: 13rem;
}
.active\:ml-56:active {
  margin-left: 14rem;
}
.active\:ml-6:active {
  margin-left: 1.5rem;
}
.active\:ml-60:active {
  margin-left: 15rem;
}
.active\:ml-64:active {
  margin-left: 16rem;
}
.active\:ml-7:active {
  margin-left: 1.75rem;
}
.active\:ml-72:active {
  margin-left: 18rem;
}
.active\:ml-8:active {
  margin-left: 2rem;
}
.active\:ml-80:active {
  margin-left: 20rem;
}
.active\:ml-9:active {
  margin-left: 2.25rem;
}
.active\:ml-96:active {
  margin-left: 24rem;
}
.active\:mr-0:active {
  margin-right: 0px;
}
.active\:mr-1:active {
  margin-right: 0.25rem;
}
.active\:mr-10:active {
  margin-right: 2.5rem;
}
.active\:mr-11:active {
  margin-right: 2.75rem;
}
.active\:mr-12:active {
  margin-right: 3rem;
}
.active\:mr-14:active {
  margin-right: 3.5rem;
}
.active\:mr-16:active {
  margin-right: 4rem;
}
.active\:mr-2:active {
  margin-right: 0.5rem;
}
.active\:mr-20:active {
  margin-right: 5rem;
}
.active\:mr-24:active {
  margin-right: 6rem;
}
.active\:mr-28:active {
  margin-right: 7rem;
}
.active\:mr-3:active {
  margin-right: 0.75rem;
}
.active\:mr-32:active {
  margin-right: 8rem;
}
.active\:mr-36:active {
  margin-right: 9rem;
}
.active\:mr-4:active {
  margin-right: 1rem;
}
.active\:mr-40:active {
  margin-right: 10rem;
}
.active\:mr-44:active {
  margin-right: 11rem;
}
.active\:mr-48:active {
  margin-right: 12rem;
}
.active\:mr-5:active {
  margin-right: 1.25rem;
}
.active\:mr-52:active {
  margin-right: 13rem;
}
.active\:mr-56:active {
  margin-right: 14rem;
}
.active\:mr-6:active {
  margin-right: 1.5rem;
}
.active\:mr-60:active {
  margin-right: 15rem;
}
.active\:mr-64:active {
  margin-right: 16rem;
}
.active\:mr-7:active {
  margin-right: 1.75rem;
}
.active\:mr-72:active {
  margin-right: 18rem;
}
.active\:mr-8:active {
  margin-right: 2rem;
}
.active\:mr-80:active {
  margin-right: 20rem;
}
.active\:mr-9:active {
  margin-right: 2.25rem;
}
.active\:mr-96:active {
  margin-right: 24rem;
}
.active\:mt-0:active {
  margin-top: 0px;
}
.active\:mt-1:active {
  margin-top: 0.25rem;
}
.active\:mt-10:active {
  margin-top: 2.5rem;
}
.active\:mt-11:active {
  margin-top: 2.75rem;
}
.active\:mt-12:active {
  margin-top: 3rem;
}
.active\:mt-14:active {
  margin-top: 3.5rem;
}
.active\:mt-16:active {
  margin-top: 4rem;
}
.active\:mt-2:active {
  margin-top: 0.5rem;
}
.active\:mt-20:active {
  margin-top: 5rem;
}
.active\:mt-24:active {
  margin-top: 6rem;
}
.active\:mt-28:active {
  margin-top: 7rem;
}
.active\:mt-3:active {
  margin-top: 0.75rem;
}
.active\:mt-32:active {
  margin-top: 8rem;
}
.active\:mt-36:active {
  margin-top: 9rem;
}
.active\:mt-4:active {
  margin-top: 1rem;
}
.active\:mt-40:active {
  margin-top: 10rem;
}
.active\:mt-44:active {
  margin-top: 11rem;
}
.active\:mt-48:active {
  margin-top: 12rem;
}
.active\:mt-5:active {
  margin-top: 1.25rem;
}
.active\:mt-52:active {
  margin-top: 13rem;
}
.active\:mt-56:active {
  margin-top: 14rem;
}
.active\:mt-6:active {
  margin-top: 1.5rem;
}
.active\:mt-60:active {
  margin-top: 15rem;
}
.active\:mt-64:active {
  margin-top: 16rem;
}
.active\:mt-7:active {
  margin-top: 1.75rem;
}
.active\:mt-72:active {
  margin-top: 18rem;
}
.active\:mt-8:active {
  margin-top: 2rem;
}
.active\:mt-80:active {
  margin-top: 20rem;
}
.active\:mt-9:active {
  margin-top: 2.25rem;
}
.active\:mt-96:active {
  margin-top: 24rem;
}
.active\:h-0:active {
  height: 0px;
}
.active\:h-0\.5:active {
  height: 0.125rem;
}
.active\:h-1:active {
  height: 0.25rem;
}
.active\:h-1\.5:active {
  height: 0.375rem;
}
.active\:h-1\/2:active {
  height: 50%;
}
.active\:h-1\/3:active {
  height: 33.333333%;
}
.active\:h-1\/4:active {
  height: 25%;
}
.active\:h-1\/5:active {
  height: 20%;
}
.active\:h-1\/6:active {
  height: 16.666667%;
}
.active\:h-10:active {
  height: 2.5rem;
}
.active\:h-11:active {
  height: 2.75rem;
}
.active\:h-12:active {
  height: 3rem;
}
.active\:h-14:active {
  height: 3.5rem;
}
.active\:h-16:active {
  height: 4rem;
}
.active\:h-2:active {
  height: 0.5rem;
}
.active\:h-2\.5:active {
  height: 0.625rem;
}
.active\:h-2\/3:active {
  height: 66.666667%;
}
.active\:h-2\/4:active {
  height: 50%;
}
.active\:h-2\/5:active {
  height: 40%;
}
.active\:h-2\/6:active {
  height: 33.333333%;
}
.active\:h-20:active {
  height: 5rem;
}
.active\:h-24:active {
  height: 6rem;
}
.active\:h-28:active {
  height: 7rem;
}
.active\:h-3:active {
  height: 0.75rem;
}
.active\:h-3\.5:active {
  height: 0.875rem;
}
.active\:h-3\/4:active {
  height: 75%;
}
.active\:h-3\/5:active {
  height: 60%;
}
.active\:h-3\/6:active {
  height: 50%;
}
.active\:h-32:active {
  height: 8rem;
}
.active\:h-36:active {
  height: 9rem;
}
.active\:h-4:active {
  height: 1rem;
}
.active\:h-4\/5:active {
  height: 80%;
}
.active\:h-4\/6:active {
  height: 66.666667%;
}
.active\:h-40:active {
  height: 10rem;
}
.active\:h-44:active {
  height: 11rem;
}
.active\:h-48:active {
  height: 12rem;
}
.active\:h-5:active {
  height: 1.25rem;
}
.active\:h-5\/6:active {
  height: 83.333333%;
}
.active\:h-52:active {
  height: 13rem;
}
.active\:h-56:active {
  height: 14rem;
}
.active\:h-6:active {
  height: 1.5rem;
}
.active\:h-60:active {
  height: 15rem;
}
.active\:h-64:active {
  height: 16rem;
}
.active\:h-7:active {
  height: 1.75rem;
}
.active\:h-72:active {
  height: 18rem;
}
.active\:h-8:active {
  height: 2rem;
}
.active\:h-80:active {
  height: 20rem;
}
.active\:h-9:active {
  height: 2.25rem;
}
.active\:h-96:active {
  height: 24rem;
}
.active\:h-auto:active {
  height: auto;
}
.active\:h-dvh:active {
  height: 100dvh;
}
.active\:h-fit:active {
  height: -moz-fit-content;
  height: fit-content;
}
.active\:h-full:active {
  height: 100%;
}
.active\:h-lvh:active {
  height: 100lvh;
}
.active\:h-max:active {
  height: -moz-max-content;
  height: max-content;
}
.active\:h-min:active {
  height: -moz-min-content;
  height: min-content;
}
.active\:h-px:active {
  height: 1px;
}
.active\:h-screen:active {
  height: 100vh;
}
.active\:h-svh:active {
  height: 100svh;
}
.active\:max-h-full:active {
  max-height: 100%;
}
.active\:max-h-none:active {
  max-height: none;
}
.active\:min-h-full:active {
  min-height: 100%;
}
.active\:w-1\/2:active {
  width: 50%;
}
.active\:w-1\/3:active {
  width: 33.333333%;
}
.active\:w-1\/4:active {
  width: 25%;
}
.active\:w-1\/5:active {
  width: 20%;
}
.active\:w-1\/6:active {
  width: 16.666667%;
}
.active\:w-full:active {
  width: 100%;
}
.active\:min-w-full:active {
  min-width: 100%;
}
.active\:max-w-full:active {
  max-width: 100%;
}
.active\:max-w-lg:active {
  max-width: 32rem;
}
.active\:max-w-md:active {
  max-width: 28rem;
}
.active\:max-w-none:active {
  max-width: none;
}
.active\:max-w-screen-lg:active {
  max-width: 1024px;
}
.active\:max-w-screen-md:active {
  max-width: 768px;
}
.active\:scale-0:active {
  --tw-scale-x: 0;
  --tw-scale-y: 0;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.active\:scale-100:active {
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.active\:scale-105:active {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.active\:scale-110:active {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.active\:scale-125:active {
  --tw-scale-x: 1.25;
  --tw-scale-y: 1.25;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.active\:scale-150:active {
  --tw-scale-x: 1.5;
  --tw-scale-y: 1.5;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.active\:scale-95:active {
  --tw-scale-x: .95;
  --tw-scale-y: .95;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.active\:columns-lg:active {
  -moz-columns: 32rem;
       columns: 32rem;
}
.active\:columns-md:active {
  -moz-columns: 28rem;
       columns: 28rem;
}
.active\:grid-cols-1:active {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.active\:grid-cols-10:active {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}
.active\:grid-cols-11:active {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}
.active\:grid-cols-12:active {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.active\:grid-cols-2:active {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.active\:grid-cols-3:active {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.active\:grid-cols-4:active {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.active\:grid-cols-5:active {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.active\:grid-cols-6:active {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.active\:grid-cols-7:active {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.active\:grid-cols-8:active {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.active\:grid-cols-9:active {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}
.active\:gap-1:active {
  gap: 0.25rem;
}
.active\:gap-10:active {
  gap: 2.5rem;
}
.active\:gap-11:active {
  gap: 2.75rem;
}
.active\:gap-12:active {
  gap: 3rem;
}
.active\:gap-2:active {
  gap: 0.5rem;
}
.active\:gap-3:active {
  gap: 0.75rem;
}
.active\:gap-4:active {
  gap: 1rem;
}
.active\:gap-5:active {
  gap: 1.25rem;
}
.active\:gap-6:active {
  gap: 1.5rem;
}
.active\:gap-7:active {
  gap: 1.75rem;
}
.active\:gap-8:active {
  gap: 2rem;
}
.active\:gap-9:active {
  gap: 2.25rem;
}
.active\:rounded-lg:active {
  border-radius: var(--radius);
}
.active\:rounded-md:active {
  border-radius: calc(var(--radius) - 2px);
}
.active\:rounded-b-lg:active {
  border-bottom-right-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}
.active\:rounded-b-md:active {
  border-bottom-right-radius: calc(var(--radius) - 2px);
  border-bottom-left-radius: calc(var(--radius) - 2px);
}
.active\:rounded-e-lg:active {
  border-start-end-radius: var(--radius);
  border-end-end-radius: var(--radius);
}
.active\:rounded-e-md:active {
  border-start-end-radius: calc(var(--radius) - 2px);
  border-end-end-radius: calc(var(--radius) - 2px);
}
.active\:rounded-l-lg:active {
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}
.active\:rounded-l-md:active {
  border-top-left-radius: calc(var(--radius) - 2px);
  border-bottom-left-radius: calc(var(--radius) - 2px);
}
.active\:rounded-r-lg:active {
  border-top-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}
.active\:rounded-r-md:active {
  border-top-right-radius: calc(var(--radius) - 2px);
  border-bottom-right-radius: calc(var(--radius) - 2px);
}
.active\:rounded-s-lg:active {
  border-start-start-radius: var(--radius);
  border-end-start-radius: var(--radius);
}
.active\:rounded-s-md:active {
  border-start-start-radius: calc(var(--radius) - 2px);
  border-end-start-radius: calc(var(--radius) - 2px);
}
.active\:rounded-t-lg:active {
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}
.active\:rounded-t-md:active {
  border-top-left-radius: calc(var(--radius) - 2px);
  border-top-right-radius: calc(var(--radius) - 2px);
}
.active\:rounded-bl-lg:active {
  border-bottom-left-radius: var(--radius);
}
.active\:rounded-bl-md:active {
  border-bottom-left-radius: calc(var(--radius) - 2px);
}
.active\:rounded-br-lg:active {
  border-bottom-right-radius: var(--radius);
}
.active\:rounded-br-md:active {
  border-bottom-right-radius: calc(var(--radius) - 2px);
}
.active\:rounded-ee-lg:active {
  border-end-end-radius: var(--radius);
}
.active\:rounded-ee-md:active {
  border-end-end-radius: calc(var(--radius) - 2px);
}
.active\:rounded-es-lg:active {
  border-end-start-radius: var(--radius);
}
.active\:rounded-es-md:active {
  border-end-start-radius: calc(var(--radius) - 2px);
}
.active\:rounded-se-lg:active {
  border-start-end-radius: var(--radius);
}
.active\:rounded-se-md:active {
  border-start-end-radius: calc(var(--radius) - 2px);
}
.active\:rounded-ss-lg:active {
  border-start-start-radius: var(--radius);
}
.active\:rounded-ss-md:active {
  border-start-start-radius: calc(var(--radius) - 2px);
}
.active\:rounded-tl-lg:active {
  border-top-left-radius: var(--radius);
}
.active\:rounded-tl-md:active {
  border-top-left-radius: calc(var(--radius) - 2px);
}
.active\:rounded-tr-lg:active {
  border-top-right-radius: var(--radius);
}
.active\:rounded-tr-md:active {
  border-top-right-radius: calc(var(--radius) - 2px);
}
.active\:border-none:active {
  border-style: none;
}
.active\:border-amber-100:active {
  --tw-border-opacity: 1;
  border-color: rgb(254 243 199 / var(--tw-border-opacity, 1));
}
.active\:border-amber-200:active {
  --tw-border-opacity: 1;
  border-color: rgb(253 230 138 / var(--tw-border-opacity, 1));
}
.active\:border-amber-300:active {
  --tw-border-opacity: 1;
  border-color: rgb(252 211 77 / var(--tw-border-opacity, 1));
}
.active\:border-amber-400:active {
  --tw-border-opacity: 1;
  border-color: rgb(251 191 36 / var(--tw-border-opacity, 1));
}
.active\:border-amber-50:active {
  --tw-border-opacity: 1;
  border-color: rgb(255 251 235 / var(--tw-border-opacity, 1));
}
.active\:border-amber-500:active {
  --tw-border-opacity: 1;
  border-color: rgb(245 158 11 / var(--tw-border-opacity, 1));
}
.active\:border-amber-600:active {
  --tw-border-opacity: 1;
  border-color: rgb(217 119 6 / var(--tw-border-opacity, 1));
}
.active\:border-amber-700:active {
  --tw-border-opacity: 1;
  border-color: rgb(180 83 9 / var(--tw-border-opacity, 1));
}
.active\:border-amber-800:active {
  --tw-border-opacity: 1;
  border-color: rgb(146 64 14 / var(--tw-border-opacity, 1));
}
.active\:border-amber-900:active {
  --tw-border-opacity: 1;
  border-color: rgb(120 53 15 / var(--tw-border-opacity, 1));
}
.active\:border-amber-950:active {
  --tw-border-opacity: 1;
  border-color: rgb(69 26 3 / var(--tw-border-opacity, 1));
}
.active\:border-blue-100:active {
  --tw-border-opacity: 1;
  border-color: rgb(219 234 254 / var(--tw-border-opacity, 1));
}
.active\:border-blue-200:active {
  --tw-border-opacity: 1;
  border-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
}
.active\:border-blue-300:active {
  --tw-border-opacity: 1;
  border-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
}
.active\:border-blue-400:active {
  --tw-border-opacity: 1;
  border-color: rgb(96 165 250 / var(--tw-border-opacity, 1));
}
.active\:border-blue-50:active {
  --tw-border-opacity: 1;
  border-color: rgb(239 246 255 / var(--tw-border-opacity, 1));
}
.active\:border-blue-500:active {
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
}
.active\:border-blue-600:active {
  --tw-border-opacity: 1;
  border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}
.active\:border-blue-700:active {
  --tw-border-opacity: 1;
  border-color: rgb(29 78 216 / var(--tw-border-opacity, 1));
}
.active\:border-blue-800:active {
  --tw-border-opacity: 1;
  border-color: rgb(30 64 175 / var(--tw-border-opacity, 1));
}
.active\:border-blue-900:active {
  --tw-border-opacity: 1;
  border-color: rgb(30 58 138 / var(--tw-border-opacity, 1));
}
.active\:border-blue-950:active {
  --tw-border-opacity: 1;
  border-color: rgb(23 37 84 / var(--tw-border-opacity, 1));
}
.active\:border-cyan-100:active {
  --tw-border-opacity: 1;
  border-color: rgb(207 250 254 / var(--tw-border-opacity, 1));
}
.active\:border-cyan-200:active {
  --tw-border-opacity: 1;
  border-color: rgb(165 243 252 / var(--tw-border-opacity, 1));
}
.active\:border-cyan-300:active {
  --tw-border-opacity: 1;
  border-color: rgb(103 232 249 / var(--tw-border-opacity, 1));
}
.active\:border-cyan-400:active {
  --tw-border-opacity: 1;
  border-color: rgb(34 211 238 / var(--tw-border-opacity, 1));
}
.active\:border-cyan-50:active {
  --tw-border-opacity: 1;
  border-color: rgb(236 254 255 / var(--tw-border-opacity, 1));
}
.active\:border-cyan-500:active {
  --tw-border-opacity: 1;
  border-color: rgb(6 182 212 / var(--tw-border-opacity, 1));
}
.active\:border-cyan-600:active {
  --tw-border-opacity: 1;
  border-color: rgb(8 145 178 / var(--tw-border-opacity, 1));
}
.active\:border-cyan-700:active {
  --tw-border-opacity: 1;
  border-color: rgb(14 116 144 / var(--tw-border-opacity, 1));
}
.active\:border-cyan-800:active {
  --tw-border-opacity: 1;
  border-color: rgb(21 94 117 / var(--tw-border-opacity, 1));
}
.active\:border-cyan-900:active {
  --tw-border-opacity: 1;
  border-color: rgb(22 78 99 / var(--tw-border-opacity, 1));
}
.active\:border-cyan-950:active {
  --tw-border-opacity: 1;
  border-color: rgb(8 51 68 / var(--tw-border-opacity, 1));
}
.active\:border-emerald-100:active {
  --tw-border-opacity: 1;
  border-color: rgb(209 250 229 / var(--tw-border-opacity, 1));
}
.active\:border-emerald-200:active {
  --tw-border-opacity: 1;
  border-color: rgb(167 243 208 / var(--tw-border-opacity, 1));
}
.active\:border-emerald-300:active {
  --tw-border-opacity: 1;
  border-color: rgb(110 231 183 / var(--tw-border-opacity, 1));
}
.active\:border-emerald-400:active {
  --tw-border-opacity: 1;
  border-color: rgb(52 211 153 / var(--tw-border-opacity, 1));
}
.active\:border-emerald-50:active {
  --tw-border-opacity: 1;
  border-color: rgb(236 253 245 / var(--tw-border-opacity, 1));
}
.active\:border-emerald-500:active {
  --tw-border-opacity: 1;
  border-color: rgb(16 185 129 / var(--tw-border-opacity, 1));
}
.active\:border-emerald-600:active {
  --tw-border-opacity: 1;
  border-color: rgb(5 150 105 / var(--tw-border-opacity, 1));
}
.active\:border-emerald-700:active {
  --tw-border-opacity: 1;
  border-color: rgb(4 120 87 / var(--tw-border-opacity, 1));
}
.active\:border-emerald-800:active {
  --tw-border-opacity: 1;
  border-color: rgb(6 95 70 / var(--tw-border-opacity, 1));
}
.active\:border-emerald-900:active {
  --tw-border-opacity: 1;
  border-color: rgb(6 78 59 / var(--tw-border-opacity, 1));
}
.active\:border-emerald-950:active {
  --tw-border-opacity: 1;
  border-color: rgb(2 44 34 / var(--tw-border-opacity, 1));
}
.active\:border-fuchsia-100:active {
  --tw-border-opacity: 1;
  border-color: rgb(250 232 255 / var(--tw-border-opacity, 1));
}
.active\:border-fuchsia-200:active {
  --tw-border-opacity: 1;
  border-color: rgb(245 208 254 / var(--tw-border-opacity, 1));
}
.active\:border-fuchsia-300:active {
  --tw-border-opacity: 1;
  border-color: rgb(240 171 252 / var(--tw-border-opacity, 1));
}
.active\:border-fuchsia-400:active {
  --tw-border-opacity: 1;
  border-color: rgb(232 121 249 / var(--tw-border-opacity, 1));
}
.active\:border-fuchsia-50:active {
  --tw-border-opacity: 1;
  border-color: rgb(253 244 255 / var(--tw-border-opacity, 1));
}
.active\:border-fuchsia-500:active {
  --tw-border-opacity: 1;
  border-color: rgb(217 70 239 / var(--tw-border-opacity, 1));
}
.active\:border-fuchsia-600:active {
  --tw-border-opacity: 1;
  border-color: rgb(192 38 211 / var(--tw-border-opacity, 1));
}
.active\:border-fuchsia-700:active {
  --tw-border-opacity: 1;
  border-color: rgb(162 28 175 / var(--tw-border-opacity, 1));
}
.active\:border-fuchsia-800:active {
  --tw-border-opacity: 1;
  border-color: rgb(134 25 143 / var(--tw-border-opacity, 1));
}
.active\:border-fuchsia-900:active {
  --tw-border-opacity: 1;
  border-color: rgb(112 26 117 / var(--tw-border-opacity, 1));
}
.active\:border-fuchsia-950:active {
  --tw-border-opacity: 1;
  border-color: rgb(74 4 78 / var(--tw-border-opacity, 1));
}
.active\:border-gray-100:active {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}
.active\:border-gray-200:active {
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.active\:border-gray-300:active {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.active\:border-gray-400:active {
  --tw-border-opacity: 1;
  border-color: rgb(156 163 175 / var(--tw-border-opacity, 1));
}
.active\:border-gray-50:active {
  --tw-border-opacity: 1;
  border-color: rgb(249 250 251 / var(--tw-border-opacity, 1));
}
.active\:border-gray-500:active {
  --tw-border-opacity: 1;
  border-color: rgb(107 114 128 / var(--tw-border-opacity, 1));
}
.active\:border-gray-600:active {
  --tw-border-opacity: 1;
  border-color: rgb(75 85 99 / var(--tw-border-opacity, 1));
}
.active\:border-gray-700:active {
  --tw-border-opacity: 1;
  border-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
}
.active\:border-gray-800:active {
  --tw-border-opacity: 1;
  border-color: rgb(31 41 55 / var(--tw-border-opacity, 1));
}
.active\:border-gray-900:active {
  --tw-border-opacity: 1;
  border-color: rgb(17 24 39 / var(--tw-border-opacity, 1));
}
.active\:border-gray-950:active {
  --tw-border-opacity: 1;
  border-color: rgb(3 7 18 / var(--tw-border-opacity, 1));
}
.active\:border-green-100:active {
  --tw-border-opacity: 1;
  border-color: rgb(220 252 231 / var(--tw-border-opacity, 1));
}
.active\:border-green-200:active {
  --tw-border-opacity: 1;
  border-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
}
.active\:border-green-300:active {
  --tw-border-opacity: 1;
  border-color: rgb(134 239 172 / var(--tw-border-opacity, 1));
}
.active\:border-green-400:active {
  --tw-border-opacity: 1;
  border-color: rgb(74 222 128 / var(--tw-border-opacity, 1));
}
.active\:border-green-50:active {
  --tw-border-opacity: 1;
  border-color: rgb(240 253 244 / var(--tw-border-opacity, 1));
}
.active\:border-green-500:active {
  --tw-border-opacity: 1;
  border-color: rgb(34 197 94 / var(--tw-border-opacity, 1));
}
.active\:border-green-600:active {
  --tw-border-opacity: 1;
  border-color: rgb(22 163 74 / var(--tw-border-opacity, 1));
}
.active\:border-green-700:active {
  --tw-border-opacity: 1;
  border-color: rgb(21 128 61 / var(--tw-border-opacity, 1));
}
.active\:border-green-800:active {
  --tw-border-opacity: 1;
  border-color: rgb(22 101 52 / var(--tw-border-opacity, 1));
}
.active\:border-green-900:active {
  --tw-border-opacity: 1;
  border-color: rgb(20 83 45 / var(--tw-border-opacity, 1));
}
.active\:border-green-950:active {
  --tw-border-opacity: 1;
  border-color: rgb(5 46 22 / var(--tw-border-opacity, 1));
}
.active\:border-indigo-100:active {
  --tw-border-opacity: 1;
  border-color: rgb(224 231 255 / var(--tw-border-opacity, 1));
}
.active\:border-indigo-200:active {
  --tw-border-opacity: 1;
  border-color: rgb(199 210 254 / var(--tw-border-opacity, 1));
}
.active\:border-indigo-300:active {
  --tw-border-opacity: 1;
  border-color: rgb(165 180 252 / var(--tw-border-opacity, 1));
}
.active\:border-indigo-400:active {
  --tw-border-opacity: 1;
  border-color: rgb(129 140 248 / var(--tw-border-opacity, 1));
}
.active\:border-indigo-50:active {
  --tw-border-opacity: 1;
  border-color: rgb(238 242 255 / var(--tw-border-opacity, 1));
}
.active\:border-indigo-500:active {
  --tw-border-opacity: 1;
  border-color: rgb(99 102 241 / var(--tw-border-opacity, 1));
}
.active\:border-indigo-600:active {
  --tw-border-opacity: 1;
  border-color: rgb(79 70 229 / var(--tw-border-opacity, 1));
}
.active\:border-indigo-700:active {
  --tw-border-opacity: 1;
  border-color: rgb(67 56 202 / var(--tw-border-opacity, 1));
}
.active\:border-indigo-800:active {
  --tw-border-opacity: 1;
  border-color: rgb(55 48 163 / var(--tw-border-opacity, 1));
}
.active\:border-indigo-900:active {
  --tw-border-opacity: 1;
  border-color: rgb(49 46 129 / var(--tw-border-opacity, 1));
}
.active\:border-indigo-950:active {
  --tw-border-opacity: 1;
  border-color: rgb(30 27 75 / var(--tw-border-opacity, 1));
}
.active\:border-lime-100:active {
  --tw-border-opacity: 1;
  border-color: rgb(236 252 203 / var(--tw-border-opacity, 1));
}
.active\:border-lime-200:active {
  --tw-border-opacity: 1;
  border-color: rgb(217 249 157 / var(--tw-border-opacity, 1));
}
.active\:border-lime-300:active {
  --tw-border-opacity: 1;
  border-color: rgb(190 242 100 / var(--tw-border-opacity, 1));
}
.active\:border-lime-400:active {
  --tw-border-opacity: 1;
  border-color: rgb(163 230 53 / var(--tw-border-opacity, 1));
}
.active\:border-lime-50:active {
  --tw-border-opacity: 1;
  border-color: rgb(247 254 231 / var(--tw-border-opacity, 1));
}
.active\:border-lime-500:active {
  --tw-border-opacity: 1;
  border-color: rgb(132 204 22 / var(--tw-border-opacity, 1));
}
.active\:border-lime-600:active {
  --tw-border-opacity: 1;
  border-color: rgb(101 163 13 / var(--tw-border-opacity, 1));
}
.active\:border-lime-700:active {
  --tw-border-opacity: 1;
  border-color: rgb(77 124 15 / var(--tw-border-opacity, 1));
}
.active\:border-lime-800:active {
  --tw-border-opacity: 1;
  border-color: rgb(63 98 18 / var(--tw-border-opacity, 1));
}
.active\:border-lime-900:active {
  --tw-border-opacity: 1;
  border-color: rgb(54 83 20 / var(--tw-border-opacity, 1));
}
.active\:border-lime-950:active {
  --tw-border-opacity: 1;
  border-color: rgb(26 46 5 / var(--tw-border-opacity, 1));
}
.active\:border-neutral-100:active {
  --tw-border-opacity: 1;
  border-color: rgb(245 245 245 / var(--tw-border-opacity, 1));
}
.active\:border-neutral-200:active {
  --tw-border-opacity: 1;
  border-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
}
.active\:border-neutral-300:active {
  --tw-border-opacity: 1;
  border-color: rgb(212 212 212 / var(--tw-border-opacity, 1));
}
.active\:border-neutral-400:active {
  --tw-border-opacity: 1;
  border-color: rgb(163 163 163 / var(--tw-border-opacity, 1));
}
.active\:border-neutral-50:active {
  --tw-border-opacity: 1;
  border-color: rgb(250 250 250 / var(--tw-border-opacity, 1));
}
.active\:border-neutral-500:active {
  --tw-border-opacity: 1;
  border-color: rgb(115 115 115 / var(--tw-border-opacity, 1));
}
.active\:border-neutral-600:active {
  --tw-border-opacity: 1;
  border-color: rgb(82 82 82 / var(--tw-border-opacity, 1));
}
.active\:border-neutral-700:active {
  --tw-border-opacity: 1;
  border-color: rgb(64 64 64 / var(--tw-border-opacity, 1));
}
.active\:border-neutral-800:active {
  --tw-border-opacity: 1;
  border-color: rgb(38 38 38 / var(--tw-border-opacity, 1));
}
.active\:border-neutral-900:active {
  --tw-border-opacity: 1;
  border-color: rgb(23 23 23 / var(--tw-border-opacity, 1));
}
.active\:border-neutral-950:active {
  --tw-border-opacity: 1;
  border-color: rgb(10 10 10 / var(--tw-border-opacity, 1));
}
.active\:border-orange-100:active {
  --tw-border-opacity: 1;
  border-color: rgb(255 237 213 / var(--tw-border-opacity, 1));
}
.active\:border-orange-200:active {
  --tw-border-opacity: 1;
  border-color: rgb(254 215 170 / var(--tw-border-opacity, 1));
}
.active\:border-orange-300:active {
  --tw-border-opacity: 1;
  border-color: rgb(253 186 116 / var(--tw-border-opacity, 1));
}
.active\:border-orange-400:active {
  --tw-border-opacity: 1;
  border-color: rgb(251 146 60 / var(--tw-border-opacity, 1));
}
.active\:border-orange-50:active {
  --tw-border-opacity: 1;
  border-color: rgb(255 247 237 / var(--tw-border-opacity, 1));
}
.active\:border-orange-500:active {
  --tw-border-opacity: 1;
  border-color: rgb(249 115 22 / var(--tw-border-opacity, 1));
}
.active\:border-orange-600:active {
  --tw-border-opacity: 1;
  border-color: rgb(234 88 12 / var(--tw-border-opacity, 1));
}
.active\:border-orange-700:active {
  --tw-border-opacity: 1;
  border-color: rgb(194 65 12 / var(--tw-border-opacity, 1));
}
.active\:border-orange-800:active {
  --tw-border-opacity: 1;
  border-color: rgb(154 52 18 / var(--tw-border-opacity, 1));
}
.active\:border-orange-900:active {
  --tw-border-opacity: 1;
  border-color: rgb(124 45 18 / var(--tw-border-opacity, 1));
}
.active\:border-orange-950:active {
  --tw-border-opacity: 1;
  border-color: rgb(67 20 7 / var(--tw-border-opacity, 1));
}
.active\:border-pink-100:active {
  --tw-border-opacity: 1;
  border-color: rgb(252 231 243 / var(--tw-border-opacity, 1));
}
.active\:border-pink-200:active {
  --tw-border-opacity: 1;
  border-color: rgb(251 207 232 / var(--tw-border-opacity, 1));
}
.active\:border-pink-300:active {
  --tw-border-opacity: 1;
  border-color: rgb(249 168 212 / var(--tw-border-opacity, 1));
}
.active\:border-pink-400:active {
  --tw-border-opacity: 1;
  border-color: rgb(244 114 182 / var(--tw-border-opacity, 1));
}
.active\:border-pink-50:active {
  --tw-border-opacity: 1;
  border-color: rgb(253 242 248 / var(--tw-border-opacity, 1));
}
.active\:border-pink-500:active {
  --tw-border-opacity: 1;
  border-color: rgb(236 72 153 / var(--tw-border-opacity, 1));
}
.active\:border-pink-600:active {
  --tw-border-opacity: 1;
  border-color: rgb(219 39 119 / var(--tw-border-opacity, 1));
}
.active\:border-pink-700:active {
  --tw-border-opacity: 1;
  border-color: rgb(190 24 93 / var(--tw-border-opacity, 1));
}
.active\:border-pink-800:active {
  --tw-border-opacity: 1;
  border-color: rgb(157 23 77 / var(--tw-border-opacity, 1));
}
.active\:border-pink-900:active {
  --tw-border-opacity: 1;
  border-color: rgb(131 24 67 / var(--tw-border-opacity, 1));
}
.active\:border-pink-950:active {
  --tw-border-opacity: 1;
  border-color: rgb(80 7 36 / var(--tw-border-opacity, 1));
}
.active\:border-purple-100:active {
  --tw-border-opacity: 1;
  border-color: rgb(243 232 255 / var(--tw-border-opacity, 1));
}
.active\:border-purple-200:active {
  --tw-border-opacity: 1;
  border-color: rgb(233 213 255 / var(--tw-border-opacity, 1));
}
.active\:border-purple-300:active {
  --tw-border-opacity: 1;
  border-color: rgb(216 180 254 / var(--tw-border-opacity, 1));
}
.active\:border-purple-400:active {
  --tw-border-opacity: 1;
  border-color: rgb(192 132 252 / var(--tw-border-opacity, 1));
}
.active\:border-purple-50:active {
  --tw-border-opacity: 1;
  border-color: rgb(250 245 255 / var(--tw-border-opacity, 1));
}
.active\:border-purple-500:active {
  --tw-border-opacity: 1;
  border-color: rgb(168 85 247 / var(--tw-border-opacity, 1));
}
.active\:border-purple-600:active {
  --tw-border-opacity: 1;
  border-color: rgb(147 51 234 / var(--tw-border-opacity, 1));
}
.active\:border-purple-700:active {
  --tw-border-opacity: 1;
  border-color: rgb(126 34 206 / var(--tw-border-opacity, 1));
}
.active\:border-purple-800:active {
  --tw-border-opacity: 1;
  border-color: rgb(107 33 168 / var(--tw-border-opacity, 1));
}
.active\:border-purple-900:active {
  --tw-border-opacity: 1;
  border-color: rgb(88 28 135 / var(--tw-border-opacity, 1));
}
.active\:border-purple-950:active {
  --tw-border-opacity: 1;
  border-color: rgb(59 7 100 / var(--tw-border-opacity, 1));
}
.active\:border-red-100:active {
  --tw-border-opacity: 1;
  border-color: rgb(254 226 226 / var(--tw-border-opacity, 1));
}
.active\:border-red-200:active {
  --tw-border-opacity: 1;
  border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}
.active\:border-red-300:active {
  --tw-border-opacity: 1;
  border-color: rgb(252 165 165 / var(--tw-border-opacity, 1));
}
.active\:border-red-400:active {
  --tw-border-opacity: 1;
  border-color: rgb(248 113 113 / var(--tw-border-opacity, 1));
}
.active\:border-red-50:active {
  --tw-border-opacity: 1;
  border-color: rgb(254 242 242 / var(--tw-border-opacity, 1));
}
.active\:border-red-500:active {
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}
.active\:border-red-600:active {
  --tw-border-opacity: 1;
  border-color: rgb(220 38 38 / var(--tw-border-opacity, 1));
}
.active\:border-red-700:active {
  --tw-border-opacity: 1;
  border-color: rgb(185 28 28 / var(--tw-border-opacity, 1));
}
.active\:border-red-800:active {
  --tw-border-opacity: 1;
  border-color: rgb(153 27 27 / var(--tw-border-opacity, 1));
}
.active\:border-red-900:active {
  --tw-border-opacity: 1;
  border-color: rgb(127 29 29 / var(--tw-border-opacity, 1));
}
.active\:border-red-950:active {
  --tw-border-opacity: 1;
  border-color: rgb(69 10 10 / var(--tw-border-opacity, 1));
}
.active\:border-rose-100:active {
  --tw-border-opacity: 1;
  border-color: rgb(255 228 230 / var(--tw-border-opacity, 1));
}
.active\:border-rose-200:active {
  --tw-border-opacity: 1;
  border-color: rgb(254 205 211 / var(--tw-border-opacity, 1));
}
.active\:border-rose-300:active {
  --tw-border-opacity: 1;
  border-color: rgb(253 164 175 / var(--tw-border-opacity, 1));
}
.active\:border-rose-400:active {
  --tw-border-opacity: 1;
  border-color: rgb(251 113 133 / var(--tw-border-opacity, 1));
}
.active\:border-rose-50:active {
  --tw-border-opacity: 1;
  border-color: rgb(255 241 242 / var(--tw-border-opacity, 1));
}
.active\:border-rose-500:active {
  --tw-border-opacity: 1;
  border-color: rgb(244 63 94 / var(--tw-border-opacity, 1));
}
.active\:border-rose-600:active {
  --tw-border-opacity: 1;
  border-color: rgb(225 29 72 / var(--tw-border-opacity, 1));
}
.active\:border-rose-700:active {
  --tw-border-opacity: 1;
  border-color: rgb(190 18 60 / var(--tw-border-opacity, 1));
}
.active\:border-rose-800:active {
  --tw-border-opacity: 1;
  border-color: rgb(159 18 57 / var(--tw-border-opacity, 1));
}
.active\:border-rose-900:active {
  --tw-border-opacity: 1;
  border-color: rgb(136 19 55 / var(--tw-border-opacity, 1));
}
.active\:border-rose-950:active {
  --tw-border-opacity: 1;
  border-color: rgb(76 5 25 / var(--tw-border-opacity, 1));
}
.active\:border-sky-100:active {
  --tw-border-opacity: 1;
  border-color: rgb(224 242 254 / var(--tw-border-opacity, 1));
}
.active\:border-sky-200:active {
  --tw-border-opacity: 1;
  border-color: rgb(186 230 253 / var(--tw-border-opacity, 1));
}
.active\:border-sky-300:active {
  --tw-border-opacity: 1;
  border-color: rgb(125 211 252 / var(--tw-border-opacity, 1));
}
.active\:border-sky-400:active {
  --tw-border-opacity: 1;
  border-color: rgb(56 189 248 / var(--tw-border-opacity, 1));
}
.active\:border-sky-50:active {
  --tw-border-opacity: 1;
  border-color: rgb(240 249 255 / var(--tw-border-opacity, 1));
}
.active\:border-sky-500:active {
  --tw-border-opacity: 1;
  border-color: rgb(14 165 233 / var(--tw-border-opacity, 1));
}
.active\:border-sky-600:active {
  --tw-border-opacity: 1;
  border-color: rgb(2 132 199 / var(--tw-border-opacity, 1));
}
.active\:border-sky-700:active {
  --tw-border-opacity: 1;
  border-color: rgb(3 105 161 / var(--tw-border-opacity, 1));
}
.active\:border-sky-800:active {
  --tw-border-opacity: 1;
  border-color: rgb(7 89 133 / var(--tw-border-opacity, 1));
}
.active\:border-sky-900:active {
  --tw-border-opacity: 1;
  border-color: rgb(12 74 110 / var(--tw-border-opacity, 1));
}
.active\:border-sky-950:active {
  --tw-border-opacity: 1;
  border-color: rgb(8 47 73 / var(--tw-border-opacity, 1));
}
.active\:border-slate-100:active {
  --tw-border-opacity: 1;
  border-color: rgb(241 245 249 / var(--tw-border-opacity, 1));
}
.active\:border-slate-200:active {
  --tw-border-opacity: 1;
  border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
}
.active\:border-slate-300:active {
  --tw-border-opacity: 1;
  border-color: rgb(203 213 225 / var(--tw-border-opacity, 1));
}
.active\:border-slate-400:active {
  --tw-border-opacity: 1;
  border-color: rgb(148 163 184 / var(--tw-border-opacity, 1));
}
.active\:border-slate-50:active {
  --tw-border-opacity: 1;
  border-color: rgb(248 250 252 / var(--tw-border-opacity, 1));
}
.active\:border-slate-500:active {
  --tw-border-opacity: 1;
  border-color: rgb(100 116 139 / var(--tw-border-opacity, 1));
}
.active\:border-slate-600:active {
  --tw-border-opacity: 1;
  border-color: rgb(71 85 105 / var(--tw-border-opacity, 1));
}
.active\:border-slate-700:active {
  --tw-border-opacity: 1;
  border-color: rgb(51 65 85 / var(--tw-border-opacity, 1));
}
.active\:border-slate-800:active {
  --tw-border-opacity: 1;
  border-color: rgb(30 41 59 / var(--tw-border-opacity, 1));
}
.active\:border-slate-900:active {
  --tw-border-opacity: 1;
  border-color: rgb(15 23 42 / var(--tw-border-opacity, 1));
}
.active\:border-slate-950:active {
  --tw-border-opacity: 1;
  border-color: rgb(2 6 23 / var(--tw-border-opacity, 1));
}
.active\:border-stone-100:active {
  --tw-border-opacity: 1;
  border-color: rgb(245 245 244 / var(--tw-border-opacity, 1));
}
.active\:border-stone-200:active {
  --tw-border-opacity: 1;
  border-color: rgb(231 229 228 / var(--tw-border-opacity, 1));
}
.active\:border-stone-300:active {
  --tw-border-opacity: 1;
  border-color: rgb(214 211 209 / var(--tw-border-opacity, 1));
}
.active\:border-stone-400:active {
  --tw-border-opacity: 1;
  border-color: rgb(168 162 158 / var(--tw-border-opacity, 1));
}
.active\:border-stone-50:active {
  --tw-border-opacity: 1;
  border-color: rgb(250 250 249 / var(--tw-border-opacity, 1));
}
.active\:border-stone-500:active {
  --tw-border-opacity: 1;
  border-color: rgb(120 113 108 / var(--tw-border-opacity, 1));
}
.active\:border-stone-600:active {
  --tw-border-opacity: 1;
  border-color: rgb(87 83 78 / var(--tw-border-opacity, 1));
}
.active\:border-stone-700:active {
  --tw-border-opacity: 1;
  border-color: rgb(68 64 60 / var(--tw-border-opacity, 1));
}
.active\:border-stone-800:active {
  --tw-border-opacity: 1;
  border-color: rgb(41 37 36 / var(--tw-border-opacity, 1));
}
.active\:border-stone-900:active {
  --tw-border-opacity: 1;
  border-color: rgb(28 25 23 / var(--tw-border-opacity, 1));
}
.active\:border-stone-950:active {
  --tw-border-opacity: 1;
  border-color: rgb(12 10 9 / var(--tw-border-opacity, 1));
}
.active\:border-teal-100:active {
  --tw-border-opacity: 1;
  border-color: rgb(204 251 241 / var(--tw-border-opacity, 1));
}
.active\:border-teal-200:active {
  --tw-border-opacity: 1;
  border-color: rgb(153 246 228 / var(--tw-border-opacity, 1));
}
.active\:border-teal-300:active {
  --tw-border-opacity: 1;
  border-color: rgb(94 234 212 / var(--tw-border-opacity, 1));
}
.active\:border-teal-400:active {
  --tw-border-opacity: 1;
  border-color: rgb(45 212 191 / var(--tw-border-opacity, 1));
}
.active\:border-teal-50:active {
  --tw-border-opacity: 1;
  border-color: rgb(240 253 250 / var(--tw-border-opacity, 1));
}
.active\:border-teal-500:active {
  --tw-border-opacity: 1;
  border-color: rgb(20 184 166 / var(--tw-border-opacity, 1));
}
.active\:border-teal-600:active {
  --tw-border-opacity: 1;
  border-color: rgb(13 148 136 / var(--tw-border-opacity, 1));
}
.active\:border-teal-700:active {
  --tw-border-opacity: 1;
  border-color: rgb(15 118 110 / var(--tw-border-opacity, 1));
}
.active\:border-teal-800:active {
  --tw-border-opacity: 1;
  border-color: rgb(17 94 89 / var(--tw-border-opacity, 1));
}
.active\:border-teal-900:active {
  --tw-border-opacity: 1;
  border-color: rgb(19 78 74 / var(--tw-border-opacity, 1));
}
.active\:border-teal-950:active {
  --tw-border-opacity: 1;
  border-color: rgb(4 47 46 / var(--tw-border-opacity, 1));
}
.active\:border-violet-100:active {
  --tw-border-opacity: 1;
  border-color: rgb(237 233 254 / var(--tw-border-opacity, 1));
}
.active\:border-violet-200:active {
  --tw-border-opacity: 1;
  border-color: rgb(221 214 254 / var(--tw-border-opacity, 1));
}
.active\:border-violet-300:active {
  --tw-border-opacity: 1;
  border-color: rgb(196 181 253 / var(--tw-border-opacity, 1));
}
.active\:border-violet-400:active {
  --tw-border-opacity: 1;
  border-color: rgb(167 139 250 / var(--tw-border-opacity, 1));
}
.active\:border-violet-50:active {
  --tw-border-opacity: 1;
  border-color: rgb(245 243 255 / var(--tw-border-opacity, 1));
}
.active\:border-violet-500:active {
  --tw-border-opacity: 1;
  border-color: rgb(139 92 246 / var(--tw-border-opacity, 1));
}
.active\:border-violet-600:active {
  --tw-border-opacity: 1;
  border-color: rgb(124 58 237 / var(--tw-border-opacity, 1));
}
.active\:border-violet-700:active {
  --tw-border-opacity: 1;
  border-color: rgb(109 40 217 / var(--tw-border-opacity, 1));
}
.active\:border-violet-800:active {
  --tw-border-opacity: 1;
  border-color: rgb(91 33 182 / var(--tw-border-opacity, 1));
}
.active\:border-violet-900:active {
  --tw-border-opacity: 1;
  border-color: rgb(76 29 149 / var(--tw-border-opacity, 1));
}
.active\:border-violet-950:active {
  --tw-border-opacity: 1;
  border-color: rgb(46 16 101 / var(--tw-border-opacity, 1));
}
.active\:border-yellow-100:active {
  --tw-border-opacity: 1;
  border-color: rgb(254 249 195 / var(--tw-border-opacity, 1));
}
.active\:border-yellow-200:active {
  --tw-border-opacity: 1;
  border-color: rgb(254 240 138 / var(--tw-border-opacity, 1));
}
.active\:border-yellow-300:active {
  --tw-border-opacity: 1;
  border-color: rgb(253 224 71 / var(--tw-border-opacity, 1));
}
.active\:border-yellow-400:active {
  --tw-border-opacity: 1;
  border-color: rgb(250 204 21 / var(--tw-border-opacity, 1));
}
.active\:border-yellow-50:active {
  --tw-border-opacity: 1;
  border-color: rgb(254 252 232 / var(--tw-border-opacity, 1));
}
.active\:border-yellow-500:active {
  --tw-border-opacity: 1;
  border-color: rgb(234 179 8 / var(--tw-border-opacity, 1));
}
.active\:border-yellow-600:active {
  --tw-border-opacity: 1;
  border-color: rgb(202 138 4 / var(--tw-border-opacity, 1));
}
.active\:border-yellow-700:active {
  --tw-border-opacity: 1;
  border-color: rgb(161 98 7 / var(--tw-border-opacity, 1));
}
.active\:border-yellow-800:active {
  --tw-border-opacity: 1;
  border-color: rgb(133 77 14 / var(--tw-border-opacity, 1));
}
.active\:border-yellow-900:active {
  --tw-border-opacity: 1;
  border-color: rgb(113 63 18 / var(--tw-border-opacity, 1));
}
.active\:border-yellow-950:active {
  --tw-border-opacity: 1;
  border-color: rgb(66 32 6 / var(--tw-border-opacity, 1));
}
.active\:border-zinc-100:active {
  --tw-border-opacity: 1;
  border-color: rgb(244 244 245 / var(--tw-border-opacity, 1));
}
.active\:border-zinc-200:active {
  --tw-border-opacity: 1;
  border-color: rgb(228 228 231 / var(--tw-border-opacity, 1));
}
.active\:border-zinc-300:active {
  --tw-border-opacity: 1;
  border-color: rgb(212 212 216 / var(--tw-border-opacity, 1));
}
.active\:border-zinc-400:active {
  --tw-border-opacity: 1;
  border-color: rgb(161 161 170 / var(--tw-border-opacity, 1));
}
.active\:border-zinc-50:active {
  --tw-border-opacity: 1;
  border-color: rgb(250 250 250 / var(--tw-border-opacity, 1));
}
.active\:border-zinc-500:active {
  --tw-border-opacity: 1;
  border-color: rgb(113 113 122 / var(--tw-border-opacity, 1));
}
.active\:border-zinc-600:active {
  --tw-border-opacity: 1;
  border-color: rgb(82 82 91 / var(--tw-border-opacity, 1));
}
.active\:border-zinc-700:active {
  --tw-border-opacity: 1;
  border-color: rgb(63 63 70 / var(--tw-border-opacity, 1));
}
.active\:border-zinc-800:active {
  --tw-border-opacity: 1;
  border-color: rgb(39 39 42 / var(--tw-border-opacity, 1));
}
.active\:border-zinc-900:active {
  --tw-border-opacity: 1;
  border-color: rgb(24 24 27 / var(--tw-border-opacity, 1));
}
.active\:border-zinc-950:active {
  --tw-border-opacity: 1;
  border-color: rgb(9 9 11 / var(--tw-border-opacity, 1));
}
.active\:bg-amber-100:active {
  --tw-bg-opacity: 1;
  background-color: rgb(254 243 199 / var(--tw-bg-opacity, 1));
}
.active\:bg-amber-100\/10:active {
  background-color: rgb(254 243 199 / 0.1);
}
.active\:bg-amber-100\/20:active {
  background-color: rgb(254 243 199 / 0.2);
}
.active\:bg-amber-100\/30:active {
  background-color: rgb(254 243 199 / 0.3);
}
.active\:bg-amber-100\/40:active {
  background-color: rgb(254 243 199 / 0.4);
}
.active\:bg-amber-100\/5:active {
  background-color: rgb(254 243 199 / 0.05);
}
.active\:bg-amber-100\/50:active {
  background-color: rgb(254 243 199 / 0.5);
}
.active\:bg-amber-100\/60:active {
  background-color: rgb(254 243 199 / 0.6);
}
.active\:bg-amber-100\/70:active {
  background-color: rgb(254 243 199 / 0.7);
}
.active\:bg-amber-100\/80:active {
  background-color: rgb(254 243 199 / 0.8);
}
.active\:bg-amber-100\/90:active {
  background-color: rgb(254 243 199 / 0.9);
}
.active\:bg-amber-200:active {
  --tw-bg-opacity: 1;
  background-color: rgb(253 230 138 / var(--tw-bg-opacity, 1));
}
.active\:bg-amber-200\/10:active {
  background-color: rgb(253 230 138 / 0.1);
}
.active\:bg-amber-200\/20:active {
  background-color: rgb(253 230 138 / 0.2);
}
.active\:bg-amber-200\/30:active {
  background-color: rgb(253 230 138 / 0.3);
}
.active\:bg-amber-200\/40:active {
  background-color: rgb(253 230 138 / 0.4);
}
.active\:bg-amber-200\/5:active {
  background-color: rgb(253 230 138 / 0.05);
}
.active\:bg-amber-200\/50:active {
  background-color: rgb(253 230 138 / 0.5);
}
.active\:bg-amber-200\/60:active {
  background-color: rgb(253 230 138 / 0.6);
}
.active\:bg-amber-200\/70:active {
  background-color: rgb(253 230 138 / 0.7);
}
.active\:bg-amber-200\/80:active {
  background-color: rgb(253 230 138 / 0.8);
}
.active\:bg-amber-200\/90:active {
  background-color: rgb(253 230 138 / 0.9);
}
.active\:bg-amber-300:active {
  --tw-bg-opacity: 1;
  background-color: rgb(252 211 77 / var(--tw-bg-opacity, 1));
}
.active\:bg-amber-300\/10:active {
  background-color: rgb(252 211 77 / 0.1);
}
.active\:bg-amber-300\/20:active {
  background-color: rgb(252 211 77 / 0.2);
}
.active\:bg-amber-300\/30:active {
  background-color: rgb(252 211 77 / 0.3);
}
.active\:bg-amber-300\/40:active {
  background-color: rgb(252 211 77 / 0.4);
}
.active\:bg-amber-300\/5:active {
  background-color: rgb(252 211 77 / 0.05);
}
.active\:bg-amber-300\/50:active {
  background-color: rgb(252 211 77 / 0.5);
}
.active\:bg-amber-300\/60:active {
  background-color: rgb(252 211 77 / 0.6);
}
.active\:bg-amber-300\/70:active {
  background-color: rgb(252 211 77 / 0.7);
}
.active\:bg-amber-300\/80:active {
  background-color: rgb(252 211 77 / 0.8);
}
.active\:bg-amber-300\/90:active {
  background-color: rgb(252 211 77 / 0.9);
}
.active\:bg-amber-400:active {
  --tw-bg-opacity: 1;
  background-color: rgb(251 191 36 / var(--tw-bg-opacity, 1));
}
.active\:bg-amber-400\/10:active {
  background-color: rgb(251 191 36 / 0.1);
}
.active\:bg-amber-400\/20:active {
  background-color: rgb(251 191 36 / 0.2);
}
.active\:bg-amber-400\/30:active {
  background-color: rgb(251 191 36 / 0.3);
}
.active\:bg-amber-400\/40:active {
  background-color: rgb(251 191 36 / 0.4);
}
.active\:bg-amber-400\/5:active {
  background-color: rgb(251 191 36 / 0.05);
}
.active\:bg-amber-400\/50:active {
  background-color: rgb(251 191 36 / 0.5);
}
.active\:bg-amber-400\/60:active {
  background-color: rgb(251 191 36 / 0.6);
}
.active\:bg-amber-400\/70:active {
  background-color: rgb(251 191 36 / 0.7);
}
.active\:bg-amber-400\/80:active {
  background-color: rgb(251 191 36 / 0.8);
}
.active\:bg-amber-400\/90:active {
  background-color: rgb(251 191 36 / 0.9);
}
.active\:bg-amber-50:active {
  --tw-bg-opacity: 1;
  background-color: rgb(255 251 235 / var(--tw-bg-opacity, 1));
}
.active\:bg-amber-50\/10:active {
  background-color: rgb(255 251 235 / 0.1);
}
.active\:bg-amber-50\/20:active {
  background-color: rgb(255 251 235 / 0.2);
}
.active\:bg-amber-50\/30:active {
  background-color: rgb(255 251 235 / 0.3);
}
.active\:bg-amber-50\/40:active {
  background-color: rgb(255 251 235 / 0.4);
}
.active\:bg-amber-50\/5:active {
  background-color: rgb(255 251 235 / 0.05);
}
.active\:bg-amber-50\/50:active {
  background-color: rgb(255 251 235 / 0.5);
}
.active\:bg-amber-50\/60:active {
  background-color: rgb(255 251 235 / 0.6);
}
.active\:bg-amber-50\/70:active {
  background-color: rgb(255 251 235 / 0.7);
}
.active\:bg-amber-50\/80:active {
  background-color: rgb(255 251 235 / 0.8);
}
.active\:bg-amber-50\/90:active {
  background-color: rgb(255 251 235 / 0.9);
}
.active\:bg-amber-500:active {
  --tw-bg-opacity: 1;
  background-color: rgb(245 158 11 / var(--tw-bg-opacity, 1));
}
.active\:bg-amber-500\/10:active {
  background-color: rgb(245 158 11 / 0.1);
}
.active\:bg-amber-500\/20:active {
  background-color: rgb(245 158 11 / 0.2);
}
.active\:bg-amber-500\/30:active {
  background-color: rgb(245 158 11 / 0.3);
}
.active\:bg-amber-500\/40:active {
  background-color: rgb(245 158 11 / 0.4);
}
.active\:bg-amber-500\/5:active {
  background-color: rgb(245 158 11 / 0.05);
}
.active\:bg-amber-500\/50:active {
  background-color: rgb(245 158 11 / 0.5);
}
.active\:bg-amber-500\/60:active {
  background-color: rgb(245 158 11 / 0.6);
}
.active\:bg-amber-500\/70:active {
  background-color: rgb(245 158 11 / 0.7);
}
.active\:bg-amber-500\/80:active {
  background-color: rgb(245 158 11 / 0.8);
}
.active\:bg-amber-500\/90:active {
  background-color: rgb(245 158 11 / 0.9);
}
.active\:bg-amber-600:active {
  --tw-bg-opacity: 1;
  background-color: rgb(217 119 6 / var(--tw-bg-opacity, 1));
}
.active\:bg-amber-600\/10:active {
  background-color: rgb(217 119 6 / 0.1);
}
.active\:bg-amber-600\/20:active {
  background-color: rgb(217 119 6 / 0.2);
}
.active\:bg-amber-600\/30:active {
  background-color: rgb(217 119 6 / 0.3);
}
.active\:bg-amber-600\/40:active {
  background-color: rgb(217 119 6 / 0.4);
}
.active\:bg-amber-600\/5:active {
  background-color: rgb(217 119 6 / 0.05);
}
.active\:bg-amber-600\/50:active {
  background-color: rgb(217 119 6 / 0.5);
}
.active\:bg-amber-600\/60:active {
  background-color: rgb(217 119 6 / 0.6);
}
.active\:bg-amber-600\/70:active {
  background-color: rgb(217 119 6 / 0.7);
}
.active\:bg-amber-600\/80:active {
  background-color: rgb(217 119 6 / 0.8);
}
.active\:bg-amber-600\/90:active {
  background-color: rgb(217 119 6 / 0.9);
}
.active\:bg-amber-700:active {
  --tw-bg-opacity: 1;
  background-color: rgb(180 83 9 / var(--tw-bg-opacity, 1));
}
.active\:bg-amber-700\/10:active {
  background-color: rgb(180 83 9 / 0.1);
}
.active\:bg-amber-700\/20:active {
  background-color: rgb(180 83 9 / 0.2);
}
.active\:bg-amber-700\/30:active {
  background-color: rgb(180 83 9 / 0.3);
}
.active\:bg-amber-700\/40:active {
  background-color: rgb(180 83 9 / 0.4);
}
.active\:bg-amber-700\/5:active {
  background-color: rgb(180 83 9 / 0.05);
}
.active\:bg-amber-700\/50:active {
  background-color: rgb(180 83 9 / 0.5);
}
.active\:bg-amber-700\/60:active {
  background-color: rgb(180 83 9 / 0.6);
}
.active\:bg-amber-700\/70:active {
  background-color: rgb(180 83 9 / 0.7);
}
.active\:bg-amber-700\/80:active {
  background-color: rgb(180 83 9 / 0.8);
}
.active\:bg-amber-700\/90:active {
  background-color: rgb(180 83 9 / 0.9);
}
.active\:bg-amber-800:active {
  --tw-bg-opacity: 1;
  background-color: rgb(146 64 14 / var(--tw-bg-opacity, 1));
}
.active\:bg-amber-800\/10:active {
  background-color: rgb(146 64 14 / 0.1);
}
.active\:bg-amber-800\/20:active {
  background-color: rgb(146 64 14 / 0.2);
}
.active\:bg-amber-800\/30:active {
  background-color: rgb(146 64 14 / 0.3);
}
.active\:bg-amber-800\/40:active {
  background-color: rgb(146 64 14 / 0.4);
}
.active\:bg-amber-800\/5:active {
  background-color: rgb(146 64 14 / 0.05);
}
.active\:bg-amber-800\/50:active {
  background-color: rgb(146 64 14 / 0.5);
}
.active\:bg-amber-800\/60:active {
  background-color: rgb(146 64 14 / 0.6);
}
.active\:bg-amber-800\/70:active {
  background-color: rgb(146 64 14 / 0.7);
}
.active\:bg-amber-800\/80:active {
  background-color: rgb(146 64 14 / 0.8);
}
.active\:bg-amber-800\/90:active {
  background-color: rgb(146 64 14 / 0.9);
}
.active\:bg-amber-900:active {
  --tw-bg-opacity: 1;
  background-color: rgb(120 53 15 / var(--tw-bg-opacity, 1));
}
.active\:bg-amber-900\/10:active {
  background-color: rgb(120 53 15 / 0.1);
}
.active\:bg-amber-900\/20:active {
  background-color: rgb(120 53 15 / 0.2);
}
.active\:bg-amber-900\/30:active {
  background-color: rgb(120 53 15 / 0.3);
}
.active\:bg-amber-900\/40:active {
  background-color: rgb(120 53 15 / 0.4);
}
.active\:bg-amber-900\/5:active {
  background-color: rgb(120 53 15 / 0.05);
}
.active\:bg-amber-900\/50:active {
  background-color: rgb(120 53 15 / 0.5);
}
.active\:bg-amber-900\/60:active {
  background-color: rgb(120 53 15 / 0.6);
}
.active\:bg-amber-900\/70:active {
  background-color: rgb(120 53 15 / 0.7);
}
.active\:bg-amber-900\/80:active {
  background-color: rgb(120 53 15 / 0.8);
}
.active\:bg-amber-900\/90:active {
  background-color: rgb(120 53 15 / 0.9);
}
.active\:bg-amber-950:active {
  --tw-bg-opacity: 1;
  background-color: rgb(69 26 3 / var(--tw-bg-opacity, 1));
}
.active\:bg-amber-950\/10:active {
  background-color: rgb(69 26 3 / 0.1);
}
.active\:bg-amber-950\/20:active {
  background-color: rgb(69 26 3 / 0.2);
}
.active\:bg-amber-950\/30:active {
  background-color: rgb(69 26 3 / 0.3);
}
.active\:bg-amber-950\/40:active {
  background-color: rgb(69 26 3 / 0.4);
}
.active\:bg-amber-950\/5:active {
  background-color: rgb(69 26 3 / 0.05);
}
.active\:bg-amber-950\/50:active {
  background-color: rgb(69 26 3 / 0.5);
}
.active\:bg-amber-950\/60:active {
  background-color: rgb(69 26 3 / 0.6);
}
.active\:bg-amber-950\/70:active {
  background-color: rgb(69 26 3 / 0.7);
}
.active\:bg-amber-950\/80:active {
  background-color: rgb(69 26 3 / 0.8);
}
.active\:bg-amber-950\/90:active {
  background-color: rgb(69 26 3 / 0.9);
}
.active\:bg-blue-100:active {
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
}
.active\:bg-blue-100\/10:active {
  background-color: rgb(219 234 254 / 0.1);
}
.active\:bg-blue-100\/20:active {
  background-color: rgb(219 234 254 / 0.2);
}
.active\:bg-blue-100\/30:active {
  background-color: rgb(219 234 254 / 0.3);
}
.active\:bg-blue-100\/40:active {
  background-color: rgb(219 234 254 / 0.4);
}
.active\:bg-blue-100\/5:active {
  background-color: rgb(219 234 254 / 0.05);
}
.active\:bg-blue-100\/50:active {
  background-color: rgb(219 234 254 / 0.5);
}
.active\:bg-blue-100\/60:active {
  background-color: rgb(219 234 254 / 0.6);
}
.active\:bg-blue-100\/70:active {
  background-color: rgb(219 234 254 / 0.7);
}
.active\:bg-blue-100\/80:active {
  background-color: rgb(219 234 254 / 0.8);
}
.active\:bg-blue-100\/90:active {
  background-color: rgb(219 234 254 / 0.9);
}
.active\:bg-blue-200:active {
  --tw-bg-opacity: 1;
  background-color: rgb(191 219 254 / var(--tw-bg-opacity, 1));
}
.active\:bg-blue-200\/10:active {
  background-color: rgb(191 219 254 / 0.1);
}
.active\:bg-blue-200\/20:active {
  background-color: rgb(191 219 254 / 0.2);
}
.active\:bg-blue-200\/30:active {
  background-color: rgb(191 219 254 / 0.3);
}
.active\:bg-blue-200\/40:active {
  background-color: rgb(191 219 254 / 0.4);
}
.active\:bg-blue-200\/5:active {
  background-color: rgb(191 219 254 / 0.05);
}
.active\:bg-blue-200\/50:active {
  background-color: rgb(191 219 254 / 0.5);
}
.active\:bg-blue-200\/60:active {
  background-color: rgb(191 219 254 / 0.6);
}
.active\:bg-blue-200\/70:active {
  background-color: rgb(191 219 254 / 0.7);
}
.active\:bg-blue-200\/80:active {
  background-color: rgb(191 219 254 / 0.8);
}
.active\:bg-blue-200\/90:active {
  background-color: rgb(191 219 254 / 0.9);
}
.active\:bg-blue-300:active {
  --tw-bg-opacity: 1;
  background-color: rgb(147 197 253 / var(--tw-bg-opacity, 1));
}
.active\:bg-blue-300\/10:active {
  background-color: rgb(147 197 253 / 0.1);
}
.active\:bg-blue-300\/20:active {
  background-color: rgb(147 197 253 / 0.2);
}
.active\:bg-blue-300\/30:active {
  background-color: rgb(147 197 253 / 0.3);
}
.active\:bg-blue-300\/40:active {
  background-color: rgb(147 197 253 / 0.4);
}
.active\:bg-blue-300\/5:active {
  background-color: rgb(147 197 253 / 0.05);
}
.active\:bg-blue-300\/50:active {
  background-color: rgb(147 197 253 / 0.5);
}
.active\:bg-blue-300\/60:active {
  background-color: rgb(147 197 253 / 0.6);
}
.active\:bg-blue-300\/70:active {
  background-color: rgb(147 197 253 / 0.7);
}
.active\:bg-blue-300\/80:active {
  background-color: rgb(147 197 253 / 0.8);
}
.active\:bg-blue-300\/90:active {
  background-color: rgb(147 197 253 / 0.9);
}
.active\:bg-blue-400:active {
  --tw-bg-opacity: 1;
  background-color: rgb(96 165 250 / var(--tw-bg-opacity, 1));
}
.active\:bg-blue-400\/10:active {
  background-color: rgb(96 165 250 / 0.1);
}
.active\:bg-blue-400\/20:active {
  background-color: rgb(96 165 250 / 0.2);
}
.active\:bg-blue-400\/30:active {
  background-color: rgb(96 165 250 / 0.3);
}
.active\:bg-blue-400\/40:active {
  background-color: rgb(96 165 250 / 0.4);
}
.active\:bg-blue-400\/5:active {
  background-color: rgb(96 165 250 / 0.05);
}
.active\:bg-blue-400\/50:active {
  background-color: rgb(96 165 250 / 0.5);
}
.active\:bg-blue-400\/60:active {
  background-color: rgb(96 165 250 / 0.6);
}
.active\:bg-blue-400\/70:active {
  background-color: rgb(96 165 250 / 0.7);
}
.active\:bg-blue-400\/80:active {
  background-color: rgb(96 165 250 / 0.8);
}
.active\:bg-blue-400\/90:active {
  background-color: rgb(96 165 250 / 0.9);
}
.active\:bg-blue-50:active {
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}
.active\:bg-blue-50\/10:active {
  background-color: rgb(239 246 255 / 0.1);
}
.active\:bg-blue-50\/20:active {
  background-color: rgb(239 246 255 / 0.2);
}
.active\:bg-blue-50\/30:active {
  background-color: rgb(239 246 255 / 0.3);
}
.active\:bg-blue-50\/40:active {
  background-color: rgb(239 246 255 / 0.4);
}
.active\:bg-blue-50\/5:active {
  background-color: rgb(239 246 255 / 0.05);
}
.active\:bg-blue-50\/50:active {
  background-color: rgb(239 246 255 / 0.5);
}
.active\:bg-blue-50\/60:active {
  background-color: rgb(239 246 255 / 0.6);
}
.active\:bg-blue-50\/70:active {
  background-color: rgb(239 246 255 / 0.7);
}
.active\:bg-blue-50\/80:active {
  background-color: rgb(239 246 255 / 0.8);
}
.active\:bg-blue-50\/90:active {
  background-color: rgb(239 246 255 / 0.9);
}
.active\:bg-blue-500:active {
  --tw-bg-opacity: 1;
  background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
}
.active\:bg-blue-500\/10:active {
  background-color: rgb(59 130 246 / 0.1);
}
.active\:bg-blue-500\/20:active {
  background-color: rgb(59 130 246 / 0.2);
}
.active\:bg-blue-500\/30:active {
  background-color: rgb(59 130 246 / 0.3);
}
.active\:bg-blue-500\/40:active {
  background-color: rgb(59 130 246 / 0.4);
}
.active\:bg-blue-500\/5:active {
  background-color: rgb(59 130 246 / 0.05);
}
.active\:bg-blue-500\/50:active {
  background-color: rgb(59 130 246 / 0.5);
}
.active\:bg-blue-500\/60:active {
  background-color: rgb(59 130 246 / 0.6);
}
.active\:bg-blue-500\/70:active {
  background-color: rgb(59 130 246 / 0.7);
}
.active\:bg-blue-500\/80:active {
  background-color: rgb(59 130 246 / 0.8);
}
.active\:bg-blue-500\/90:active {
  background-color: rgb(59 130 246 / 0.9);
}
.active\:bg-blue-600:active {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
.active\:bg-blue-600\/10:active {
  background-color: rgb(37 99 235 / 0.1);
}
.active\:bg-blue-600\/20:active {
  background-color: rgb(37 99 235 / 0.2);
}
.active\:bg-blue-600\/30:active {
  background-color: rgb(37 99 235 / 0.3);
}
.active\:bg-blue-600\/40:active {
  background-color: rgb(37 99 235 / 0.4);
}
.active\:bg-blue-600\/5:active {
  background-color: rgb(37 99 235 / 0.05);
}
.active\:bg-blue-600\/50:active {
  background-color: rgb(37 99 235 / 0.5);
}
.active\:bg-blue-600\/60:active {
  background-color: rgb(37 99 235 / 0.6);
}
.active\:bg-blue-600\/70:active {
  background-color: rgb(37 99 235 / 0.7);
}
.active\:bg-blue-600\/80:active {
  background-color: rgb(37 99 235 / 0.8);
}
.active\:bg-blue-600\/90:active {
  background-color: rgb(37 99 235 / 0.9);
}
.active\:bg-blue-700:active {
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
}
.active\:bg-blue-700\/10:active {
  background-color: rgb(29 78 216 / 0.1);
}
.active\:bg-blue-700\/20:active {
  background-color: rgb(29 78 216 / 0.2);
}
.active\:bg-blue-700\/30:active {
  background-color: rgb(29 78 216 / 0.3);
}
.active\:bg-blue-700\/40:active {
  background-color: rgb(29 78 216 / 0.4);
}
.active\:bg-blue-700\/5:active {
  background-color: rgb(29 78 216 / 0.05);
}
.active\:bg-blue-700\/50:active {
  background-color: rgb(29 78 216 / 0.5);
}
.active\:bg-blue-700\/60:active {
  background-color: rgb(29 78 216 / 0.6);
}
.active\:bg-blue-700\/70:active {
  background-color: rgb(29 78 216 / 0.7);
}
.active\:bg-blue-700\/80:active {
  background-color: rgb(29 78 216 / 0.8);
}
.active\:bg-blue-700\/90:active {
  background-color: rgb(29 78 216 / 0.9);
}
.active\:bg-blue-800:active {
  --tw-bg-opacity: 1;
  background-color: rgb(30 64 175 / var(--tw-bg-opacity, 1));
}
.active\:bg-blue-800\/10:active {
  background-color: rgb(30 64 175 / 0.1);
}
.active\:bg-blue-800\/20:active {
  background-color: rgb(30 64 175 / 0.2);
}
.active\:bg-blue-800\/30:active {
  background-color: rgb(30 64 175 / 0.3);
}
.active\:bg-blue-800\/40:active {
  background-color: rgb(30 64 175 / 0.4);
}
.active\:bg-blue-800\/5:active {
  background-color: rgb(30 64 175 / 0.05);
}
.active\:bg-blue-800\/50:active {
  background-color: rgb(30 64 175 / 0.5);
}
.active\:bg-blue-800\/60:active {
  background-color: rgb(30 64 175 / 0.6);
}
.active\:bg-blue-800\/70:active {
  background-color: rgb(30 64 175 / 0.7);
}
.active\:bg-blue-800\/80:active {
  background-color: rgb(30 64 175 / 0.8);
}
.active\:bg-blue-800\/90:active {
  background-color: rgb(30 64 175 / 0.9);
}
.active\:bg-blue-900:active {
  --tw-bg-opacity: 1;
  background-color: rgb(30 58 138 / var(--tw-bg-opacity, 1));
}
.active\:bg-blue-900\/10:active {
  background-color: rgb(30 58 138 / 0.1);
}
.active\:bg-blue-900\/20:active {
  background-color: rgb(30 58 138 / 0.2);
}
.active\:bg-blue-900\/30:active {
  background-color: rgb(30 58 138 / 0.3);
}
.active\:bg-blue-900\/40:active {
  background-color: rgb(30 58 138 / 0.4);
}
.active\:bg-blue-900\/5:active {
  background-color: rgb(30 58 138 / 0.05);
}
.active\:bg-blue-900\/50:active {
  background-color: rgb(30 58 138 / 0.5);
}
.active\:bg-blue-900\/60:active {
  background-color: rgb(30 58 138 / 0.6);
}
.active\:bg-blue-900\/70:active {
  background-color: rgb(30 58 138 / 0.7);
}
.active\:bg-blue-900\/80:active {
  background-color: rgb(30 58 138 / 0.8);
}
.active\:bg-blue-900\/90:active {
  background-color: rgb(30 58 138 / 0.9);
}
.active\:bg-blue-950:active {
  --tw-bg-opacity: 1;
  background-color: rgb(23 37 84 / var(--tw-bg-opacity, 1));
}
.active\:bg-blue-950\/10:active {
  background-color: rgb(23 37 84 / 0.1);
}
.active\:bg-blue-950\/20:active {
  background-color: rgb(23 37 84 / 0.2);
}
.active\:bg-blue-950\/30:active {
  background-color: rgb(23 37 84 / 0.3);
}
.active\:bg-blue-950\/40:active {
  background-color: rgb(23 37 84 / 0.4);
}
.active\:bg-blue-950\/5:active {
  background-color: rgb(23 37 84 / 0.05);
}
.active\:bg-blue-950\/50:active {
  background-color: rgb(23 37 84 / 0.5);
}
.active\:bg-blue-950\/60:active {
  background-color: rgb(23 37 84 / 0.6);
}
.active\:bg-blue-950\/70:active {
  background-color: rgb(23 37 84 / 0.7);
}
.active\:bg-blue-950\/80:active {
  background-color: rgb(23 37 84 / 0.8);
}
.active\:bg-blue-950\/90:active {
  background-color: rgb(23 37 84 / 0.9);
}
.active\:bg-cyan-100:active {
  --tw-bg-opacity: 1;
  background-color: rgb(207 250 254 / var(--tw-bg-opacity, 1));
}
.active\:bg-cyan-100\/10:active {
  background-color: rgb(207 250 254 / 0.1);
}
.active\:bg-cyan-100\/20:active {
  background-color: rgb(207 250 254 / 0.2);
}
.active\:bg-cyan-100\/30:active {
  background-color: rgb(207 250 254 / 0.3);
}
.active\:bg-cyan-100\/40:active {
  background-color: rgb(207 250 254 / 0.4);
}
.active\:bg-cyan-100\/5:active {
  background-color: rgb(207 250 254 / 0.05);
}
.active\:bg-cyan-100\/50:active {
  background-color: rgb(207 250 254 / 0.5);
}
.active\:bg-cyan-100\/60:active {
  background-color: rgb(207 250 254 / 0.6);
}
.active\:bg-cyan-100\/70:active {
  background-color: rgb(207 250 254 / 0.7);
}
.active\:bg-cyan-100\/80:active {
  background-color: rgb(207 250 254 / 0.8);
}
.active\:bg-cyan-100\/90:active {
  background-color: rgb(207 250 254 / 0.9);
}
.active\:bg-cyan-200:active {
  --tw-bg-opacity: 1;
  background-color: rgb(165 243 252 / var(--tw-bg-opacity, 1));
}
.active\:bg-cyan-200\/10:active {
  background-color: rgb(165 243 252 / 0.1);
}
.active\:bg-cyan-200\/20:active {
  background-color: rgb(165 243 252 / 0.2);
}
.active\:bg-cyan-200\/30:active {
  background-color: rgb(165 243 252 / 0.3);
}
.active\:bg-cyan-200\/40:active {
  background-color: rgb(165 243 252 / 0.4);
}
.active\:bg-cyan-200\/5:active {
  background-color: rgb(165 243 252 / 0.05);
}
.active\:bg-cyan-200\/50:active {
  background-color: rgb(165 243 252 / 0.5);
}
.active\:bg-cyan-200\/60:active {
  background-color: rgb(165 243 252 / 0.6);
}
.active\:bg-cyan-200\/70:active {
  background-color: rgb(165 243 252 / 0.7);
}
.active\:bg-cyan-200\/80:active {
  background-color: rgb(165 243 252 / 0.8);
}
.active\:bg-cyan-200\/90:active {
  background-color: rgb(165 243 252 / 0.9);
}
.active\:bg-cyan-300:active {
  --tw-bg-opacity: 1;
  background-color: rgb(103 232 249 / var(--tw-bg-opacity, 1));
}
.active\:bg-cyan-300\/10:active {
  background-color: rgb(103 232 249 / 0.1);
}
.active\:bg-cyan-300\/20:active {
  background-color: rgb(103 232 249 / 0.2);
}
.active\:bg-cyan-300\/30:active {
  background-color: rgb(103 232 249 / 0.3);
}
.active\:bg-cyan-300\/40:active {
  background-color: rgb(103 232 249 / 0.4);
}
.active\:bg-cyan-300\/5:active {
  background-color: rgb(103 232 249 / 0.05);
}
.active\:bg-cyan-300\/50:active {
  background-color: rgb(103 232 249 / 0.5);
}
.active\:bg-cyan-300\/60:active {
  background-color: rgb(103 232 249 / 0.6);
}
.active\:bg-cyan-300\/70:active {
  background-color: rgb(103 232 249 / 0.7);
}
.active\:bg-cyan-300\/80:active {
  background-color: rgb(103 232 249 / 0.8);
}
.active\:bg-cyan-300\/90:active {
  background-color: rgb(103 232 249 / 0.9);
}
.active\:bg-cyan-400:active {
  --tw-bg-opacity: 1;
  background-color: rgb(34 211 238 / var(--tw-bg-opacity, 1));
}
.active\:bg-cyan-400\/10:active {
  background-color: rgb(34 211 238 / 0.1);
}
.active\:bg-cyan-400\/20:active {
  background-color: rgb(34 211 238 / 0.2);
}
.active\:bg-cyan-400\/30:active {
  background-color: rgb(34 211 238 / 0.3);
}
.active\:bg-cyan-400\/40:active {
  background-color: rgb(34 211 238 / 0.4);
}
.active\:bg-cyan-400\/5:active {
  background-color: rgb(34 211 238 / 0.05);
}
.active\:bg-cyan-400\/50:active {
  background-color: rgb(34 211 238 / 0.5);
}
.active\:bg-cyan-400\/60:active {
  background-color: rgb(34 211 238 / 0.6);
}
.active\:bg-cyan-400\/70:active {
  background-color: rgb(34 211 238 / 0.7);
}
.active\:bg-cyan-400\/80:active {
  background-color: rgb(34 211 238 / 0.8);
}
.active\:bg-cyan-400\/90:active {
  background-color: rgb(34 211 238 / 0.9);
}
.active\:bg-cyan-50:active {
  --tw-bg-opacity: 1;
  background-color: rgb(236 254 255 / var(--tw-bg-opacity, 1));
}
.active\:bg-cyan-50\/10:active {
  background-color: rgb(236 254 255 / 0.1);
}
.active\:bg-cyan-50\/20:active {
  background-color: rgb(236 254 255 / 0.2);
}
.active\:bg-cyan-50\/30:active {
  background-color: rgb(236 254 255 / 0.3);
}
.active\:bg-cyan-50\/40:active {
  background-color: rgb(236 254 255 / 0.4);
}
.active\:bg-cyan-50\/5:active {
  background-color: rgb(236 254 255 / 0.05);
}
.active\:bg-cyan-50\/50:active {
  background-color: rgb(236 254 255 / 0.5);
}
.active\:bg-cyan-50\/60:active {
  background-color: rgb(236 254 255 / 0.6);
}
.active\:bg-cyan-50\/70:active {
  background-color: rgb(236 254 255 / 0.7);
}
.active\:bg-cyan-50\/80:active {
  background-color: rgb(236 254 255 / 0.8);
}
.active\:bg-cyan-50\/90:active {
  background-color: rgb(236 254 255 / 0.9);
}
.active\:bg-cyan-500:active {
  --tw-bg-opacity: 1;
  background-color: rgb(6 182 212 / var(--tw-bg-opacity, 1));
}
.active\:bg-cyan-500\/10:active {
  background-color: rgb(6 182 212 / 0.1);
}
.active\:bg-cyan-500\/20:active {
  background-color: rgb(6 182 212 / 0.2);
}
.active\:bg-cyan-500\/30:active {
  background-color: rgb(6 182 212 / 0.3);
}
.active\:bg-cyan-500\/40:active {
  background-color: rgb(6 182 212 / 0.4);
}
.active\:bg-cyan-500\/5:active {
  background-color: rgb(6 182 212 / 0.05);
}
.active\:bg-cyan-500\/50:active {
  background-color: rgb(6 182 212 / 0.5);
}
.active\:bg-cyan-500\/60:active {
  background-color: rgb(6 182 212 / 0.6);
}
.active\:bg-cyan-500\/70:active {
  background-color: rgb(6 182 212 / 0.7);
}
.active\:bg-cyan-500\/80:active {
  background-color: rgb(6 182 212 / 0.8);
}
.active\:bg-cyan-500\/90:active {
  background-color: rgb(6 182 212 / 0.9);
}
.active\:bg-cyan-600:active {
  --tw-bg-opacity: 1;
  background-color: rgb(8 145 178 / var(--tw-bg-opacity, 1));
}
.active\:bg-cyan-600\/10:active {
  background-color: rgb(8 145 178 / 0.1);
}
.active\:bg-cyan-600\/20:active {
  background-color: rgb(8 145 178 / 0.2);
}
.active\:bg-cyan-600\/30:active {
  background-color: rgb(8 145 178 / 0.3);
}
.active\:bg-cyan-600\/40:active {
  background-color: rgb(8 145 178 / 0.4);
}
.active\:bg-cyan-600\/5:active {
  background-color: rgb(8 145 178 / 0.05);
}
.active\:bg-cyan-600\/50:active {
  background-color: rgb(8 145 178 / 0.5);
}
.active\:bg-cyan-600\/60:active {
  background-color: rgb(8 145 178 / 0.6);
}
.active\:bg-cyan-600\/70:active {
  background-color: rgb(8 145 178 / 0.7);
}
.active\:bg-cyan-600\/80:active {
  background-color: rgb(8 145 178 / 0.8);
}
.active\:bg-cyan-600\/90:active {
  background-color: rgb(8 145 178 / 0.9);
}
.active\:bg-cyan-700:active {
  --tw-bg-opacity: 1;
  background-color: rgb(14 116 144 / var(--tw-bg-opacity, 1));
}
.active\:bg-cyan-700\/10:active {
  background-color: rgb(14 116 144 / 0.1);
}
.active\:bg-cyan-700\/20:active {
  background-color: rgb(14 116 144 / 0.2);
}
.active\:bg-cyan-700\/30:active {
  background-color: rgb(14 116 144 / 0.3);
}
.active\:bg-cyan-700\/40:active {
  background-color: rgb(14 116 144 / 0.4);
}
.active\:bg-cyan-700\/5:active {
  background-color: rgb(14 116 144 / 0.05);
}
.active\:bg-cyan-700\/50:active {
  background-color: rgb(14 116 144 / 0.5);
}
.active\:bg-cyan-700\/60:active {
  background-color: rgb(14 116 144 / 0.6);
}
.active\:bg-cyan-700\/70:active {
  background-color: rgb(14 116 144 / 0.7);
}
.active\:bg-cyan-700\/80:active {
  background-color: rgb(14 116 144 / 0.8);
}
.active\:bg-cyan-700\/90:active {
  background-color: rgb(14 116 144 / 0.9);
}
.active\:bg-cyan-800:active {
  --tw-bg-opacity: 1;
  background-color: rgb(21 94 117 / var(--tw-bg-opacity, 1));
}
.active\:bg-cyan-800\/10:active {
  background-color: rgb(21 94 117 / 0.1);
}
.active\:bg-cyan-800\/20:active {
  background-color: rgb(21 94 117 / 0.2);
}
.active\:bg-cyan-800\/30:active {
  background-color: rgb(21 94 117 / 0.3);
}
.active\:bg-cyan-800\/40:active {
  background-color: rgb(21 94 117 / 0.4);
}
.active\:bg-cyan-800\/5:active {
  background-color: rgb(21 94 117 / 0.05);
}
.active\:bg-cyan-800\/50:active {
  background-color: rgb(21 94 117 / 0.5);
}
.active\:bg-cyan-800\/60:active {
  background-color: rgb(21 94 117 / 0.6);
}
.active\:bg-cyan-800\/70:active {
  background-color: rgb(21 94 117 / 0.7);
}
.active\:bg-cyan-800\/80:active {
  background-color: rgb(21 94 117 / 0.8);
}
.active\:bg-cyan-800\/90:active {
  background-color: rgb(21 94 117 / 0.9);
}
.active\:bg-cyan-900:active {
  --tw-bg-opacity: 1;
  background-color: rgb(22 78 99 / var(--tw-bg-opacity, 1));
}
.active\:bg-cyan-900\/10:active {
  background-color: rgb(22 78 99 / 0.1);
}
.active\:bg-cyan-900\/20:active {
  background-color: rgb(22 78 99 / 0.2);
}
.active\:bg-cyan-900\/30:active {
  background-color: rgb(22 78 99 / 0.3);
}
.active\:bg-cyan-900\/40:active {
  background-color: rgb(22 78 99 / 0.4);
}
.active\:bg-cyan-900\/5:active {
  background-color: rgb(22 78 99 / 0.05);
}
.active\:bg-cyan-900\/50:active {
  background-color: rgb(22 78 99 / 0.5);
}
.active\:bg-cyan-900\/60:active {
  background-color: rgb(22 78 99 / 0.6);
}
.active\:bg-cyan-900\/70:active {
  background-color: rgb(22 78 99 / 0.7);
}
.active\:bg-cyan-900\/80:active {
  background-color: rgb(22 78 99 / 0.8);
}
.active\:bg-cyan-900\/90:active {
  background-color: rgb(22 78 99 / 0.9);
}
.active\:bg-cyan-950:active {
  --tw-bg-opacity: 1;
  background-color: rgb(8 51 68 / var(--tw-bg-opacity, 1));
}
.active\:bg-cyan-950\/10:active {
  background-color: rgb(8 51 68 / 0.1);
}
.active\:bg-cyan-950\/20:active {
  background-color: rgb(8 51 68 / 0.2);
}
.active\:bg-cyan-950\/30:active {
  background-color: rgb(8 51 68 / 0.3);
}
.active\:bg-cyan-950\/40:active {
  background-color: rgb(8 51 68 / 0.4);
}
.active\:bg-cyan-950\/5:active {
  background-color: rgb(8 51 68 / 0.05);
}
.active\:bg-cyan-950\/50:active {
  background-color: rgb(8 51 68 / 0.5);
}
.active\:bg-cyan-950\/60:active {
  background-color: rgb(8 51 68 / 0.6);
}
.active\:bg-cyan-950\/70:active {
  background-color: rgb(8 51 68 / 0.7);
}
.active\:bg-cyan-950\/80:active {
  background-color: rgb(8 51 68 / 0.8);
}
.active\:bg-cyan-950\/90:active {
  background-color: rgb(8 51 68 / 0.9);
}
.active\:bg-emerald-100:active {
  --tw-bg-opacity: 1;
  background-color: rgb(209 250 229 / var(--tw-bg-opacity, 1));
}
.active\:bg-emerald-100\/10:active {
  background-color: rgb(209 250 229 / 0.1);
}
.active\:bg-emerald-100\/20:active {
  background-color: rgb(209 250 229 / 0.2);
}
.active\:bg-emerald-100\/30:active {
  background-color: rgb(209 250 229 / 0.3);
}
.active\:bg-emerald-100\/40:active {
  background-color: rgb(209 250 229 / 0.4);
}
.active\:bg-emerald-100\/5:active {
  background-color: rgb(209 250 229 / 0.05);
}
.active\:bg-emerald-100\/50:active {
  background-color: rgb(209 250 229 / 0.5);
}
.active\:bg-emerald-100\/60:active {
  background-color: rgb(209 250 229 / 0.6);
}
.active\:bg-emerald-100\/70:active {
  background-color: rgb(209 250 229 / 0.7);
}
.active\:bg-emerald-100\/80:active {
  background-color: rgb(209 250 229 / 0.8);
}
.active\:bg-emerald-100\/90:active {
  background-color: rgb(209 250 229 / 0.9);
}
.active\:bg-emerald-200:active {
  --tw-bg-opacity: 1;
  background-color: rgb(167 243 208 / var(--tw-bg-opacity, 1));
}
.active\:bg-emerald-200\/10:active {
  background-color: rgb(167 243 208 / 0.1);
}
.active\:bg-emerald-200\/20:active {
  background-color: rgb(167 243 208 / 0.2);
}
.active\:bg-emerald-200\/30:active {
  background-color: rgb(167 243 208 / 0.3);
}
.active\:bg-emerald-200\/40:active {
  background-color: rgb(167 243 208 / 0.4);
}
.active\:bg-emerald-200\/5:active {
  background-color: rgb(167 243 208 / 0.05);
}
.active\:bg-emerald-200\/50:active {
  background-color: rgb(167 243 208 / 0.5);
}
.active\:bg-emerald-200\/60:active {
  background-color: rgb(167 243 208 / 0.6);
}
.active\:bg-emerald-200\/70:active {
  background-color: rgb(167 243 208 / 0.7);
}
.active\:bg-emerald-200\/80:active {
  background-color: rgb(167 243 208 / 0.8);
}
.active\:bg-emerald-200\/90:active {
  background-color: rgb(167 243 208 / 0.9);
}
.active\:bg-emerald-300:active {
  --tw-bg-opacity: 1;
  background-color: rgb(110 231 183 / var(--tw-bg-opacity, 1));
}
.active\:bg-emerald-300\/10:active {
  background-color: rgb(110 231 183 / 0.1);
}
.active\:bg-emerald-300\/20:active {
  background-color: rgb(110 231 183 / 0.2);
}
.active\:bg-emerald-300\/30:active {
  background-color: rgb(110 231 183 / 0.3);
}
.active\:bg-emerald-300\/40:active {
  background-color: rgb(110 231 183 / 0.4);
}
.active\:bg-emerald-300\/5:active {
  background-color: rgb(110 231 183 / 0.05);
}
.active\:bg-emerald-300\/50:active {
  background-color: rgb(110 231 183 / 0.5);
}
.active\:bg-emerald-300\/60:active {
  background-color: rgb(110 231 183 / 0.6);
}
.active\:bg-emerald-300\/70:active {
  background-color: rgb(110 231 183 / 0.7);
}
.active\:bg-emerald-300\/80:active {
  background-color: rgb(110 231 183 / 0.8);
}
.active\:bg-emerald-300\/90:active {
  background-color: rgb(110 231 183 / 0.9);
}
.active\:bg-emerald-400:active {
  --tw-bg-opacity: 1;
  background-color: rgb(52 211 153 / var(--tw-bg-opacity, 1));
}
.active\:bg-emerald-400\/10:active {
  background-color: rgb(52 211 153 / 0.1);
}
.active\:bg-emerald-400\/20:active {
  background-color: rgb(52 211 153 / 0.2);
}
.active\:bg-emerald-400\/30:active {
  background-color: rgb(52 211 153 / 0.3);
}
.active\:bg-emerald-400\/40:active {
  background-color: rgb(52 211 153 / 0.4);
}
.active\:bg-emerald-400\/5:active {
  background-color: rgb(52 211 153 / 0.05);
}
.active\:bg-emerald-400\/50:active {
  background-color: rgb(52 211 153 / 0.5);
}
.active\:bg-emerald-400\/60:active {
  background-color: rgb(52 211 153 / 0.6);
}
.active\:bg-emerald-400\/70:active {
  background-color: rgb(52 211 153 / 0.7);
}
.active\:bg-emerald-400\/80:active {
  background-color: rgb(52 211 153 / 0.8);
}
.active\:bg-emerald-400\/90:active {
  background-color: rgb(52 211 153 / 0.9);
}
.active\:bg-emerald-50:active {
  --tw-bg-opacity: 1;
  background-color: rgb(236 253 245 / var(--tw-bg-opacity, 1));
}
.active\:bg-emerald-50\/10:active {
  background-color: rgb(236 253 245 / 0.1);
}
.active\:bg-emerald-50\/20:active {
  background-color: rgb(236 253 245 / 0.2);
}
.active\:bg-emerald-50\/30:active {
  background-color: rgb(236 253 245 / 0.3);
}
.active\:bg-emerald-50\/40:active {
  background-color: rgb(236 253 245 / 0.4);
}
.active\:bg-emerald-50\/5:active {
  background-color: rgb(236 253 245 / 0.05);
}
.active\:bg-emerald-50\/50:active {
  background-color: rgb(236 253 245 / 0.5);
}
.active\:bg-emerald-50\/60:active {
  background-color: rgb(236 253 245 / 0.6);
}
.active\:bg-emerald-50\/70:active {
  background-color: rgb(236 253 245 / 0.7);
}
.active\:bg-emerald-50\/80:active {
  background-color: rgb(236 253 245 / 0.8);
}
.active\:bg-emerald-50\/90:active {
  background-color: rgb(236 253 245 / 0.9);
}
.active\:bg-emerald-500:active {
  --tw-bg-opacity: 1;
  background-color: rgb(16 185 129 / var(--tw-bg-opacity, 1));
}
.active\:bg-emerald-500\/10:active {
  background-color: rgb(16 185 129 / 0.1);
}
.active\:bg-emerald-500\/20:active {
  background-color: rgb(16 185 129 / 0.2);
}
.active\:bg-emerald-500\/30:active {
  background-color: rgb(16 185 129 / 0.3);
}
.active\:bg-emerald-500\/40:active {
  background-color: rgb(16 185 129 / 0.4);
}
.active\:bg-emerald-500\/5:active {
  background-color: rgb(16 185 129 / 0.05);
}
.active\:bg-emerald-500\/50:active {
  background-color: rgb(16 185 129 / 0.5);
}
.active\:bg-emerald-500\/60:active {
  background-color: rgb(16 185 129 / 0.6);
}
.active\:bg-emerald-500\/70:active {
  background-color: rgb(16 185 129 / 0.7);
}
.active\:bg-emerald-500\/80:active {
  background-color: rgb(16 185 129 / 0.8);
}
.active\:bg-emerald-500\/90:active {
  background-color: rgb(16 185 129 / 0.9);
}
.active\:bg-emerald-600:active {
  --tw-bg-opacity: 1;
  background-color: rgb(5 150 105 / var(--tw-bg-opacity, 1));
}
.active\:bg-emerald-600\/10:active {
  background-color: rgb(5 150 105 / 0.1);
}
.active\:bg-emerald-600\/20:active {
  background-color: rgb(5 150 105 / 0.2);
}
.active\:bg-emerald-600\/30:active {
  background-color: rgb(5 150 105 / 0.3);
}
.active\:bg-emerald-600\/40:active {
  background-color: rgb(5 150 105 / 0.4);
}
.active\:bg-emerald-600\/5:active {
  background-color: rgb(5 150 105 / 0.05);
}
.active\:bg-emerald-600\/50:active {
  background-color: rgb(5 150 105 / 0.5);
}
.active\:bg-emerald-600\/60:active {
  background-color: rgb(5 150 105 / 0.6);
}
.active\:bg-emerald-600\/70:active {
  background-color: rgb(5 150 105 / 0.7);
}
.active\:bg-emerald-600\/80:active {
  background-color: rgb(5 150 105 / 0.8);
}
.active\:bg-emerald-600\/90:active {
  background-color: rgb(5 150 105 / 0.9);
}
.active\:bg-emerald-700:active {
  --tw-bg-opacity: 1;
  background-color: rgb(4 120 87 / var(--tw-bg-opacity, 1));
}
.active\:bg-emerald-700\/10:active {
  background-color: rgb(4 120 87 / 0.1);
}
.active\:bg-emerald-700\/20:active {
  background-color: rgb(4 120 87 / 0.2);
}
.active\:bg-emerald-700\/30:active {
  background-color: rgb(4 120 87 / 0.3);
}
.active\:bg-emerald-700\/40:active {
  background-color: rgb(4 120 87 / 0.4);
}
.active\:bg-emerald-700\/5:active {
  background-color: rgb(4 120 87 / 0.05);
}
.active\:bg-emerald-700\/50:active {
  background-color: rgb(4 120 87 / 0.5);
}
.active\:bg-emerald-700\/60:active {
  background-color: rgb(4 120 87 / 0.6);
}
.active\:bg-emerald-700\/70:active {
  background-color: rgb(4 120 87 / 0.7);
}
.active\:bg-emerald-700\/80:active {
  background-color: rgb(4 120 87 / 0.8);
}
.active\:bg-emerald-700\/90:active {
  background-color: rgb(4 120 87 / 0.9);
}
.active\:bg-emerald-800:active {
  --tw-bg-opacity: 1;
  background-color: rgb(6 95 70 / var(--tw-bg-opacity, 1));
}
.active\:bg-emerald-800\/10:active {
  background-color: rgb(6 95 70 / 0.1);
}
.active\:bg-emerald-800\/20:active {
  background-color: rgb(6 95 70 / 0.2);
}
.active\:bg-emerald-800\/30:active {
  background-color: rgb(6 95 70 / 0.3);
}
.active\:bg-emerald-800\/40:active {
  background-color: rgb(6 95 70 / 0.4);
}
.active\:bg-emerald-800\/5:active {
  background-color: rgb(6 95 70 / 0.05);
}
.active\:bg-emerald-800\/50:active {
  background-color: rgb(6 95 70 / 0.5);
}
.active\:bg-emerald-800\/60:active {
  background-color: rgb(6 95 70 / 0.6);
}
.active\:bg-emerald-800\/70:active {
  background-color: rgb(6 95 70 / 0.7);
}
.active\:bg-emerald-800\/80:active {
  background-color: rgb(6 95 70 / 0.8);
}
.active\:bg-emerald-800\/90:active {
  background-color: rgb(6 95 70 / 0.9);
}
.active\:bg-emerald-900:active {
  --tw-bg-opacity: 1;
  background-color: rgb(6 78 59 / var(--tw-bg-opacity, 1));
}
.active\:bg-emerald-900\/10:active {
  background-color: rgb(6 78 59 / 0.1);
}
.active\:bg-emerald-900\/20:active {
  background-color: rgb(6 78 59 / 0.2);
}
.active\:bg-emerald-900\/30:active {
  background-color: rgb(6 78 59 / 0.3);
}
.active\:bg-emerald-900\/40:active {
  background-color: rgb(6 78 59 / 0.4);
}
.active\:bg-emerald-900\/5:active {
  background-color: rgb(6 78 59 / 0.05);
}
.active\:bg-emerald-900\/50:active {
  background-color: rgb(6 78 59 / 0.5);
}
.active\:bg-emerald-900\/60:active {
  background-color: rgb(6 78 59 / 0.6);
}
.active\:bg-emerald-900\/70:active {
  background-color: rgb(6 78 59 / 0.7);
}
.active\:bg-emerald-900\/80:active {
  background-color: rgb(6 78 59 / 0.8);
}
.active\:bg-emerald-900\/90:active {
  background-color: rgb(6 78 59 / 0.9);
}
.active\:bg-emerald-950:active {
  --tw-bg-opacity: 1;
  background-color: rgb(2 44 34 / var(--tw-bg-opacity, 1));
}
.active\:bg-emerald-950\/10:active {
  background-color: rgb(2 44 34 / 0.1);
}
.active\:bg-emerald-950\/20:active {
  background-color: rgb(2 44 34 / 0.2);
}
.active\:bg-emerald-950\/30:active {
  background-color: rgb(2 44 34 / 0.3);
}
.active\:bg-emerald-950\/40:active {
  background-color: rgb(2 44 34 / 0.4);
}
.active\:bg-emerald-950\/5:active {
  background-color: rgb(2 44 34 / 0.05);
}
.active\:bg-emerald-950\/50:active {
  background-color: rgb(2 44 34 / 0.5);
}
.active\:bg-emerald-950\/60:active {
  background-color: rgb(2 44 34 / 0.6);
}
.active\:bg-emerald-950\/70:active {
  background-color: rgb(2 44 34 / 0.7);
}
.active\:bg-emerald-950\/80:active {
  background-color: rgb(2 44 34 / 0.8);
}
.active\:bg-emerald-950\/90:active {
  background-color: rgb(2 44 34 / 0.9);
}
.active\:bg-fuchsia-100:active {
  --tw-bg-opacity: 1;
  background-color: rgb(250 232 255 / var(--tw-bg-opacity, 1));
}
.active\:bg-fuchsia-100\/10:active {
  background-color: rgb(250 232 255 / 0.1);
}
.active\:bg-fuchsia-100\/20:active {
  background-color: rgb(250 232 255 / 0.2);
}
.active\:bg-fuchsia-100\/30:active {
  background-color: rgb(250 232 255 / 0.3);
}
.active\:bg-fuchsia-100\/40:active {
  background-color: rgb(250 232 255 / 0.4);
}
.active\:bg-fuchsia-100\/5:active {
  background-color: rgb(250 232 255 / 0.05);
}
.active\:bg-fuchsia-100\/50:active {
  background-color: rgb(250 232 255 / 0.5);
}
.active\:bg-fuchsia-100\/60:active {
  background-color: rgb(250 232 255 / 0.6);
}
.active\:bg-fuchsia-100\/70:active {
  background-color: rgb(250 232 255 / 0.7);
}
.active\:bg-fuchsia-100\/80:active {
  background-color: rgb(250 232 255 / 0.8);
}
.active\:bg-fuchsia-100\/90:active {
  background-color: rgb(250 232 255 / 0.9);
}
.active\:bg-fuchsia-200:active {
  --tw-bg-opacity: 1;
  background-color: rgb(245 208 254 / var(--tw-bg-opacity, 1));
}
.active\:bg-fuchsia-200\/10:active {
  background-color: rgb(245 208 254 / 0.1);
}
.active\:bg-fuchsia-200\/20:active {
  background-color: rgb(245 208 254 / 0.2);
}
.active\:bg-fuchsia-200\/30:active {
  background-color: rgb(245 208 254 / 0.3);
}
.active\:bg-fuchsia-200\/40:active {
  background-color: rgb(245 208 254 / 0.4);
}
.active\:bg-fuchsia-200\/5:active {
  background-color: rgb(245 208 254 / 0.05);
}
.active\:bg-fuchsia-200\/50:active {
  background-color: rgb(245 208 254 / 0.5);
}
.active\:bg-fuchsia-200\/60:active {
  background-color: rgb(245 208 254 / 0.6);
}
.active\:bg-fuchsia-200\/70:active {
  background-color: rgb(245 208 254 / 0.7);
}
.active\:bg-fuchsia-200\/80:active {
  background-color: rgb(245 208 254 / 0.8);
}
.active\:bg-fuchsia-200\/90:active {
  background-color: rgb(245 208 254 / 0.9);
}
.active\:bg-fuchsia-300:active {
  --tw-bg-opacity: 1;
  background-color: rgb(240 171 252 / var(--tw-bg-opacity, 1));
}
.active\:bg-fuchsia-300\/10:active {
  background-color: rgb(240 171 252 / 0.1);
}
.active\:bg-fuchsia-300\/20:active {
  background-color: rgb(240 171 252 / 0.2);
}
.active\:bg-fuchsia-300\/30:active {
  background-color: rgb(240 171 252 / 0.3);
}
.active\:bg-fuchsia-300\/40:active {
  background-color: rgb(240 171 252 / 0.4);
}
.active\:bg-fuchsia-300\/5:active {
  background-color: rgb(240 171 252 / 0.05);
}
.active\:bg-fuchsia-300\/50:active {
  background-color: rgb(240 171 252 / 0.5);
}
.active\:bg-fuchsia-300\/60:active {
  background-color: rgb(240 171 252 / 0.6);
}
.active\:bg-fuchsia-300\/70:active {
  background-color: rgb(240 171 252 / 0.7);
}
.active\:bg-fuchsia-300\/80:active {
  background-color: rgb(240 171 252 / 0.8);
}
.active\:bg-fuchsia-300\/90:active {
  background-color: rgb(240 171 252 / 0.9);
}
.active\:bg-fuchsia-400:active {
  --tw-bg-opacity: 1;
  background-color: rgb(232 121 249 / var(--tw-bg-opacity, 1));
}
.active\:bg-fuchsia-400\/10:active {
  background-color: rgb(232 121 249 / 0.1);
}
.active\:bg-fuchsia-400\/20:active {
  background-color: rgb(232 121 249 / 0.2);
}
.active\:bg-fuchsia-400\/30:active {
  background-color: rgb(232 121 249 / 0.3);
}
.active\:bg-fuchsia-400\/40:active {
  background-color: rgb(232 121 249 / 0.4);
}
.active\:bg-fuchsia-400\/5:active {
  background-color: rgb(232 121 249 / 0.05);
}
.active\:bg-fuchsia-400\/50:active {
  background-color: rgb(232 121 249 / 0.5);
}
.active\:bg-fuchsia-400\/60:active {
  background-color: rgb(232 121 249 / 0.6);
}
.active\:bg-fuchsia-400\/70:active {
  background-color: rgb(232 121 249 / 0.7);
}
.active\:bg-fuchsia-400\/80:active {
  background-color: rgb(232 121 249 / 0.8);
}
.active\:bg-fuchsia-400\/90:active {
  background-color: rgb(232 121 249 / 0.9);
}
.active\:bg-fuchsia-50:active {
  --tw-bg-opacity: 1;
  background-color: rgb(253 244 255 / var(--tw-bg-opacity, 1));
}
.active\:bg-fuchsia-50\/10:active {
  background-color: rgb(253 244 255 / 0.1);
}
.active\:bg-fuchsia-50\/20:active {
  background-color: rgb(253 244 255 / 0.2);
}
.active\:bg-fuchsia-50\/30:active {
  background-color: rgb(253 244 255 / 0.3);
}
.active\:bg-fuchsia-50\/40:active {
  background-color: rgb(253 244 255 / 0.4);
}
.active\:bg-fuchsia-50\/5:active {
  background-color: rgb(253 244 255 / 0.05);
}
.active\:bg-fuchsia-50\/50:active {
  background-color: rgb(253 244 255 / 0.5);
}
.active\:bg-fuchsia-50\/60:active {
  background-color: rgb(253 244 255 / 0.6);
}
.active\:bg-fuchsia-50\/70:active {
  background-color: rgb(253 244 255 / 0.7);
}
.active\:bg-fuchsia-50\/80:active {
  background-color: rgb(253 244 255 / 0.8);
}
.active\:bg-fuchsia-50\/90:active {
  background-color: rgb(253 244 255 / 0.9);
}
.active\:bg-fuchsia-500:active {
  --tw-bg-opacity: 1;
  background-color: rgb(217 70 239 / var(--tw-bg-opacity, 1));
}
.active\:bg-fuchsia-500\/10:active {
  background-color: rgb(217 70 239 / 0.1);
}
.active\:bg-fuchsia-500\/20:active {
  background-color: rgb(217 70 239 / 0.2);
}
.active\:bg-fuchsia-500\/30:active {
  background-color: rgb(217 70 239 / 0.3);
}
.active\:bg-fuchsia-500\/40:active {
  background-color: rgb(217 70 239 / 0.4);
}
.active\:bg-fuchsia-500\/5:active {
  background-color: rgb(217 70 239 / 0.05);
}
.active\:bg-fuchsia-500\/50:active {
  background-color: rgb(217 70 239 / 0.5);
}
.active\:bg-fuchsia-500\/60:active {
  background-color: rgb(217 70 239 / 0.6);
}
.active\:bg-fuchsia-500\/70:active {
  background-color: rgb(217 70 239 / 0.7);
}
.active\:bg-fuchsia-500\/80:active {
  background-color: rgb(217 70 239 / 0.8);
}
.active\:bg-fuchsia-500\/90:active {
  background-color: rgb(217 70 239 / 0.9);
}
.active\:bg-fuchsia-600:active {
  --tw-bg-opacity: 1;
  background-color: rgb(192 38 211 / var(--tw-bg-opacity, 1));
}
.active\:bg-fuchsia-600\/10:active {
  background-color: rgb(192 38 211 / 0.1);
}
.active\:bg-fuchsia-600\/20:active {
  background-color: rgb(192 38 211 / 0.2);
}
.active\:bg-fuchsia-600\/30:active {
  background-color: rgb(192 38 211 / 0.3);
}
.active\:bg-fuchsia-600\/40:active {
  background-color: rgb(192 38 211 / 0.4);
}
.active\:bg-fuchsia-600\/5:active {
  background-color: rgb(192 38 211 / 0.05);
}
.active\:bg-fuchsia-600\/50:active {
  background-color: rgb(192 38 211 / 0.5);
}
.active\:bg-fuchsia-600\/60:active {
  background-color: rgb(192 38 211 / 0.6);
}
.active\:bg-fuchsia-600\/70:active {
  background-color: rgb(192 38 211 / 0.7);
}
.active\:bg-fuchsia-600\/80:active {
  background-color: rgb(192 38 211 / 0.8);
}
.active\:bg-fuchsia-600\/90:active {
  background-color: rgb(192 38 211 / 0.9);
}
.active\:bg-fuchsia-700:active {
  --tw-bg-opacity: 1;
  background-color: rgb(162 28 175 / var(--tw-bg-opacity, 1));
}
.active\:bg-fuchsia-700\/10:active {
  background-color: rgb(162 28 175 / 0.1);
}
.active\:bg-fuchsia-700\/20:active {
  background-color: rgb(162 28 175 / 0.2);
}
.active\:bg-fuchsia-700\/30:active {
  background-color: rgb(162 28 175 / 0.3);
}
.active\:bg-fuchsia-700\/40:active {
  background-color: rgb(162 28 175 / 0.4);
}
.active\:bg-fuchsia-700\/5:active {
  background-color: rgb(162 28 175 / 0.05);
}
.active\:bg-fuchsia-700\/50:active {
  background-color: rgb(162 28 175 / 0.5);
}
.active\:bg-fuchsia-700\/60:active {
  background-color: rgb(162 28 175 / 0.6);
}
.active\:bg-fuchsia-700\/70:active {
  background-color: rgb(162 28 175 / 0.7);
}
.active\:bg-fuchsia-700\/80:active {
  background-color: rgb(162 28 175 / 0.8);
}
.active\:bg-fuchsia-700\/90:active {
  background-color: rgb(162 28 175 / 0.9);
}
.active\:bg-fuchsia-800:active {
  --tw-bg-opacity: 1;
  background-color: rgb(134 25 143 / var(--tw-bg-opacity, 1));
}
.active\:bg-fuchsia-800\/10:active {
  background-color: rgb(134 25 143 / 0.1);
}
.active\:bg-fuchsia-800\/20:active {
  background-color: rgb(134 25 143 / 0.2);
}
.active\:bg-fuchsia-800\/30:active {
  background-color: rgb(134 25 143 / 0.3);
}
.active\:bg-fuchsia-800\/40:active {
  background-color: rgb(134 25 143 / 0.4);
}
.active\:bg-fuchsia-800\/5:active {
  background-color: rgb(134 25 143 / 0.05);
}
.active\:bg-fuchsia-800\/50:active {
  background-color: rgb(134 25 143 / 0.5);
}
.active\:bg-fuchsia-800\/60:active {
  background-color: rgb(134 25 143 / 0.6);
}
.active\:bg-fuchsia-800\/70:active {
  background-color: rgb(134 25 143 / 0.7);
}
.active\:bg-fuchsia-800\/80:active {
  background-color: rgb(134 25 143 / 0.8);
}
.active\:bg-fuchsia-800\/90:active {
  background-color: rgb(134 25 143 / 0.9);
}
.active\:bg-fuchsia-900:active {
  --tw-bg-opacity: 1;
  background-color: rgb(112 26 117 / var(--tw-bg-opacity, 1));
}
.active\:bg-fuchsia-900\/10:active {
  background-color: rgb(112 26 117 / 0.1);
}
.active\:bg-fuchsia-900\/20:active {
  background-color: rgb(112 26 117 / 0.2);
}
.active\:bg-fuchsia-900\/30:active {
  background-color: rgb(112 26 117 / 0.3);
}
.active\:bg-fuchsia-900\/40:active {
  background-color: rgb(112 26 117 / 0.4);
}
.active\:bg-fuchsia-900\/5:active {
  background-color: rgb(112 26 117 / 0.05);
}
.active\:bg-fuchsia-900\/50:active {
  background-color: rgb(112 26 117 / 0.5);
}
.active\:bg-fuchsia-900\/60:active {
  background-color: rgb(112 26 117 / 0.6);
}
.active\:bg-fuchsia-900\/70:active {
  background-color: rgb(112 26 117 / 0.7);
}
.active\:bg-fuchsia-900\/80:active {
  background-color: rgb(112 26 117 / 0.8);
}
.active\:bg-fuchsia-900\/90:active {
  background-color: rgb(112 26 117 / 0.9);
}
.active\:bg-fuchsia-950:active {
  --tw-bg-opacity: 1;
  background-color: rgb(74 4 78 / var(--tw-bg-opacity, 1));
}
.active\:bg-fuchsia-950\/10:active {
  background-color: rgb(74 4 78 / 0.1);
}
.active\:bg-fuchsia-950\/20:active {
  background-color: rgb(74 4 78 / 0.2);
}
.active\:bg-fuchsia-950\/30:active {
  background-color: rgb(74 4 78 / 0.3);
}
.active\:bg-fuchsia-950\/40:active {
  background-color: rgb(74 4 78 / 0.4);
}
.active\:bg-fuchsia-950\/5:active {
  background-color: rgb(74 4 78 / 0.05);
}
.active\:bg-fuchsia-950\/50:active {
  background-color: rgb(74 4 78 / 0.5);
}
.active\:bg-fuchsia-950\/60:active {
  background-color: rgb(74 4 78 / 0.6);
}
.active\:bg-fuchsia-950\/70:active {
  background-color: rgb(74 4 78 / 0.7);
}
.active\:bg-fuchsia-950\/80:active {
  background-color: rgb(74 4 78 / 0.8);
}
.active\:bg-fuchsia-950\/90:active {
  background-color: rgb(74 4 78 / 0.9);
}
.active\:bg-gray-100:active {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.active\:bg-gray-100\/10:active {
  background-color: rgb(243 244 246 / 0.1);
}
.active\:bg-gray-100\/20:active {
  background-color: rgb(243 244 246 / 0.2);
}
.active\:bg-gray-100\/30:active {
  background-color: rgb(243 244 246 / 0.3);
}
.active\:bg-gray-100\/40:active {
  background-color: rgb(243 244 246 / 0.4);
}
.active\:bg-gray-100\/5:active {
  background-color: rgb(243 244 246 / 0.05);
}
.active\:bg-gray-100\/50:active {
  background-color: rgb(243 244 246 / 0.5);
}
.active\:bg-gray-100\/60:active {
  background-color: rgb(243 244 246 / 0.6);
}
.active\:bg-gray-100\/70:active {
  background-color: rgb(243 244 246 / 0.7);
}
.active\:bg-gray-100\/80:active {
  background-color: rgb(243 244 246 / 0.8);
}
.active\:bg-gray-100\/90:active {
  background-color: rgb(243 244 246 / 0.9);
}
.active\:bg-gray-200:active {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.active\:bg-gray-200\/10:active {
  background-color: rgb(229 231 235 / 0.1);
}
.active\:bg-gray-200\/20:active {
  background-color: rgb(229 231 235 / 0.2);
}
.active\:bg-gray-200\/30:active {
  background-color: rgb(229 231 235 / 0.3);
}
.active\:bg-gray-200\/40:active {
  background-color: rgb(229 231 235 / 0.4);
}
.active\:bg-gray-200\/5:active {
  background-color: rgb(229 231 235 / 0.05);
}
.active\:bg-gray-200\/50:active {
  background-color: rgb(229 231 235 / 0.5);
}
.active\:bg-gray-200\/60:active {
  background-color: rgb(229 231 235 / 0.6);
}
.active\:bg-gray-200\/70:active {
  background-color: rgb(229 231 235 / 0.7);
}
.active\:bg-gray-200\/80:active {
  background-color: rgb(229 231 235 / 0.8);
}
.active\:bg-gray-200\/90:active {
  background-color: rgb(229 231 235 / 0.9);
}
.active\:bg-gray-300:active {
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
}
.active\:bg-gray-300\/10:active {
  background-color: rgb(209 213 219 / 0.1);
}
.active\:bg-gray-300\/20:active {
  background-color: rgb(209 213 219 / 0.2);
}
.active\:bg-gray-300\/30:active {
  background-color: rgb(209 213 219 / 0.3);
}
.active\:bg-gray-300\/40:active {
  background-color: rgb(209 213 219 / 0.4);
}
.active\:bg-gray-300\/5:active {
  background-color: rgb(209 213 219 / 0.05);
}
.active\:bg-gray-300\/50:active {
  background-color: rgb(209 213 219 / 0.5);
}
.active\:bg-gray-300\/60:active {
  background-color: rgb(209 213 219 / 0.6);
}
.active\:bg-gray-300\/70:active {
  background-color: rgb(209 213 219 / 0.7);
}
.active\:bg-gray-300\/80:active {
  background-color: rgb(209 213 219 / 0.8);
}
.active\:bg-gray-300\/90:active {
  background-color: rgb(209 213 219 / 0.9);
}
.active\:bg-gray-400:active {
  --tw-bg-opacity: 1;
  background-color: rgb(156 163 175 / var(--tw-bg-opacity, 1));
}
.active\:bg-gray-400\/10:active {
  background-color: rgb(156 163 175 / 0.1);
}
.active\:bg-gray-400\/20:active {
  background-color: rgb(156 163 175 / 0.2);
}
.active\:bg-gray-400\/30:active {
  background-color: rgb(156 163 175 / 0.3);
}
.active\:bg-gray-400\/40:active {
  background-color: rgb(156 163 175 / 0.4);
}
.active\:bg-gray-400\/5:active {
  background-color: rgb(156 163 175 / 0.05);
}
.active\:bg-gray-400\/50:active {
  background-color: rgb(156 163 175 / 0.5);
}
.active\:bg-gray-400\/60:active {
  background-color: rgb(156 163 175 / 0.6);
}
.active\:bg-gray-400\/70:active {
  background-color: rgb(156 163 175 / 0.7);
}
.active\:bg-gray-400\/80:active {
  background-color: rgb(156 163 175 / 0.8);
}
.active\:bg-gray-400\/90:active {
  background-color: rgb(156 163 175 / 0.9);
}
.active\:bg-gray-50:active {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.active\:bg-gray-50\/10:active {
  background-color: rgb(249 250 251 / 0.1);
}
.active\:bg-gray-50\/20:active {
  background-color: rgb(249 250 251 / 0.2);
}
.active\:bg-gray-50\/30:active {
  background-color: rgb(249 250 251 / 0.3);
}
.active\:bg-gray-50\/40:active {
  background-color: rgb(249 250 251 / 0.4);
}
.active\:bg-gray-50\/5:active {
  background-color: rgb(249 250 251 / 0.05);
}
.active\:bg-gray-50\/50:active {
  background-color: rgb(249 250 251 / 0.5);
}
.active\:bg-gray-50\/60:active {
  background-color: rgb(249 250 251 / 0.6);
}
.active\:bg-gray-50\/70:active {
  background-color: rgb(249 250 251 / 0.7);
}
.active\:bg-gray-50\/80:active {
  background-color: rgb(249 250 251 / 0.8);
}
.active\:bg-gray-50\/90:active {
  background-color: rgb(249 250 251 / 0.9);
}
.active\:bg-gray-500:active {
  --tw-bg-opacity: 1;
  background-color: rgb(107 114 128 / var(--tw-bg-opacity, 1));
}
.active\:bg-gray-500\/10:active {
  background-color: rgb(107 114 128 / 0.1);
}
.active\:bg-gray-500\/20:active {
  background-color: rgb(107 114 128 / 0.2);
}
.active\:bg-gray-500\/30:active {
  background-color: rgb(107 114 128 / 0.3);
}
.active\:bg-gray-500\/40:active {
  background-color: rgb(107 114 128 / 0.4);
}
.active\:bg-gray-500\/5:active {
  background-color: rgb(107 114 128 / 0.05);
}
.active\:bg-gray-500\/50:active {
  background-color: rgb(107 114 128 / 0.5);
}
.active\:bg-gray-500\/60:active {
  background-color: rgb(107 114 128 / 0.6);
}
.active\:bg-gray-500\/70:active {
  background-color: rgb(107 114 128 / 0.7);
}
.active\:bg-gray-500\/80:active {
  background-color: rgb(107 114 128 / 0.8);
}
.active\:bg-gray-500\/90:active {
  background-color: rgb(107 114 128 / 0.9);
}
.active\:bg-gray-600:active {
  --tw-bg-opacity: 1;
  background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1));
}
.active\:bg-gray-600\/10:active {
  background-color: rgb(75 85 99 / 0.1);
}
.active\:bg-gray-600\/20:active {
  background-color: rgb(75 85 99 / 0.2);
}
.active\:bg-gray-600\/30:active {
  background-color: rgb(75 85 99 / 0.3);
}
.active\:bg-gray-600\/40:active {
  background-color: rgb(75 85 99 / 0.4);
}
.active\:bg-gray-600\/5:active {
  background-color: rgb(75 85 99 / 0.05);
}
.active\:bg-gray-600\/50:active {
  background-color: rgb(75 85 99 / 0.5);
}
.active\:bg-gray-600\/60:active {
  background-color: rgb(75 85 99 / 0.6);
}
.active\:bg-gray-600\/70:active {
  background-color: rgb(75 85 99 / 0.7);
}
.active\:bg-gray-600\/80:active {
  background-color: rgb(75 85 99 / 0.8);
}
.active\:bg-gray-600\/90:active {
  background-color: rgb(75 85 99 / 0.9);
}
.active\:bg-gray-700:active {
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}
.active\:bg-gray-700\/10:active {
  background-color: rgb(55 65 81 / 0.1);
}
.active\:bg-gray-700\/20:active {
  background-color: rgb(55 65 81 / 0.2);
}
.active\:bg-gray-700\/30:active {
  background-color: rgb(55 65 81 / 0.3);
}
.active\:bg-gray-700\/40:active {
  background-color: rgb(55 65 81 / 0.4);
}
.active\:bg-gray-700\/5:active {
  background-color: rgb(55 65 81 / 0.05);
}
.active\:bg-gray-700\/50:active {
  background-color: rgb(55 65 81 / 0.5);
}
.active\:bg-gray-700\/60:active {
  background-color: rgb(55 65 81 / 0.6);
}
.active\:bg-gray-700\/70:active {
  background-color: rgb(55 65 81 / 0.7);
}
.active\:bg-gray-700\/80:active {
  background-color: rgb(55 65 81 / 0.8);
}
.active\:bg-gray-700\/90:active {
  background-color: rgb(55 65 81 / 0.9);
}
.active\:bg-gray-800:active {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}
.active\:bg-gray-800\/10:active {
  background-color: rgb(31 41 55 / 0.1);
}
.active\:bg-gray-800\/20:active {
  background-color: rgb(31 41 55 / 0.2);
}
.active\:bg-gray-800\/30:active {
  background-color: rgb(31 41 55 / 0.3);
}
.active\:bg-gray-800\/40:active {
  background-color: rgb(31 41 55 / 0.4);
}
.active\:bg-gray-800\/5:active {
  background-color: rgb(31 41 55 / 0.05);
}
.active\:bg-gray-800\/50:active {
  background-color: rgb(31 41 55 / 0.5);
}
.active\:bg-gray-800\/60:active {
  background-color: rgb(31 41 55 / 0.6);
}
.active\:bg-gray-800\/70:active {
  background-color: rgb(31 41 55 / 0.7);
}
.active\:bg-gray-800\/80:active {
  background-color: rgb(31 41 55 / 0.8);
}
.active\:bg-gray-800\/90:active {
  background-color: rgb(31 41 55 / 0.9);
}
.active\:bg-gray-900:active {
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}
.active\:bg-gray-900\/10:active {
  background-color: rgb(17 24 39 / 0.1);
}
.active\:bg-gray-900\/20:active {
  background-color: rgb(17 24 39 / 0.2);
}
.active\:bg-gray-900\/30:active {
  background-color: rgb(17 24 39 / 0.3);
}
.active\:bg-gray-900\/40:active {
  background-color: rgb(17 24 39 / 0.4);
}
.active\:bg-gray-900\/5:active {
  background-color: rgb(17 24 39 / 0.05);
}
.active\:bg-gray-900\/50:active {
  background-color: rgb(17 24 39 / 0.5);
}
.active\:bg-gray-900\/60:active {
  background-color: rgb(17 24 39 / 0.6);
}
.active\:bg-gray-900\/70:active {
  background-color: rgb(17 24 39 / 0.7);
}
.active\:bg-gray-900\/80:active {
  background-color: rgb(17 24 39 / 0.8);
}
.active\:bg-gray-900\/90:active {
  background-color: rgb(17 24 39 / 0.9);
}
.active\:bg-gray-950:active {
  --tw-bg-opacity: 1;
  background-color: rgb(3 7 18 / var(--tw-bg-opacity, 1));
}
.active\:bg-gray-950\/10:active {
  background-color: rgb(3 7 18 / 0.1);
}
.active\:bg-gray-950\/20:active {
  background-color: rgb(3 7 18 / 0.2);
}
.active\:bg-gray-950\/30:active {
  background-color: rgb(3 7 18 / 0.3);
}
.active\:bg-gray-950\/40:active {
  background-color: rgb(3 7 18 / 0.4);
}
.active\:bg-gray-950\/5:active {
  background-color: rgb(3 7 18 / 0.05);
}
.active\:bg-gray-950\/50:active {
  background-color: rgb(3 7 18 / 0.5);
}
.active\:bg-gray-950\/60:active {
  background-color: rgb(3 7 18 / 0.6);
}
.active\:bg-gray-950\/70:active {
  background-color: rgb(3 7 18 / 0.7);
}
.active\:bg-gray-950\/80:active {
  background-color: rgb(3 7 18 / 0.8);
}
.active\:bg-gray-950\/90:active {
  background-color: rgb(3 7 18 / 0.9);
}
.active\:bg-green-100:active {
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
}
.active\:bg-green-100\/10:active {
  background-color: rgb(220 252 231 / 0.1);
}
.active\:bg-green-100\/20:active {
  background-color: rgb(220 252 231 / 0.2);
}
.active\:bg-green-100\/30:active {
  background-color: rgb(220 252 231 / 0.3);
}
.active\:bg-green-100\/40:active {
  background-color: rgb(220 252 231 / 0.4);
}
.active\:bg-green-100\/5:active {
  background-color: rgb(220 252 231 / 0.05);
}
.active\:bg-green-100\/50:active {
  background-color: rgb(220 252 231 / 0.5);
}
.active\:bg-green-100\/60:active {
  background-color: rgb(220 252 231 / 0.6);
}
.active\:bg-green-100\/70:active {
  background-color: rgb(220 252 231 / 0.7);
}
.active\:bg-green-100\/80:active {
  background-color: rgb(220 252 231 / 0.8);
}
.active\:bg-green-100\/90:active {
  background-color: rgb(220 252 231 / 0.9);
}
.active\:bg-green-200:active {
  --tw-bg-opacity: 1;
  background-color: rgb(187 247 208 / var(--tw-bg-opacity, 1));
}
.active\:bg-green-200\/10:active {
  background-color: rgb(187 247 208 / 0.1);
}
.active\:bg-green-200\/20:active {
  background-color: rgb(187 247 208 / 0.2);
}
.active\:bg-green-200\/30:active {
  background-color: rgb(187 247 208 / 0.3);
}
.active\:bg-green-200\/40:active {
  background-color: rgb(187 247 208 / 0.4);
}
.active\:bg-green-200\/5:active {
  background-color: rgb(187 247 208 / 0.05);
}
.active\:bg-green-200\/50:active {
  background-color: rgb(187 247 208 / 0.5);
}
.active\:bg-green-200\/60:active {
  background-color: rgb(187 247 208 / 0.6);
}
.active\:bg-green-200\/70:active {
  background-color: rgb(187 247 208 / 0.7);
}
.active\:bg-green-200\/80:active {
  background-color: rgb(187 247 208 / 0.8);
}
.active\:bg-green-200\/90:active {
  background-color: rgb(187 247 208 / 0.9);
}
.active\:bg-green-300:active {
  --tw-bg-opacity: 1;
  background-color: rgb(134 239 172 / var(--tw-bg-opacity, 1));
}
.active\:bg-green-300\/10:active {
  background-color: rgb(134 239 172 / 0.1);
}
.active\:bg-green-300\/20:active {
  background-color: rgb(134 239 172 / 0.2);
}
.active\:bg-green-300\/30:active {
  background-color: rgb(134 239 172 / 0.3);
}
.active\:bg-green-300\/40:active {
  background-color: rgb(134 239 172 / 0.4);
}
.active\:bg-green-300\/5:active {
  background-color: rgb(134 239 172 / 0.05);
}
.active\:bg-green-300\/50:active {
  background-color: rgb(134 239 172 / 0.5);
}
.active\:bg-green-300\/60:active {
  background-color: rgb(134 239 172 / 0.6);
}
.active\:bg-green-300\/70:active {
  background-color: rgb(134 239 172 / 0.7);
}
.active\:bg-green-300\/80:active {
  background-color: rgb(134 239 172 / 0.8);
}
.active\:bg-green-300\/90:active {
  background-color: rgb(134 239 172 / 0.9);
}
.active\:bg-green-400:active {
  --tw-bg-opacity: 1;
  background-color: rgb(74 222 128 / var(--tw-bg-opacity, 1));
}
.active\:bg-green-400\/10:active {
  background-color: rgb(74 222 128 / 0.1);
}
.active\:bg-green-400\/20:active {
  background-color: rgb(74 222 128 / 0.2);
}
.active\:bg-green-400\/30:active {
  background-color: rgb(74 222 128 / 0.3);
}
.active\:bg-green-400\/40:active {
  background-color: rgb(74 222 128 / 0.4);
}
.active\:bg-green-400\/5:active {
  background-color: rgb(74 222 128 / 0.05);
}
.active\:bg-green-400\/50:active {
  background-color: rgb(74 222 128 / 0.5);
}
.active\:bg-green-400\/60:active {
  background-color: rgb(74 222 128 / 0.6);
}
.active\:bg-green-400\/70:active {
  background-color: rgb(74 222 128 / 0.7);
}
.active\:bg-green-400\/80:active {
  background-color: rgb(74 222 128 / 0.8);
}
.active\:bg-green-400\/90:active {
  background-color: rgb(74 222 128 / 0.9);
}
.active\:bg-green-50:active {
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
}
.active\:bg-green-50\/10:active {
  background-color: rgb(240 253 244 / 0.1);
}
.active\:bg-green-50\/20:active {
  background-color: rgb(240 253 244 / 0.2);
}
.active\:bg-green-50\/30:active {
  background-color: rgb(240 253 244 / 0.3);
}
.active\:bg-green-50\/40:active {
  background-color: rgb(240 253 244 / 0.4);
}
.active\:bg-green-50\/5:active {
  background-color: rgb(240 253 244 / 0.05);
}
.active\:bg-green-50\/50:active {
  background-color: rgb(240 253 244 / 0.5);
}
.active\:bg-green-50\/60:active {
  background-color: rgb(240 253 244 / 0.6);
}
.active\:bg-green-50\/70:active {
  background-color: rgb(240 253 244 / 0.7);
}
.active\:bg-green-50\/80:active {
  background-color: rgb(240 253 244 / 0.8);
}
.active\:bg-green-50\/90:active {
  background-color: rgb(240 253 244 / 0.9);
}
.active\:bg-green-500:active {
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
}
.active\:bg-green-500\/10:active {
  background-color: rgb(34 197 94 / 0.1);
}
.active\:bg-green-500\/20:active {
  background-color: rgb(34 197 94 / 0.2);
}
.active\:bg-green-500\/30:active {
  background-color: rgb(34 197 94 / 0.3);
}
.active\:bg-green-500\/40:active {
  background-color: rgb(34 197 94 / 0.4);
}
.active\:bg-green-500\/5:active {
  background-color: rgb(34 197 94 / 0.05);
}
.active\:bg-green-500\/50:active {
  background-color: rgb(34 197 94 / 0.5);
}
.active\:bg-green-500\/60:active {
  background-color: rgb(34 197 94 / 0.6);
}
.active\:bg-green-500\/70:active {
  background-color: rgb(34 197 94 / 0.7);
}
.active\:bg-green-500\/80:active {
  background-color: rgb(34 197 94 / 0.8);
}
.active\:bg-green-500\/90:active {
  background-color: rgb(34 197 94 / 0.9);
}
.active\:bg-green-600:active {
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
}
.active\:bg-green-600\/10:active {
  background-color: rgb(22 163 74 / 0.1);
}
.active\:bg-green-600\/20:active {
  background-color: rgb(22 163 74 / 0.2);
}
.active\:bg-green-600\/30:active {
  background-color: rgb(22 163 74 / 0.3);
}
.active\:bg-green-600\/40:active {
  background-color: rgb(22 163 74 / 0.4);
}
.active\:bg-green-600\/5:active {
  background-color: rgb(22 163 74 / 0.05);
}
.active\:bg-green-600\/50:active {
  background-color: rgb(22 163 74 / 0.5);
}
.active\:bg-green-600\/60:active {
  background-color: rgb(22 163 74 / 0.6);
}
.active\:bg-green-600\/70:active {
  background-color: rgb(22 163 74 / 0.7);
}
.active\:bg-green-600\/80:active {
  background-color: rgb(22 163 74 / 0.8);
}
.active\:bg-green-600\/90:active {
  background-color: rgb(22 163 74 / 0.9);
}
.active\:bg-green-700:active {
  --tw-bg-opacity: 1;
  background-color: rgb(21 128 61 / var(--tw-bg-opacity, 1));
}
.active\:bg-green-700\/10:active {
  background-color: rgb(21 128 61 / 0.1);
}
.active\:bg-green-700\/20:active {
  background-color: rgb(21 128 61 / 0.2);
}
.active\:bg-green-700\/30:active {
  background-color: rgb(21 128 61 / 0.3);
}
.active\:bg-green-700\/40:active {
  background-color: rgb(21 128 61 / 0.4);
}
.active\:bg-green-700\/5:active {
  background-color: rgb(21 128 61 / 0.05);
}
.active\:bg-green-700\/50:active {
  background-color: rgb(21 128 61 / 0.5);
}
.active\:bg-green-700\/60:active {
  background-color: rgb(21 128 61 / 0.6);
}
.active\:bg-green-700\/70:active {
  background-color: rgb(21 128 61 / 0.7);
}
.active\:bg-green-700\/80:active {
  background-color: rgb(21 128 61 / 0.8);
}
.active\:bg-green-700\/90:active {
  background-color: rgb(21 128 61 / 0.9);
}
.active\:bg-green-800:active {
  --tw-bg-opacity: 1;
  background-color: rgb(22 101 52 / var(--tw-bg-opacity, 1));
}
.active\:bg-green-800\/10:active {
  background-color: rgb(22 101 52 / 0.1);
}
.active\:bg-green-800\/20:active {
  background-color: rgb(22 101 52 / 0.2);
}
.active\:bg-green-800\/30:active {
  background-color: rgb(22 101 52 / 0.3);
}
.active\:bg-green-800\/40:active {
  background-color: rgb(22 101 52 / 0.4);
}
.active\:bg-green-800\/5:active {
  background-color: rgb(22 101 52 / 0.05);
}
.active\:bg-green-800\/50:active {
  background-color: rgb(22 101 52 / 0.5);
}
.active\:bg-green-800\/60:active {
  background-color: rgb(22 101 52 / 0.6);
}
.active\:bg-green-800\/70:active {
  background-color: rgb(22 101 52 / 0.7);
}
.active\:bg-green-800\/80:active {
  background-color: rgb(22 101 52 / 0.8);
}
.active\:bg-green-800\/90:active {
  background-color: rgb(22 101 52 / 0.9);
}
.active\:bg-green-900:active {
  --tw-bg-opacity: 1;
  background-color: rgb(20 83 45 / var(--tw-bg-opacity, 1));
}
.active\:bg-green-900\/10:active {
  background-color: rgb(20 83 45 / 0.1);
}
.active\:bg-green-900\/20:active {
  background-color: rgb(20 83 45 / 0.2);
}
.active\:bg-green-900\/30:active {
  background-color: rgb(20 83 45 / 0.3);
}
.active\:bg-green-900\/40:active {
  background-color: rgb(20 83 45 / 0.4);
}
.active\:bg-green-900\/5:active {
  background-color: rgb(20 83 45 / 0.05);
}
.active\:bg-green-900\/50:active {
  background-color: rgb(20 83 45 / 0.5);
}
.active\:bg-green-900\/60:active {
  background-color: rgb(20 83 45 / 0.6);
}
.active\:bg-green-900\/70:active {
  background-color: rgb(20 83 45 / 0.7);
}
.active\:bg-green-900\/80:active {
  background-color: rgb(20 83 45 / 0.8);
}
.active\:bg-green-900\/90:active {
  background-color: rgb(20 83 45 / 0.9);
}
.active\:bg-green-950:active {
  --tw-bg-opacity: 1;
  background-color: rgb(5 46 22 / var(--tw-bg-opacity, 1));
}
.active\:bg-green-950\/10:active {
  background-color: rgb(5 46 22 / 0.1);
}
.active\:bg-green-950\/20:active {
  background-color: rgb(5 46 22 / 0.2);
}
.active\:bg-green-950\/30:active {
  background-color: rgb(5 46 22 / 0.3);
}
.active\:bg-green-950\/40:active {
  background-color: rgb(5 46 22 / 0.4);
}
.active\:bg-green-950\/5:active {
  background-color: rgb(5 46 22 / 0.05);
}
.active\:bg-green-950\/50:active {
  background-color: rgb(5 46 22 / 0.5);
}
.active\:bg-green-950\/60:active {
  background-color: rgb(5 46 22 / 0.6);
}
.active\:bg-green-950\/70:active {
  background-color: rgb(5 46 22 / 0.7);
}
.active\:bg-green-950\/80:active {
  background-color: rgb(5 46 22 / 0.8);
}
.active\:bg-green-950\/90:active {
  background-color: rgb(5 46 22 / 0.9);
}
.active\:bg-indigo-100:active {
  --tw-bg-opacity: 1;
  background-color: rgb(224 231 255 / var(--tw-bg-opacity, 1));
}
.active\:bg-indigo-100\/10:active {
  background-color: rgb(224 231 255 / 0.1);
}
.active\:bg-indigo-100\/20:active {
  background-color: rgb(224 231 255 / 0.2);
}
.active\:bg-indigo-100\/30:active {
  background-color: rgb(224 231 255 / 0.3);
}
.active\:bg-indigo-100\/40:active {
  background-color: rgb(224 231 255 / 0.4);
}
.active\:bg-indigo-100\/5:active {
  background-color: rgb(224 231 255 / 0.05);
}
.active\:bg-indigo-100\/50:active {
  background-color: rgb(224 231 255 / 0.5);
}
.active\:bg-indigo-100\/60:active {
  background-color: rgb(224 231 255 / 0.6);
}
.active\:bg-indigo-100\/70:active {
  background-color: rgb(224 231 255 / 0.7);
}
.active\:bg-indigo-100\/80:active {
  background-color: rgb(224 231 255 / 0.8);
}
.active\:bg-indigo-100\/90:active {
  background-color: rgb(224 231 255 / 0.9);
}
.active\:bg-indigo-200:active {
  --tw-bg-opacity: 1;
  background-color: rgb(199 210 254 / var(--tw-bg-opacity, 1));
}
.active\:bg-indigo-200\/10:active {
  background-color: rgb(199 210 254 / 0.1);
}
.active\:bg-indigo-200\/20:active {
  background-color: rgb(199 210 254 / 0.2);
}
.active\:bg-indigo-200\/30:active {
  background-color: rgb(199 210 254 / 0.3);
}
.active\:bg-indigo-200\/40:active {
  background-color: rgb(199 210 254 / 0.4);
}
.active\:bg-indigo-200\/5:active {
  background-color: rgb(199 210 254 / 0.05);
}
.active\:bg-indigo-200\/50:active {
  background-color: rgb(199 210 254 / 0.5);
}
.active\:bg-indigo-200\/60:active {
  background-color: rgb(199 210 254 / 0.6);
}
.active\:bg-indigo-200\/70:active {
  background-color: rgb(199 210 254 / 0.7);
}
.active\:bg-indigo-200\/80:active {
  background-color: rgb(199 210 254 / 0.8);
}
.active\:bg-indigo-200\/90:active {
  background-color: rgb(199 210 254 / 0.9);
}
.active\:bg-indigo-300:active {
  --tw-bg-opacity: 1;
  background-color: rgb(165 180 252 / var(--tw-bg-opacity, 1));
}
.active\:bg-indigo-300\/10:active {
  background-color: rgb(165 180 252 / 0.1);
}
.active\:bg-indigo-300\/20:active {
  background-color: rgb(165 180 252 / 0.2);
}
.active\:bg-indigo-300\/30:active {
  background-color: rgb(165 180 252 / 0.3);
}
.active\:bg-indigo-300\/40:active {
  background-color: rgb(165 180 252 / 0.4);
}
.active\:bg-indigo-300\/5:active {
  background-color: rgb(165 180 252 / 0.05);
}
.active\:bg-indigo-300\/50:active {
  background-color: rgb(165 180 252 / 0.5);
}
.active\:bg-indigo-300\/60:active {
  background-color: rgb(165 180 252 / 0.6);
}
.active\:bg-indigo-300\/70:active {
  background-color: rgb(165 180 252 / 0.7);
}
.active\:bg-indigo-300\/80:active {
  background-color: rgb(165 180 252 / 0.8);
}
.active\:bg-indigo-300\/90:active {
  background-color: rgb(165 180 252 / 0.9);
}
.active\:bg-indigo-400:active {
  --tw-bg-opacity: 1;
  background-color: rgb(129 140 248 / var(--tw-bg-opacity, 1));
}
.active\:bg-indigo-400\/10:active {
  background-color: rgb(129 140 248 / 0.1);
}
.active\:bg-indigo-400\/20:active {
  background-color: rgb(129 140 248 / 0.2);
}
.active\:bg-indigo-400\/30:active {
  background-color: rgb(129 140 248 / 0.3);
}
.active\:bg-indigo-400\/40:active {
  background-color: rgb(129 140 248 / 0.4);
}
.active\:bg-indigo-400\/5:active {
  background-color: rgb(129 140 248 / 0.05);
}
.active\:bg-indigo-400\/50:active {
  background-color: rgb(129 140 248 / 0.5);
}
.active\:bg-indigo-400\/60:active {
  background-color: rgb(129 140 248 / 0.6);
}
.active\:bg-indigo-400\/70:active {
  background-color: rgb(129 140 248 / 0.7);
}
.active\:bg-indigo-400\/80:active {
  background-color: rgb(129 140 248 / 0.8);
}
.active\:bg-indigo-400\/90:active {
  background-color: rgb(129 140 248 / 0.9);
}
.active\:bg-indigo-50:active {
  --tw-bg-opacity: 1;
  background-color: rgb(238 242 255 / var(--tw-bg-opacity, 1));
}
.active\:bg-indigo-50\/10:active {
  background-color: rgb(238 242 255 / 0.1);
}
.active\:bg-indigo-50\/20:active {
  background-color: rgb(238 242 255 / 0.2);
}
.active\:bg-indigo-50\/30:active {
  background-color: rgb(238 242 255 / 0.3);
}
.active\:bg-indigo-50\/40:active {
  background-color: rgb(238 242 255 / 0.4);
}
.active\:bg-indigo-50\/5:active {
  background-color: rgb(238 242 255 / 0.05);
}
.active\:bg-indigo-50\/50:active {
  background-color: rgb(238 242 255 / 0.5);
}
.active\:bg-indigo-50\/60:active {
  background-color: rgb(238 242 255 / 0.6);
}
.active\:bg-indigo-50\/70:active {
  background-color: rgb(238 242 255 / 0.7);
}
.active\:bg-indigo-50\/80:active {
  background-color: rgb(238 242 255 / 0.8);
}
.active\:bg-indigo-50\/90:active {
  background-color: rgb(238 242 255 / 0.9);
}
.active\:bg-indigo-500:active {
  --tw-bg-opacity: 1;
  background-color: rgb(99 102 241 / var(--tw-bg-opacity, 1));
}
.active\:bg-indigo-500\/10:active {
  background-color: rgb(99 102 241 / 0.1);
}
.active\:bg-indigo-500\/20:active {
  background-color: rgb(99 102 241 / 0.2);
}
.active\:bg-indigo-500\/30:active {
  background-color: rgb(99 102 241 / 0.3);
}
.active\:bg-indigo-500\/40:active {
  background-color: rgb(99 102 241 / 0.4);
}
.active\:bg-indigo-500\/5:active {
  background-color: rgb(99 102 241 / 0.05);
}
.active\:bg-indigo-500\/50:active {
  background-color: rgb(99 102 241 / 0.5);
}
.active\:bg-indigo-500\/60:active {
  background-color: rgb(99 102 241 / 0.6);
}
.active\:bg-indigo-500\/70:active {
  background-color: rgb(99 102 241 / 0.7);
}
.active\:bg-indigo-500\/80:active {
  background-color: rgb(99 102 241 / 0.8);
}
.active\:bg-indigo-500\/90:active {
  background-color: rgb(99 102 241 / 0.9);
}
.active\:bg-indigo-600:active {
  --tw-bg-opacity: 1;
  background-color: rgb(79 70 229 / var(--tw-bg-opacity, 1));
}
.active\:bg-indigo-600\/10:active {
  background-color: rgb(79 70 229 / 0.1);
}
.active\:bg-indigo-600\/20:active {
  background-color: rgb(79 70 229 / 0.2);
}
.active\:bg-indigo-600\/30:active {
  background-color: rgb(79 70 229 / 0.3);
}
.active\:bg-indigo-600\/40:active {
  background-color: rgb(79 70 229 / 0.4);
}
.active\:bg-indigo-600\/5:active {
  background-color: rgb(79 70 229 / 0.05);
}
.active\:bg-indigo-600\/50:active {
  background-color: rgb(79 70 229 / 0.5);
}
.active\:bg-indigo-600\/60:active {
  background-color: rgb(79 70 229 / 0.6);
}
.active\:bg-indigo-600\/70:active {
  background-color: rgb(79 70 229 / 0.7);
}
.active\:bg-indigo-600\/80:active {
  background-color: rgb(79 70 229 / 0.8);
}
.active\:bg-indigo-600\/90:active {
  background-color: rgb(79 70 229 / 0.9);
}
.active\:bg-indigo-700:active {
  --tw-bg-opacity: 1;
  background-color: rgb(67 56 202 / var(--tw-bg-opacity, 1));
}
.active\:bg-indigo-700\/10:active {
  background-color: rgb(67 56 202 / 0.1);
}
.active\:bg-indigo-700\/20:active {
  background-color: rgb(67 56 202 / 0.2);
}
.active\:bg-indigo-700\/30:active {
  background-color: rgb(67 56 202 / 0.3);
}
.active\:bg-indigo-700\/40:active {
  background-color: rgb(67 56 202 / 0.4);
}
.active\:bg-indigo-700\/5:active {
  background-color: rgb(67 56 202 / 0.05);
}
.active\:bg-indigo-700\/50:active {
  background-color: rgb(67 56 202 / 0.5);
}
.active\:bg-indigo-700\/60:active {
  background-color: rgb(67 56 202 / 0.6);
}
.active\:bg-indigo-700\/70:active {
  background-color: rgb(67 56 202 / 0.7);
}
.active\:bg-indigo-700\/80:active {
  background-color: rgb(67 56 202 / 0.8);
}
.active\:bg-indigo-700\/90:active {
  background-color: rgb(67 56 202 / 0.9);
}
.active\:bg-indigo-800:active {
  --tw-bg-opacity: 1;
  background-color: rgb(55 48 163 / var(--tw-bg-opacity, 1));
}
.active\:bg-indigo-800\/10:active {
  background-color: rgb(55 48 163 / 0.1);
}
.active\:bg-indigo-800\/20:active {
  background-color: rgb(55 48 163 / 0.2);
}
.active\:bg-indigo-800\/30:active {
  background-color: rgb(55 48 163 / 0.3);
}
.active\:bg-indigo-800\/40:active {
  background-color: rgb(55 48 163 / 0.4);
}
.active\:bg-indigo-800\/5:active {
  background-color: rgb(55 48 163 / 0.05);
}
.active\:bg-indigo-800\/50:active {
  background-color: rgb(55 48 163 / 0.5);
}
.active\:bg-indigo-800\/60:active {
  background-color: rgb(55 48 163 / 0.6);
}
.active\:bg-indigo-800\/70:active {
  background-color: rgb(55 48 163 / 0.7);
}
.active\:bg-indigo-800\/80:active {
  background-color: rgb(55 48 163 / 0.8);
}
.active\:bg-indigo-800\/90:active {
  background-color: rgb(55 48 163 / 0.9);
}
.active\:bg-indigo-900:active {
  --tw-bg-opacity: 1;
  background-color: rgb(49 46 129 / var(--tw-bg-opacity, 1));
}
.active\:bg-indigo-900\/10:active {
  background-color: rgb(49 46 129 / 0.1);
}
.active\:bg-indigo-900\/20:active {
  background-color: rgb(49 46 129 / 0.2);
}
.active\:bg-indigo-900\/30:active {
  background-color: rgb(49 46 129 / 0.3);
}
.active\:bg-indigo-900\/40:active {
  background-color: rgb(49 46 129 / 0.4);
}
.active\:bg-indigo-900\/5:active {
  background-color: rgb(49 46 129 / 0.05);
}
.active\:bg-indigo-900\/50:active {
  background-color: rgb(49 46 129 / 0.5);
}
.active\:bg-indigo-900\/60:active {
  background-color: rgb(49 46 129 / 0.6);
}
.active\:bg-indigo-900\/70:active {
  background-color: rgb(49 46 129 / 0.7);
}
.active\:bg-indigo-900\/80:active {
  background-color: rgb(49 46 129 / 0.8);
}
.active\:bg-indigo-900\/90:active {
  background-color: rgb(49 46 129 / 0.9);
}
.active\:bg-indigo-950:active {
  --tw-bg-opacity: 1;
  background-color: rgb(30 27 75 / var(--tw-bg-opacity, 1));
}
.active\:bg-indigo-950\/10:active {
  background-color: rgb(30 27 75 / 0.1);
}
.active\:bg-indigo-950\/20:active {
  background-color: rgb(30 27 75 / 0.2);
}
.active\:bg-indigo-950\/30:active {
  background-color: rgb(30 27 75 / 0.3);
}
.active\:bg-indigo-950\/40:active {
  background-color: rgb(30 27 75 / 0.4);
}
.active\:bg-indigo-950\/5:active {
  background-color: rgb(30 27 75 / 0.05);
}
.active\:bg-indigo-950\/50:active {
  background-color: rgb(30 27 75 / 0.5);
}
.active\:bg-indigo-950\/60:active {
  background-color: rgb(30 27 75 / 0.6);
}
.active\:bg-indigo-950\/70:active {
  background-color: rgb(30 27 75 / 0.7);
}
.active\:bg-indigo-950\/80:active {
  background-color: rgb(30 27 75 / 0.8);
}
.active\:bg-indigo-950\/90:active {
  background-color: rgb(30 27 75 / 0.9);
}
.active\:bg-lime-100:active {
  --tw-bg-opacity: 1;
  background-color: rgb(236 252 203 / var(--tw-bg-opacity, 1));
}
.active\:bg-lime-100\/10:active {
  background-color: rgb(236 252 203 / 0.1);
}
.active\:bg-lime-100\/20:active {
  background-color: rgb(236 252 203 / 0.2);
}
.active\:bg-lime-100\/30:active {
  background-color: rgb(236 252 203 / 0.3);
}
.active\:bg-lime-100\/40:active {
  background-color: rgb(236 252 203 / 0.4);
}
.active\:bg-lime-100\/5:active {
  background-color: rgb(236 252 203 / 0.05);
}
.active\:bg-lime-100\/50:active {
  background-color: rgb(236 252 203 / 0.5);
}
.active\:bg-lime-100\/60:active {
  background-color: rgb(236 252 203 / 0.6);
}
.active\:bg-lime-100\/70:active {
  background-color: rgb(236 252 203 / 0.7);
}
.active\:bg-lime-100\/80:active {
  background-color: rgb(236 252 203 / 0.8);
}
.active\:bg-lime-100\/90:active {
  background-color: rgb(236 252 203 / 0.9);
}
.active\:bg-lime-200:active {
  --tw-bg-opacity: 1;
  background-color: rgb(217 249 157 / var(--tw-bg-opacity, 1));
}
.active\:bg-lime-200\/10:active {
  background-color: rgb(217 249 157 / 0.1);
}
.active\:bg-lime-200\/20:active {
  background-color: rgb(217 249 157 / 0.2);
}
.active\:bg-lime-200\/30:active {
  background-color: rgb(217 249 157 / 0.3);
}
.active\:bg-lime-200\/40:active {
  background-color: rgb(217 249 157 / 0.4);
}
.active\:bg-lime-200\/5:active {
  background-color: rgb(217 249 157 / 0.05);
}
.active\:bg-lime-200\/50:active {
  background-color: rgb(217 249 157 / 0.5);
}
.active\:bg-lime-200\/60:active {
  background-color: rgb(217 249 157 / 0.6);
}
.active\:bg-lime-200\/70:active {
  background-color: rgb(217 249 157 / 0.7);
}
.active\:bg-lime-200\/80:active {
  background-color: rgb(217 249 157 / 0.8);
}
.active\:bg-lime-200\/90:active {
  background-color: rgb(217 249 157 / 0.9);
}
.active\:bg-lime-300:active {
  --tw-bg-opacity: 1;
  background-color: rgb(190 242 100 / var(--tw-bg-opacity, 1));
}
.active\:bg-lime-300\/10:active {
  background-color: rgb(190 242 100 / 0.1);
}
.active\:bg-lime-300\/20:active {
  background-color: rgb(190 242 100 / 0.2);
}
.active\:bg-lime-300\/30:active {
  background-color: rgb(190 242 100 / 0.3);
}
.active\:bg-lime-300\/40:active {
  background-color: rgb(190 242 100 / 0.4);
}
.active\:bg-lime-300\/5:active {
  background-color: rgb(190 242 100 / 0.05);
}
.active\:bg-lime-300\/50:active {
  background-color: rgb(190 242 100 / 0.5);
}
.active\:bg-lime-300\/60:active {
  background-color: rgb(190 242 100 / 0.6);
}
.active\:bg-lime-300\/70:active {
  background-color: rgb(190 242 100 / 0.7);
}
.active\:bg-lime-300\/80:active {
  background-color: rgb(190 242 100 / 0.8);
}
.active\:bg-lime-300\/90:active {
  background-color: rgb(190 242 100 / 0.9);
}
.active\:bg-lime-400:active {
  --tw-bg-opacity: 1;
  background-color: rgb(163 230 53 / var(--tw-bg-opacity, 1));
}
.active\:bg-lime-400\/10:active {
  background-color: rgb(163 230 53 / 0.1);
}
.active\:bg-lime-400\/20:active {
  background-color: rgb(163 230 53 / 0.2);
}
.active\:bg-lime-400\/30:active {
  background-color: rgb(163 230 53 / 0.3);
}
.active\:bg-lime-400\/40:active {
  background-color: rgb(163 230 53 / 0.4);
}
.active\:bg-lime-400\/5:active {
  background-color: rgb(163 230 53 / 0.05);
}
.active\:bg-lime-400\/50:active {
  background-color: rgb(163 230 53 / 0.5);
}
.active\:bg-lime-400\/60:active {
  background-color: rgb(163 230 53 / 0.6);
}
.active\:bg-lime-400\/70:active {
  background-color: rgb(163 230 53 / 0.7);
}
.active\:bg-lime-400\/80:active {
  background-color: rgb(163 230 53 / 0.8);
}
.active\:bg-lime-400\/90:active {
  background-color: rgb(163 230 53 / 0.9);
}
.active\:bg-lime-50:active {
  --tw-bg-opacity: 1;
  background-color: rgb(247 254 231 / var(--tw-bg-opacity, 1));
}
.active\:bg-lime-50\/10:active {
  background-color: rgb(247 254 231 / 0.1);
}
.active\:bg-lime-50\/20:active {
  background-color: rgb(247 254 231 / 0.2);
}
.active\:bg-lime-50\/30:active {
  background-color: rgb(247 254 231 / 0.3);
}
.active\:bg-lime-50\/40:active {
  background-color: rgb(247 254 231 / 0.4);
}
.active\:bg-lime-50\/5:active {
  background-color: rgb(247 254 231 / 0.05);
}
.active\:bg-lime-50\/50:active {
  background-color: rgb(247 254 231 / 0.5);
}
.active\:bg-lime-50\/60:active {
  background-color: rgb(247 254 231 / 0.6);
}
.active\:bg-lime-50\/70:active {
  background-color: rgb(247 254 231 / 0.7);
}
.active\:bg-lime-50\/80:active {
  background-color: rgb(247 254 231 / 0.8);
}
.active\:bg-lime-50\/90:active {
  background-color: rgb(247 254 231 / 0.9);
}
.active\:bg-lime-500:active {
  --tw-bg-opacity: 1;
  background-color: rgb(132 204 22 / var(--tw-bg-opacity, 1));
}
.active\:bg-lime-500\/10:active {
  background-color: rgb(132 204 22 / 0.1);
}
.active\:bg-lime-500\/20:active {
  background-color: rgb(132 204 22 / 0.2);
}
.active\:bg-lime-500\/30:active {
  background-color: rgb(132 204 22 / 0.3);
}
.active\:bg-lime-500\/40:active {
  background-color: rgb(132 204 22 / 0.4);
}
.active\:bg-lime-500\/5:active {
  background-color: rgb(132 204 22 / 0.05);
}
.active\:bg-lime-500\/50:active {
  background-color: rgb(132 204 22 / 0.5);
}
.active\:bg-lime-500\/60:active {
  background-color: rgb(132 204 22 / 0.6);
}
.active\:bg-lime-500\/70:active {
  background-color: rgb(132 204 22 / 0.7);
}
.active\:bg-lime-500\/80:active {
  background-color: rgb(132 204 22 / 0.8);
}
.active\:bg-lime-500\/90:active {
  background-color: rgb(132 204 22 / 0.9);
}
.active\:bg-lime-600:active {
  --tw-bg-opacity: 1;
  background-color: rgb(101 163 13 / var(--tw-bg-opacity, 1));
}
.active\:bg-lime-600\/10:active {
  background-color: rgb(101 163 13 / 0.1);
}
.active\:bg-lime-600\/20:active {
  background-color: rgb(101 163 13 / 0.2);
}
.active\:bg-lime-600\/30:active {
  background-color: rgb(101 163 13 / 0.3);
}
.active\:bg-lime-600\/40:active {
  background-color: rgb(101 163 13 / 0.4);
}
.active\:bg-lime-600\/5:active {
  background-color: rgb(101 163 13 / 0.05);
}
.active\:bg-lime-600\/50:active {
  background-color: rgb(101 163 13 / 0.5);
}
.active\:bg-lime-600\/60:active {
  background-color: rgb(101 163 13 / 0.6);
}
.active\:bg-lime-600\/70:active {
  background-color: rgb(101 163 13 / 0.7);
}
.active\:bg-lime-600\/80:active {
  background-color: rgb(101 163 13 / 0.8);
}
.active\:bg-lime-600\/90:active {
  background-color: rgb(101 163 13 / 0.9);
}
.active\:bg-lime-700:active {
  --tw-bg-opacity: 1;
  background-color: rgb(77 124 15 / var(--tw-bg-opacity, 1));
}
.active\:bg-lime-700\/10:active {
  background-color: rgb(77 124 15 / 0.1);
}
.active\:bg-lime-700\/20:active {
  background-color: rgb(77 124 15 / 0.2);
}
.active\:bg-lime-700\/30:active {
  background-color: rgb(77 124 15 / 0.3);
}
.active\:bg-lime-700\/40:active {
  background-color: rgb(77 124 15 / 0.4);
}
.active\:bg-lime-700\/5:active {
  background-color: rgb(77 124 15 / 0.05);
}
.active\:bg-lime-700\/50:active {
  background-color: rgb(77 124 15 / 0.5);
}
.active\:bg-lime-700\/60:active {
  background-color: rgb(77 124 15 / 0.6);
}
.active\:bg-lime-700\/70:active {
  background-color: rgb(77 124 15 / 0.7);
}
.active\:bg-lime-700\/80:active {
  background-color: rgb(77 124 15 / 0.8);
}
.active\:bg-lime-700\/90:active {
  background-color: rgb(77 124 15 / 0.9);
}
.active\:bg-lime-800:active {
  --tw-bg-opacity: 1;
  background-color: rgb(63 98 18 / var(--tw-bg-opacity, 1));
}
.active\:bg-lime-800\/10:active {
  background-color: rgb(63 98 18 / 0.1);
}
.active\:bg-lime-800\/20:active {
  background-color: rgb(63 98 18 / 0.2);
}
.active\:bg-lime-800\/30:active {
  background-color: rgb(63 98 18 / 0.3);
}
.active\:bg-lime-800\/40:active {
  background-color: rgb(63 98 18 / 0.4);
}
.active\:bg-lime-800\/5:active {
  background-color: rgb(63 98 18 / 0.05);
}
.active\:bg-lime-800\/50:active {
  background-color: rgb(63 98 18 / 0.5);
}
.active\:bg-lime-800\/60:active {
  background-color: rgb(63 98 18 / 0.6);
}
.active\:bg-lime-800\/70:active {
  background-color: rgb(63 98 18 / 0.7);
}
.active\:bg-lime-800\/80:active {
  background-color: rgb(63 98 18 / 0.8);
}
.active\:bg-lime-800\/90:active {
  background-color: rgb(63 98 18 / 0.9);
}
.active\:bg-lime-900:active {
  --tw-bg-opacity: 1;
  background-color: rgb(54 83 20 / var(--tw-bg-opacity, 1));
}
.active\:bg-lime-900\/10:active {
  background-color: rgb(54 83 20 / 0.1);
}
.active\:bg-lime-900\/20:active {
  background-color: rgb(54 83 20 / 0.2);
}
.active\:bg-lime-900\/30:active {
  background-color: rgb(54 83 20 / 0.3);
}
.active\:bg-lime-900\/40:active {
  background-color: rgb(54 83 20 / 0.4);
}
.active\:bg-lime-900\/5:active {
  background-color: rgb(54 83 20 / 0.05);
}
.active\:bg-lime-900\/50:active {
  background-color: rgb(54 83 20 / 0.5);
}
.active\:bg-lime-900\/60:active {
  background-color: rgb(54 83 20 / 0.6);
}
.active\:bg-lime-900\/70:active {
  background-color: rgb(54 83 20 / 0.7);
}
.active\:bg-lime-900\/80:active {
  background-color: rgb(54 83 20 / 0.8);
}
.active\:bg-lime-900\/90:active {
  background-color: rgb(54 83 20 / 0.9);
}
.active\:bg-lime-950:active {
  --tw-bg-opacity: 1;
  background-color: rgb(26 46 5 / var(--tw-bg-opacity, 1));
}
.active\:bg-lime-950\/10:active {
  background-color: rgb(26 46 5 / 0.1);
}
.active\:bg-lime-950\/20:active {
  background-color: rgb(26 46 5 / 0.2);
}
.active\:bg-lime-950\/30:active {
  background-color: rgb(26 46 5 / 0.3);
}
.active\:bg-lime-950\/40:active {
  background-color: rgb(26 46 5 / 0.4);
}
.active\:bg-lime-950\/5:active {
  background-color: rgb(26 46 5 / 0.05);
}
.active\:bg-lime-950\/50:active {
  background-color: rgb(26 46 5 / 0.5);
}
.active\:bg-lime-950\/60:active {
  background-color: rgb(26 46 5 / 0.6);
}
.active\:bg-lime-950\/70:active {
  background-color: rgb(26 46 5 / 0.7);
}
.active\:bg-lime-950\/80:active {
  background-color: rgb(26 46 5 / 0.8);
}
.active\:bg-lime-950\/90:active {
  background-color: rgb(26 46 5 / 0.9);
}
.active\:bg-neutral-100:active {
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 245 / var(--tw-bg-opacity, 1));
}
.active\:bg-neutral-100\/10:active {
  background-color: rgb(245 245 245 / 0.1);
}
.active\:bg-neutral-100\/20:active {
  background-color: rgb(245 245 245 / 0.2);
}
.active\:bg-neutral-100\/30:active {
  background-color: rgb(245 245 245 / 0.3);
}
.active\:bg-neutral-100\/40:active {
  background-color: rgb(245 245 245 / 0.4);
}
.active\:bg-neutral-100\/5:active {
  background-color: rgb(245 245 245 / 0.05);
}
.active\:bg-neutral-100\/50:active {
  background-color: rgb(245 245 245 / 0.5);
}
.active\:bg-neutral-100\/60:active {
  background-color: rgb(245 245 245 / 0.6);
}
.active\:bg-neutral-100\/70:active {
  background-color: rgb(245 245 245 / 0.7);
}
.active\:bg-neutral-100\/80:active {
  background-color: rgb(245 245 245 / 0.8);
}
.active\:bg-neutral-100\/90:active {
  background-color: rgb(245 245 245 / 0.9);
}
.active\:bg-neutral-200:active {
  --tw-bg-opacity: 1;
  background-color: rgb(229 229 229 / var(--tw-bg-opacity, 1));
}
.active\:bg-neutral-200\/10:active {
  background-color: rgb(229 229 229 / 0.1);
}
.active\:bg-neutral-200\/20:active {
  background-color: rgb(229 229 229 / 0.2);
}
.active\:bg-neutral-200\/30:active {
  background-color: rgb(229 229 229 / 0.3);
}
.active\:bg-neutral-200\/40:active {
  background-color: rgb(229 229 229 / 0.4);
}
.active\:bg-neutral-200\/5:active {
  background-color: rgb(229 229 229 / 0.05);
}
.active\:bg-neutral-200\/50:active {
  background-color: rgb(229 229 229 / 0.5);
}
.active\:bg-neutral-200\/60:active {
  background-color: rgb(229 229 229 / 0.6);
}
.active\:bg-neutral-200\/70:active {
  background-color: rgb(229 229 229 / 0.7);
}
.active\:bg-neutral-200\/80:active {
  background-color: rgb(229 229 229 / 0.8);
}
.active\:bg-neutral-200\/90:active {
  background-color: rgb(229 229 229 / 0.9);
}
.active\:bg-neutral-300:active {
  --tw-bg-opacity: 1;
  background-color: rgb(212 212 212 / var(--tw-bg-opacity, 1));
}
.active\:bg-neutral-300\/10:active {
  background-color: rgb(212 212 212 / 0.1);
}
.active\:bg-neutral-300\/20:active {
  background-color: rgb(212 212 212 / 0.2);
}
.active\:bg-neutral-300\/30:active {
  background-color: rgb(212 212 212 / 0.3);
}
.active\:bg-neutral-300\/40:active {
  background-color: rgb(212 212 212 / 0.4);
}
.active\:bg-neutral-300\/5:active {
  background-color: rgb(212 212 212 / 0.05);
}
.active\:bg-neutral-300\/50:active {
  background-color: rgb(212 212 212 / 0.5);
}
.active\:bg-neutral-300\/60:active {
  background-color: rgb(212 212 212 / 0.6);
}
.active\:bg-neutral-300\/70:active {
  background-color: rgb(212 212 212 / 0.7);
}
.active\:bg-neutral-300\/80:active {
  background-color: rgb(212 212 212 / 0.8);
}
.active\:bg-neutral-300\/90:active {
  background-color: rgb(212 212 212 / 0.9);
}
.active\:bg-neutral-400:active {
  --tw-bg-opacity: 1;
  background-color: rgb(163 163 163 / var(--tw-bg-opacity, 1));
}
.active\:bg-neutral-400\/10:active {
  background-color: rgb(163 163 163 / 0.1);
}
.active\:bg-neutral-400\/20:active {
  background-color: rgb(163 163 163 / 0.2);
}
.active\:bg-neutral-400\/30:active {
  background-color: rgb(163 163 163 / 0.3);
}
.active\:bg-neutral-400\/40:active {
  background-color: rgb(163 163 163 / 0.4);
}
.active\:bg-neutral-400\/5:active {
  background-color: rgb(163 163 163 / 0.05);
}
.active\:bg-neutral-400\/50:active {
  background-color: rgb(163 163 163 / 0.5);
}
.active\:bg-neutral-400\/60:active {
  background-color: rgb(163 163 163 / 0.6);
}
.active\:bg-neutral-400\/70:active {
  background-color: rgb(163 163 163 / 0.7);
}
.active\:bg-neutral-400\/80:active {
  background-color: rgb(163 163 163 / 0.8);
}
.active\:bg-neutral-400\/90:active {
  background-color: rgb(163 163 163 / 0.9);
}
.active\:bg-neutral-50:active {
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
}
.active\:bg-neutral-50\/10:active {
  background-color: rgb(250 250 250 / 0.1);
}
.active\:bg-neutral-50\/20:active {
  background-color: rgb(250 250 250 / 0.2);
}
.active\:bg-neutral-50\/30:active {
  background-color: rgb(250 250 250 / 0.3);
}
.active\:bg-neutral-50\/40:active {
  background-color: rgb(250 250 250 / 0.4);
}
.active\:bg-neutral-50\/5:active {
  background-color: rgb(250 250 250 / 0.05);
}
.active\:bg-neutral-50\/50:active {
  background-color: rgb(250 250 250 / 0.5);
}
.active\:bg-neutral-50\/60:active {
  background-color: rgb(250 250 250 / 0.6);
}
.active\:bg-neutral-50\/70:active {
  background-color: rgb(250 250 250 / 0.7);
}
.active\:bg-neutral-50\/80:active {
  background-color: rgb(250 250 250 / 0.8);
}
.active\:bg-neutral-50\/90:active {
  background-color: rgb(250 250 250 / 0.9);
}
.active\:bg-neutral-500:active {
  --tw-bg-opacity: 1;
  background-color: rgb(115 115 115 / var(--tw-bg-opacity, 1));
}
.active\:bg-neutral-500\/10:active {
  background-color: rgb(115 115 115 / 0.1);
}
.active\:bg-neutral-500\/20:active {
  background-color: rgb(115 115 115 / 0.2);
}
.active\:bg-neutral-500\/30:active {
  background-color: rgb(115 115 115 / 0.3);
}
.active\:bg-neutral-500\/40:active {
  background-color: rgb(115 115 115 / 0.4);
}
.active\:bg-neutral-500\/5:active {
  background-color: rgb(115 115 115 / 0.05);
}
.active\:bg-neutral-500\/50:active {
  background-color: rgb(115 115 115 / 0.5);
}
.active\:bg-neutral-500\/60:active {
  background-color: rgb(115 115 115 / 0.6);
}
.active\:bg-neutral-500\/70:active {
  background-color: rgb(115 115 115 / 0.7);
}
.active\:bg-neutral-500\/80:active {
  background-color: rgb(115 115 115 / 0.8);
}
.active\:bg-neutral-500\/90:active {
  background-color: rgb(115 115 115 / 0.9);
}
.active\:bg-neutral-600:active {
  --tw-bg-opacity: 1;
  background-color: rgb(82 82 82 / var(--tw-bg-opacity, 1));
}
.active\:bg-neutral-600\/10:active {
  background-color: rgb(82 82 82 / 0.1);
}
.active\:bg-neutral-600\/20:active {
  background-color: rgb(82 82 82 / 0.2);
}
.active\:bg-neutral-600\/30:active {
  background-color: rgb(82 82 82 / 0.3);
}
.active\:bg-neutral-600\/40:active {
  background-color: rgb(82 82 82 / 0.4);
}
.active\:bg-neutral-600\/5:active {
  background-color: rgb(82 82 82 / 0.05);
}
.active\:bg-neutral-600\/50:active {
  background-color: rgb(82 82 82 / 0.5);
}
.active\:bg-neutral-600\/60:active {
  background-color: rgb(82 82 82 / 0.6);
}
.active\:bg-neutral-600\/70:active {
  background-color: rgb(82 82 82 / 0.7);
}
.active\:bg-neutral-600\/80:active {
  background-color: rgb(82 82 82 / 0.8);
}
.active\:bg-neutral-600\/90:active {
  background-color: rgb(82 82 82 / 0.9);
}
.active\:bg-neutral-700:active {
  --tw-bg-opacity: 1;
  background-color: rgb(64 64 64 / var(--tw-bg-opacity, 1));
}
.active\:bg-neutral-700\/10:active {
  background-color: rgb(64 64 64 / 0.1);
}
.active\:bg-neutral-700\/20:active {
  background-color: rgb(64 64 64 / 0.2);
}
.active\:bg-neutral-700\/30:active {
  background-color: rgb(64 64 64 / 0.3);
}
.active\:bg-neutral-700\/40:active {
  background-color: rgb(64 64 64 / 0.4);
}
.active\:bg-neutral-700\/5:active {
  background-color: rgb(64 64 64 / 0.05);
}
.active\:bg-neutral-700\/50:active {
  background-color: rgb(64 64 64 / 0.5);
}
.active\:bg-neutral-700\/60:active {
  background-color: rgb(64 64 64 / 0.6);
}
.active\:bg-neutral-700\/70:active {
  background-color: rgb(64 64 64 / 0.7);
}
.active\:bg-neutral-700\/80:active {
  background-color: rgb(64 64 64 / 0.8);
}
.active\:bg-neutral-700\/90:active {
  background-color: rgb(64 64 64 / 0.9);
}
.active\:bg-neutral-800:active {
  --tw-bg-opacity: 1;
  background-color: rgb(38 38 38 / var(--tw-bg-opacity, 1));
}
.active\:bg-neutral-800\/10:active {
  background-color: rgb(38 38 38 / 0.1);
}
.active\:bg-neutral-800\/20:active {
  background-color: rgb(38 38 38 / 0.2);
}
.active\:bg-neutral-800\/30:active {
  background-color: rgb(38 38 38 / 0.3);
}
.active\:bg-neutral-800\/40:active {
  background-color: rgb(38 38 38 / 0.4);
}
.active\:bg-neutral-800\/5:active {
  background-color: rgb(38 38 38 / 0.05);
}
.active\:bg-neutral-800\/50:active {
  background-color: rgb(38 38 38 / 0.5);
}
.active\:bg-neutral-800\/60:active {
  background-color: rgb(38 38 38 / 0.6);
}
.active\:bg-neutral-800\/70:active {
  background-color: rgb(38 38 38 / 0.7);
}
.active\:bg-neutral-800\/80:active {
  background-color: rgb(38 38 38 / 0.8);
}
.active\:bg-neutral-800\/90:active {
  background-color: rgb(38 38 38 / 0.9);
}
.active\:bg-neutral-900:active {
  --tw-bg-opacity: 1;
  background-color: rgb(23 23 23 / var(--tw-bg-opacity, 1));
}
.active\:bg-neutral-900\/10:active {
  background-color: rgb(23 23 23 / 0.1);
}
.active\:bg-neutral-900\/20:active {
  background-color: rgb(23 23 23 / 0.2);
}
.active\:bg-neutral-900\/30:active {
  background-color: rgb(23 23 23 / 0.3);
}
.active\:bg-neutral-900\/40:active {
  background-color: rgb(23 23 23 / 0.4);
}
.active\:bg-neutral-900\/5:active {
  background-color: rgb(23 23 23 / 0.05);
}
.active\:bg-neutral-900\/50:active {
  background-color: rgb(23 23 23 / 0.5);
}
.active\:bg-neutral-900\/60:active {
  background-color: rgb(23 23 23 / 0.6);
}
.active\:bg-neutral-900\/70:active {
  background-color: rgb(23 23 23 / 0.7);
}
.active\:bg-neutral-900\/80:active {
  background-color: rgb(23 23 23 / 0.8);
}
.active\:bg-neutral-900\/90:active {
  background-color: rgb(23 23 23 / 0.9);
}
.active\:bg-neutral-950:active {
  --tw-bg-opacity: 1;
  background-color: rgb(10 10 10 / var(--tw-bg-opacity, 1));
}
.active\:bg-neutral-950\/10:active {
  background-color: rgb(10 10 10 / 0.1);
}
.active\:bg-neutral-950\/20:active {
  background-color: rgb(10 10 10 / 0.2);
}
.active\:bg-neutral-950\/30:active {
  background-color: rgb(10 10 10 / 0.3);
}
.active\:bg-neutral-950\/40:active {
  background-color: rgb(10 10 10 / 0.4);
}
.active\:bg-neutral-950\/5:active {
  background-color: rgb(10 10 10 / 0.05);
}
.active\:bg-neutral-950\/50:active {
  background-color: rgb(10 10 10 / 0.5);
}
.active\:bg-neutral-950\/60:active {
  background-color: rgb(10 10 10 / 0.6);
}
.active\:bg-neutral-950\/70:active {
  background-color: rgb(10 10 10 / 0.7);
}
.active\:bg-neutral-950\/80:active {
  background-color: rgb(10 10 10 / 0.8);
}
.active\:bg-neutral-950\/90:active {
  background-color: rgb(10 10 10 / 0.9);
}
.active\:bg-orange-100:active {
  --tw-bg-opacity: 1;
  background-color: rgb(255 237 213 / var(--tw-bg-opacity, 1));
}
.active\:bg-orange-100\/10:active {
  background-color: rgb(255 237 213 / 0.1);
}
.active\:bg-orange-100\/20:active {
  background-color: rgb(255 237 213 / 0.2);
}
.active\:bg-orange-100\/30:active {
  background-color: rgb(255 237 213 / 0.3);
}
.active\:bg-orange-100\/40:active {
  background-color: rgb(255 237 213 / 0.4);
}
.active\:bg-orange-100\/5:active {
  background-color: rgb(255 237 213 / 0.05);
}
.active\:bg-orange-100\/50:active {
  background-color: rgb(255 237 213 / 0.5);
}
.active\:bg-orange-100\/60:active {
  background-color: rgb(255 237 213 / 0.6);
}
.active\:bg-orange-100\/70:active {
  background-color: rgb(255 237 213 / 0.7);
}
.active\:bg-orange-100\/80:active {
  background-color: rgb(255 237 213 / 0.8);
}
.active\:bg-orange-100\/90:active {
  background-color: rgb(255 237 213 / 0.9);
}
.active\:bg-orange-200:active {
  --tw-bg-opacity: 1;
  background-color: rgb(254 215 170 / var(--tw-bg-opacity, 1));
}
.active\:bg-orange-200\/10:active {
  background-color: rgb(254 215 170 / 0.1);
}
.active\:bg-orange-200\/20:active {
  background-color: rgb(254 215 170 / 0.2);
}
.active\:bg-orange-200\/30:active {
  background-color: rgb(254 215 170 / 0.3);
}
.active\:bg-orange-200\/40:active {
  background-color: rgb(254 215 170 / 0.4);
}
.active\:bg-orange-200\/5:active {
  background-color: rgb(254 215 170 / 0.05);
}
.active\:bg-orange-200\/50:active {
  background-color: rgb(254 215 170 / 0.5);
}
.active\:bg-orange-200\/60:active {
  background-color: rgb(254 215 170 / 0.6);
}
.active\:bg-orange-200\/70:active {
  background-color: rgb(254 215 170 / 0.7);
}
.active\:bg-orange-200\/80:active {
  background-color: rgb(254 215 170 / 0.8);
}
.active\:bg-orange-200\/90:active {
  background-color: rgb(254 215 170 / 0.9);
}
.active\:bg-orange-300:active {
  --tw-bg-opacity: 1;
  background-color: rgb(253 186 116 / var(--tw-bg-opacity, 1));
}
.active\:bg-orange-300\/10:active {
  background-color: rgb(253 186 116 / 0.1);
}
.active\:bg-orange-300\/20:active {
  background-color: rgb(253 186 116 / 0.2);
}
.active\:bg-orange-300\/30:active {
  background-color: rgb(253 186 116 / 0.3);
}
.active\:bg-orange-300\/40:active {
  background-color: rgb(253 186 116 / 0.4);
}
.active\:bg-orange-300\/5:active {
  background-color: rgb(253 186 116 / 0.05);
}
.active\:bg-orange-300\/50:active {
  background-color: rgb(253 186 116 / 0.5);
}
.active\:bg-orange-300\/60:active {
  background-color: rgb(253 186 116 / 0.6);
}
.active\:bg-orange-300\/70:active {
  background-color: rgb(253 186 116 / 0.7);
}
.active\:bg-orange-300\/80:active {
  background-color: rgb(253 186 116 / 0.8);
}
.active\:bg-orange-300\/90:active {
  background-color: rgb(253 186 116 / 0.9);
}
.active\:bg-orange-400:active {
  --tw-bg-opacity: 1;
  background-color: rgb(251 146 60 / var(--tw-bg-opacity, 1));
}
.active\:bg-orange-400\/10:active {
  background-color: rgb(251 146 60 / 0.1);
}
.active\:bg-orange-400\/20:active {
  background-color: rgb(251 146 60 / 0.2);
}
.active\:bg-orange-400\/30:active {
  background-color: rgb(251 146 60 / 0.3);
}
.active\:bg-orange-400\/40:active {
  background-color: rgb(251 146 60 / 0.4);
}
.active\:bg-orange-400\/5:active {
  background-color: rgb(251 146 60 / 0.05);
}
.active\:bg-orange-400\/50:active {
  background-color: rgb(251 146 60 / 0.5);
}
.active\:bg-orange-400\/60:active {
  background-color: rgb(251 146 60 / 0.6);
}
.active\:bg-orange-400\/70:active {
  background-color: rgb(251 146 60 / 0.7);
}
.active\:bg-orange-400\/80:active {
  background-color: rgb(251 146 60 / 0.8);
}
.active\:bg-orange-400\/90:active {
  background-color: rgb(251 146 60 / 0.9);
}
.active\:bg-orange-50:active {
  --tw-bg-opacity: 1;
  background-color: rgb(255 247 237 / var(--tw-bg-opacity, 1));
}
.active\:bg-orange-50\/10:active {
  background-color: rgb(255 247 237 / 0.1);
}
.active\:bg-orange-50\/20:active {
  background-color: rgb(255 247 237 / 0.2);
}
.active\:bg-orange-50\/30:active {
  background-color: rgb(255 247 237 / 0.3);
}
.active\:bg-orange-50\/40:active {
  background-color: rgb(255 247 237 / 0.4);
}
.active\:bg-orange-50\/5:active {
  background-color: rgb(255 247 237 / 0.05);
}
.active\:bg-orange-50\/50:active {
  background-color: rgb(255 247 237 / 0.5);
}
.active\:bg-orange-50\/60:active {
  background-color: rgb(255 247 237 / 0.6);
}
.active\:bg-orange-50\/70:active {
  background-color: rgb(255 247 237 / 0.7);
}
.active\:bg-orange-50\/80:active {
  background-color: rgb(255 247 237 / 0.8);
}
.active\:bg-orange-50\/90:active {
  background-color: rgb(255 247 237 / 0.9);
}
.active\:bg-orange-500:active {
  --tw-bg-opacity: 1;
  background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
}
.active\:bg-orange-500\/10:active {
  background-color: rgb(249 115 22 / 0.1);
}
.active\:bg-orange-500\/20:active {
  background-color: rgb(249 115 22 / 0.2);
}
.active\:bg-orange-500\/30:active {
  background-color: rgb(249 115 22 / 0.3);
}
.active\:bg-orange-500\/40:active {
  background-color: rgb(249 115 22 / 0.4);
}
.active\:bg-orange-500\/5:active {
  background-color: rgb(249 115 22 / 0.05);
}
.active\:bg-orange-500\/50:active {
  background-color: rgb(249 115 22 / 0.5);
}
.active\:bg-orange-500\/60:active {
  background-color: rgb(249 115 22 / 0.6);
}
.active\:bg-orange-500\/70:active {
  background-color: rgb(249 115 22 / 0.7);
}
.active\:bg-orange-500\/80:active {
  background-color: rgb(249 115 22 / 0.8);
}
.active\:bg-orange-500\/90:active {
  background-color: rgb(249 115 22 / 0.9);
}
.active\:bg-orange-600:active {
  --tw-bg-opacity: 1;
  background-color: rgb(234 88 12 / var(--tw-bg-opacity, 1));
}
.active\:bg-orange-600\/10:active {
  background-color: rgb(234 88 12 / 0.1);
}
.active\:bg-orange-600\/20:active {
  background-color: rgb(234 88 12 / 0.2);
}
.active\:bg-orange-600\/30:active {
  background-color: rgb(234 88 12 / 0.3);
}
.active\:bg-orange-600\/40:active {
  background-color: rgb(234 88 12 / 0.4);
}
.active\:bg-orange-600\/5:active {
  background-color: rgb(234 88 12 / 0.05);
}
.active\:bg-orange-600\/50:active {
  background-color: rgb(234 88 12 / 0.5);
}
.active\:bg-orange-600\/60:active {
  background-color: rgb(234 88 12 / 0.6);
}
.active\:bg-orange-600\/70:active {
  background-color: rgb(234 88 12 / 0.7);
}
.active\:bg-orange-600\/80:active {
  background-color: rgb(234 88 12 / 0.8);
}
.active\:bg-orange-600\/90:active {
  background-color: rgb(234 88 12 / 0.9);
}
.active\:bg-orange-700:active {
  --tw-bg-opacity: 1;
  background-color: rgb(194 65 12 / var(--tw-bg-opacity, 1));
}
.active\:bg-orange-700\/10:active {
  background-color: rgb(194 65 12 / 0.1);
}
.active\:bg-orange-700\/20:active {
  background-color: rgb(194 65 12 / 0.2);
}
.active\:bg-orange-700\/30:active {
  background-color: rgb(194 65 12 / 0.3);
}
.active\:bg-orange-700\/40:active {
  background-color: rgb(194 65 12 / 0.4);
}
.active\:bg-orange-700\/5:active {
  background-color: rgb(194 65 12 / 0.05);
}
.active\:bg-orange-700\/50:active {
  background-color: rgb(194 65 12 / 0.5);
}
.active\:bg-orange-700\/60:active {
  background-color: rgb(194 65 12 / 0.6);
}
.active\:bg-orange-700\/70:active {
  background-color: rgb(194 65 12 / 0.7);
}
.active\:bg-orange-700\/80:active {
  background-color: rgb(194 65 12 / 0.8);
}
.active\:bg-orange-700\/90:active {
  background-color: rgb(194 65 12 / 0.9);
}
.active\:bg-orange-800:active {
  --tw-bg-opacity: 1;
  background-color: rgb(154 52 18 / var(--tw-bg-opacity, 1));
}
.active\:bg-orange-800\/10:active {
  background-color: rgb(154 52 18 / 0.1);
}
.active\:bg-orange-800\/20:active {
  background-color: rgb(154 52 18 / 0.2);
}
.active\:bg-orange-800\/30:active {
  background-color: rgb(154 52 18 / 0.3);
}
.active\:bg-orange-800\/40:active {
  background-color: rgb(154 52 18 / 0.4);
}
.active\:bg-orange-800\/5:active {
  background-color: rgb(154 52 18 / 0.05);
}
.active\:bg-orange-800\/50:active {
  background-color: rgb(154 52 18 / 0.5);
}
.active\:bg-orange-800\/60:active {
  background-color: rgb(154 52 18 / 0.6);
}
.active\:bg-orange-800\/70:active {
  background-color: rgb(154 52 18 / 0.7);
}
.active\:bg-orange-800\/80:active {
  background-color: rgb(154 52 18 / 0.8);
}
.active\:bg-orange-800\/90:active {
  background-color: rgb(154 52 18 / 0.9);
}
.active\:bg-orange-900:active {
  --tw-bg-opacity: 1;
  background-color: rgb(124 45 18 / var(--tw-bg-opacity, 1));
}
.active\:bg-orange-900\/10:active {
  background-color: rgb(124 45 18 / 0.1);
}
.active\:bg-orange-900\/20:active {
  background-color: rgb(124 45 18 / 0.2);
}
.active\:bg-orange-900\/30:active {
  background-color: rgb(124 45 18 / 0.3);
}
.active\:bg-orange-900\/40:active {
  background-color: rgb(124 45 18 / 0.4);
}
.active\:bg-orange-900\/5:active {
  background-color: rgb(124 45 18 / 0.05);
}
.active\:bg-orange-900\/50:active {
  background-color: rgb(124 45 18 / 0.5);
}
.active\:bg-orange-900\/60:active {
  background-color: rgb(124 45 18 / 0.6);
}
.active\:bg-orange-900\/70:active {
  background-color: rgb(124 45 18 / 0.7);
}
.active\:bg-orange-900\/80:active {
  background-color: rgb(124 45 18 / 0.8);
}
.active\:bg-orange-900\/90:active {
  background-color: rgb(124 45 18 / 0.9);
}
.active\:bg-orange-950:active {
  --tw-bg-opacity: 1;
  background-color: rgb(67 20 7 / var(--tw-bg-opacity, 1));
}
.active\:bg-orange-950\/10:active {
  background-color: rgb(67 20 7 / 0.1);
}
.active\:bg-orange-950\/20:active {
  background-color: rgb(67 20 7 / 0.2);
}
.active\:bg-orange-950\/30:active {
  background-color: rgb(67 20 7 / 0.3);
}
.active\:bg-orange-950\/40:active {
  background-color: rgb(67 20 7 / 0.4);
}
.active\:bg-orange-950\/5:active {
  background-color: rgb(67 20 7 / 0.05);
}
.active\:bg-orange-950\/50:active {
  background-color: rgb(67 20 7 / 0.5);
}
.active\:bg-orange-950\/60:active {
  background-color: rgb(67 20 7 / 0.6);
}
.active\:bg-orange-950\/70:active {
  background-color: rgb(67 20 7 / 0.7);
}
.active\:bg-orange-950\/80:active {
  background-color: rgb(67 20 7 / 0.8);
}
.active\:bg-orange-950\/90:active {
  background-color: rgb(67 20 7 / 0.9);
}
.active\:bg-pink-100:active {
  --tw-bg-opacity: 1;
  background-color: rgb(252 231 243 / var(--tw-bg-opacity, 1));
}
.active\:bg-pink-100\/10:active {
  background-color: rgb(252 231 243 / 0.1);
}
.active\:bg-pink-100\/20:active {
  background-color: rgb(252 231 243 / 0.2);
}
.active\:bg-pink-100\/30:active {
  background-color: rgb(252 231 243 / 0.3);
}
.active\:bg-pink-100\/40:active {
  background-color: rgb(252 231 243 / 0.4);
}
.active\:bg-pink-100\/5:active {
  background-color: rgb(252 231 243 / 0.05);
}
.active\:bg-pink-100\/50:active {
  background-color: rgb(252 231 243 / 0.5);
}
.active\:bg-pink-100\/60:active {
  background-color: rgb(252 231 243 / 0.6);
}
.active\:bg-pink-100\/70:active {
  background-color: rgb(252 231 243 / 0.7);
}
.active\:bg-pink-100\/80:active {
  background-color: rgb(252 231 243 / 0.8);
}
.active\:bg-pink-100\/90:active {
  background-color: rgb(252 231 243 / 0.9);
}
.active\:bg-pink-200:active {
  --tw-bg-opacity: 1;
  background-color: rgb(251 207 232 / var(--tw-bg-opacity, 1));
}
.active\:bg-pink-200\/10:active {
  background-color: rgb(251 207 232 / 0.1);
}
.active\:bg-pink-200\/20:active {
  background-color: rgb(251 207 232 / 0.2);
}
.active\:bg-pink-200\/30:active {
  background-color: rgb(251 207 232 / 0.3);
}
.active\:bg-pink-200\/40:active {
  background-color: rgb(251 207 232 / 0.4);
}
.active\:bg-pink-200\/5:active {
  background-color: rgb(251 207 232 / 0.05);
}
.active\:bg-pink-200\/50:active {
  background-color: rgb(251 207 232 / 0.5);
}
.active\:bg-pink-200\/60:active {
  background-color: rgb(251 207 232 / 0.6);
}
.active\:bg-pink-200\/70:active {
  background-color: rgb(251 207 232 / 0.7);
}
.active\:bg-pink-200\/80:active {
  background-color: rgb(251 207 232 / 0.8);
}
.active\:bg-pink-200\/90:active {
  background-color: rgb(251 207 232 / 0.9);
}
.active\:bg-pink-300:active {
  --tw-bg-opacity: 1;
  background-color: rgb(249 168 212 / var(--tw-bg-opacity, 1));
}
.active\:bg-pink-300\/10:active {
  background-color: rgb(249 168 212 / 0.1);
}
.active\:bg-pink-300\/20:active {
  background-color: rgb(249 168 212 / 0.2);
}
.active\:bg-pink-300\/30:active {
  background-color: rgb(249 168 212 / 0.3);
}
.active\:bg-pink-300\/40:active {
  background-color: rgb(249 168 212 / 0.4);
}
.active\:bg-pink-300\/5:active {
  background-color: rgb(249 168 212 / 0.05);
}
.active\:bg-pink-300\/50:active {
  background-color: rgb(249 168 212 / 0.5);
}
.active\:bg-pink-300\/60:active {
  background-color: rgb(249 168 212 / 0.6);
}
.active\:bg-pink-300\/70:active {
  background-color: rgb(249 168 212 / 0.7);
}
.active\:bg-pink-300\/80:active {
  background-color: rgb(249 168 212 / 0.8);
}
.active\:bg-pink-300\/90:active {
  background-color: rgb(249 168 212 / 0.9);
}
.active\:bg-pink-400:active {
  --tw-bg-opacity: 1;
  background-color: rgb(244 114 182 / var(--tw-bg-opacity, 1));
}
.active\:bg-pink-400\/10:active {
  background-color: rgb(244 114 182 / 0.1);
}
.active\:bg-pink-400\/20:active {
  background-color: rgb(244 114 182 / 0.2);
}
.active\:bg-pink-400\/30:active {
  background-color: rgb(244 114 182 / 0.3);
}
.active\:bg-pink-400\/40:active {
  background-color: rgb(244 114 182 / 0.4);
}
.active\:bg-pink-400\/5:active {
  background-color: rgb(244 114 182 / 0.05);
}
.active\:bg-pink-400\/50:active {
  background-color: rgb(244 114 182 / 0.5);
}
.active\:bg-pink-400\/60:active {
  background-color: rgb(244 114 182 / 0.6);
}
.active\:bg-pink-400\/70:active {
  background-color: rgb(244 114 182 / 0.7);
}
.active\:bg-pink-400\/80:active {
  background-color: rgb(244 114 182 / 0.8);
}
.active\:bg-pink-400\/90:active {
  background-color: rgb(244 114 182 / 0.9);
}
.active\:bg-pink-50:active {
  --tw-bg-opacity: 1;
  background-color: rgb(253 242 248 / var(--tw-bg-opacity, 1));
}
.active\:bg-pink-50\/10:active {
  background-color: rgb(253 242 248 / 0.1);
}
.active\:bg-pink-50\/20:active {
  background-color: rgb(253 242 248 / 0.2);
}
.active\:bg-pink-50\/30:active {
  background-color: rgb(253 242 248 / 0.3);
}
.active\:bg-pink-50\/40:active {
  background-color: rgb(253 242 248 / 0.4);
}
.active\:bg-pink-50\/5:active {
  background-color: rgb(253 242 248 / 0.05);
}
.active\:bg-pink-50\/50:active {
  background-color: rgb(253 242 248 / 0.5);
}
.active\:bg-pink-50\/60:active {
  background-color: rgb(253 242 248 / 0.6);
}
.active\:bg-pink-50\/70:active {
  background-color: rgb(253 242 248 / 0.7);
}
.active\:bg-pink-50\/80:active {
  background-color: rgb(253 242 248 / 0.8);
}
.active\:bg-pink-50\/90:active {
  background-color: rgb(253 242 248 / 0.9);
}
.active\:bg-pink-500:active {
  --tw-bg-opacity: 1;
  background-color: rgb(236 72 153 / var(--tw-bg-opacity, 1));
}
.active\:bg-pink-500\/10:active {
  background-color: rgb(236 72 153 / 0.1);
}
.active\:bg-pink-500\/20:active {
  background-color: rgb(236 72 153 / 0.2);
}
.active\:bg-pink-500\/30:active {
  background-color: rgb(236 72 153 / 0.3);
}
.active\:bg-pink-500\/40:active {
  background-color: rgb(236 72 153 / 0.4);
}
.active\:bg-pink-500\/5:active {
  background-color: rgb(236 72 153 / 0.05);
}
.active\:bg-pink-500\/50:active {
  background-color: rgb(236 72 153 / 0.5);
}
.active\:bg-pink-500\/60:active {
  background-color: rgb(236 72 153 / 0.6);
}
.active\:bg-pink-500\/70:active {
  background-color: rgb(236 72 153 / 0.7);
}
.active\:bg-pink-500\/80:active {
  background-color: rgb(236 72 153 / 0.8);
}
.active\:bg-pink-500\/90:active {
  background-color: rgb(236 72 153 / 0.9);
}
.active\:bg-pink-600:active {
  --tw-bg-opacity: 1;
  background-color: rgb(219 39 119 / var(--tw-bg-opacity, 1));
}
.active\:bg-pink-600\/10:active {
  background-color: rgb(219 39 119 / 0.1);
}
.active\:bg-pink-600\/20:active {
  background-color: rgb(219 39 119 / 0.2);
}
.active\:bg-pink-600\/30:active {
  background-color: rgb(219 39 119 / 0.3);
}
.active\:bg-pink-600\/40:active {
  background-color: rgb(219 39 119 / 0.4);
}
.active\:bg-pink-600\/5:active {
  background-color: rgb(219 39 119 / 0.05);
}
.active\:bg-pink-600\/50:active {
  background-color: rgb(219 39 119 / 0.5);
}
.active\:bg-pink-600\/60:active {
  background-color: rgb(219 39 119 / 0.6);
}
.active\:bg-pink-600\/70:active {
  background-color: rgb(219 39 119 / 0.7);
}
.active\:bg-pink-600\/80:active {
  background-color: rgb(219 39 119 / 0.8);
}
.active\:bg-pink-600\/90:active {
  background-color: rgb(219 39 119 / 0.9);
}
.active\:bg-pink-700:active {
  --tw-bg-opacity: 1;
  background-color: rgb(190 24 93 / var(--tw-bg-opacity, 1));
}
.active\:bg-pink-700\/10:active {
  background-color: rgb(190 24 93 / 0.1);
}
.active\:bg-pink-700\/20:active {
  background-color: rgb(190 24 93 / 0.2);
}
.active\:bg-pink-700\/30:active {
  background-color: rgb(190 24 93 / 0.3);
}
.active\:bg-pink-700\/40:active {
  background-color: rgb(190 24 93 / 0.4);
}
.active\:bg-pink-700\/5:active {
  background-color: rgb(190 24 93 / 0.05);
}
.active\:bg-pink-700\/50:active {
  background-color: rgb(190 24 93 / 0.5);
}
.active\:bg-pink-700\/60:active {
  background-color: rgb(190 24 93 / 0.6);
}
.active\:bg-pink-700\/70:active {
  background-color: rgb(190 24 93 / 0.7);
}
.active\:bg-pink-700\/80:active {
  background-color: rgb(190 24 93 / 0.8);
}
.active\:bg-pink-700\/90:active {
  background-color: rgb(190 24 93 / 0.9);
}
.active\:bg-pink-800:active {
  --tw-bg-opacity: 1;
  background-color: rgb(157 23 77 / var(--tw-bg-opacity, 1));
}
.active\:bg-pink-800\/10:active {
  background-color: rgb(157 23 77 / 0.1);
}
.active\:bg-pink-800\/20:active {
  background-color: rgb(157 23 77 / 0.2);
}
.active\:bg-pink-800\/30:active {
  background-color: rgb(157 23 77 / 0.3);
}
.active\:bg-pink-800\/40:active {
  background-color: rgb(157 23 77 / 0.4);
}
.active\:bg-pink-800\/5:active {
  background-color: rgb(157 23 77 / 0.05);
}
.active\:bg-pink-800\/50:active {
  background-color: rgb(157 23 77 / 0.5);
}
.active\:bg-pink-800\/60:active {
  background-color: rgb(157 23 77 / 0.6);
}
.active\:bg-pink-800\/70:active {
  background-color: rgb(157 23 77 / 0.7);
}
.active\:bg-pink-800\/80:active {
  background-color: rgb(157 23 77 / 0.8);
}
.active\:bg-pink-800\/90:active {
  background-color: rgb(157 23 77 / 0.9);
}
.active\:bg-pink-900:active {
  --tw-bg-opacity: 1;
  background-color: rgb(131 24 67 / var(--tw-bg-opacity, 1));
}
.active\:bg-pink-900\/10:active {
  background-color: rgb(131 24 67 / 0.1);
}
.active\:bg-pink-900\/20:active {
  background-color: rgb(131 24 67 / 0.2);
}
.active\:bg-pink-900\/30:active {
  background-color: rgb(131 24 67 / 0.3);
}
.active\:bg-pink-900\/40:active {
  background-color: rgb(131 24 67 / 0.4);
}
.active\:bg-pink-900\/5:active {
  background-color: rgb(131 24 67 / 0.05);
}
.active\:bg-pink-900\/50:active {
  background-color: rgb(131 24 67 / 0.5);
}
.active\:bg-pink-900\/60:active {
  background-color: rgb(131 24 67 / 0.6);
}
.active\:bg-pink-900\/70:active {
  background-color: rgb(131 24 67 / 0.7);
}
.active\:bg-pink-900\/80:active {
  background-color: rgb(131 24 67 / 0.8);
}
.active\:bg-pink-900\/90:active {
  background-color: rgb(131 24 67 / 0.9);
}
.active\:bg-pink-950:active {
  --tw-bg-opacity: 1;
  background-color: rgb(80 7 36 / var(--tw-bg-opacity, 1));
}
.active\:bg-pink-950\/10:active {
  background-color: rgb(80 7 36 / 0.1);
}
.active\:bg-pink-950\/20:active {
  background-color: rgb(80 7 36 / 0.2);
}
.active\:bg-pink-950\/30:active {
  background-color: rgb(80 7 36 / 0.3);
}
.active\:bg-pink-950\/40:active {
  background-color: rgb(80 7 36 / 0.4);
}
.active\:bg-pink-950\/5:active {
  background-color: rgb(80 7 36 / 0.05);
}
.active\:bg-pink-950\/50:active {
  background-color: rgb(80 7 36 / 0.5);
}
.active\:bg-pink-950\/60:active {
  background-color: rgb(80 7 36 / 0.6);
}
.active\:bg-pink-950\/70:active {
  background-color: rgb(80 7 36 / 0.7);
}
.active\:bg-pink-950\/80:active {
  background-color: rgb(80 7 36 / 0.8);
}
.active\:bg-pink-950\/90:active {
  background-color: rgb(80 7 36 / 0.9);
}
.active\:bg-purple-100:active {
  --tw-bg-opacity: 1;
  background-color: rgb(243 232 255 / var(--tw-bg-opacity, 1));
}
.active\:bg-purple-100\/10:active {
  background-color: rgb(243 232 255 / 0.1);
}
.active\:bg-purple-100\/20:active {
  background-color: rgb(243 232 255 / 0.2);
}
.active\:bg-purple-100\/30:active {
  background-color: rgb(243 232 255 / 0.3);
}
.active\:bg-purple-100\/40:active {
  background-color: rgb(243 232 255 / 0.4);
}
.active\:bg-purple-100\/5:active {
  background-color: rgb(243 232 255 / 0.05);
}
.active\:bg-purple-100\/50:active {
  background-color: rgb(243 232 255 / 0.5);
}
.active\:bg-purple-100\/60:active {
  background-color: rgb(243 232 255 / 0.6);
}
.active\:bg-purple-100\/70:active {
  background-color: rgb(243 232 255 / 0.7);
}
.active\:bg-purple-100\/80:active {
  background-color: rgb(243 232 255 / 0.8);
}
.active\:bg-purple-100\/90:active {
  background-color: rgb(243 232 255 / 0.9);
}
.active\:bg-purple-200:active {
  --tw-bg-opacity: 1;
  background-color: rgb(233 213 255 / var(--tw-bg-opacity, 1));
}
.active\:bg-purple-200\/10:active {
  background-color: rgb(233 213 255 / 0.1);
}
.active\:bg-purple-200\/20:active {
  background-color: rgb(233 213 255 / 0.2);
}
.active\:bg-purple-200\/30:active {
  background-color: rgb(233 213 255 / 0.3);
}
.active\:bg-purple-200\/40:active {
  background-color: rgb(233 213 255 / 0.4);
}
.active\:bg-purple-200\/5:active {
  background-color: rgb(233 213 255 / 0.05);
}
.active\:bg-purple-200\/50:active {
  background-color: rgb(233 213 255 / 0.5);
}
.active\:bg-purple-200\/60:active {
  background-color: rgb(233 213 255 / 0.6);
}
.active\:bg-purple-200\/70:active {
  background-color: rgb(233 213 255 / 0.7);
}
.active\:bg-purple-200\/80:active {
  background-color: rgb(233 213 255 / 0.8);
}
.active\:bg-purple-200\/90:active {
  background-color: rgb(233 213 255 / 0.9);
}
.active\:bg-purple-300:active {
  --tw-bg-opacity: 1;
  background-color: rgb(216 180 254 / var(--tw-bg-opacity, 1));
}
.active\:bg-purple-300\/10:active {
  background-color: rgb(216 180 254 / 0.1);
}
.active\:bg-purple-300\/20:active {
  background-color: rgb(216 180 254 / 0.2);
}
.active\:bg-purple-300\/30:active {
  background-color: rgb(216 180 254 / 0.3);
}
.active\:bg-purple-300\/40:active {
  background-color: rgb(216 180 254 / 0.4);
}
.active\:bg-purple-300\/5:active {
  background-color: rgb(216 180 254 / 0.05);
}
.active\:bg-purple-300\/50:active {
  background-color: rgb(216 180 254 / 0.5);
}
.active\:bg-purple-300\/60:active {
  background-color: rgb(216 180 254 / 0.6);
}
.active\:bg-purple-300\/70:active {
  background-color: rgb(216 180 254 / 0.7);
}
.active\:bg-purple-300\/80:active {
  background-color: rgb(216 180 254 / 0.8);
}
.active\:bg-purple-300\/90:active {
  background-color: rgb(216 180 254 / 0.9);
}
.active\:bg-purple-400:active {
  --tw-bg-opacity: 1;
  background-color: rgb(192 132 252 / var(--tw-bg-opacity, 1));
}
.active\:bg-purple-400\/10:active {
  background-color: rgb(192 132 252 / 0.1);
}
.active\:bg-purple-400\/20:active {
  background-color: rgb(192 132 252 / 0.2);
}
.active\:bg-purple-400\/30:active {
  background-color: rgb(192 132 252 / 0.3);
}
.active\:bg-purple-400\/40:active {
  background-color: rgb(192 132 252 / 0.4);
}
.active\:bg-purple-400\/5:active {
  background-color: rgb(192 132 252 / 0.05);
}
.active\:bg-purple-400\/50:active {
  background-color: rgb(192 132 252 / 0.5);
}
.active\:bg-purple-400\/60:active {
  background-color: rgb(192 132 252 / 0.6);
}
.active\:bg-purple-400\/70:active {
  background-color: rgb(192 132 252 / 0.7);
}
.active\:bg-purple-400\/80:active {
  background-color: rgb(192 132 252 / 0.8);
}
.active\:bg-purple-400\/90:active {
  background-color: rgb(192 132 252 / 0.9);
}
.active\:bg-purple-50:active {
  --tw-bg-opacity: 1;
  background-color: rgb(250 245 255 / var(--tw-bg-opacity, 1));
}
.active\:bg-purple-50\/10:active {
  background-color: rgb(250 245 255 / 0.1);
}
.active\:bg-purple-50\/20:active {
  background-color: rgb(250 245 255 / 0.2);
}
.active\:bg-purple-50\/30:active {
  background-color: rgb(250 245 255 / 0.3);
}
.active\:bg-purple-50\/40:active {
  background-color: rgb(250 245 255 / 0.4);
}
.active\:bg-purple-50\/5:active {
  background-color: rgb(250 245 255 / 0.05);
}
.active\:bg-purple-50\/50:active {
  background-color: rgb(250 245 255 / 0.5);
}
.active\:bg-purple-50\/60:active {
  background-color: rgb(250 245 255 / 0.6);
}
.active\:bg-purple-50\/70:active {
  background-color: rgb(250 245 255 / 0.7);
}
.active\:bg-purple-50\/80:active {
  background-color: rgb(250 245 255 / 0.8);
}
.active\:bg-purple-50\/90:active {
  background-color: rgb(250 245 255 / 0.9);
}
.active\:bg-purple-500:active {
  --tw-bg-opacity: 1;
  background-color: rgb(168 85 247 / var(--tw-bg-opacity, 1));
}
.active\:bg-purple-500\/10:active {
  background-color: rgb(168 85 247 / 0.1);
}
.active\:bg-purple-500\/20:active {
  background-color: rgb(168 85 247 / 0.2);
}
.active\:bg-purple-500\/30:active {
  background-color: rgb(168 85 247 / 0.3);
}
.active\:bg-purple-500\/40:active {
  background-color: rgb(168 85 247 / 0.4);
}
.active\:bg-purple-500\/5:active {
  background-color: rgb(168 85 247 / 0.05);
}
.active\:bg-purple-500\/50:active {
  background-color: rgb(168 85 247 / 0.5);
}
.active\:bg-purple-500\/60:active {
  background-color: rgb(168 85 247 / 0.6);
}
.active\:bg-purple-500\/70:active {
  background-color: rgb(168 85 247 / 0.7);
}
.active\:bg-purple-500\/80:active {
  background-color: rgb(168 85 247 / 0.8);
}
.active\:bg-purple-500\/90:active {
  background-color: rgb(168 85 247 / 0.9);
}
.active\:bg-purple-600:active {
  --tw-bg-opacity: 1;
  background-color: rgb(147 51 234 / var(--tw-bg-opacity, 1));
}
.active\:bg-purple-600\/10:active {
  background-color: rgb(147 51 234 / 0.1);
}
.active\:bg-purple-600\/20:active {
  background-color: rgb(147 51 234 / 0.2);
}
.active\:bg-purple-600\/30:active {
  background-color: rgb(147 51 234 / 0.3);
}
.active\:bg-purple-600\/40:active {
  background-color: rgb(147 51 234 / 0.4);
}
.active\:bg-purple-600\/5:active {
  background-color: rgb(147 51 234 / 0.05);
}
.active\:bg-purple-600\/50:active {
  background-color: rgb(147 51 234 / 0.5);
}
.active\:bg-purple-600\/60:active {
  background-color: rgb(147 51 234 / 0.6);
}
.active\:bg-purple-600\/70:active {
  background-color: rgb(147 51 234 / 0.7);
}
.active\:bg-purple-600\/80:active {
  background-color: rgb(147 51 234 / 0.8);
}
.active\:bg-purple-600\/90:active {
  background-color: rgb(147 51 234 / 0.9);
}
.active\:bg-purple-700:active {
  --tw-bg-opacity: 1;
  background-color: rgb(126 34 206 / var(--tw-bg-opacity, 1));
}
.active\:bg-purple-700\/10:active {
  background-color: rgb(126 34 206 / 0.1);
}
.active\:bg-purple-700\/20:active {
  background-color: rgb(126 34 206 / 0.2);
}
.active\:bg-purple-700\/30:active {
  background-color: rgb(126 34 206 / 0.3);
}
.active\:bg-purple-700\/40:active {
  background-color: rgb(126 34 206 / 0.4);
}
.active\:bg-purple-700\/5:active {
  background-color: rgb(126 34 206 / 0.05);
}
.active\:bg-purple-700\/50:active {
  background-color: rgb(126 34 206 / 0.5);
}
.active\:bg-purple-700\/60:active {
  background-color: rgb(126 34 206 / 0.6);
}
.active\:bg-purple-700\/70:active {
  background-color: rgb(126 34 206 / 0.7);
}
.active\:bg-purple-700\/80:active {
  background-color: rgb(126 34 206 / 0.8);
}
.active\:bg-purple-700\/90:active {
  background-color: rgb(126 34 206 / 0.9);
}
.active\:bg-purple-800:active {
  --tw-bg-opacity: 1;
  background-color: rgb(107 33 168 / var(--tw-bg-opacity, 1));
}
.active\:bg-purple-800\/10:active {
  background-color: rgb(107 33 168 / 0.1);
}
.active\:bg-purple-800\/20:active {
  background-color: rgb(107 33 168 / 0.2);
}
.active\:bg-purple-800\/30:active {
  background-color: rgb(107 33 168 / 0.3);
}
.active\:bg-purple-800\/40:active {
  background-color: rgb(107 33 168 / 0.4);
}
.active\:bg-purple-800\/5:active {
  background-color: rgb(107 33 168 / 0.05);
}
.active\:bg-purple-800\/50:active {
  background-color: rgb(107 33 168 / 0.5);
}
.active\:bg-purple-800\/60:active {
  background-color: rgb(107 33 168 / 0.6);
}
.active\:bg-purple-800\/70:active {
  background-color: rgb(107 33 168 / 0.7);
}
.active\:bg-purple-800\/80:active {
  background-color: rgb(107 33 168 / 0.8);
}
.active\:bg-purple-800\/90:active {
  background-color: rgb(107 33 168 / 0.9);
}
.active\:bg-purple-900:active {
  --tw-bg-opacity: 1;
  background-color: rgb(88 28 135 / var(--tw-bg-opacity, 1));
}
.active\:bg-purple-900\/10:active {
  background-color: rgb(88 28 135 / 0.1);
}
.active\:bg-purple-900\/20:active {
  background-color: rgb(88 28 135 / 0.2);
}
.active\:bg-purple-900\/30:active {
  background-color: rgb(88 28 135 / 0.3);
}
.active\:bg-purple-900\/40:active {
  background-color: rgb(88 28 135 / 0.4);
}
.active\:bg-purple-900\/5:active {
  background-color: rgb(88 28 135 / 0.05);
}
.active\:bg-purple-900\/50:active {
  background-color: rgb(88 28 135 / 0.5);
}
.active\:bg-purple-900\/60:active {
  background-color: rgb(88 28 135 / 0.6);
}
.active\:bg-purple-900\/70:active {
  background-color: rgb(88 28 135 / 0.7);
}
.active\:bg-purple-900\/80:active {
  background-color: rgb(88 28 135 / 0.8);
}
.active\:bg-purple-900\/90:active {
  background-color: rgb(88 28 135 / 0.9);
}
.active\:bg-purple-950:active {
  --tw-bg-opacity: 1;
  background-color: rgb(59 7 100 / var(--tw-bg-opacity, 1));
}
.active\:bg-purple-950\/10:active {
  background-color: rgb(59 7 100 / 0.1);
}
.active\:bg-purple-950\/20:active {
  background-color: rgb(59 7 100 / 0.2);
}
.active\:bg-purple-950\/30:active {
  background-color: rgb(59 7 100 / 0.3);
}
.active\:bg-purple-950\/40:active {
  background-color: rgb(59 7 100 / 0.4);
}
.active\:bg-purple-950\/5:active {
  background-color: rgb(59 7 100 / 0.05);
}
.active\:bg-purple-950\/50:active {
  background-color: rgb(59 7 100 / 0.5);
}
.active\:bg-purple-950\/60:active {
  background-color: rgb(59 7 100 / 0.6);
}
.active\:bg-purple-950\/70:active {
  background-color: rgb(59 7 100 / 0.7);
}
.active\:bg-purple-950\/80:active {
  background-color: rgb(59 7 100 / 0.8);
}
.active\:bg-purple-950\/90:active {
  background-color: rgb(59 7 100 / 0.9);
}
.active\:bg-red-100:active {
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}
.active\:bg-red-100\/10:active {
  background-color: rgb(254 226 226 / 0.1);
}
.active\:bg-red-100\/20:active {
  background-color: rgb(254 226 226 / 0.2);
}
.active\:bg-red-100\/30:active {
  background-color: rgb(254 226 226 / 0.3);
}
.active\:bg-red-100\/40:active {
  background-color: rgb(254 226 226 / 0.4);
}
.active\:bg-red-100\/5:active {
  background-color: rgb(254 226 226 / 0.05);
}
.active\:bg-red-100\/50:active {
  background-color: rgb(254 226 226 / 0.5);
}
.active\:bg-red-100\/60:active {
  background-color: rgb(254 226 226 / 0.6);
}
.active\:bg-red-100\/70:active {
  background-color: rgb(254 226 226 / 0.7);
}
.active\:bg-red-100\/80:active {
  background-color: rgb(254 226 226 / 0.8);
}
.active\:bg-red-100\/90:active {
  background-color: rgb(254 226 226 / 0.9);
}
.active\:bg-red-200:active {
  --tw-bg-opacity: 1;
  background-color: rgb(254 202 202 / var(--tw-bg-opacity, 1));
}
.active\:bg-red-200\/10:active {
  background-color: rgb(254 202 202 / 0.1);
}
.active\:bg-red-200\/20:active {
  background-color: rgb(254 202 202 / 0.2);
}
.active\:bg-red-200\/30:active {
  background-color: rgb(254 202 202 / 0.3);
}
.active\:bg-red-200\/40:active {
  background-color: rgb(254 202 202 / 0.4);
}
.active\:bg-red-200\/5:active {
  background-color: rgb(254 202 202 / 0.05);
}
.active\:bg-red-200\/50:active {
  background-color: rgb(254 202 202 / 0.5);
}
.active\:bg-red-200\/60:active {
  background-color: rgb(254 202 202 / 0.6);
}
.active\:bg-red-200\/70:active {
  background-color: rgb(254 202 202 / 0.7);
}
.active\:bg-red-200\/80:active {
  background-color: rgb(254 202 202 / 0.8);
}
.active\:bg-red-200\/90:active {
  background-color: rgb(254 202 202 / 0.9);
}
.active\:bg-red-300:active {
  --tw-bg-opacity: 1;
  background-color: rgb(252 165 165 / var(--tw-bg-opacity, 1));
}
.active\:bg-red-300\/10:active {
  background-color: rgb(252 165 165 / 0.1);
}
.active\:bg-red-300\/20:active {
  background-color: rgb(252 165 165 / 0.2);
}
.active\:bg-red-300\/30:active {
  background-color: rgb(252 165 165 / 0.3);
}
.active\:bg-red-300\/40:active {
  background-color: rgb(252 165 165 / 0.4);
}
.active\:bg-red-300\/5:active {
  background-color: rgb(252 165 165 / 0.05);
}
.active\:bg-red-300\/50:active {
  background-color: rgb(252 165 165 / 0.5);
}
.active\:bg-red-300\/60:active {
  background-color: rgb(252 165 165 / 0.6);
}
.active\:bg-red-300\/70:active {
  background-color: rgb(252 165 165 / 0.7);
}
.active\:bg-red-300\/80:active {
  background-color: rgb(252 165 165 / 0.8);
}
.active\:bg-red-300\/90:active {
  background-color: rgb(252 165 165 / 0.9);
}
.active\:bg-red-400:active {
  --tw-bg-opacity: 1;
  background-color: rgb(248 113 113 / var(--tw-bg-opacity, 1));
}
.active\:bg-red-400\/10:active {
  background-color: rgb(248 113 113 / 0.1);
}
.active\:bg-red-400\/20:active {
  background-color: rgb(248 113 113 / 0.2);
}
.active\:bg-red-400\/30:active {
  background-color: rgb(248 113 113 / 0.3);
}
.active\:bg-red-400\/40:active {
  background-color: rgb(248 113 113 / 0.4);
}
.active\:bg-red-400\/5:active {
  background-color: rgb(248 113 113 / 0.05);
}
.active\:bg-red-400\/50:active {
  background-color: rgb(248 113 113 / 0.5);
}
.active\:bg-red-400\/60:active {
  background-color: rgb(248 113 113 / 0.6);
}
.active\:bg-red-400\/70:active {
  background-color: rgb(248 113 113 / 0.7);
}
.active\:bg-red-400\/80:active {
  background-color: rgb(248 113 113 / 0.8);
}
.active\:bg-red-400\/90:active {
  background-color: rgb(248 113 113 / 0.9);
}
.active\:bg-red-50:active {
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}
.active\:bg-red-50\/10:active {
  background-color: rgb(254 242 242 / 0.1);
}
.active\:bg-red-50\/20:active {
  background-color: rgb(254 242 242 / 0.2);
}
.active\:bg-red-50\/30:active {
  background-color: rgb(254 242 242 / 0.3);
}
.active\:bg-red-50\/40:active {
  background-color: rgb(254 242 242 / 0.4);
}
.active\:bg-red-50\/5:active {
  background-color: rgb(254 242 242 / 0.05);
}
.active\:bg-red-50\/50:active {
  background-color: rgb(254 242 242 / 0.5);
}
.active\:bg-red-50\/60:active {
  background-color: rgb(254 242 242 / 0.6);
}
.active\:bg-red-50\/70:active {
  background-color: rgb(254 242 242 / 0.7);
}
.active\:bg-red-50\/80:active {
  background-color: rgb(254 242 242 / 0.8);
}
.active\:bg-red-50\/90:active {
  background-color: rgb(254 242 242 / 0.9);
}
.active\:bg-red-500:active {
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}
.active\:bg-red-500\/10:active {
  background-color: rgb(239 68 68 / 0.1);
}
.active\:bg-red-500\/20:active {
  background-color: rgb(239 68 68 / 0.2);
}
.active\:bg-red-500\/30:active {
  background-color: rgb(239 68 68 / 0.3);
}
.active\:bg-red-500\/40:active {
  background-color: rgb(239 68 68 / 0.4);
}
.active\:bg-red-500\/5:active {
  background-color: rgb(239 68 68 / 0.05);
}
.active\:bg-red-500\/50:active {
  background-color: rgb(239 68 68 / 0.5);
}
.active\:bg-red-500\/60:active {
  background-color: rgb(239 68 68 / 0.6);
}
.active\:bg-red-500\/70:active {
  background-color: rgb(239 68 68 / 0.7);
}
.active\:bg-red-500\/80:active {
  background-color: rgb(239 68 68 / 0.8);
}
.active\:bg-red-500\/90:active {
  background-color: rgb(239 68 68 / 0.9);
}
.active\:bg-red-600:active {
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}
.active\:bg-red-600\/10:active {
  background-color: rgb(220 38 38 / 0.1);
}
.active\:bg-red-600\/20:active {
  background-color: rgb(220 38 38 / 0.2);
}
.active\:bg-red-600\/30:active {
  background-color: rgb(220 38 38 / 0.3);
}
.active\:bg-red-600\/40:active {
  background-color: rgb(220 38 38 / 0.4);
}
.active\:bg-red-600\/5:active {
  background-color: rgb(220 38 38 / 0.05);
}
.active\:bg-red-600\/50:active {
  background-color: rgb(220 38 38 / 0.5);
}
.active\:bg-red-600\/60:active {
  background-color: rgb(220 38 38 / 0.6);
}
.active\:bg-red-600\/70:active {
  background-color: rgb(220 38 38 / 0.7);
}
.active\:bg-red-600\/80:active {
  background-color: rgb(220 38 38 / 0.8);
}
.active\:bg-red-600\/90:active {
  background-color: rgb(220 38 38 / 0.9);
}
.active\:bg-red-700:active {
  --tw-bg-opacity: 1;
  background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
}
.active\:bg-red-700\/10:active {
  background-color: rgb(185 28 28 / 0.1);
}
.active\:bg-red-700\/20:active {
  background-color: rgb(185 28 28 / 0.2);
}
.active\:bg-red-700\/30:active {
  background-color: rgb(185 28 28 / 0.3);
}
.active\:bg-red-700\/40:active {
  background-color: rgb(185 28 28 / 0.4);
}
.active\:bg-red-700\/5:active {
  background-color: rgb(185 28 28 / 0.05);
}
.active\:bg-red-700\/50:active {
  background-color: rgb(185 28 28 / 0.5);
}
.active\:bg-red-700\/60:active {
  background-color: rgb(185 28 28 / 0.6);
}
.active\:bg-red-700\/70:active {
  background-color: rgb(185 28 28 / 0.7);
}
.active\:bg-red-700\/80:active {
  background-color: rgb(185 28 28 / 0.8);
}
.active\:bg-red-700\/90:active {
  background-color: rgb(185 28 28 / 0.9);
}
.active\:bg-red-800:active {
  --tw-bg-opacity: 1;
  background-color: rgb(153 27 27 / var(--tw-bg-opacity, 1));
}
.active\:bg-red-800\/10:active {
  background-color: rgb(153 27 27 / 0.1);
}
.active\:bg-red-800\/20:active {
  background-color: rgb(153 27 27 / 0.2);
}
.active\:bg-red-800\/30:active {
  background-color: rgb(153 27 27 / 0.3);
}
.active\:bg-red-800\/40:active {
  background-color: rgb(153 27 27 / 0.4);
}
.active\:bg-red-800\/5:active {
  background-color: rgb(153 27 27 / 0.05);
}
.active\:bg-red-800\/50:active {
  background-color: rgb(153 27 27 / 0.5);
}
.active\:bg-red-800\/60:active {
  background-color: rgb(153 27 27 / 0.6);
}
.active\:bg-red-800\/70:active {
  background-color: rgb(153 27 27 / 0.7);
}
.active\:bg-red-800\/80:active {
  background-color: rgb(153 27 27 / 0.8);
}
.active\:bg-red-800\/90:active {
  background-color: rgb(153 27 27 / 0.9);
}
.active\:bg-red-900:active {
  --tw-bg-opacity: 1;
  background-color: rgb(127 29 29 / var(--tw-bg-opacity, 1));
}
.active\:bg-red-900\/10:active {
  background-color: rgb(127 29 29 / 0.1);
}
.active\:bg-red-900\/20:active {
  background-color: rgb(127 29 29 / 0.2);
}
.active\:bg-red-900\/30:active {
  background-color: rgb(127 29 29 / 0.3);
}
.active\:bg-red-900\/40:active {
  background-color: rgb(127 29 29 / 0.4);
}
.active\:bg-red-900\/5:active {
  background-color: rgb(127 29 29 / 0.05);
}
.active\:bg-red-900\/50:active {
  background-color: rgb(127 29 29 / 0.5);
}
.active\:bg-red-900\/60:active {
  background-color: rgb(127 29 29 / 0.6);
}
.active\:bg-red-900\/70:active {
  background-color: rgb(127 29 29 / 0.7);
}
.active\:bg-red-900\/80:active {
  background-color: rgb(127 29 29 / 0.8);
}
.active\:bg-red-900\/90:active {
  background-color: rgb(127 29 29 / 0.9);
}
.active\:bg-red-950:active {
  --tw-bg-opacity: 1;
  background-color: rgb(69 10 10 / var(--tw-bg-opacity, 1));
}
.active\:bg-red-950\/10:active {
  background-color: rgb(69 10 10 / 0.1);
}
.active\:bg-red-950\/20:active {
  background-color: rgb(69 10 10 / 0.2);
}
.active\:bg-red-950\/30:active {
  background-color: rgb(69 10 10 / 0.3);
}
.active\:bg-red-950\/40:active {
  background-color: rgb(69 10 10 / 0.4);
}
.active\:bg-red-950\/5:active {
  background-color: rgb(69 10 10 / 0.05);
}
.active\:bg-red-950\/50:active {
  background-color: rgb(69 10 10 / 0.5);
}
.active\:bg-red-950\/60:active {
  background-color: rgb(69 10 10 / 0.6);
}
.active\:bg-red-950\/70:active {
  background-color: rgb(69 10 10 / 0.7);
}
.active\:bg-red-950\/80:active {
  background-color: rgb(69 10 10 / 0.8);
}
.active\:bg-red-950\/90:active {
  background-color: rgb(69 10 10 / 0.9);
}
.active\:bg-rose-100:active {
  --tw-bg-opacity: 1;
  background-color: rgb(255 228 230 / var(--tw-bg-opacity, 1));
}
.active\:bg-rose-100\/10:active {
  background-color: rgb(255 228 230 / 0.1);
}
.active\:bg-rose-100\/20:active {
  background-color: rgb(255 228 230 / 0.2);
}
.active\:bg-rose-100\/30:active {
  background-color: rgb(255 228 230 / 0.3);
}
.active\:bg-rose-100\/40:active {
  background-color: rgb(255 228 230 / 0.4);
}
.active\:bg-rose-100\/5:active {
  background-color: rgb(255 228 230 / 0.05);
}
.active\:bg-rose-100\/50:active {
  background-color: rgb(255 228 230 / 0.5);
}
.active\:bg-rose-100\/60:active {
  background-color: rgb(255 228 230 / 0.6);
}
.active\:bg-rose-100\/70:active {
  background-color: rgb(255 228 230 / 0.7);
}
.active\:bg-rose-100\/80:active {
  background-color: rgb(255 228 230 / 0.8);
}
.active\:bg-rose-100\/90:active {
  background-color: rgb(255 228 230 / 0.9);
}
.active\:bg-rose-200:active {
  --tw-bg-opacity: 1;
  background-color: rgb(254 205 211 / var(--tw-bg-opacity, 1));
}
.active\:bg-rose-200\/10:active {
  background-color: rgb(254 205 211 / 0.1);
}
.active\:bg-rose-200\/20:active {
  background-color: rgb(254 205 211 / 0.2);
}
.active\:bg-rose-200\/30:active {
  background-color: rgb(254 205 211 / 0.3);
}
.active\:bg-rose-200\/40:active {
  background-color: rgb(254 205 211 / 0.4);
}
.active\:bg-rose-200\/5:active {
  background-color: rgb(254 205 211 / 0.05);
}
.active\:bg-rose-200\/50:active {
  background-color: rgb(254 205 211 / 0.5);
}
.active\:bg-rose-200\/60:active {
  background-color: rgb(254 205 211 / 0.6);
}
.active\:bg-rose-200\/70:active {
  background-color: rgb(254 205 211 / 0.7);
}
.active\:bg-rose-200\/80:active {
  background-color: rgb(254 205 211 / 0.8);
}
.active\:bg-rose-200\/90:active {
  background-color: rgb(254 205 211 / 0.9);
}
.active\:bg-rose-300:active {
  --tw-bg-opacity: 1;
  background-color: rgb(253 164 175 / var(--tw-bg-opacity, 1));
}
.active\:bg-rose-300\/10:active {
  background-color: rgb(253 164 175 / 0.1);
}
.active\:bg-rose-300\/20:active {
  background-color: rgb(253 164 175 / 0.2);
}
.active\:bg-rose-300\/30:active {
  background-color: rgb(253 164 175 / 0.3);
}
.active\:bg-rose-300\/40:active {
  background-color: rgb(253 164 175 / 0.4);
}
.active\:bg-rose-300\/5:active {
  background-color: rgb(253 164 175 / 0.05);
}
.active\:bg-rose-300\/50:active {
  background-color: rgb(253 164 175 / 0.5);
}
.active\:bg-rose-300\/60:active {
  background-color: rgb(253 164 175 / 0.6);
}
.active\:bg-rose-300\/70:active {
  background-color: rgb(253 164 175 / 0.7);
}
.active\:bg-rose-300\/80:active {
  background-color: rgb(253 164 175 / 0.8);
}
.active\:bg-rose-300\/90:active {
  background-color: rgb(253 164 175 / 0.9);
}
.active\:bg-rose-400:active {
  --tw-bg-opacity: 1;
  background-color: rgb(251 113 133 / var(--tw-bg-opacity, 1));
}
.active\:bg-rose-400\/10:active {
  background-color: rgb(251 113 133 / 0.1);
}
.active\:bg-rose-400\/20:active {
  background-color: rgb(251 113 133 / 0.2);
}
.active\:bg-rose-400\/30:active {
  background-color: rgb(251 113 133 / 0.3);
}
.active\:bg-rose-400\/40:active {
  background-color: rgb(251 113 133 / 0.4);
}
.active\:bg-rose-400\/5:active {
  background-color: rgb(251 113 133 / 0.05);
}
.active\:bg-rose-400\/50:active {
  background-color: rgb(251 113 133 / 0.5);
}
.active\:bg-rose-400\/60:active {
  background-color: rgb(251 113 133 / 0.6);
}
.active\:bg-rose-400\/70:active {
  background-color: rgb(251 113 133 / 0.7);
}
.active\:bg-rose-400\/80:active {
  background-color: rgb(251 113 133 / 0.8);
}
.active\:bg-rose-400\/90:active {
  background-color: rgb(251 113 133 / 0.9);
}
.active\:bg-rose-50:active {
  --tw-bg-opacity: 1;
  background-color: rgb(255 241 242 / var(--tw-bg-opacity, 1));
}
.active\:bg-rose-50\/10:active {
  background-color: rgb(255 241 242 / 0.1);
}
.active\:bg-rose-50\/20:active {
  background-color: rgb(255 241 242 / 0.2);
}
.active\:bg-rose-50\/30:active {
  background-color: rgb(255 241 242 / 0.3);
}
.active\:bg-rose-50\/40:active {
  background-color: rgb(255 241 242 / 0.4);
}
.active\:bg-rose-50\/5:active {
  background-color: rgb(255 241 242 / 0.05);
}
.active\:bg-rose-50\/50:active {
  background-color: rgb(255 241 242 / 0.5);
}
.active\:bg-rose-50\/60:active {
  background-color: rgb(255 241 242 / 0.6);
}
.active\:bg-rose-50\/70:active {
  background-color: rgb(255 241 242 / 0.7);
}
.active\:bg-rose-50\/80:active {
  background-color: rgb(255 241 242 / 0.8);
}
.active\:bg-rose-50\/90:active {
  background-color: rgb(255 241 242 / 0.9);
}
.active\:bg-rose-500:active {
  --tw-bg-opacity: 1;
  background-color: rgb(244 63 94 / var(--tw-bg-opacity, 1));
}
.active\:bg-rose-500\/10:active {
  background-color: rgb(244 63 94 / 0.1);
}
.active\:bg-rose-500\/20:active {
  background-color: rgb(244 63 94 / 0.2);
}
.active\:bg-rose-500\/30:active {
  background-color: rgb(244 63 94 / 0.3);
}
.active\:bg-rose-500\/40:active {
  background-color: rgb(244 63 94 / 0.4);
}
.active\:bg-rose-500\/5:active {
  background-color: rgb(244 63 94 / 0.05);
}
.active\:bg-rose-500\/50:active {
  background-color: rgb(244 63 94 / 0.5);
}
.active\:bg-rose-500\/60:active {
  background-color: rgb(244 63 94 / 0.6);
}
.active\:bg-rose-500\/70:active {
  background-color: rgb(244 63 94 / 0.7);
}
.active\:bg-rose-500\/80:active {
  background-color: rgb(244 63 94 / 0.8);
}
.active\:bg-rose-500\/90:active {
  background-color: rgb(244 63 94 / 0.9);
}
.active\:bg-rose-600:active {
  --tw-bg-opacity: 1;
  background-color: rgb(225 29 72 / var(--tw-bg-opacity, 1));
}
.active\:bg-rose-600\/10:active {
  background-color: rgb(225 29 72 / 0.1);
}
.active\:bg-rose-600\/20:active {
  background-color: rgb(225 29 72 / 0.2);
}
.active\:bg-rose-600\/30:active {
  background-color: rgb(225 29 72 / 0.3);
}
.active\:bg-rose-600\/40:active {
  background-color: rgb(225 29 72 / 0.4);
}
.active\:bg-rose-600\/5:active {
  background-color: rgb(225 29 72 / 0.05);
}
.active\:bg-rose-600\/50:active {
  background-color: rgb(225 29 72 / 0.5);
}
.active\:bg-rose-600\/60:active {
  background-color: rgb(225 29 72 / 0.6);
}
.active\:bg-rose-600\/70:active {
  background-color: rgb(225 29 72 / 0.7);
}
.active\:bg-rose-600\/80:active {
  background-color: rgb(225 29 72 / 0.8);
}
.active\:bg-rose-600\/90:active {
  background-color: rgb(225 29 72 / 0.9);
}
.active\:bg-rose-700:active {
  --tw-bg-opacity: 1;
  background-color: rgb(190 18 60 / var(--tw-bg-opacity, 1));
}
.active\:bg-rose-700\/10:active {
  background-color: rgb(190 18 60 / 0.1);
}
.active\:bg-rose-700\/20:active {
  background-color: rgb(190 18 60 / 0.2);
}
.active\:bg-rose-700\/30:active {
  background-color: rgb(190 18 60 / 0.3);
}
.active\:bg-rose-700\/40:active {
  background-color: rgb(190 18 60 / 0.4);
}
.active\:bg-rose-700\/5:active {
  background-color: rgb(190 18 60 / 0.05);
}
.active\:bg-rose-700\/50:active {
  background-color: rgb(190 18 60 / 0.5);
}
.active\:bg-rose-700\/60:active {
  background-color: rgb(190 18 60 / 0.6);
}
.active\:bg-rose-700\/70:active {
  background-color: rgb(190 18 60 / 0.7);
}
.active\:bg-rose-700\/80:active {
  background-color: rgb(190 18 60 / 0.8);
}
.active\:bg-rose-700\/90:active {
  background-color: rgb(190 18 60 / 0.9);
}
.active\:bg-rose-800:active {
  --tw-bg-opacity: 1;
  background-color: rgb(159 18 57 / var(--tw-bg-opacity, 1));
}
.active\:bg-rose-800\/10:active {
  background-color: rgb(159 18 57 / 0.1);
}
.active\:bg-rose-800\/20:active {
  background-color: rgb(159 18 57 / 0.2);
}
.active\:bg-rose-800\/30:active {
  background-color: rgb(159 18 57 / 0.3);
}
.active\:bg-rose-800\/40:active {
  background-color: rgb(159 18 57 / 0.4);
}
.active\:bg-rose-800\/5:active {
  background-color: rgb(159 18 57 / 0.05);
}
.active\:bg-rose-800\/50:active {
  background-color: rgb(159 18 57 / 0.5);
}
.active\:bg-rose-800\/60:active {
  background-color: rgb(159 18 57 / 0.6);
}
.active\:bg-rose-800\/70:active {
  background-color: rgb(159 18 57 / 0.7);
}
.active\:bg-rose-800\/80:active {
  background-color: rgb(159 18 57 / 0.8);
}
.active\:bg-rose-800\/90:active {
  background-color: rgb(159 18 57 / 0.9);
}
.active\:bg-rose-900:active {
  --tw-bg-opacity: 1;
  background-color: rgb(136 19 55 / var(--tw-bg-opacity, 1));
}
.active\:bg-rose-900\/10:active {
  background-color: rgb(136 19 55 / 0.1);
}
.active\:bg-rose-900\/20:active {
  background-color: rgb(136 19 55 / 0.2);
}
.active\:bg-rose-900\/30:active {
  background-color: rgb(136 19 55 / 0.3);
}
.active\:bg-rose-900\/40:active {
  background-color: rgb(136 19 55 / 0.4);
}
.active\:bg-rose-900\/5:active {
  background-color: rgb(136 19 55 / 0.05);
}
.active\:bg-rose-900\/50:active {
  background-color: rgb(136 19 55 / 0.5);
}
.active\:bg-rose-900\/60:active {
  background-color: rgb(136 19 55 / 0.6);
}
.active\:bg-rose-900\/70:active {
  background-color: rgb(136 19 55 / 0.7);
}
.active\:bg-rose-900\/80:active {
  background-color: rgb(136 19 55 / 0.8);
}
.active\:bg-rose-900\/90:active {
  background-color: rgb(136 19 55 / 0.9);
}
.active\:bg-rose-950:active {
  --tw-bg-opacity: 1;
  background-color: rgb(76 5 25 / var(--tw-bg-opacity, 1));
}
.active\:bg-rose-950\/10:active {
  background-color: rgb(76 5 25 / 0.1);
}
.active\:bg-rose-950\/20:active {
  background-color: rgb(76 5 25 / 0.2);
}
.active\:bg-rose-950\/30:active {
  background-color: rgb(76 5 25 / 0.3);
}
.active\:bg-rose-950\/40:active {
  background-color: rgb(76 5 25 / 0.4);
}
.active\:bg-rose-950\/5:active {
  background-color: rgb(76 5 25 / 0.05);
}
.active\:bg-rose-950\/50:active {
  background-color: rgb(76 5 25 / 0.5);
}
.active\:bg-rose-950\/60:active {
  background-color: rgb(76 5 25 / 0.6);
}
.active\:bg-rose-950\/70:active {
  background-color: rgb(76 5 25 / 0.7);
}
.active\:bg-rose-950\/80:active {
  background-color: rgb(76 5 25 / 0.8);
}
.active\:bg-rose-950\/90:active {
  background-color: rgb(76 5 25 / 0.9);
}
.active\:bg-sky-100:active {
  --tw-bg-opacity: 1;
  background-color: rgb(224 242 254 / var(--tw-bg-opacity, 1));
}
.active\:bg-sky-100\/10:active {
  background-color: rgb(224 242 254 / 0.1);
}
.active\:bg-sky-100\/20:active {
  background-color: rgb(224 242 254 / 0.2);
}
.active\:bg-sky-100\/30:active {
  background-color: rgb(224 242 254 / 0.3);
}
.active\:bg-sky-100\/40:active {
  background-color: rgb(224 242 254 / 0.4);
}
.active\:bg-sky-100\/5:active {
  background-color: rgb(224 242 254 / 0.05);
}
.active\:bg-sky-100\/50:active {
  background-color: rgb(224 242 254 / 0.5);
}
.active\:bg-sky-100\/60:active {
  background-color: rgb(224 242 254 / 0.6);
}
.active\:bg-sky-100\/70:active {
  background-color: rgb(224 242 254 / 0.7);
}
.active\:bg-sky-100\/80:active {
  background-color: rgb(224 242 254 / 0.8);
}
.active\:bg-sky-100\/90:active {
  background-color: rgb(224 242 254 / 0.9);
}
.active\:bg-sky-200:active {
  --tw-bg-opacity: 1;
  background-color: rgb(186 230 253 / var(--tw-bg-opacity, 1));
}
.active\:bg-sky-200\/10:active {
  background-color: rgb(186 230 253 / 0.1);
}
.active\:bg-sky-200\/20:active {
  background-color: rgb(186 230 253 / 0.2);
}
.active\:bg-sky-200\/30:active {
  background-color: rgb(186 230 253 / 0.3);
}
.active\:bg-sky-200\/40:active {
  background-color: rgb(186 230 253 / 0.4);
}
.active\:bg-sky-200\/5:active {
  background-color: rgb(186 230 253 / 0.05);
}
.active\:bg-sky-200\/50:active {
  background-color: rgb(186 230 253 / 0.5);
}
.active\:bg-sky-200\/60:active {
  background-color: rgb(186 230 253 / 0.6);
}
.active\:bg-sky-200\/70:active {
  background-color: rgb(186 230 253 / 0.7);
}
.active\:bg-sky-200\/80:active {
  background-color: rgb(186 230 253 / 0.8);
}
.active\:bg-sky-200\/90:active {
  background-color: rgb(186 230 253 / 0.9);
}
.active\:bg-sky-300:active {
  --tw-bg-opacity: 1;
  background-color: rgb(125 211 252 / var(--tw-bg-opacity, 1));
}
.active\:bg-sky-300\/10:active {
  background-color: rgb(125 211 252 / 0.1);
}
.active\:bg-sky-300\/20:active {
  background-color: rgb(125 211 252 / 0.2);
}
.active\:bg-sky-300\/30:active {
  background-color: rgb(125 211 252 / 0.3);
}
.active\:bg-sky-300\/40:active {
  background-color: rgb(125 211 252 / 0.4);
}
.active\:bg-sky-300\/5:active {
  background-color: rgb(125 211 252 / 0.05);
}
.active\:bg-sky-300\/50:active {
  background-color: rgb(125 211 252 / 0.5);
}
.active\:bg-sky-300\/60:active {
  background-color: rgb(125 211 252 / 0.6);
}
.active\:bg-sky-300\/70:active {
  background-color: rgb(125 211 252 / 0.7);
}
.active\:bg-sky-300\/80:active {
  background-color: rgb(125 211 252 / 0.8);
}
.active\:bg-sky-300\/90:active {
  background-color: rgb(125 211 252 / 0.9);
}
.active\:bg-sky-400:active {
  --tw-bg-opacity: 1;
  background-color: rgb(56 189 248 / var(--tw-bg-opacity, 1));
}
.active\:bg-sky-400\/10:active {
  background-color: rgb(56 189 248 / 0.1);
}
.active\:bg-sky-400\/20:active {
  background-color: rgb(56 189 248 / 0.2);
}
.active\:bg-sky-400\/30:active {
  background-color: rgb(56 189 248 / 0.3);
}
.active\:bg-sky-400\/40:active {
  background-color: rgb(56 189 248 / 0.4);
}
.active\:bg-sky-400\/5:active {
  background-color: rgb(56 189 248 / 0.05);
}
.active\:bg-sky-400\/50:active {
  background-color: rgb(56 189 248 / 0.5);
}
.active\:bg-sky-400\/60:active {
  background-color: rgb(56 189 248 / 0.6);
}
.active\:bg-sky-400\/70:active {
  background-color: rgb(56 189 248 / 0.7);
}
.active\:bg-sky-400\/80:active {
  background-color: rgb(56 189 248 / 0.8);
}
.active\:bg-sky-400\/90:active {
  background-color: rgb(56 189 248 / 0.9);
}
.active\:bg-sky-50:active {
  --tw-bg-opacity: 1;
  background-color: rgb(240 249 255 / var(--tw-bg-opacity, 1));
}
.active\:bg-sky-50\/10:active {
  background-color: rgb(240 249 255 / 0.1);
}
.active\:bg-sky-50\/20:active {
  background-color: rgb(240 249 255 / 0.2);
}
.active\:bg-sky-50\/30:active {
  background-color: rgb(240 249 255 / 0.3);
}
.active\:bg-sky-50\/40:active {
  background-color: rgb(240 249 255 / 0.4);
}
.active\:bg-sky-50\/5:active {
  background-color: rgb(240 249 255 / 0.05);
}
.active\:bg-sky-50\/50:active {
  background-color: rgb(240 249 255 / 0.5);
}
.active\:bg-sky-50\/60:active {
  background-color: rgb(240 249 255 / 0.6);
}
.active\:bg-sky-50\/70:active {
  background-color: rgb(240 249 255 / 0.7);
}
.active\:bg-sky-50\/80:active {
  background-color: rgb(240 249 255 / 0.8);
}
.active\:bg-sky-50\/90:active {
  background-color: rgb(240 249 255 / 0.9);
}
.active\:bg-sky-500:active {
  --tw-bg-opacity: 1;
  background-color: rgb(14 165 233 / var(--tw-bg-opacity, 1));
}
.active\:bg-sky-500\/10:active {
  background-color: rgb(14 165 233 / 0.1);
}
.active\:bg-sky-500\/20:active {
  background-color: rgb(14 165 233 / 0.2);
}
.active\:bg-sky-500\/30:active {
  background-color: rgb(14 165 233 / 0.3);
}
.active\:bg-sky-500\/40:active {
  background-color: rgb(14 165 233 / 0.4);
}
.active\:bg-sky-500\/5:active {
  background-color: rgb(14 165 233 / 0.05);
}
.active\:bg-sky-500\/50:active {
  background-color: rgb(14 165 233 / 0.5);
}
.active\:bg-sky-500\/60:active {
  background-color: rgb(14 165 233 / 0.6);
}
.active\:bg-sky-500\/70:active {
  background-color: rgb(14 165 233 / 0.7);
}
.active\:bg-sky-500\/80:active {
  background-color: rgb(14 165 233 / 0.8);
}
.active\:bg-sky-500\/90:active {
  background-color: rgb(14 165 233 / 0.9);
}
.active\:bg-sky-600:active {
  --tw-bg-opacity: 1;
  background-color: rgb(2 132 199 / var(--tw-bg-opacity, 1));
}
.active\:bg-sky-600\/10:active {
  background-color: rgb(2 132 199 / 0.1);
}
.active\:bg-sky-600\/20:active {
  background-color: rgb(2 132 199 / 0.2);
}
.active\:bg-sky-600\/30:active {
  background-color: rgb(2 132 199 / 0.3);
}
.active\:bg-sky-600\/40:active {
  background-color: rgb(2 132 199 / 0.4);
}
.active\:bg-sky-600\/5:active {
  background-color: rgb(2 132 199 / 0.05);
}
.active\:bg-sky-600\/50:active {
  background-color: rgb(2 132 199 / 0.5);
}
.active\:bg-sky-600\/60:active {
  background-color: rgb(2 132 199 / 0.6);
}
.active\:bg-sky-600\/70:active {
  background-color: rgb(2 132 199 / 0.7);
}
.active\:bg-sky-600\/80:active {
  background-color: rgb(2 132 199 / 0.8);
}
.active\:bg-sky-600\/90:active {
  background-color: rgb(2 132 199 / 0.9);
}
.active\:bg-sky-700:active {
  --tw-bg-opacity: 1;
  background-color: rgb(3 105 161 / var(--tw-bg-opacity, 1));
}
.active\:bg-sky-700\/10:active {
  background-color: rgb(3 105 161 / 0.1);
}
.active\:bg-sky-700\/20:active {
  background-color: rgb(3 105 161 / 0.2);
}
.active\:bg-sky-700\/30:active {
  background-color: rgb(3 105 161 / 0.3);
}
.active\:bg-sky-700\/40:active {
  background-color: rgb(3 105 161 / 0.4);
}
.active\:bg-sky-700\/5:active {
  background-color: rgb(3 105 161 / 0.05);
}
.active\:bg-sky-700\/50:active {
  background-color: rgb(3 105 161 / 0.5);
}
.active\:bg-sky-700\/60:active {
  background-color: rgb(3 105 161 / 0.6);
}
.active\:bg-sky-700\/70:active {
  background-color: rgb(3 105 161 / 0.7);
}
.active\:bg-sky-700\/80:active {
  background-color: rgb(3 105 161 / 0.8);
}
.active\:bg-sky-700\/90:active {
  background-color: rgb(3 105 161 / 0.9);
}
.active\:bg-sky-800:active {
  --tw-bg-opacity: 1;
  background-color: rgb(7 89 133 / var(--tw-bg-opacity, 1));
}
.active\:bg-sky-800\/10:active {
  background-color: rgb(7 89 133 / 0.1);
}
.active\:bg-sky-800\/20:active {
  background-color: rgb(7 89 133 / 0.2);
}
.active\:bg-sky-800\/30:active {
  background-color: rgb(7 89 133 / 0.3);
}
.active\:bg-sky-800\/40:active {
  background-color: rgb(7 89 133 / 0.4);
}
.active\:bg-sky-800\/5:active {
  background-color: rgb(7 89 133 / 0.05);
}
.active\:bg-sky-800\/50:active {
  background-color: rgb(7 89 133 / 0.5);
}
.active\:bg-sky-800\/60:active {
  background-color: rgb(7 89 133 / 0.6);
}
.active\:bg-sky-800\/70:active {
  background-color: rgb(7 89 133 / 0.7);
}
.active\:bg-sky-800\/80:active {
  background-color: rgb(7 89 133 / 0.8);
}
.active\:bg-sky-800\/90:active {
  background-color: rgb(7 89 133 / 0.9);
}
.active\:bg-sky-900:active {
  --tw-bg-opacity: 1;
  background-color: rgb(12 74 110 / var(--tw-bg-opacity, 1));
}
.active\:bg-sky-900\/10:active {
  background-color: rgb(12 74 110 / 0.1);
}
.active\:bg-sky-900\/20:active {
  background-color: rgb(12 74 110 / 0.2);
}
.active\:bg-sky-900\/30:active {
  background-color: rgb(12 74 110 / 0.3);
}
.active\:bg-sky-900\/40:active {
  background-color: rgb(12 74 110 / 0.4);
}
.active\:bg-sky-900\/5:active {
  background-color: rgb(12 74 110 / 0.05);
}
.active\:bg-sky-900\/50:active {
  background-color: rgb(12 74 110 / 0.5);
}
.active\:bg-sky-900\/60:active {
  background-color: rgb(12 74 110 / 0.6);
}
.active\:bg-sky-900\/70:active {
  background-color: rgb(12 74 110 / 0.7);
}
.active\:bg-sky-900\/80:active {
  background-color: rgb(12 74 110 / 0.8);
}
.active\:bg-sky-900\/90:active {
  background-color: rgb(12 74 110 / 0.9);
}
.active\:bg-sky-950:active {
  --tw-bg-opacity: 1;
  background-color: rgb(8 47 73 / var(--tw-bg-opacity, 1));
}
.active\:bg-sky-950\/10:active {
  background-color: rgb(8 47 73 / 0.1);
}
.active\:bg-sky-950\/20:active {
  background-color: rgb(8 47 73 / 0.2);
}
.active\:bg-sky-950\/30:active {
  background-color: rgb(8 47 73 / 0.3);
}
.active\:bg-sky-950\/40:active {
  background-color: rgb(8 47 73 / 0.4);
}
.active\:bg-sky-950\/5:active {
  background-color: rgb(8 47 73 / 0.05);
}
.active\:bg-sky-950\/50:active {
  background-color: rgb(8 47 73 / 0.5);
}
.active\:bg-sky-950\/60:active {
  background-color: rgb(8 47 73 / 0.6);
}
.active\:bg-sky-950\/70:active {
  background-color: rgb(8 47 73 / 0.7);
}
.active\:bg-sky-950\/80:active {
  background-color: rgb(8 47 73 / 0.8);
}
.active\:bg-sky-950\/90:active {
  background-color: rgb(8 47 73 / 0.9);
}
.active\:bg-slate-100:active {
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
}
.active\:bg-slate-100\/10:active {
  background-color: rgb(241 245 249 / 0.1);
}
.active\:bg-slate-100\/20:active {
  background-color: rgb(241 245 249 / 0.2);
}
.active\:bg-slate-100\/30:active {
  background-color: rgb(241 245 249 / 0.3);
}
.active\:bg-slate-100\/40:active {
  background-color: rgb(241 245 249 / 0.4);
}
.active\:bg-slate-100\/5:active {
  background-color: rgb(241 245 249 / 0.05);
}
.active\:bg-slate-100\/50:active {
  background-color: rgb(241 245 249 / 0.5);
}
.active\:bg-slate-100\/60:active {
  background-color: rgb(241 245 249 / 0.6);
}
.active\:bg-slate-100\/70:active {
  background-color: rgb(241 245 249 / 0.7);
}
.active\:bg-slate-100\/80:active {
  background-color: rgb(241 245 249 / 0.8);
}
.active\:bg-slate-100\/90:active {
  background-color: rgb(241 245 249 / 0.9);
}
.active\:bg-slate-200:active {
  --tw-bg-opacity: 1;
  background-color: rgb(226 232 240 / var(--tw-bg-opacity, 1));
}
.active\:bg-slate-200\/10:active {
  background-color: rgb(226 232 240 / 0.1);
}
.active\:bg-slate-200\/20:active {
  background-color: rgb(226 232 240 / 0.2);
}
.active\:bg-slate-200\/30:active {
  background-color: rgb(226 232 240 / 0.3);
}
.active\:bg-slate-200\/40:active {
  background-color: rgb(226 232 240 / 0.4);
}
.active\:bg-slate-200\/5:active {
  background-color: rgb(226 232 240 / 0.05);
}
.active\:bg-slate-200\/50:active {
  background-color: rgb(226 232 240 / 0.5);
}
.active\:bg-slate-200\/60:active {
  background-color: rgb(226 232 240 / 0.6);
}
.active\:bg-slate-200\/70:active {
  background-color: rgb(226 232 240 / 0.7);
}
.active\:bg-slate-200\/80:active {
  background-color: rgb(226 232 240 / 0.8);
}
.active\:bg-slate-200\/90:active {
  background-color: rgb(226 232 240 / 0.9);
}
.active\:bg-slate-300:active {
  --tw-bg-opacity: 1;
  background-color: rgb(203 213 225 / var(--tw-bg-opacity, 1));
}
.active\:bg-slate-300\/10:active {
  background-color: rgb(203 213 225 / 0.1);
}
.active\:bg-slate-300\/20:active {
  background-color: rgb(203 213 225 / 0.2);
}
.active\:bg-slate-300\/30:active {
  background-color: rgb(203 213 225 / 0.3);
}
.active\:bg-slate-300\/40:active {
  background-color: rgb(203 213 225 / 0.4);
}
.active\:bg-slate-300\/5:active {
  background-color: rgb(203 213 225 / 0.05);
}
.active\:bg-slate-300\/50:active {
  background-color: rgb(203 213 225 / 0.5);
}
.active\:bg-slate-300\/60:active {
  background-color: rgb(203 213 225 / 0.6);
}
.active\:bg-slate-300\/70:active {
  background-color: rgb(203 213 225 / 0.7);
}
.active\:bg-slate-300\/80:active {
  background-color: rgb(203 213 225 / 0.8);
}
.active\:bg-slate-300\/90:active {
  background-color: rgb(203 213 225 / 0.9);
}
.active\:bg-slate-400:active {
  --tw-bg-opacity: 1;
  background-color: rgb(148 163 184 / var(--tw-bg-opacity, 1));
}
.active\:bg-slate-400\/10:active {
  background-color: rgb(148 163 184 / 0.1);
}
.active\:bg-slate-400\/20:active {
  background-color: rgb(148 163 184 / 0.2);
}
.active\:bg-slate-400\/30:active {
  background-color: rgb(148 163 184 / 0.3);
}
.active\:bg-slate-400\/40:active {
  background-color: rgb(148 163 184 / 0.4);
}
.active\:bg-slate-400\/5:active {
  background-color: rgb(148 163 184 / 0.05);
}
.active\:bg-slate-400\/50:active {
  background-color: rgb(148 163 184 / 0.5);
}
.active\:bg-slate-400\/60:active {
  background-color: rgb(148 163 184 / 0.6);
}
.active\:bg-slate-400\/70:active {
  background-color: rgb(148 163 184 / 0.7);
}
.active\:bg-slate-400\/80:active {
  background-color: rgb(148 163 184 / 0.8);
}
.active\:bg-slate-400\/90:active {
  background-color: rgb(148 163 184 / 0.9);
}
.active\:bg-slate-50:active {
  --tw-bg-opacity: 1;
  background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
}
.active\:bg-slate-50\/10:active {
  background-color: rgb(248 250 252 / 0.1);
}
.active\:bg-slate-50\/20:active {
  background-color: rgb(248 250 252 / 0.2);
}
.active\:bg-slate-50\/30:active {
  background-color: rgb(248 250 252 / 0.3);
}
.active\:bg-slate-50\/40:active {
  background-color: rgb(248 250 252 / 0.4);
}
.active\:bg-slate-50\/5:active {
  background-color: rgb(248 250 252 / 0.05);
}
.active\:bg-slate-50\/50:active {
  background-color: rgb(248 250 252 / 0.5);
}
.active\:bg-slate-50\/60:active {
  background-color: rgb(248 250 252 / 0.6);
}
.active\:bg-slate-50\/70:active {
  background-color: rgb(248 250 252 / 0.7);
}
.active\:bg-slate-50\/80:active {
  background-color: rgb(248 250 252 / 0.8);
}
.active\:bg-slate-50\/90:active {
  background-color: rgb(248 250 252 / 0.9);
}
.active\:bg-slate-500:active {
  --tw-bg-opacity: 1;
  background-color: rgb(100 116 139 / var(--tw-bg-opacity, 1));
}
.active\:bg-slate-500\/10:active {
  background-color: rgb(100 116 139 / 0.1);
}
.active\:bg-slate-500\/20:active {
  background-color: rgb(100 116 139 / 0.2);
}
.active\:bg-slate-500\/30:active {
  background-color: rgb(100 116 139 / 0.3);
}
.active\:bg-slate-500\/40:active {
  background-color: rgb(100 116 139 / 0.4);
}
.active\:bg-slate-500\/5:active {
  background-color: rgb(100 116 139 / 0.05);
}
.active\:bg-slate-500\/50:active {
  background-color: rgb(100 116 139 / 0.5);
}
.active\:bg-slate-500\/60:active {
  background-color: rgb(100 116 139 / 0.6);
}
.active\:bg-slate-500\/70:active {
  background-color: rgb(100 116 139 / 0.7);
}
.active\:bg-slate-500\/80:active {
  background-color: rgb(100 116 139 / 0.8);
}
.active\:bg-slate-500\/90:active {
  background-color: rgb(100 116 139 / 0.9);
}
.active\:bg-slate-600:active {
  --tw-bg-opacity: 1;
  background-color: rgb(71 85 105 / var(--tw-bg-opacity, 1));
}
.active\:bg-slate-600\/10:active {
  background-color: rgb(71 85 105 / 0.1);
}
.active\:bg-slate-600\/20:active {
  background-color: rgb(71 85 105 / 0.2);
}
.active\:bg-slate-600\/30:active {
  background-color: rgb(71 85 105 / 0.3);
}
.active\:bg-slate-600\/40:active {
  background-color: rgb(71 85 105 / 0.4);
}
.active\:bg-slate-600\/5:active {
  background-color: rgb(71 85 105 / 0.05);
}
.active\:bg-slate-600\/50:active {
  background-color: rgb(71 85 105 / 0.5);
}
.active\:bg-slate-600\/60:active {
  background-color: rgb(71 85 105 / 0.6);
}
.active\:bg-slate-600\/70:active {
  background-color: rgb(71 85 105 / 0.7);
}
.active\:bg-slate-600\/80:active {
  background-color: rgb(71 85 105 / 0.8);
}
.active\:bg-slate-600\/90:active {
  background-color: rgb(71 85 105 / 0.9);
}
.active\:bg-slate-700:active {
  --tw-bg-opacity: 1;
  background-color: rgb(51 65 85 / var(--tw-bg-opacity, 1));
}
.active\:bg-slate-700\/10:active {
  background-color: rgb(51 65 85 / 0.1);
}
.active\:bg-slate-700\/20:active {
  background-color: rgb(51 65 85 / 0.2);
}
.active\:bg-slate-700\/30:active {
  background-color: rgb(51 65 85 / 0.3);
}
.active\:bg-slate-700\/40:active {
  background-color: rgb(51 65 85 / 0.4);
}
.active\:bg-slate-700\/5:active {
  background-color: rgb(51 65 85 / 0.05);
}
.active\:bg-slate-700\/50:active {
  background-color: rgb(51 65 85 / 0.5);
}
.active\:bg-slate-700\/60:active {
  background-color: rgb(51 65 85 / 0.6);
}
.active\:bg-slate-700\/70:active {
  background-color: rgb(51 65 85 / 0.7);
}
.active\:bg-slate-700\/80:active {
  background-color: rgb(51 65 85 / 0.8);
}
.active\:bg-slate-700\/90:active {
  background-color: rgb(51 65 85 / 0.9);
}
.active\:bg-slate-800:active {
  --tw-bg-opacity: 1;
  background-color: rgb(30 41 59 / var(--tw-bg-opacity, 1));
}
.active\:bg-slate-800\/10:active {
  background-color: rgb(30 41 59 / 0.1);
}
.active\:bg-slate-800\/20:active {
  background-color: rgb(30 41 59 / 0.2);
}
.active\:bg-slate-800\/30:active {
  background-color: rgb(30 41 59 / 0.3);
}
.active\:bg-slate-800\/40:active {
  background-color: rgb(30 41 59 / 0.4);
}
.active\:bg-slate-800\/5:active {
  background-color: rgb(30 41 59 / 0.05);
}
.active\:bg-slate-800\/50:active {
  background-color: rgb(30 41 59 / 0.5);
}
.active\:bg-slate-800\/60:active {
  background-color: rgb(30 41 59 / 0.6);
}
.active\:bg-slate-800\/70:active {
  background-color: rgb(30 41 59 / 0.7);
}
.active\:bg-slate-800\/80:active {
  background-color: rgb(30 41 59 / 0.8);
}
.active\:bg-slate-800\/90:active {
  background-color: rgb(30 41 59 / 0.9);
}
.active\:bg-slate-900:active {
  --tw-bg-opacity: 1;
  background-color: rgb(15 23 42 / var(--tw-bg-opacity, 1));
}
.active\:bg-slate-900\/10:active {
  background-color: rgb(15 23 42 / 0.1);
}
.active\:bg-slate-900\/20:active {
  background-color: rgb(15 23 42 / 0.2);
}
.active\:bg-slate-900\/30:active {
  background-color: rgb(15 23 42 / 0.3);
}
.active\:bg-slate-900\/40:active {
  background-color: rgb(15 23 42 / 0.4);
}
.active\:bg-slate-900\/5:active {
  background-color: rgb(15 23 42 / 0.05);
}
.active\:bg-slate-900\/50:active {
  background-color: rgb(15 23 42 / 0.5);
}
.active\:bg-slate-900\/60:active {
  background-color: rgb(15 23 42 / 0.6);
}
.active\:bg-slate-900\/70:active {
  background-color: rgb(15 23 42 / 0.7);
}
.active\:bg-slate-900\/80:active {
  background-color: rgb(15 23 42 / 0.8);
}
.active\:bg-slate-900\/90:active {
  background-color: rgb(15 23 42 / 0.9);
}
.active\:bg-slate-950:active {
  --tw-bg-opacity: 1;
  background-color: rgb(2 6 23 / var(--tw-bg-opacity, 1));
}
.active\:bg-slate-950\/10:active {
  background-color: rgb(2 6 23 / 0.1);
}
.active\:bg-slate-950\/20:active {
  background-color: rgb(2 6 23 / 0.2);
}
.active\:bg-slate-950\/30:active {
  background-color: rgb(2 6 23 / 0.3);
}
.active\:bg-slate-950\/40:active {
  background-color: rgb(2 6 23 / 0.4);
}
.active\:bg-slate-950\/5:active {
  background-color: rgb(2 6 23 / 0.05);
}
.active\:bg-slate-950\/50:active {
  background-color: rgb(2 6 23 / 0.5);
}
.active\:bg-slate-950\/60:active {
  background-color: rgb(2 6 23 / 0.6);
}
.active\:bg-slate-950\/70:active {
  background-color: rgb(2 6 23 / 0.7);
}
.active\:bg-slate-950\/80:active {
  background-color: rgb(2 6 23 / 0.8);
}
.active\:bg-slate-950\/90:active {
  background-color: rgb(2 6 23 / 0.9);
}
.active\:bg-stone-100:active {
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 244 / var(--tw-bg-opacity, 1));
}
.active\:bg-stone-100\/10:active {
  background-color: rgb(245 245 244 / 0.1);
}
.active\:bg-stone-100\/20:active {
  background-color: rgb(245 245 244 / 0.2);
}
.active\:bg-stone-100\/30:active {
  background-color: rgb(245 245 244 / 0.3);
}
.active\:bg-stone-100\/40:active {
  background-color: rgb(245 245 244 / 0.4);
}
.active\:bg-stone-100\/5:active {
  background-color: rgb(245 245 244 / 0.05);
}
.active\:bg-stone-100\/50:active {
  background-color: rgb(245 245 244 / 0.5);
}
.active\:bg-stone-100\/60:active {
  background-color: rgb(245 245 244 / 0.6);
}
.active\:bg-stone-100\/70:active {
  background-color: rgb(245 245 244 / 0.7);
}
.active\:bg-stone-100\/80:active {
  background-color: rgb(245 245 244 / 0.8);
}
.active\:bg-stone-100\/90:active {
  background-color: rgb(245 245 244 / 0.9);
}
.active\:bg-stone-200:active {
  --tw-bg-opacity: 1;
  background-color: rgb(231 229 228 / var(--tw-bg-opacity, 1));
}
.active\:bg-stone-200\/10:active {
  background-color: rgb(231 229 228 / 0.1);
}
.active\:bg-stone-200\/20:active {
  background-color: rgb(231 229 228 / 0.2);
}
.active\:bg-stone-200\/30:active {
  background-color: rgb(231 229 228 / 0.3);
}
.active\:bg-stone-200\/40:active {
  background-color: rgb(231 229 228 / 0.4);
}
.active\:bg-stone-200\/5:active {
  background-color: rgb(231 229 228 / 0.05);
}
.active\:bg-stone-200\/50:active {
  background-color: rgb(231 229 228 / 0.5);
}
.active\:bg-stone-200\/60:active {
  background-color: rgb(231 229 228 / 0.6);
}
.active\:bg-stone-200\/70:active {
  background-color: rgb(231 229 228 / 0.7);
}
.active\:bg-stone-200\/80:active {
  background-color: rgb(231 229 228 / 0.8);
}
.active\:bg-stone-200\/90:active {
  background-color: rgb(231 229 228 / 0.9);
}
.active\:bg-stone-300:active {
  --tw-bg-opacity: 1;
  background-color: rgb(214 211 209 / var(--tw-bg-opacity, 1));
}
.active\:bg-stone-300\/10:active {
  background-color: rgb(214 211 209 / 0.1);
}
.active\:bg-stone-300\/20:active {
  background-color: rgb(214 211 209 / 0.2);
}
.active\:bg-stone-300\/30:active {
  background-color: rgb(214 211 209 / 0.3);
}
.active\:bg-stone-300\/40:active {
  background-color: rgb(214 211 209 / 0.4);
}
.active\:bg-stone-300\/5:active {
  background-color: rgb(214 211 209 / 0.05);
}
.active\:bg-stone-300\/50:active {
  background-color: rgb(214 211 209 / 0.5);
}
.active\:bg-stone-300\/60:active {
  background-color: rgb(214 211 209 / 0.6);
}
.active\:bg-stone-300\/70:active {
  background-color: rgb(214 211 209 / 0.7);
}
.active\:bg-stone-300\/80:active {
  background-color: rgb(214 211 209 / 0.8);
}
.active\:bg-stone-300\/90:active {
  background-color: rgb(214 211 209 / 0.9);
}
.active\:bg-stone-400:active {
  --tw-bg-opacity: 1;
  background-color: rgb(168 162 158 / var(--tw-bg-opacity, 1));
}
.active\:bg-stone-400\/10:active {
  background-color: rgb(168 162 158 / 0.1);
}
.active\:bg-stone-400\/20:active {
  background-color: rgb(168 162 158 / 0.2);
}
.active\:bg-stone-400\/30:active {
  background-color: rgb(168 162 158 / 0.3);
}
.active\:bg-stone-400\/40:active {
  background-color: rgb(168 162 158 / 0.4);
}
.active\:bg-stone-400\/5:active {
  background-color: rgb(168 162 158 / 0.05);
}
.active\:bg-stone-400\/50:active {
  background-color: rgb(168 162 158 / 0.5);
}
.active\:bg-stone-400\/60:active {
  background-color: rgb(168 162 158 / 0.6);
}
.active\:bg-stone-400\/70:active {
  background-color: rgb(168 162 158 / 0.7);
}
.active\:bg-stone-400\/80:active {
  background-color: rgb(168 162 158 / 0.8);
}
.active\:bg-stone-400\/90:active {
  background-color: rgb(168 162 158 / 0.9);
}
.active\:bg-stone-50:active {
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 249 / var(--tw-bg-opacity, 1));
}
.active\:bg-stone-50\/10:active {
  background-color: rgb(250 250 249 / 0.1);
}
.active\:bg-stone-50\/20:active {
  background-color: rgb(250 250 249 / 0.2);
}
.active\:bg-stone-50\/30:active {
  background-color: rgb(250 250 249 / 0.3);
}
.active\:bg-stone-50\/40:active {
  background-color: rgb(250 250 249 / 0.4);
}
.active\:bg-stone-50\/5:active {
  background-color: rgb(250 250 249 / 0.05);
}
.active\:bg-stone-50\/50:active {
  background-color: rgb(250 250 249 / 0.5);
}
.active\:bg-stone-50\/60:active {
  background-color: rgb(250 250 249 / 0.6);
}
.active\:bg-stone-50\/70:active {
  background-color: rgb(250 250 249 / 0.7);
}
.active\:bg-stone-50\/80:active {
  background-color: rgb(250 250 249 / 0.8);
}
.active\:bg-stone-50\/90:active {
  background-color: rgb(250 250 249 / 0.9);
}
.active\:bg-stone-500:active {
  --tw-bg-opacity: 1;
  background-color: rgb(120 113 108 / var(--tw-bg-opacity, 1));
}
.active\:bg-stone-500\/10:active {
  background-color: rgb(120 113 108 / 0.1);
}
.active\:bg-stone-500\/20:active {
  background-color: rgb(120 113 108 / 0.2);
}
.active\:bg-stone-500\/30:active {
  background-color: rgb(120 113 108 / 0.3);
}
.active\:bg-stone-500\/40:active {
  background-color: rgb(120 113 108 / 0.4);
}
.active\:bg-stone-500\/5:active {
  background-color: rgb(120 113 108 / 0.05);
}
.active\:bg-stone-500\/50:active {
  background-color: rgb(120 113 108 / 0.5);
}
.active\:bg-stone-500\/60:active {
  background-color: rgb(120 113 108 / 0.6);
}
.active\:bg-stone-500\/70:active {
  background-color: rgb(120 113 108 / 0.7);
}
.active\:bg-stone-500\/80:active {
  background-color: rgb(120 113 108 / 0.8);
}
.active\:bg-stone-500\/90:active {
  background-color: rgb(120 113 108 / 0.9);
}
.active\:bg-stone-600:active {
  --tw-bg-opacity: 1;
  background-color: rgb(87 83 78 / var(--tw-bg-opacity, 1));
}
.active\:bg-stone-600\/10:active {
  background-color: rgb(87 83 78 / 0.1);
}
.active\:bg-stone-600\/20:active {
  background-color: rgb(87 83 78 / 0.2);
}
.active\:bg-stone-600\/30:active {
  background-color: rgb(87 83 78 / 0.3);
}
.active\:bg-stone-600\/40:active {
  background-color: rgb(87 83 78 / 0.4);
}
.active\:bg-stone-600\/5:active {
  background-color: rgb(87 83 78 / 0.05);
}
.active\:bg-stone-600\/50:active {
  background-color: rgb(87 83 78 / 0.5);
}
.active\:bg-stone-600\/60:active {
  background-color: rgb(87 83 78 / 0.6);
}
.active\:bg-stone-600\/70:active {
  background-color: rgb(87 83 78 / 0.7);
}
.active\:bg-stone-600\/80:active {
  background-color: rgb(87 83 78 / 0.8);
}
.active\:bg-stone-600\/90:active {
  background-color: rgb(87 83 78 / 0.9);
}
.active\:bg-stone-700:active {
  --tw-bg-opacity: 1;
  background-color: rgb(68 64 60 / var(--tw-bg-opacity, 1));
}
.active\:bg-stone-700\/10:active {
  background-color: rgb(68 64 60 / 0.1);
}
.active\:bg-stone-700\/20:active {
  background-color: rgb(68 64 60 / 0.2);
}
.active\:bg-stone-700\/30:active {
  background-color: rgb(68 64 60 / 0.3);
}
.active\:bg-stone-700\/40:active {
  background-color: rgb(68 64 60 / 0.4);
}
.active\:bg-stone-700\/5:active {
  background-color: rgb(68 64 60 / 0.05);
}
.active\:bg-stone-700\/50:active {
  background-color: rgb(68 64 60 / 0.5);
}
.active\:bg-stone-700\/60:active {
  background-color: rgb(68 64 60 / 0.6);
}
.active\:bg-stone-700\/70:active {
  background-color: rgb(68 64 60 / 0.7);
}
.active\:bg-stone-700\/80:active {
  background-color: rgb(68 64 60 / 0.8);
}
.active\:bg-stone-700\/90:active {
  background-color: rgb(68 64 60 / 0.9);
}
.active\:bg-stone-800:active {
  --tw-bg-opacity: 1;
  background-color: rgb(41 37 36 / var(--tw-bg-opacity, 1));
}
.active\:bg-stone-800\/10:active {
  background-color: rgb(41 37 36 / 0.1);
}
.active\:bg-stone-800\/20:active {
  background-color: rgb(41 37 36 / 0.2);
}
.active\:bg-stone-800\/30:active {
  background-color: rgb(41 37 36 / 0.3);
}
.active\:bg-stone-800\/40:active {
  background-color: rgb(41 37 36 / 0.4);
}
.active\:bg-stone-800\/5:active {
  background-color: rgb(41 37 36 / 0.05);
}
.active\:bg-stone-800\/50:active {
  background-color: rgb(41 37 36 / 0.5);
}
.active\:bg-stone-800\/60:active {
  background-color: rgb(41 37 36 / 0.6);
}
.active\:bg-stone-800\/70:active {
  background-color: rgb(41 37 36 / 0.7);
}
.active\:bg-stone-800\/80:active {
  background-color: rgb(41 37 36 / 0.8);
}
.active\:bg-stone-800\/90:active {
  background-color: rgb(41 37 36 / 0.9);
}
.active\:bg-stone-900:active {
  --tw-bg-opacity: 1;
  background-color: rgb(28 25 23 / var(--tw-bg-opacity, 1));
}
.active\:bg-stone-900\/10:active {
  background-color: rgb(28 25 23 / 0.1);
}
.active\:bg-stone-900\/20:active {
  background-color: rgb(28 25 23 / 0.2);
}
.active\:bg-stone-900\/30:active {
  background-color: rgb(28 25 23 / 0.3);
}
.active\:bg-stone-900\/40:active {
  background-color: rgb(28 25 23 / 0.4);
}
.active\:bg-stone-900\/5:active {
  background-color: rgb(28 25 23 / 0.05);
}
.active\:bg-stone-900\/50:active {
  background-color: rgb(28 25 23 / 0.5);
}
.active\:bg-stone-900\/60:active {
  background-color: rgb(28 25 23 / 0.6);
}
.active\:bg-stone-900\/70:active {
  background-color: rgb(28 25 23 / 0.7);
}
.active\:bg-stone-900\/80:active {
  background-color: rgb(28 25 23 / 0.8);
}
.active\:bg-stone-900\/90:active {
  background-color: rgb(28 25 23 / 0.9);
}
.active\:bg-stone-950:active {
  --tw-bg-opacity: 1;
  background-color: rgb(12 10 9 / var(--tw-bg-opacity, 1));
}
.active\:bg-stone-950\/10:active {
  background-color: rgb(12 10 9 / 0.1);
}
.active\:bg-stone-950\/20:active {
  background-color: rgb(12 10 9 / 0.2);
}
.active\:bg-stone-950\/30:active {
  background-color: rgb(12 10 9 / 0.3);
}
.active\:bg-stone-950\/40:active {
  background-color: rgb(12 10 9 / 0.4);
}
.active\:bg-stone-950\/5:active {
  background-color: rgb(12 10 9 / 0.05);
}
.active\:bg-stone-950\/50:active {
  background-color: rgb(12 10 9 / 0.5);
}
.active\:bg-stone-950\/60:active {
  background-color: rgb(12 10 9 / 0.6);
}
.active\:bg-stone-950\/70:active {
  background-color: rgb(12 10 9 / 0.7);
}
.active\:bg-stone-950\/80:active {
  background-color: rgb(12 10 9 / 0.8);
}
.active\:bg-stone-950\/90:active {
  background-color: rgb(12 10 9 / 0.9);
}
.active\:bg-teal-100:active {
  --tw-bg-opacity: 1;
  background-color: rgb(204 251 241 / var(--tw-bg-opacity, 1));
}
.active\:bg-teal-100\/10:active {
  background-color: rgb(204 251 241 / 0.1);
}
.active\:bg-teal-100\/20:active {
  background-color: rgb(204 251 241 / 0.2);
}
.active\:bg-teal-100\/30:active {
  background-color: rgb(204 251 241 / 0.3);
}
.active\:bg-teal-100\/40:active {
  background-color: rgb(204 251 241 / 0.4);
}
.active\:bg-teal-100\/5:active {
  background-color: rgb(204 251 241 / 0.05);
}
.active\:bg-teal-100\/50:active {
  background-color: rgb(204 251 241 / 0.5);
}
.active\:bg-teal-100\/60:active {
  background-color: rgb(204 251 241 / 0.6);
}
.active\:bg-teal-100\/70:active {
  background-color: rgb(204 251 241 / 0.7);
}
.active\:bg-teal-100\/80:active {
  background-color: rgb(204 251 241 / 0.8);
}
.active\:bg-teal-100\/90:active {
  background-color: rgb(204 251 241 / 0.9);
}
.active\:bg-teal-200:active {
  --tw-bg-opacity: 1;
  background-color: rgb(153 246 228 / var(--tw-bg-opacity, 1));
}
.active\:bg-teal-200\/10:active {
  background-color: rgb(153 246 228 / 0.1);
}
.active\:bg-teal-200\/20:active {
  background-color: rgb(153 246 228 / 0.2);
}
.active\:bg-teal-200\/30:active {
  background-color: rgb(153 246 228 / 0.3);
}
.active\:bg-teal-200\/40:active {
  background-color: rgb(153 246 228 / 0.4);
}
.active\:bg-teal-200\/5:active {
  background-color: rgb(153 246 228 / 0.05);
}
.active\:bg-teal-200\/50:active {
  background-color: rgb(153 246 228 / 0.5);
}
.active\:bg-teal-200\/60:active {
  background-color: rgb(153 246 228 / 0.6);
}
.active\:bg-teal-200\/70:active {
  background-color: rgb(153 246 228 / 0.7);
}
.active\:bg-teal-200\/80:active {
  background-color: rgb(153 246 228 / 0.8);
}
.active\:bg-teal-200\/90:active {
  background-color: rgb(153 246 228 / 0.9);
}
.active\:bg-teal-300:active {
  --tw-bg-opacity: 1;
  background-color: rgb(94 234 212 / var(--tw-bg-opacity, 1));
}
.active\:bg-teal-300\/10:active {
  background-color: rgb(94 234 212 / 0.1);
}
.active\:bg-teal-300\/20:active {
  background-color: rgb(94 234 212 / 0.2);
}
.active\:bg-teal-300\/30:active {
  background-color: rgb(94 234 212 / 0.3);
}
.active\:bg-teal-300\/40:active {
  background-color: rgb(94 234 212 / 0.4);
}
.active\:bg-teal-300\/5:active {
  background-color: rgb(94 234 212 / 0.05);
}
.active\:bg-teal-300\/50:active {
  background-color: rgb(94 234 212 / 0.5);
}
.active\:bg-teal-300\/60:active {
  background-color: rgb(94 234 212 / 0.6);
}
.active\:bg-teal-300\/70:active {
  background-color: rgb(94 234 212 / 0.7);
}
.active\:bg-teal-300\/80:active {
  background-color: rgb(94 234 212 / 0.8);
}
.active\:bg-teal-300\/90:active {
  background-color: rgb(94 234 212 / 0.9);
}
.active\:bg-teal-400:active {
  --tw-bg-opacity: 1;
  background-color: rgb(45 212 191 / var(--tw-bg-opacity, 1));
}
.active\:bg-teal-400\/10:active {
  background-color: rgb(45 212 191 / 0.1);
}
.active\:bg-teal-400\/20:active {
  background-color: rgb(45 212 191 / 0.2);
}
.active\:bg-teal-400\/30:active {
  background-color: rgb(45 212 191 / 0.3);
}
.active\:bg-teal-400\/40:active {
  background-color: rgb(45 212 191 / 0.4);
}
.active\:bg-teal-400\/5:active {
  background-color: rgb(45 212 191 / 0.05);
}
.active\:bg-teal-400\/50:active {
  background-color: rgb(45 212 191 / 0.5);
}
.active\:bg-teal-400\/60:active {
  background-color: rgb(45 212 191 / 0.6);
}
.active\:bg-teal-400\/70:active {
  background-color: rgb(45 212 191 / 0.7);
}
.active\:bg-teal-400\/80:active {
  background-color: rgb(45 212 191 / 0.8);
}
.active\:bg-teal-400\/90:active {
  background-color: rgb(45 212 191 / 0.9);
}
.active\:bg-teal-50:active {
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 250 / var(--tw-bg-opacity, 1));
}
.active\:bg-teal-50\/10:active {
  background-color: rgb(240 253 250 / 0.1);
}
.active\:bg-teal-50\/20:active {
  background-color: rgb(240 253 250 / 0.2);
}
.active\:bg-teal-50\/30:active {
  background-color: rgb(240 253 250 / 0.3);
}
.active\:bg-teal-50\/40:active {
  background-color: rgb(240 253 250 / 0.4);
}
.active\:bg-teal-50\/5:active {
  background-color: rgb(240 253 250 / 0.05);
}
.active\:bg-teal-50\/50:active {
  background-color: rgb(240 253 250 / 0.5);
}
.active\:bg-teal-50\/60:active {
  background-color: rgb(240 253 250 / 0.6);
}
.active\:bg-teal-50\/70:active {
  background-color: rgb(240 253 250 / 0.7);
}
.active\:bg-teal-50\/80:active {
  background-color: rgb(240 253 250 / 0.8);
}
.active\:bg-teal-50\/90:active {
  background-color: rgb(240 253 250 / 0.9);
}
.active\:bg-teal-500:active {
  --tw-bg-opacity: 1;
  background-color: rgb(20 184 166 / var(--tw-bg-opacity, 1));
}
.active\:bg-teal-500\/10:active {
  background-color: rgb(20 184 166 / 0.1);
}
.active\:bg-teal-500\/20:active {
  background-color: rgb(20 184 166 / 0.2);
}
.active\:bg-teal-500\/30:active {
  background-color: rgb(20 184 166 / 0.3);
}
.active\:bg-teal-500\/40:active {
  background-color: rgb(20 184 166 / 0.4);
}
.active\:bg-teal-500\/5:active {
  background-color: rgb(20 184 166 / 0.05);
}
.active\:bg-teal-500\/50:active {
  background-color: rgb(20 184 166 / 0.5);
}
.active\:bg-teal-500\/60:active {
  background-color: rgb(20 184 166 / 0.6);
}
.active\:bg-teal-500\/70:active {
  background-color: rgb(20 184 166 / 0.7);
}
.active\:bg-teal-500\/80:active {
  background-color: rgb(20 184 166 / 0.8);
}
.active\:bg-teal-500\/90:active {
  background-color: rgb(20 184 166 / 0.9);
}
.active\:bg-teal-600:active {
  --tw-bg-opacity: 1;
  background-color: rgb(13 148 136 / var(--tw-bg-opacity, 1));
}
.active\:bg-teal-600\/10:active {
  background-color: rgb(13 148 136 / 0.1);
}
.active\:bg-teal-600\/20:active {
  background-color: rgb(13 148 136 / 0.2);
}
.active\:bg-teal-600\/30:active {
  background-color: rgb(13 148 136 / 0.3);
}
.active\:bg-teal-600\/40:active {
  background-color: rgb(13 148 136 / 0.4);
}
.active\:bg-teal-600\/5:active {
  background-color: rgb(13 148 136 / 0.05);
}
.active\:bg-teal-600\/50:active {
  background-color: rgb(13 148 136 / 0.5);
}
.active\:bg-teal-600\/60:active {
  background-color: rgb(13 148 136 / 0.6);
}
.active\:bg-teal-600\/70:active {
  background-color: rgb(13 148 136 / 0.7);
}
.active\:bg-teal-600\/80:active {
  background-color: rgb(13 148 136 / 0.8);
}
.active\:bg-teal-600\/90:active {
  background-color: rgb(13 148 136 / 0.9);
}
.active\:bg-teal-700:active {
  --tw-bg-opacity: 1;
  background-color: rgb(15 118 110 / var(--tw-bg-opacity, 1));
}
.active\:bg-teal-700\/10:active {
  background-color: rgb(15 118 110 / 0.1);
}
.active\:bg-teal-700\/20:active {
  background-color: rgb(15 118 110 / 0.2);
}
.active\:bg-teal-700\/30:active {
  background-color: rgb(15 118 110 / 0.3);
}
.active\:bg-teal-700\/40:active {
  background-color: rgb(15 118 110 / 0.4);
}
.active\:bg-teal-700\/5:active {
  background-color: rgb(15 118 110 / 0.05);
}
.active\:bg-teal-700\/50:active {
  background-color: rgb(15 118 110 / 0.5);
}
.active\:bg-teal-700\/60:active {
  background-color: rgb(15 118 110 / 0.6);
}
.active\:bg-teal-700\/70:active {
  background-color: rgb(15 118 110 / 0.7);
}
.active\:bg-teal-700\/80:active {
  background-color: rgb(15 118 110 / 0.8);
}
.active\:bg-teal-700\/90:active {
  background-color: rgb(15 118 110 / 0.9);
}
.active\:bg-teal-800:active {
  --tw-bg-opacity: 1;
  background-color: rgb(17 94 89 / var(--tw-bg-opacity, 1));
}
.active\:bg-teal-800\/10:active {
  background-color: rgb(17 94 89 / 0.1);
}
.active\:bg-teal-800\/20:active {
  background-color: rgb(17 94 89 / 0.2);
}
.active\:bg-teal-800\/30:active {
  background-color: rgb(17 94 89 / 0.3);
}
.active\:bg-teal-800\/40:active {
  background-color: rgb(17 94 89 / 0.4);
}
.active\:bg-teal-800\/5:active {
  background-color: rgb(17 94 89 / 0.05);
}
.active\:bg-teal-800\/50:active {
  background-color: rgb(17 94 89 / 0.5);
}
.active\:bg-teal-800\/60:active {
  background-color: rgb(17 94 89 / 0.6);
}
.active\:bg-teal-800\/70:active {
  background-color: rgb(17 94 89 / 0.7);
}
.active\:bg-teal-800\/80:active {
  background-color: rgb(17 94 89 / 0.8);
}
.active\:bg-teal-800\/90:active {
  background-color: rgb(17 94 89 / 0.9);
}
.active\:bg-teal-900:active {
  --tw-bg-opacity: 1;
  background-color: rgb(19 78 74 / var(--tw-bg-opacity, 1));
}
.active\:bg-teal-900\/10:active {
  background-color: rgb(19 78 74 / 0.1);
}
.active\:bg-teal-900\/20:active {
  background-color: rgb(19 78 74 / 0.2);
}
.active\:bg-teal-900\/30:active {
  background-color: rgb(19 78 74 / 0.3);
}
.active\:bg-teal-900\/40:active {
  background-color: rgb(19 78 74 / 0.4);
}
.active\:bg-teal-900\/5:active {
  background-color: rgb(19 78 74 / 0.05);
}
.active\:bg-teal-900\/50:active {
  background-color: rgb(19 78 74 / 0.5);
}
.active\:bg-teal-900\/60:active {
  background-color: rgb(19 78 74 / 0.6);
}
.active\:bg-teal-900\/70:active {
  background-color: rgb(19 78 74 / 0.7);
}
.active\:bg-teal-900\/80:active {
  background-color: rgb(19 78 74 / 0.8);
}
.active\:bg-teal-900\/90:active {
  background-color: rgb(19 78 74 / 0.9);
}
.active\:bg-teal-950:active {
  --tw-bg-opacity: 1;
  background-color: rgb(4 47 46 / var(--tw-bg-opacity, 1));
}
.active\:bg-teal-950\/10:active {
  background-color: rgb(4 47 46 / 0.1);
}
.active\:bg-teal-950\/20:active {
  background-color: rgb(4 47 46 / 0.2);
}
.active\:bg-teal-950\/30:active {
  background-color: rgb(4 47 46 / 0.3);
}
.active\:bg-teal-950\/40:active {
  background-color: rgb(4 47 46 / 0.4);
}
.active\:bg-teal-950\/5:active {
  background-color: rgb(4 47 46 / 0.05);
}
.active\:bg-teal-950\/50:active {
  background-color: rgb(4 47 46 / 0.5);
}
.active\:bg-teal-950\/60:active {
  background-color: rgb(4 47 46 / 0.6);
}
.active\:bg-teal-950\/70:active {
  background-color: rgb(4 47 46 / 0.7);
}
.active\:bg-teal-950\/80:active {
  background-color: rgb(4 47 46 / 0.8);
}
.active\:bg-teal-950\/90:active {
  background-color: rgb(4 47 46 / 0.9);
}
.active\:bg-violet-100:active {
  --tw-bg-opacity: 1;
  background-color: rgb(237 233 254 / var(--tw-bg-opacity, 1));
}
.active\:bg-violet-100\/10:active {
  background-color: rgb(237 233 254 / 0.1);
}
.active\:bg-violet-100\/20:active {
  background-color: rgb(237 233 254 / 0.2);
}
.active\:bg-violet-100\/30:active {
  background-color: rgb(237 233 254 / 0.3);
}
.active\:bg-violet-100\/40:active {
  background-color: rgb(237 233 254 / 0.4);
}
.active\:bg-violet-100\/5:active {
  background-color: rgb(237 233 254 / 0.05);
}
.active\:bg-violet-100\/50:active {
  background-color: rgb(237 233 254 / 0.5);
}
.active\:bg-violet-100\/60:active {
  background-color: rgb(237 233 254 / 0.6);
}
.active\:bg-violet-100\/70:active {
  background-color: rgb(237 233 254 / 0.7);
}
.active\:bg-violet-100\/80:active {
  background-color: rgb(237 233 254 / 0.8);
}
.active\:bg-violet-100\/90:active {
  background-color: rgb(237 233 254 / 0.9);
}
.active\:bg-violet-200:active {
  --tw-bg-opacity: 1;
  background-color: rgb(221 214 254 / var(--tw-bg-opacity, 1));
}
.active\:bg-violet-200\/10:active {
  background-color: rgb(221 214 254 / 0.1);
}
.active\:bg-violet-200\/20:active {
  background-color: rgb(221 214 254 / 0.2);
}
.active\:bg-violet-200\/30:active {
  background-color: rgb(221 214 254 / 0.3);
}
.active\:bg-violet-200\/40:active {
  background-color: rgb(221 214 254 / 0.4);
}
.active\:bg-violet-200\/5:active {
  background-color: rgb(221 214 254 / 0.05);
}
.active\:bg-violet-200\/50:active {
  background-color: rgb(221 214 254 / 0.5);
}
.active\:bg-violet-200\/60:active {
  background-color: rgb(221 214 254 / 0.6);
}
.active\:bg-violet-200\/70:active {
  background-color: rgb(221 214 254 / 0.7);
}
.active\:bg-violet-200\/80:active {
  background-color: rgb(221 214 254 / 0.8);
}
.active\:bg-violet-200\/90:active {
  background-color: rgb(221 214 254 / 0.9);
}
.active\:bg-violet-300:active {
  --tw-bg-opacity: 1;
  background-color: rgb(196 181 253 / var(--tw-bg-opacity, 1));
}
.active\:bg-violet-300\/10:active {
  background-color: rgb(196 181 253 / 0.1);
}
.active\:bg-violet-300\/20:active {
  background-color: rgb(196 181 253 / 0.2);
}
.active\:bg-violet-300\/30:active {
  background-color: rgb(196 181 253 / 0.3);
}
.active\:bg-violet-300\/40:active {
  background-color: rgb(196 181 253 / 0.4);
}
.active\:bg-violet-300\/5:active {
  background-color: rgb(196 181 253 / 0.05);
}
.active\:bg-violet-300\/50:active {
  background-color: rgb(196 181 253 / 0.5);
}
.active\:bg-violet-300\/60:active {
  background-color: rgb(196 181 253 / 0.6);
}
.active\:bg-violet-300\/70:active {
  background-color: rgb(196 181 253 / 0.7);
}
.active\:bg-violet-300\/80:active {
  background-color: rgb(196 181 253 / 0.8);
}
.active\:bg-violet-300\/90:active {
  background-color: rgb(196 181 253 / 0.9);
}
.active\:bg-violet-400:active {
  --tw-bg-opacity: 1;
  background-color: rgb(167 139 250 / var(--tw-bg-opacity, 1));
}
.active\:bg-violet-400\/10:active {
  background-color: rgb(167 139 250 / 0.1);
}
.active\:bg-violet-400\/20:active {
  background-color: rgb(167 139 250 / 0.2);
}
.active\:bg-violet-400\/30:active {
  background-color: rgb(167 139 250 / 0.3);
}
.active\:bg-violet-400\/40:active {
  background-color: rgb(167 139 250 / 0.4);
}
.active\:bg-violet-400\/5:active {
  background-color: rgb(167 139 250 / 0.05);
}
.active\:bg-violet-400\/50:active {
  background-color: rgb(167 139 250 / 0.5);
}
.active\:bg-violet-400\/60:active {
  background-color: rgb(167 139 250 / 0.6);
}
.active\:bg-violet-400\/70:active {
  background-color: rgb(167 139 250 / 0.7);
}
.active\:bg-violet-400\/80:active {
  background-color: rgb(167 139 250 / 0.8);
}
.active\:bg-violet-400\/90:active {
  background-color: rgb(167 139 250 / 0.9);
}
.active\:bg-violet-50:active {
  --tw-bg-opacity: 1;
  background-color: rgb(245 243 255 / var(--tw-bg-opacity, 1));
}
.active\:bg-violet-50\/10:active {
  background-color: rgb(245 243 255 / 0.1);
}
.active\:bg-violet-50\/20:active {
  background-color: rgb(245 243 255 / 0.2);
}
.active\:bg-violet-50\/30:active {
  background-color: rgb(245 243 255 / 0.3);
}
.active\:bg-violet-50\/40:active {
  background-color: rgb(245 243 255 / 0.4);
}
.active\:bg-violet-50\/5:active {
  background-color: rgb(245 243 255 / 0.05);
}
.active\:bg-violet-50\/50:active {
  background-color: rgb(245 243 255 / 0.5);
}
.active\:bg-violet-50\/60:active {
  background-color: rgb(245 243 255 / 0.6);
}
.active\:bg-violet-50\/70:active {
  background-color: rgb(245 243 255 / 0.7);
}
.active\:bg-violet-50\/80:active {
  background-color: rgb(245 243 255 / 0.8);
}
.active\:bg-violet-50\/90:active {
  background-color: rgb(245 243 255 / 0.9);
}
.active\:bg-violet-500:active {
  --tw-bg-opacity: 1;
  background-color: rgb(139 92 246 / var(--tw-bg-opacity, 1));
}
.active\:bg-violet-500\/10:active {
  background-color: rgb(139 92 246 / 0.1);
}
.active\:bg-violet-500\/20:active {
  background-color: rgb(139 92 246 / 0.2);
}
.active\:bg-violet-500\/30:active {
  background-color: rgb(139 92 246 / 0.3);
}
.active\:bg-violet-500\/40:active {
  background-color: rgb(139 92 246 / 0.4);
}
.active\:bg-violet-500\/5:active {
  background-color: rgb(139 92 246 / 0.05);
}
.active\:bg-violet-500\/50:active {
  background-color: rgb(139 92 246 / 0.5);
}
.active\:bg-violet-500\/60:active {
  background-color: rgb(139 92 246 / 0.6);
}
.active\:bg-violet-500\/70:active {
  background-color: rgb(139 92 246 / 0.7);
}
.active\:bg-violet-500\/80:active {
  background-color: rgb(139 92 246 / 0.8);
}
.active\:bg-violet-500\/90:active {
  background-color: rgb(139 92 246 / 0.9);
}
.active\:bg-violet-600:active {
  --tw-bg-opacity: 1;
  background-color: rgb(124 58 237 / var(--tw-bg-opacity, 1));
}
.active\:bg-violet-600\/10:active {
  background-color: rgb(124 58 237 / 0.1);
}
.active\:bg-violet-600\/20:active {
  background-color: rgb(124 58 237 / 0.2);
}
.active\:bg-violet-600\/30:active {
  background-color: rgb(124 58 237 / 0.3);
}
.active\:bg-violet-600\/40:active {
  background-color: rgb(124 58 237 / 0.4);
}
.active\:bg-violet-600\/5:active {
  background-color: rgb(124 58 237 / 0.05);
}
.active\:bg-violet-600\/50:active {
  background-color: rgb(124 58 237 / 0.5);
}
.active\:bg-violet-600\/60:active {
  background-color: rgb(124 58 237 / 0.6);
}
.active\:bg-violet-600\/70:active {
  background-color: rgb(124 58 237 / 0.7);
}
.active\:bg-violet-600\/80:active {
  background-color: rgb(124 58 237 / 0.8);
}
.active\:bg-violet-600\/90:active {
  background-color: rgb(124 58 237 / 0.9);
}
.active\:bg-violet-700:active {
  --tw-bg-opacity: 1;
  background-color: rgb(109 40 217 / var(--tw-bg-opacity, 1));
}
.active\:bg-violet-700\/10:active {
  background-color: rgb(109 40 217 / 0.1);
}
.active\:bg-violet-700\/20:active {
  background-color: rgb(109 40 217 / 0.2);
}
.active\:bg-violet-700\/30:active {
  background-color: rgb(109 40 217 / 0.3);
}
.active\:bg-violet-700\/40:active {
  background-color: rgb(109 40 217 / 0.4);
}
.active\:bg-violet-700\/5:active {
  background-color: rgb(109 40 217 / 0.05);
}
.active\:bg-violet-700\/50:active {
  background-color: rgb(109 40 217 / 0.5);
}
.active\:bg-violet-700\/60:active {
  background-color: rgb(109 40 217 / 0.6);
}
.active\:bg-violet-700\/70:active {
  background-color: rgb(109 40 217 / 0.7);
}
.active\:bg-violet-700\/80:active {
  background-color: rgb(109 40 217 / 0.8);
}
.active\:bg-violet-700\/90:active {
  background-color: rgb(109 40 217 / 0.9);
}
.active\:bg-violet-800:active {
  --tw-bg-opacity: 1;
  background-color: rgb(91 33 182 / var(--tw-bg-opacity, 1));
}
.active\:bg-violet-800\/10:active {
  background-color: rgb(91 33 182 / 0.1);
}
.active\:bg-violet-800\/20:active {
  background-color: rgb(91 33 182 / 0.2);
}
.active\:bg-violet-800\/30:active {
  background-color: rgb(91 33 182 / 0.3);
}
.active\:bg-violet-800\/40:active {
  background-color: rgb(91 33 182 / 0.4);
}
.active\:bg-violet-800\/5:active {
  background-color: rgb(91 33 182 / 0.05);
}
.active\:bg-violet-800\/50:active {
  background-color: rgb(91 33 182 / 0.5);
}
.active\:bg-violet-800\/60:active {
  background-color: rgb(91 33 182 / 0.6);
}
.active\:bg-violet-800\/70:active {
  background-color: rgb(91 33 182 / 0.7);
}
.active\:bg-violet-800\/80:active {
  background-color: rgb(91 33 182 / 0.8);
}
.active\:bg-violet-800\/90:active {
  background-color: rgb(91 33 182 / 0.9);
}
.active\:bg-violet-900:active {
  --tw-bg-opacity: 1;
  background-color: rgb(76 29 149 / var(--tw-bg-opacity, 1));
}
.active\:bg-violet-900\/10:active {
  background-color: rgb(76 29 149 / 0.1);
}
.active\:bg-violet-900\/20:active {
  background-color: rgb(76 29 149 / 0.2);
}
.active\:bg-violet-900\/30:active {
  background-color: rgb(76 29 149 / 0.3);
}
.active\:bg-violet-900\/40:active {
  background-color: rgb(76 29 149 / 0.4);
}
.active\:bg-violet-900\/5:active {
  background-color: rgb(76 29 149 / 0.05);
}
.active\:bg-violet-900\/50:active {
  background-color: rgb(76 29 149 / 0.5);
}
.active\:bg-violet-900\/60:active {
  background-color: rgb(76 29 149 / 0.6);
}
.active\:bg-violet-900\/70:active {
  background-color: rgb(76 29 149 / 0.7);
}
.active\:bg-violet-900\/80:active {
  background-color: rgb(76 29 149 / 0.8);
}
.active\:bg-violet-900\/90:active {
  background-color: rgb(76 29 149 / 0.9);
}
.active\:bg-violet-950:active {
  --tw-bg-opacity: 1;
  background-color: rgb(46 16 101 / var(--tw-bg-opacity, 1));
}
.active\:bg-violet-950\/10:active {
  background-color: rgb(46 16 101 / 0.1);
}
.active\:bg-violet-950\/20:active {
  background-color: rgb(46 16 101 / 0.2);
}
.active\:bg-violet-950\/30:active {
  background-color: rgb(46 16 101 / 0.3);
}
.active\:bg-violet-950\/40:active {
  background-color: rgb(46 16 101 / 0.4);
}
.active\:bg-violet-950\/5:active {
  background-color: rgb(46 16 101 / 0.05);
}
.active\:bg-violet-950\/50:active {
  background-color: rgb(46 16 101 / 0.5);
}
.active\:bg-violet-950\/60:active {
  background-color: rgb(46 16 101 / 0.6);
}
.active\:bg-violet-950\/70:active {
  background-color: rgb(46 16 101 / 0.7);
}
.active\:bg-violet-950\/80:active {
  background-color: rgb(46 16 101 / 0.8);
}
.active\:bg-violet-950\/90:active {
  background-color: rgb(46 16 101 / 0.9);
}
.active\:bg-yellow-100:active {
  --tw-bg-opacity: 1;
  background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1));
}
.active\:bg-yellow-100\/10:active {
  background-color: rgb(254 249 195 / 0.1);
}
.active\:bg-yellow-100\/20:active {
  background-color: rgb(254 249 195 / 0.2);
}
.active\:bg-yellow-100\/30:active {
  background-color: rgb(254 249 195 / 0.3);
}
.active\:bg-yellow-100\/40:active {
  background-color: rgb(254 249 195 / 0.4);
}
.active\:bg-yellow-100\/5:active {
  background-color: rgb(254 249 195 / 0.05);
}
.active\:bg-yellow-100\/50:active {
  background-color: rgb(254 249 195 / 0.5);
}
.active\:bg-yellow-100\/60:active {
  background-color: rgb(254 249 195 / 0.6);
}
.active\:bg-yellow-100\/70:active {
  background-color: rgb(254 249 195 / 0.7);
}
.active\:bg-yellow-100\/80:active {
  background-color: rgb(254 249 195 / 0.8);
}
.active\:bg-yellow-100\/90:active {
  background-color: rgb(254 249 195 / 0.9);
}
.active\:bg-yellow-200:active {
  --tw-bg-opacity: 1;
  background-color: rgb(254 240 138 / var(--tw-bg-opacity, 1));
}
.active\:bg-yellow-200\/10:active {
  background-color: rgb(254 240 138 / 0.1);
}
.active\:bg-yellow-200\/20:active {
  background-color: rgb(254 240 138 / 0.2);
}
.active\:bg-yellow-200\/30:active {
  background-color: rgb(254 240 138 / 0.3);
}
.active\:bg-yellow-200\/40:active {
  background-color: rgb(254 240 138 / 0.4);
}
.active\:bg-yellow-200\/5:active {
  background-color: rgb(254 240 138 / 0.05);
}
.active\:bg-yellow-200\/50:active {
  background-color: rgb(254 240 138 / 0.5);
}
.active\:bg-yellow-200\/60:active {
  background-color: rgb(254 240 138 / 0.6);
}
.active\:bg-yellow-200\/70:active {
  background-color: rgb(254 240 138 / 0.7);
}
.active\:bg-yellow-200\/80:active {
  background-color: rgb(254 240 138 / 0.8);
}
.active\:bg-yellow-200\/90:active {
  background-color: rgb(254 240 138 / 0.9);
}
.active\:bg-yellow-300:active {
  --tw-bg-opacity: 1;
  background-color: rgb(253 224 71 / var(--tw-bg-opacity, 1));
}
.active\:bg-yellow-300\/10:active {
  background-color: rgb(253 224 71 / 0.1);
}
.active\:bg-yellow-300\/20:active {
  background-color: rgb(253 224 71 / 0.2);
}
.active\:bg-yellow-300\/30:active {
  background-color: rgb(253 224 71 / 0.3);
}
.active\:bg-yellow-300\/40:active {
  background-color: rgb(253 224 71 / 0.4);
}
.active\:bg-yellow-300\/5:active {
  background-color: rgb(253 224 71 / 0.05);
}
.active\:bg-yellow-300\/50:active {
  background-color: rgb(253 224 71 / 0.5);
}
.active\:bg-yellow-300\/60:active {
  background-color: rgb(253 224 71 / 0.6);
}
.active\:bg-yellow-300\/70:active {
  background-color: rgb(253 224 71 / 0.7);
}
.active\:bg-yellow-300\/80:active {
  background-color: rgb(253 224 71 / 0.8);
}
.active\:bg-yellow-300\/90:active {
  background-color: rgb(253 224 71 / 0.9);
}
.active\:bg-yellow-400:active {
  --tw-bg-opacity: 1;
  background-color: rgb(250 204 21 / var(--tw-bg-opacity, 1));
}
.active\:bg-yellow-400\/10:active {
  background-color: rgb(250 204 21 / 0.1);
}
.active\:bg-yellow-400\/20:active {
  background-color: rgb(250 204 21 / 0.2);
}
.active\:bg-yellow-400\/30:active {
  background-color: rgb(250 204 21 / 0.3);
}
.active\:bg-yellow-400\/40:active {
  background-color: rgb(250 204 21 / 0.4);
}
.active\:bg-yellow-400\/5:active {
  background-color: rgb(250 204 21 / 0.05);
}
.active\:bg-yellow-400\/50:active {
  background-color: rgb(250 204 21 / 0.5);
}
.active\:bg-yellow-400\/60:active {
  background-color: rgb(250 204 21 / 0.6);
}
.active\:bg-yellow-400\/70:active {
  background-color: rgb(250 204 21 / 0.7);
}
.active\:bg-yellow-400\/80:active {
  background-color: rgb(250 204 21 / 0.8);
}
.active\:bg-yellow-400\/90:active {
  background-color: rgb(250 204 21 / 0.9);
}
.active\:bg-yellow-50:active {
  --tw-bg-opacity: 1;
  background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1));
}
.active\:bg-yellow-50\/10:active {
  background-color: rgb(254 252 232 / 0.1);
}
.active\:bg-yellow-50\/20:active {
  background-color: rgb(254 252 232 / 0.2);
}
.active\:bg-yellow-50\/30:active {
  background-color: rgb(254 252 232 / 0.3);
}
.active\:bg-yellow-50\/40:active {
  background-color: rgb(254 252 232 / 0.4);
}
.active\:bg-yellow-50\/5:active {
  background-color: rgb(254 252 232 / 0.05);
}
.active\:bg-yellow-50\/50:active {
  background-color: rgb(254 252 232 / 0.5);
}
.active\:bg-yellow-50\/60:active {
  background-color: rgb(254 252 232 / 0.6);
}
.active\:bg-yellow-50\/70:active {
  background-color: rgb(254 252 232 / 0.7);
}
.active\:bg-yellow-50\/80:active {
  background-color: rgb(254 252 232 / 0.8);
}
.active\:bg-yellow-50\/90:active {
  background-color: rgb(254 252 232 / 0.9);
}
.active\:bg-yellow-500:active {
  --tw-bg-opacity: 1;
  background-color: rgb(234 179 8 / var(--tw-bg-opacity, 1));
}
.active\:bg-yellow-500\/10:active {
  background-color: rgb(234 179 8 / 0.1);
}
.active\:bg-yellow-500\/20:active {
  background-color: rgb(234 179 8 / 0.2);
}
.active\:bg-yellow-500\/30:active {
  background-color: rgb(234 179 8 / 0.3);
}
.active\:bg-yellow-500\/40:active {
  background-color: rgb(234 179 8 / 0.4);
}
.active\:bg-yellow-500\/5:active {
  background-color: rgb(234 179 8 / 0.05);
}
.active\:bg-yellow-500\/50:active {
  background-color: rgb(234 179 8 / 0.5);
}
.active\:bg-yellow-500\/60:active {
  background-color: rgb(234 179 8 / 0.6);
}
.active\:bg-yellow-500\/70:active {
  background-color: rgb(234 179 8 / 0.7);
}
.active\:bg-yellow-500\/80:active {
  background-color: rgb(234 179 8 / 0.8);
}
.active\:bg-yellow-500\/90:active {
  background-color: rgb(234 179 8 / 0.9);
}
.active\:bg-yellow-600:active {
  --tw-bg-opacity: 1;
  background-color: rgb(202 138 4 / var(--tw-bg-opacity, 1));
}
.active\:bg-yellow-600\/10:active {
  background-color: rgb(202 138 4 / 0.1);
}
.active\:bg-yellow-600\/20:active {
  background-color: rgb(202 138 4 / 0.2);
}
.active\:bg-yellow-600\/30:active {
  background-color: rgb(202 138 4 / 0.3);
}
.active\:bg-yellow-600\/40:active {
  background-color: rgb(202 138 4 / 0.4);
}
.active\:bg-yellow-600\/5:active {
  background-color: rgb(202 138 4 / 0.05);
}
.active\:bg-yellow-600\/50:active {
  background-color: rgb(202 138 4 / 0.5);
}
.active\:bg-yellow-600\/60:active {
  background-color: rgb(202 138 4 / 0.6);
}
.active\:bg-yellow-600\/70:active {
  background-color: rgb(202 138 4 / 0.7);
}
.active\:bg-yellow-600\/80:active {
  background-color: rgb(202 138 4 / 0.8);
}
.active\:bg-yellow-600\/90:active {
  background-color: rgb(202 138 4 / 0.9);
}
.active\:bg-yellow-700:active {
  --tw-bg-opacity: 1;
  background-color: rgb(161 98 7 / var(--tw-bg-opacity, 1));
}
.active\:bg-yellow-700\/10:active {
  background-color: rgb(161 98 7 / 0.1);
}
.active\:bg-yellow-700\/20:active {
  background-color: rgb(161 98 7 / 0.2);
}
.active\:bg-yellow-700\/30:active {
  background-color: rgb(161 98 7 / 0.3);
}
.active\:bg-yellow-700\/40:active {
  background-color: rgb(161 98 7 / 0.4);
}
.active\:bg-yellow-700\/5:active {
  background-color: rgb(161 98 7 / 0.05);
}
.active\:bg-yellow-700\/50:active {
  background-color: rgb(161 98 7 / 0.5);
}
.active\:bg-yellow-700\/60:active {
  background-color: rgb(161 98 7 / 0.6);
}
.active\:bg-yellow-700\/70:active {
  background-color: rgb(161 98 7 / 0.7);
}
.active\:bg-yellow-700\/80:active {
  background-color: rgb(161 98 7 / 0.8);
}
.active\:bg-yellow-700\/90:active {
  background-color: rgb(161 98 7 / 0.9);
}
.active\:bg-yellow-800:active {
  --tw-bg-opacity: 1;
  background-color: rgb(133 77 14 / var(--tw-bg-opacity, 1));
}
.active\:bg-yellow-800\/10:active {
  background-color: rgb(133 77 14 / 0.1);
}
.active\:bg-yellow-800\/20:active {
  background-color: rgb(133 77 14 / 0.2);
}
.active\:bg-yellow-800\/30:active {
  background-color: rgb(133 77 14 / 0.3);
}
.active\:bg-yellow-800\/40:active {
  background-color: rgb(133 77 14 / 0.4);
}
.active\:bg-yellow-800\/5:active {
  background-color: rgb(133 77 14 / 0.05);
}
.active\:bg-yellow-800\/50:active {
  background-color: rgb(133 77 14 / 0.5);
}
.active\:bg-yellow-800\/60:active {
  background-color: rgb(133 77 14 / 0.6);
}
.active\:bg-yellow-800\/70:active {
  background-color: rgb(133 77 14 / 0.7);
}
.active\:bg-yellow-800\/80:active {
  background-color: rgb(133 77 14 / 0.8);
}
.active\:bg-yellow-800\/90:active {
  background-color: rgb(133 77 14 / 0.9);
}
.active\:bg-yellow-900:active {
  --tw-bg-opacity: 1;
  background-color: rgb(113 63 18 / var(--tw-bg-opacity, 1));
}
.active\:bg-yellow-900\/10:active {
  background-color: rgb(113 63 18 / 0.1);
}
.active\:bg-yellow-900\/20:active {
  background-color: rgb(113 63 18 / 0.2);
}
.active\:bg-yellow-900\/30:active {
  background-color: rgb(113 63 18 / 0.3);
}
.active\:bg-yellow-900\/40:active {
  background-color: rgb(113 63 18 / 0.4);
}
.active\:bg-yellow-900\/5:active {
  background-color: rgb(113 63 18 / 0.05);
}
.active\:bg-yellow-900\/50:active {
  background-color: rgb(113 63 18 / 0.5);
}
.active\:bg-yellow-900\/60:active {
  background-color: rgb(113 63 18 / 0.6);
}
.active\:bg-yellow-900\/70:active {
  background-color: rgb(113 63 18 / 0.7);
}
.active\:bg-yellow-900\/80:active {
  background-color: rgb(113 63 18 / 0.8);
}
.active\:bg-yellow-900\/90:active {
  background-color: rgb(113 63 18 / 0.9);
}
.active\:bg-yellow-950:active {
  --tw-bg-opacity: 1;
  background-color: rgb(66 32 6 / var(--tw-bg-opacity, 1));
}
.active\:bg-yellow-950\/10:active {
  background-color: rgb(66 32 6 / 0.1);
}
.active\:bg-yellow-950\/20:active {
  background-color: rgb(66 32 6 / 0.2);
}
.active\:bg-yellow-950\/30:active {
  background-color: rgb(66 32 6 / 0.3);
}
.active\:bg-yellow-950\/40:active {
  background-color: rgb(66 32 6 / 0.4);
}
.active\:bg-yellow-950\/5:active {
  background-color: rgb(66 32 6 / 0.05);
}
.active\:bg-yellow-950\/50:active {
  background-color: rgb(66 32 6 / 0.5);
}
.active\:bg-yellow-950\/60:active {
  background-color: rgb(66 32 6 / 0.6);
}
.active\:bg-yellow-950\/70:active {
  background-color: rgb(66 32 6 / 0.7);
}
.active\:bg-yellow-950\/80:active {
  background-color: rgb(66 32 6 / 0.8);
}
.active\:bg-yellow-950\/90:active {
  background-color: rgb(66 32 6 / 0.9);
}
.active\:bg-zinc-100:active {
  --tw-bg-opacity: 1;
  background-color: rgb(244 244 245 / var(--tw-bg-opacity, 1));
}
.active\:bg-zinc-100\/10:active {
  background-color: rgb(244 244 245 / 0.1);
}
.active\:bg-zinc-100\/20:active {
  background-color: rgb(244 244 245 / 0.2);
}
.active\:bg-zinc-100\/30:active {
  background-color: rgb(244 244 245 / 0.3);
}
.active\:bg-zinc-100\/40:active {
  background-color: rgb(244 244 245 / 0.4);
}
.active\:bg-zinc-100\/5:active {
  background-color: rgb(244 244 245 / 0.05);
}
.active\:bg-zinc-100\/50:active {
  background-color: rgb(244 244 245 / 0.5);
}
.active\:bg-zinc-100\/60:active {
  background-color: rgb(244 244 245 / 0.6);
}
.active\:bg-zinc-100\/70:active {
  background-color: rgb(244 244 245 / 0.7);
}
.active\:bg-zinc-100\/80:active {
  background-color: rgb(244 244 245 / 0.8);
}
.active\:bg-zinc-100\/90:active {
  background-color: rgb(244 244 245 / 0.9);
}
.active\:bg-zinc-200:active {
  --tw-bg-opacity: 1;
  background-color: rgb(228 228 231 / var(--tw-bg-opacity, 1));
}
.active\:bg-zinc-200\/10:active {
  background-color: rgb(228 228 231 / 0.1);
}
.active\:bg-zinc-200\/20:active {
  background-color: rgb(228 228 231 / 0.2);
}
.active\:bg-zinc-200\/30:active {
  background-color: rgb(228 228 231 / 0.3);
}
.active\:bg-zinc-200\/40:active {
  background-color: rgb(228 228 231 / 0.4);
}
.active\:bg-zinc-200\/5:active {
  background-color: rgb(228 228 231 / 0.05);
}
.active\:bg-zinc-200\/50:active {
  background-color: rgb(228 228 231 / 0.5);
}
.active\:bg-zinc-200\/60:active {
  background-color: rgb(228 228 231 / 0.6);
}
.active\:bg-zinc-200\/70:active {
  background-color: rgb(228 228 231 / 0.7);
}
.active\:bg-zinc-200\/80:active {
  background-color: rgb(228 228 231 / 0.8);
}
.active\:bg-zinc-200\/90:active {
  background-color: rgb(228 228 231 / 0.9);
}
.active\:bg-zinc-300:active {
  --tw-bg-opacity: 1;
  background-color: rgb(212 212 216 / var(--tw-bg-opacity, 1));
}
.active\:bg-zinc-300\/10:active {
  background-color: rgb(212 212 216 / 0.1);
}
.active\:bg-zinc-300\/20:active {
  background-color: rgb(212 212 216 / 0.2);
}
.active\:bg-zinc-300\/30:active {
  background-color: rgb(212 212 216 / 0.3);
}
.active\:bg-zinc-300\/40:active {
  background-color: rgb(212 212 216 / 0.4);
}
.active\:bg-zinc-300\/5:active {
  background-color: rgb(212 212 216 / 0.05);
}
.active\:bg-zinc-300\/50:active {
  background-color: rgb(212 212 216 / 0.5);
}
.active\:bg-zinc-300\/60:active {
  background-color: rgb(212 212 216 / 0.6);
}
.active\:bg-zinc-300\/70:active {
  background-color: rgb(212 212 216 / 0.7);
}
.active\:bg-zinc-300\/80:active {
  background-color: rgb(212 212 216 / 0.8);
}
.active\:bg-zinc-300\/90:active {
  background-color: rgb(212 212 216 / 0.9);
}
.active\:bg-zinc-400:active {
  --tw-bg-opacity: 1;
  background-color: rgb(161 161 170 / var(--tw-bg-opacity, 1));
}
.active\:bg-zinc-400\/10:active {
  background-color: rgb(161 161 170 / 0.1);
}
.active\:bg-zinc-400\/20:active {
  background-color: rgb(161 161 170 / 0.2);
}
.active\:bg-zinc-400\/30:active {
  background-color: rgb(161 161 170 / 0.3);
}
.active\:bg-zinc-400\/40:active {
  background-color: rgb(161 161 170 / 0.4);
}
.active\:bg-zinc-400\/5:active {
  background-color: rgb(161 161 170 / 0.05);
}
.active\:bg-zinc-400\/50:active {
  background-color: rgb(161 161 170 / 0.5);
}
.active\:bg-zinc-400\/60:active {
  background-color: rgb(161 161 170 / 0.6);
}
.active\:bg-zinc-400\/70:active {
  background-color: rgb(161 161 170 / 0.7);
}
.active\:bg-zinc-400\/80:active {
  background-color: rgb(161 161 170 / 0.8);
}
.active\:bg-zinc-400\/90:active {
  background-color: rgb(161 161 170 / 0.9);
}
.active\:bg-zinc-50:active {
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
}
.active\:bg-zinc-50\/10:active {
  background-color: rgb(250 250 250 / 0.1);
}
.active\:bg-zinc-50\/20:active {
  background-color: rgb(250 250 250 / 0.2);
}
.active\:bg-zinc-50\/30:active {
  background-color: rgb(250 250 250 / 0.3);
}
.active\:bg-zinc-50\/40:active {
  background-color: rgb(250 250 250 / 0.4);
}
.active\:bg-zinc-50\/5:active {
  background-color: rgb(250 250 250 / 0.05);
}
.active\:bg-zinc-50\/50:active {
  background-color: rgb(250 250 250 / 0.5);
}
.active\:bg-zinc-50\/60:active {
  background-color: rgb(250 250 250 / 0.6);
}
.active\:bg-zinc-50\/70:active {
  background-color: rgb(250 250 250 / 0.7);
}
.active\:bg-zinc-50\/80:active {
  background-color: rgb(250 250 250 / 0.8);
}
.active\:bg-zinc-50\/90:active {
  background-color: rgb(250 250 250 / 0.9);
}
.active\:bg-zinc-500:active {
  --tw-bg-opacity: 1;
  background-color: rgb(113 113 122 / var(--tw-bg-opacity, 1));
}
.active\:bg-zinc-500\/10:active {
  background-color: rgb(113 113 122 / 0.1);
}
.active\:bg-zinc-500\/20:active {
  background-color: rgb(113 113 122 / 0.2);
}
.active\:bg-zinc-500\/30:active {
  background-color: rgb(113 113 122 / 0.3);
}
.active\:bg-zinc-500\/40:active {
  background-color: rgb(113 113 122 / 0.4);
}
.active\:bg-zinc-500\/5:active {
  background-color: rgb(113 113 122 / 0.05);
}
.active\:bg-zinc-500\/50:active {
  background-color: rgb(113 113 122 / 0.5);
}
.active\:bg-zinc-500\/60:active {
  background-color: rgb(113 113 122 / 0.6);
}
.active\:bg-zinc-500\/70:active {
  background-color: rgb(113 113 122 / 0.7);
}
.active\:bg-zinc-500\/80:active {
  background-color: rgb(113 113 122 / 0.8);
}
.active\:bg-zinc-500\/90:active {
  background-color: rgb(113 113 122 / 0.9);
}
.active\:bg-zinc-600:active {
  --tw-bg-opacity: 1;
  background-color: rgb(82 82 91 / var(--tw-bg-opacity, 1));
}
.active\:bg-zinc-600\/10:active {
  background-color: rgb(82 82 91 / 0.1);
}
.active\:bg-zinc-600\/20:active {
  background-color: rgb(82 82 91 / 0.2);
}
.active\:bg-zinc-600\/30:active {
  background-color: rgb(82 82 91 / 0.3);
}
.active\:bg-zinc-600\/40:active {
  background-color: rgb(82 82 91 / 0.4);
}
.active\:bg-zinc-600\/5:active {
  background-color: rgb(82 82 91 / 0.05);
}
.active\:bg-zinc-600\/50:active {
  background-color: rgb(82 82 91 / 0.5);
}
.active\:bg-zinc-600\/60:active {
  background-color: rgb(82 82 91 / 0.6);
}
.active\:bg-zinc-600\/70:active {
  background-color: rgb(82 82 91 / 0.7);
}
.active\:bg-zinc-600\/80:active {
  background-color: rgb(82 82 91 / 0.8);
}
.active\:bg-zinc-600\/90:active {
  background-color: rgb(82 82 91 / 0.9);
}
.active\:bg-zinc-700:active {
  --tw-bg-opacity: 1;
  background-color: rgb(63 63 70 / var(--tw-bg-opacity, 1));
}
.active\:bg-zinc-700\/10:active {
  background-color: rgb(63 63 70 / 0.1);
}
.active\:bg-zinc-700\/20:active {
  background-color: rgb(63 63 70 / 0.2);
}
.active\:bg-zinc-700\/30:active {
  background-color: rgb(63 63 70 / 0.3);
}
.active\:bg-zinc-700\/40:active {
  background-color: rgb(63 63 70 / 0.4);
}
.active\:bg-zinc-700\/5:active {
  background-color: rgb(63 63 70 / 0.05);
}
.active\:bg-zinc-700\/50:active {
  background-color: rgb(63 63 70 / 0.5);
}
.active\:bg-zinc-700\/60:active {
  background-color: rgb(63 63 70 / 0.6);
}
.active\:bg-zinc-700\/70:active {
  background-color: rgb(63 63 70 / 0.7);
}
.active\:bg-zinc-700\/80:active {
  background-color: rgb(63 63 70 / 0.8);
}
.active\:bg-zinc-700\/90:active {
  background-color: rgb(63 63 70 / 0.9);
}
.active\:bg-zinc-800:active {
  --tw-bg-opacity: 1;
  background-color: rgb(39 39 42 / var(--tw-bg-opacity, 1));
}
.active\:bg-zinc-800\/10:active {
  background-color: rgb(39 39 42 / 0.1);
}
.active\:bg-zinc-800\/20:active {
  background-color: rgb(39 39 42 / 0.2);
}
.active\:bg-zinc-800\/30:active {
  background-color: rgb(39 39 42 / 0.3);
}
.active\:bg-zinc-800\/40:active {
  background-color: rgb(39 39 42 / 0.4);
}
.active\:bg-zinc-800\/5:active {
  background-color: rgb(39 39 42 / 0.05);
}
.active\:bg-zinc-800\/50:active {
  background-color: rgb(39 39 42 / 0.5);
}
.active\:bg-zinc-800\/60:active {
  background-color: rgb(39 39 42 / 0.6);
}
.active\:bg-zinc-800\/70:active {
  background-color: rgb(39 39 42 / 0.7);
}
.active\:bg-zinc-800\/80:active {
  background-color: rgb(39 39 42 / 0.8);
}
.active\:bg-zinc-800\/90:active {
  background-color: rgb(39 39 42 / 0.9);
}
.active\:bg-zinc-900:active {
  --tw-bg-opacity: 1;
  background-color: rgb(24 24 27 / var(--tw-bg-opacity, 1));
}
.active\:bg-zinc-900\/10:active {
  background-color: rgb(24 24 27 / 0.1);
}
.active\:bg-zinc-900\/20:active {
  background-color: rgb(24 24 27 / 0.2);
}
.active\:bg-zinc-900\/30:active {
  background-color: rgb(24 24 27 / 0.3);
}
.active\:bg-zinc-900\/40:active {
  background-color: rgb(24 24 27 / 0.4);
}
.active\:bg-zinc-900\/5:active {
  background-color: rgb(24 24 27 / 0.05);
}
.active\:bg-zinc-900\/50:active {
  background-color: rgb(24 24 27 / 0.5);
}
.active\:bg-zinc-900\/60:active {
  background-color: rgb(24 24 27 / 0.6);
}
.active\:bg-zinc-900\/70:active {
  background-color: rgb(24 24 27 / 0.7);
}
.active\:bg-zinc-900\/80:active {
  background-color: rgb(24 24 27 / 0.8);
}
.active\:bg-zinc-900\/90:active {
  background-color: rgb(24 24 27 / 0.9);
}
.active\:bg-zinc-950:active {
  --tw-bg-opacity: 1;
  background-color: rgb(9 9 11 / var(--tw-bg-opacity, 1));
}
.active\:bg-zinc-950\/10:active {
  background-color: rgb(9 9 11 / 0.1);
}
.active\:bg-zinc-950\/20:active {
  background-color: rgb(9 9 11 / 0.2);
}
.active\:bg-zinc-950\/30:active {
  background-color: rgb(9 9 11 / 0.3);
}
.active\:bg-zinc-950\/40:active {
  background-color: rgb(9 9 11 / 0.4);
}
.active\:bg-zinc-950\/5:active {
  background-color: rgb(9 9 11 / 0.05);
}
.active\:bg-zinc-950\/50:active {
  background-color: rgb(9 9 11 / 0.5);
}
.active\:bg-zinc-950\/60:active {
  background-color: rgb(9 9 11 / 0.6);
}
.active\:bg-zinc-950\/70:active {
  background-color: rgb(9 9 11 / 0.7);
}
.active\:bg-zinc-950\/80:active {
  background-color: rgb(9 9 11 / 0.8);
}
.active\:bg-zinc-950\/90:active {
  background-color: rgb(9 9 11 / 0.9);
}
.active\:p-0:active {
  padding: 0px;
}
.active\:p-1:active {
  padding: 0.25rem;
}
.active\:p-10:active {
  padding: 2.5rem;
}
.active\:p-11:active {
  padding: 2.75rem;
}
.active\:p-12:active {
  padding: 3rem;
}
.active\:p-14:active {
  padding: 3.5rem;
}
.active\:p-16:active {
  padding: 4rem;
}
.active\:p-2:active {
  padding: 0.5rem;
}
.active\:p-20:active {
  padding: 5rem;
}
.active\:p-24:active {
  padding: 6rem;
}
.active\:p-28:active {
  padding: 7rem;
}
.active\:p-3:active {
  padding: 0.75rem;
}
.active\:p-32:active {
  padding: 8rem;
}
.active\:p-36:active {
  padding: 9rem;
}
.active\:p-4:active {
  padding: 1rem;
}
.active\:p-40:active {
  padding: 10rem;
}
.active\:p-44:active {
  padding: 11rem;
}
.active\:p-48:active {
  padding: 12rem;
}
.active\:p-5:active {
  padding: 1.25rem;
}
.active\:p-52:active {
  padding: 13rem;
}
.active\:p-56:active {
  padding: 14rem;
}
.active\:p-6:active {
  padding: 1.5rem;
}
.active\:p-60:active {
  padding: 15rem;
}
.active\:p-64:active {
  padding: 16rem;
}
.active\:p-7:active {
  padding: 1.75rem;
}
.active\:p-72:active {
  padding: 18rem;
}
.active\:p-8:active {
  padding: 2rem;
}
.active\:p-80:active {
  padding: 20rem;
}
.active\:p-9:active {
  padding: 2.25rem;
}
.active\:p-96:active {
  padding: 24rem;
}
.active\:px-0:active {
  padding-left: 0px;
  padding-right: 0px;
}
.active\:px-1:active {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.active\:px-10:active {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.active\:px-11:active {
  padding-left: 2.75rem;
  padding-right: 2.75rem;
}
.active\:px-12:active {
  padding-left: 3rem;
  padding-right: 3rem;
}
.active\:px-14:active {
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}
.active\:px-16:active {
  padding-left: 4rem;
  padding-right: 4rem;
}
.active\:px-2:active {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.active\:px-20:active {
  padding-left: 5rem;
  padding-right: 5rem;
}
.active\:px-24:active {
  padding-left: 6rem;
  padding-right: 6rem;
}
.active\:px-28:active {
  padding-left: 7rem;
  padding-right: 7rem;
}
.active\:px-3:active {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.active\:px-32:active {
  padding-left: 8rem;
  padding-right: 8rem;
}
.active\:px-36:active {
  padding-left: 9rem;
  padding-right: 9rem;
}
.active\:px-4:active {
  padding-left: 1rem;
  padding-right: 1rem;
}
.active\:px-40:active {
  padding-left: 10rem;
  padding-right: 10rem;
}
.active\:px-44:active {
  padding-left: 11rem;
  padding-right: 11rem;
}
.active\:px-48:active {
  padding-left: 12rem;
  padding-right: 12rem;
}
.active\:px-5:active {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.active\:px-52:active {
  padding-left: 13rem;
  padding-right: 13rem;
}
.active\:px-56:active {
  padding-left: 14rem;
  padding-right: 14rem;
}
.active\:px-6:active {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.active\:px-60:active {
  padding-left: 15rem;
  padding-right: 15rem;
}
.active\:px-64:active {
  padding-left: 16rem;
  padding-right: 16rem;
}
.active\:px-7:active {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}
.active\:px-72:active {
  padding-left: 18rem;
  padding-right: 18rem;
}
.active\:px-8:active {
  padding-left: 2rem;
  padding-right: 2rem;
}
.active\:px-80:active {
  padding-left: 20rem;
  padding-right: 20rem;
}
.active\:px-9:active {
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}
.active\:px-96:active {
  padding-left: 24rem;
  padding-right: 24rem;
}
.active\:py-0:active {
  padding-top: 0px;
  padding-bottom: 0px;
}
.active\:py-1:active {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.active\:py-10:active {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.active\:py-11:active {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}
.active\:py-12:active {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.active\:py-14:active {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.active\:py-16:active {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.active\:py-2:active {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.active\:py-20:active {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.active\:py-24:active {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.active\:py-28:active {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
.active\:py-3:active {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.active\:py-32:active {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.active\:py-36:active {
  padding-top: 9rem;
  padding-bottom: 9rem;
}
.active\:py-4:active {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.active\:py-40:active {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.active\:py-44:active {
  padding-top: 11rem;
  padding-bottom: 11rem;
}
.active\:py-48:active {
  padding-top: 12rem;
  padding-bottom: 12rem;
}
.active\:py-5:active {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.active\:py-52:active {
  padding-top: 13rem;
  padding-bottom: 13rem;
}
.active\:py-56:active {
  padding-top: 14rem;
  padding-bottom: 14rem;
}
.active\:py-6:active {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.active\:py-60:active {
  padding-top: 15rem;
  padding-bottom: 15rem;
}
.active\:py-64:active {
  padding-top: 16rem;
  padding-bottom: 16rem;
}
.active\:py-7:active {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}
.active\:py-72:active {
  padding-top: 18rem;
  padding-bottom: 18rem;
}
.active\:py-8:active {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.active\:py-80:active {
  padding-top: 20rem;
  padding-bottom: 20rem;
}
.active\:py-9:active {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}
.active\:py-96:active {
  padding-top: 24rem;
  padding-bottom: 24rem;
}
.active\:pb-0:active {
  padding-bottom: 0px;
}
.active\:pb-1:active {
  padding-bottom: 0.25rem;
}
.active\:pb-10:active {
  padding-bottom: 2.5rem;
}
.active\:pb-11:active {
  padding-bottom: 2.75rem;
}
.active\:pb-12:active {
  padding-bottom: 3rem;
}
.active\:pb-14:active {
  padding-bottom: 3.5rem;
}
.active\:pb-16:active {
  padding-bottom: 4rem;
}
.active\:pb-2:active {
  padding-bottom: 0.5rem;
}
.active\:pb-20:active {
  padding-bottom: 5rem;
}
.active\:pb-24:active {
  padding-bottom: 6rem;
}
.active\:pb-28:active {
  padding-bottom: 7rem;
}
.active\:pb-3:active {
  padding-bottom: 0.75rem;
}
.active\:pb-32:active {
  padding-bottom: 8rem;
}
.active\:pb-36:active {
  padding-bottom: 9rem;
}
.active\:pb-4:active {
  padding-bottom: 1rem;
}
.active\:pb-40:active {
  padding-bottom: 10rem;
}
.active\:pb-44:active {
  padding-bottom: 11rem;
}
.active\:pb-48:active {
  padding-bottom: 12rem;
}
.active\:pb-5:active {
  padding-bottom: 1.25rem;
}
.active\:pb-52:active {
  padding-bottom: 13rem;
}
.active\:pb-56:active {
  padding-bottom: 14rem;
}
.active\:pb-6:active {
  padding-bottom: 1.5rem;
}
.active\:pb-60:active {
  padding-bottom: 15rem;
}
.active\:pb-64:active {
  padding-bottom: 16rem;
}
.active\:pb-7:active {
  padding-bottom: 1.75rem;
}
.active\:pb-72:active {
  padding-bottom: 18rem;
}
.active\:pb-8:active {
  padding-bottom: 2rem;
}
.active\:pb-80:active {
  padding-bottom: 20rem;
}
.active\:pb-9:active {
  padding-bottom: 2.25rem;
}
.active\:pb-96:active {
  padding-bottom: 24rem;
}
.active\:pl-0:active {
  padding-left: 0px;
}
.active\:pl-1:active {
  padding-left: 0.25rem;
}
.active\:pl-10:active {
  padding-left: 2.5rem;
}
.active\:pl-11:active {
  padding-left: 2.75rem;
}
.active\:pl-12:active {
  padding-left: 3rem;
}
.active\:pl-14:active {
  padding-left: 3.5rem;
}
.active\:pl-16:active {
  padding-left: 4rem;
}
.active\:pl-2:active {
  padding-left: 0.5rem;
}
.active\:pl-20:active {
  padding-left: 5rem;
}
.active\:pl-24:active {
  padding-left: 6rem;
}
.active\:pl-28:active {
  padding-left: 7rem;
}
.active\:pl-3:active {
  padding-left: 0.75rem;
}
.active\:pl-32:active {
  padding-left: 8rem;
}
.active\:pl-36:active {
  padding-left: 9rem;
}
.active\:pl-4:active {
  padding-left: 1rem;
}
.active\:pl-40:active {
  padding-left: 10rem;
}
.active\:pl-44:active {
  padding-left: 11rem;
}
.active\:pl-48:active {
  padding-left: 12rem;
}
.active\:pl-5:active {
  padding-left: 1.25rem;
}
.active\:pl-52:active {
  padding-left: 13rem;
}
.active\:pl-56:active {
  padding-left: 14rem;
}
.active\:pl-6:active {
  padding-left: 1.5rem;
}
.active\:pl-60:active {
  padding-left: 15rem;
}
.active\:pl-64:active {
  padding-left: 16rem;
}
.active\:pl-7:active {
  padding-left: 1.75rem;
}
.active\:pl-72:active {
  padding-left: 18rem;
}
.active\:pl-8:active {
  padding-left: 2rem;
}
.active\:pl-80:active {
  padding-left: 20rem;
}
.active\:pl-9:active {
  padding-left: 2.25rem;
}
.active\:pl-96:active {
  padding-left: 24rem;
}
.active\:pr-0:active {
  padding-right: 0px;
}
.active\:pr-1:active {
  padding-right: 0.25rem;
}
.active\:pr-10:active {
  padding-right: 2.5rem;
}
.active\:pr-11:active {
  padding-right: 2.75rem;
}
.active\:pr-12:active {
  padding-right: 3rem;
}
.active\:pr-14:active {
  padding-right: 3.5rem;
}
.active\:pr-16:active {
  padding-right: 4rem;
}
.active\:pr-2:active {
  padding-right: 0.5rem;
}
.active\:pr-20:active {
  padding-right: 5rem;
}
.active\:pr-24:active {
  padding-right: 6rem;
}
.active\:pr-28:active {
  padding-right: 7rem;
}
.active\:pr-3:active {
  padding-right: 0.75rem;
}
.active\:pr-32:active {
  padding-right: 8rem;
}
.active\:pr-36:active {
  padding-right: 9rem;
}
.active\:pr-4:active {
  padding-right: 1rem;
}
.active\:pr-40:active {
  padding-right: 10rem;
}
.active\:pr-44:active {
  padding-right: 11rem;
}
.active\:pr-48:active {
  padding-right: 12rem;
}
.active\:pr-5:active {
  padding-right: 1.25rem;
}
.active\:pr-52:active {
  padding-right: 13rem;
}
.active\:pr-56:active {
  padding-right: 14rem;
}
.active\:pr-6:active {
  padding-right: 1.5rem;
}
.active\:pr-60:active {
  padding-right: 15rem;
}
.active\:pr-64:active {
  padding-right: 16rem;
}
.active\:pr-7:active {
  padding-right: 1.75rem;
}
.active\:pr-72:active {
  padding-right: 18rem;
}
.active\:pr-8:active {
  padding-right: 2rem;
}
.active\:pr-80:active {
  padding-right: 20rem;
}
.active\:pr-9:active {
  padding-right: 2.25rem;
}
.active\:pr-96:active {
  padding-right: 24rem;
}
.active\:pt-0:active {
  padding-top: 0px;
}
.active\:pt-1:active {
  padding-top: 0.25rem;
}
.active\:pt-10:active {
  padding-top: 2.5rem;
}
.active\:pt-11:active {
  padding-top: 2.75rem;
}
.active\:pt-12:active {
  padding-top: 3rem;
}
.active\:pt-14:active {
  padding-top: 3.5rem;
}
.active\:pt-16:active {
  padding-top: 4rem;
}
.active\:pt-2:active {
  padding-top: 0.5rem;
}
.active\:pt-20:active {
  padding-top: 5rem;
}
.active\:pt-24:active {
  padding-top: 6rem;
}
.active\:pt-28:active {
  padding-top: 7rem;
}
.active\:pt-3:active {
  padding-top: 0.75rem;
}
.active\:pt-32:active {
  padding-top: 8rem;
}
.active\:pt-36:active {
  padding-top: 9rem;
}
.active\:pt-4:active {
  padding-top: 1rem;
}
.active\:pt-40:active {
  padding-top: 10rem;
}
.active\:pt-44:active {
  padding-top: 11rem;
}
.active\:pt-48:active {
  padding-top: 12rem;
}
.active\:pt-5:active {
  padding-top: 1.25rem;
}
.active\:pt-52:active {
  padding-top: 13rem;
}
.active\:pt-56:active {
  padding-top: 14rem;
}
.active\:pt-6:active {
  padding-top: 1.5rem;
}
.active\:pt-60:active {
  padding-top: 15rem;
}
.active\:pt-64:active {
  padding-top: 16rem;
}
.active\:pt-7:active {
  padding-top: 1.75rem;
}
.active\:pt-72:active {
  padding-top: 18rem;
}
.active\:pt-8:active {
  padding-top: 2rem;
}
.active\:pt-80:active {
  padding-top: 20rem;
}
.active\:pt-9:active {
  padding-top: 2.25rem;
}
.active\:pt-96:active {
  padding-top: 24rem;
}
.active\:font-arial:active {
  font-family: Arial, Helvetica, sans-serif;
}
.active\:font-assistant:active {
  font-family: Assistant, sans-serif;
}
.active\:font-dancingscript:active {
  font-family: Dancing Script, cursive;
}
.active\:font-firacode:active {
  font-family: Fira Code, monospace;
}
.active\:font-frankRuhlLibre:active {
  font-family: Frank Ruhl Libre, serif;
}
.active\:font-jetbrains:active {
  font-family: JetBrains Mono, monospace;
}
.active\:font-lato:active {
  font-family: Lato, sans-serif;
}
.active\:font-lobster:active {
  font-family: Lobster, cursive;
}
.active\:font-lobsterTwo:active {
  font-family: Lobster Two, cursive;
}
.active\:font-lora:active {
  font-family: Lora, serif;
}
.active\:font-montserrat:active {
  font-family: Montserrat, sans-serif;
}
.active\:font-opensans:active {
  font-family: Open Sans, sans-serif;
}
.active\:font-oswald:active {
  font-family: Oswald, sans-serif;
}
.active\:font-pacifico:active {
  font-family: Pacifico, cursive;
}
.active\:font-poppins:active {
  font-family: Poppins, sans-serif;
}
.active\:font-raleway:active {
  font-family: Raleway, sans-serif;
}
.active\:font-roboto:active {
  font-family: Roboto, sans-serif;
}
.active\:text-lg:active {
  font-size: 1.125rem;
}
.active\:text-amber-100:active {
  --tw-text-opacity: 1;
  color: rgb(254 243 199 / var(--tw-text-opacity, 1));
}
.active\:text-amber-200:active {
  --tw-text-opacity: 1;
  color: rgb(253 230 138 / var(--tw-text-opacity, 1));
}
.active\:text-amber-300:active {
  --tw-text-opacity: 1;
  color: rgb(252 211 77 / var(--tw-text-opacity, 1));
}
.active\:text-amber-400:active {
  --tw-text-opacity: 1;
  color: rgb(251 191 36 / var(--tw-text-opacity, 1));
}
.active\:text-amber-50:active {
  --tw-text-opacity: 1;
  color: rgb(255 251 235 / var(--tw-text-opacity, 1));
}
.active\:text-amber-500:active {
  --tw-text-opacity: 1;
  color: rgb(245 158 11 / var(--tw-text-opacity, 1));
}
.active\:text-amber-600:active {
  --tw-text-opacity: 1;
  color: rgb(217 119 6 / var(--tw-text-opacity, 1));
}
.active\:text-amber-700:active {
  --tw-text-opacity: 1;
  color: rgb(180 83 9 / var(--tw-text-opacity, 1));
}
.active\:text-amber-800:active {
  --tw-text-opacity: 1;
  color: rgb(146 64 14 / var(--tw-text-opacity, 1));
}
.active\:text-amber-900:active {
  --tw-text-opacity: 1;
  color: rgb(120 53 15 / var(--tw-text-opacity, 1));
}
.active\:text-amber-950:active {
  --tw-text-opacity: 1;
  color: rgb(69 26 3 / var(--tw-text-opacity, 1));
}
.active\:text-blue-100:active {
  --tw-text-opacity: 1;
  color: rgb(219 234 254 / var(--tw-text-opacity, 1));
}
.active\:text-blue-200:active {
  --tw-text-opacity: 1;
  color: rgb(191 219 254 / var(--tw-text-opacity, 1));
}
.active\:text-blue-300:active {
  --tw-text-opacity: 1;
  color: rgb(147 197 253 / var(--tw-text-opacity, 1));
}
.active\:text-blue-400:active {
  --tw-text-opacity: 1;
  color: rgb(96 165 250 / var(--tw-text-opacity, 1));
}
.active\:text-blue-50:active {
  --tw-text-opacity: 1;
  color: rgb(239 246 255 / var(--tw-text-opacity, 1));
}
.active\:text-blue-500:active {
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / var(--tw-text-opacity, 1));
}
.active\:text-blue-600:active {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.active\:text-blue-700:active {
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / var(--tw-text-opacity, 1));
}
.active\:text-blue-800:active {
  --tw-text-opacity: 1;
  color: rgb(30 64 175 / var(--tw-text-opacity, 1));
}
.active\:text-blue-900:active {
  --tw-text-opacity: 1;
  color: rgb(30 58 138 / var(--tw-text-opacity, 1));
}
.active\:text-blue-950:active {
  --tw-text-opacity: 1;
  color: rgb(23 37 84 / var(--tw-text-opacity, 1));
}
.active\:text-cyan-100:active {
  --tw-text-opacity: 1;
  color: rgb(207 250 254 / var(--tw-text-opacity, 1));
}
.active\:text-cyan-200:active {
  --tw-text-opacity: 1;
  color: rgb(165 243 252 / var(--tw-text-opacity, 1));
}
.active\:text-cyan-300:active {
  --tw-text-opacity: 1;
  color: rgb(103 232 249 / var(--tw-text-opacity, 1));
}
.active\:text-cyan-400:active {
  --tw-text-opacity: 1;
  color: rgb(34 211 238 / var(--tw-text-opacity, 1));
}
.active\:text-cyan-50:active {
  --tw-text-opacity: 1;
  color: rgb(236 254 255 / var(--tw-text-opacity, 1));
}
.active\:text-cyan-500:active {
  --tw-text-opacity: 1;
  color: rgb(6 182 212 / var(--tw-text-opacity, 1));
}
.active\:text-cyan-600:active {
  --tw-text-opacity: 1;
  color: rgb(8 145 178 / var(--tw-text-opacity, 1));
}
.active\:text-cyan-700:active {
  --tw-text-opacity: 1;
  color: rgb(14 116 144 / var(--tw-text-opacity, 1));
}
.active\:text-cyan-800:active {
  --tw-text-opacity: 1;
  color: rgb(21 94 117 / var(--tw-text-opacity, 1));
}
.active\:text-cyan-900:active {
  --tw-text-opacity: 1;
  color: rgb(22 78 99 / var(--tw-text-opacity, 1));
}
.active\:text-cyan-950:active {
  --tw-text-opacity: 1;
  color: rgb(8 51 68 / var(--tw-text-opacity, 1));
}
.active\:text-emerald-100:active {
  --tw-text-opacity: 1;
  color: rgb(209 250 229 / var(--tw-text-opacity, 1));
}
.active\:text-emerald-200:active {
  --tw-text-opacity: 1;
  color: rgb(167 243 208 / var(--tw-text-opacity, 1));
}
.active\:text-emerald-300:active {
  --tw-text-opacity: 1;
  color: rgb(110 231 183 / var(--tw-text-opacity, 1));
}
.active\:text-emerald-400:active {
  --tw-text-opacity: 1;
  color: rgb(52 211 153 / var(--tw-text-opacity, 1));
}
.active\:text-emerald-50:active {
  --tw-text-opacity: 1;
  color: rgb(236 253 245 / var(--tw-text-opacity, 1));
}
.active\:text-emerald-500:active {
  --tw-text-opacity: 1;
  color: rgb(16 185 129 / var(--tw-text-opacity, 1));
}
.active\:text-emerald-600:active {
  --tw-text-opacity: 1;
  color: rgb(5 150 105 / var(--tw-text-opacity, 1));
}
.active\:text-emerald-700:active {
  --tw-text-opacity: 1;
  color: rgb(4 120 87 / var(--tw-text-opacity, 1));
}
.active\:text-emerald-800:active {
  --tw-text-opacity: 1;
  color: rgb(6 95 70 / var(--tw-text-opacity, 1));
}
.active\:text-emerald-900:active {
  --tw-text-opacity: 1;
  color: rgb(6 78 59 / var(--tw-text-opacity, 1));
}
.active\:text-emerald-950:active {
  --tw-text-opacity: 1;
  color: rgb(2 44 34 / var(--tw-text-opacity, 1));
}
.active\:text-fuchsia-100:active {
  --tw-text-opacity: 1;
  color: rgb(250 232 255 / var(--tw-text-opacity, 1));
}
.active\:text-fuchsia-200:active {
  --tw-text-opacity: 1;
  color: rgb(245 208 254 / var(--tw-text-opacity, 1));
}
.active\:text-fuchsia-300:active {
  --tw-text-opacity: 1;
  color: rgb(240 171 252 / var(--tw-text-opacity, 1));
}
.active\:text-fuchsia-400:active {
  --tw-text-opacity: 1;
  color: rgb(232 121 249 / var(--tw-text-opacity, 1));
}
.active\:text-fuchsia-50:active {
  --tw-text-opacity: 1;
  color: rgb(253 244 255 / var(--tw-text-opacity, 1));
}
.active\:text-fuchsia-500:active {
  --tw-text-opacity: 1;
  color: rgb(217 70 239 / var(--tw-text-opacity, 1));
}
.active\:text-fuchsia-600:active {
  --tw-text-opacity: 1;
  color: rgb(192 38 211 / var(--tw-text-opacity, 1));
}
.active\:text-fuchsia-700:active {
  --tw-text-opacity: 1;
  color: rgb(162 28 175 / var(--tw-text-opacity, 1));
}
.active\:text-fuchsia-800:active {
  --tw-text-opacity: 1;
  color: rgb(134 25 143 / var(--tw-text-opacity, 1));
}
.active\:text-fuchsia-900:active {
  --tw-text-opacity: 1;
  color: rgb(112 26 117 / var(--tw-text-opacity, 1));
}
.active\:text-fuchsia-950:active {
  --tw-text-opacity: 1;
  color: rgb(74 4 78 / var(--tw-text-opacity, 1));
}
.active\:text-gray-100:active {
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / var(--tw-text-opacity, 1));
}
.active\:text-gray-200:active {
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity, 1));
}
.active\:text-gray-300:active {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}
.active\:text-gray-400:active {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.active\:text-gray-50:active {
  --tw-text-opacity: 1;
  color: rgb(249 250 251 / var(--tw-text-opacity, 1));
}
.active\:text-gray-500:active {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.active\:text-gray-600:active {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.active\:text-gray-700:active {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.active\:text-gray-800:active {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.active\:text-gray-900:active {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.active\:text-gray-950:active {
  --tw-text-opacity: 1;
  color: rgb(3 7 18 / var(--tw-text-opacity, 1));
}
.active\:text-green-100:active {
  --tw-text-opacity: 1;
  color: rgb(220 252 231 / var(--tw-text-opacity, 1));
}
.active\:text-green-200:active {
  --tw-text-opacity: 1;
  color: rgb(187 247 208 / var(--tw-text-opacity, 1));
}
.active\:text-green-300:active {
  --tw-text-opacity: 1;
  color: rgb(134 239 172 / var(--tw-text-opacity, 1));
}
.active\:text-green-400:active {
  --tw-text-opacity: 1;
  color: rgb(74 222 128 / var(--tw-text-opacity, 1));
}
.active\:text-green-50:active {
  --tw-text-opacity: 1;
  color: rgb(240 253 244 / var(--tw-text-opacity, 1));
}
.active\:text-green-500:active {
  --tw-text-opacity: 1;
  color: rgb(34 197 94 / var(--tw-text-opacity, 1));
}
.active\:text-green-600:active {
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}
.active\:text-green-700:active {
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / var(--tw-text-opacity, 1));
}
.active\:text-green-800:active {
  --tw-text-opacity: 1;
  color: rgb(22 101 52 / var(--tw-text-opacity, 1));
}
.active\:text-green-900:active {
  --tw-text-opacity: 1;
  color: rgb(20 83 45 / var(--tw-text-opacity, 1));
}
.active\:text-green-950:active {
  --tw-text-opacity: 1;
  color: rgb(5 46 22 / var(--tw-text-opacity, 1));
}
.active\:text-indigo-100:active {
  --tw-text-opacity: 1;
  color: rgb(224 231 255 / var(--tw-text-opacity, 1));
}
.active\:text-indigo-200:active {
  --tw-text-opacity: 1;
  color: rgb(199 210 254 / var(--tw-text-opacity, 1));
}
.active\:text-indigo-300:active {
  --tw-text-opacity: 1;
  color: rgb(165 180 252 / var(--tw-text-opacity, 1));
}
.active\:text-indigo-400:active {
  --tw-text-opacity: 1;
  color: rgb(129 140 248 / var(--tw-text-opacity, 1));
}
.active\:text-indigo-50:active {
  --tw-text-opacity: 1;
  color: rgb(238 242 255 / var(--tw-text-opacity, 1));
}
.active\:text-indigo-500:active {
  --tw-text-opacity: 1;
  color: rgb(99 102 241 / var(--tw-text-opacity, 1));
}
.active\:text-indigo-600:active {
  --tw-text-opacity: 1;
  color: rgb(79 70 229 / var(--tw-text-opacity, 1));
}
.active\:text-indigo-700:active {
  --tw-text-opacity: 1;
  color: rgb(67 56 202 / var(--tw-text-opacity, 1));
}
.active\:text-indigo-800:active {
  --tw-text-opacity: 1;
  color: rgb(55 48 163 / var(--tw-text-opacity, 1));
}
.active\:text-indigo-900:active {
  --tw-text-opacity: 1;
  color: rgb(49 46 129 / var(--tw-text-opacity, 1));
}
.active\:text-indigo-950:active {
  --tw-text-opacity: 1;
  color: rgb(30 27 75 / var(--tw-text-opacity, 1));
}
.active\:text-lime-100:active {
  --tw-text-opacity: 1;
  color: rgb(236 252 203 / var(--tw-text-opacity, 1));
}
.active\:text-lime-200:active {
  --tw-text-opacity: 1;
  color: rgb(217 249 157 / var(--tw-text-opacity, 1));
}
.active\:text-lime-300:active {
  --tw-text-opacity: 1;
  color: rgb(190 242 100 / var(--tw-text-opacity, 1));
}
.active\:text-lime-400:active {
  --tw-text-opacity: 1;
  color: rgb(163 230 53 / var(--tw-text-opacity, 1));
}
.active\:text-lime-50:active {
  --tw-text-opacity: 1;
  color: rgb(247 254 231 / var(--tw-text-opacity, 1));
}
.active\:text-lime-500:active {
  --tw-text-opacity: 1;
  color: rgb(132 204 22 / var(--tw-text-opacity, 1));
}
.active\:text-lime-600:active {
  --tw-text-opacity: 1;
  color: rgb(101 163 13 / var(--tw-text-opacity, 1));
}
.active\:text-lime-700:active {
  --tw-text-opacity: 1;
  color: rgb(77 124 15 / var(--tw-text-opacity, 1));
}
.active\:text-lime-800:active {
  --tw-text-opacity: 1;
  color: rgb(63 98 18 / var(--tw-text-opacity, 1));
}
.active\:text-lime-900:active {
  --tw-text-opacity: 1;
  color: rgb(54 83 20 / var(--tw-text-opacity, 1));
}
.active\:text-lime-950:active {
  --tw-text-opacity: 1;
  color: rgb(26 46 5 / var(--tw-text-opacity, 1));
}
.active\:text-neutral-100:active {
  --tw-text-opacity: 1;
  color: rgb(245 245 245 / var(--tw-text-opacity, 1));
}
.active\:text-neutral-200:active {
  --tw-text-opacity: 1;
  color: rgb(229 229 229 / var(--tw-text-opacity, 1));
}
.active\:text-neutral-300:active {
  --tw-text-opacity: 1;
  color: rgb(212 212 212 / var(--tw-text-opacity, 1));
}
.active\:text-neutral-400:active {
  --tw-text-opacity: 1;
  color: rgb(163 163 163 / var(--tw-text-opacity, 1));
}
.active\:text-neutral-50:active {
  --tw-text-opacity: 1;
  color: rgb(250 250 250 / var(--tw-text-opacity, 1));
}
.active\:text-neutral-500:active {
  --tw-text-opacity: 1;
  color: rgb(115 115 115 / var(--tw-text-opacity, 1));
}
.active\:text-neutral-600:active {
  --tw-text-opacity: 1;
  color: rgb(82 82 82 / var(--tw-text-opacity, 1));
}
.active\:text-neutral-700:active {
  --tw-text-opacity: 1;
  color: rgb(64 64 64 / var(--tw-text-opacity, 1));
}
.active\:text-neutral-800:active {
  --tw-text-opacity: 1;
  color: rgb(38 38 38 / var(--tw-text-opacity, 1));
}
.active\:text-neutral-900:active {
  --tw-text-opacity: 1;
  color: rgb(23 23 23 / var(--tw-text-opacity, 1));
}
.active\:text-neutral-950:active {
  --tw-text-opacity: 1;
  color: rgb(10 10 10 / var(--tw-text-opacity, 1));
}
.active\:text-orange-100:active {
  --tw-text-opacity: 1;
  color: rgb(255 237 213 / var(--tw-text-opacity, 1));
}
.active\:text-orange-200:active {
  --tw-text-opacity: 1;
  color: rgb(254 215 170 / var(--tw-text-opacity, 1));
}
.active\:text-orange-300:active {
  --tw-text-opacity: 1;
  color: rgb(253 186 116 / var(--tw-text-opacity, 1));
}
.active\:text-orange-400:active {
  --tw-text-opacity: 1;
  color: rgb(251 146 60 / var(--tw-text-opacity, 1));
}
.active\:text-orange-50:active {
  --tw-text-opacity: 1;
  color: rgb(255 247 237 / var(--tw-text-opacity, 1));
}
.active\:text-orange-500:active {
  --tw-text-opacity: 1;
  color: rgb(249 115 22 / var(--tw-text-opacity, 1));
}
.active\:text-orange-600:active {
  --tw-text-opacity: 1;
  color: rgb(234 88 12 / var(--tw-text-opacity, 1));
}
.active\:text-orange-700:active {
  --tw-text-opacity: 1;
  color: rgb(194 65 12 / var(--tw-text-opacity, 1));
}
.active\:text-orange-800:active {
  --tw-text-opacity: 1;
  color: rgb(154 52 18 / var(--tw-text-opacity, 1));
}
.active\:text-orange-900:active {
  --tw-text-opacity: 1;
  color: rgb(124 45 18 / var(--tw-text-opacity, 1));
}
.active\:text-orange-950:active {
  --tw-text-opacity: 1;
  color: rgb(67 20 7 / var(--tw-text-opacity, 1));
}
.active\:text-pink-100:active {
  --tw-text-opacity: 1;
  color: rgb(252 231 243 / var(--tw-text-opacity, 1));
}
.active\:text-pink-200:active {
  --tw-text-opacity: 1;
  color: rgb(251 207 232 / var(--tw-text-opacity, 1));
}
.active\:text-pink-300:active {
  --tw-text-opacity: 1;
  color: rgb(249 168 212 / var(--tw-text-opacity, 1));
}
.active\:text-pink-400:active {
  --tw-text-opacity: 1;
  color: rgb(244 114 182 / var(--tw-text-opacity, 1));
}
.active\:text-pink-50:active {
  --tw-text-opacity: 1;
  color: rgb(253 242 248 / var(--tw-text-opacity, 1));
}
.active\:text-pink-500:active {
  --tw-text-opacity: 1;
  color: rgb(236 72 153 / var(--tw-text-opacity, 1));
}
.active\:text-pink-600:active {
  --tw-text-opacity: 1;
  color: rgb(219 39 119 / var(--tw-text-opacity, 1));
}
.active\:text-pink-700:active {
  --tw-text-opacity: 1;
  color: rgb(190 24 93 / var(--tw-text-opacity, 1));
}
.active\:text-pink-800:active {
  --tw-text-opacity: 1;
  color: rgb(157 23 77 / var(--tw-text-opacity, 1));
}
.active\:text-pink-900:active {
  --tw-text-opacity: 1;
  color: rgb(131 24 67 / var(--tw-text-opacity, 1));
}
.active\:text-pink-950:active {
  --tw-text-opacity: 1;
  color: rgb(80 7 36 / var(--tw-text-opacity, 1));
}
.active\:text-purple-100:active {
  --tw-text-opacity: 1;
  color: rgb(243 232 255 / var(--tw-text-opacity, 1));
}
.active\:text-purple-200:active {
  --tw-text-opacity: 1;
  color: rgb(233 213 255 / var(--tw-text-opacity, 1));
}
.active\:text-purple-300:active {
  --tw-text-opacity: 1;
  color: rgb(216 180 254 / var(--tw-text-opacity, 1));
}
.active\:text-purple-400:active {
  --tw-text-opacity: 1;
  color: rgb(192 132 252 / var(--tw-text-opacity, 1));
}
.active\:text-purple-50:active {
  --tw-text-opacity: 1;
  color: rgb(250 245 255 / var(--tw-text-opacity, 1));
}
.active\:text-purple-500:active {
  --tw-text-opacity: 1;
  color: rgb(168 85 247 / var(--tw-text-opacity, 1));
}
.active\:text-purple-600:active {
  --tw-text-opacity: 1;
  color: rgb(147 51 234 / var(--tw-text-opacity, 1));
}
.active\:text-purple-700:active {
  --tw-text-opacity: 1;
  color: rgb(126 34 206 / var(--tw-text-opacity, 1));
}
.active\:text-purple-800:active {
  --tw-text-opacity: 1;
  color: rgb(107 33 168 / var(--tw-text-opacity, 1));
}
.active\:text-purple-900:active {
  --tw-text-opacity: 1;
  color: rgb(88 28 135 / var(--tw-text-opacity, 1));
}
.active\:text-purple-950:active {
  --tw-text-opacity: 1;
  color: rgb(59 7 100 / var(--tw-text-opacity, 1));
}
.active\:text-red-100:active {
  --tw-text-opacity: 1;
  color: rgb(254 226 226 / var(--tw-text-opacity, 1));
}
.active\:text-red-200:active {
  --tw-text-opacity: 1;
  color: rgb(254 202 202 / var(--tw-text-opacity, 1));
}
.active\:text-red-300:active {
  --tw-text-opacity: 1;
  color: rgb(252 165 165 / var(--tw-text-opacity, 1));
}
.active\:text-red-400:active {
  --tw-text-opacity: 1;
  color: rgb(248 113 113 / var(--tw-text-opacity, 1));
}
.active\:text-red-50:active {
  --tw-text-opacity: 1;
  color: rgb(254 242 242 / var(--tw-text-opacity, 1));
}
.active\:text-red-500:active {
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.active\:text-red-600:active {
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.active\:text-red-700:active {
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity, 1));
}
.active\:text-red-800:active {
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / var(--tw-text-opacity, 1));
}
.active\:text-red-900:active {
  --tw-text-opacity: 1;
  color: rgb(127 29 29 / var(--tw-text-opacity, 1));
}
.active\:text-red-950:active {
  --tw-text-opacity: 1;
  color: rgb(69 10 10 / var(--tw-text-opacity, 1));
}
.active\:text-rose-100:active {
  --tw-text-opacity: 1;
  color: rgb(255 228 230 / var(--tw-text-opacity, 1));
}
.active\:text-rose-200:active {
  --tw-text-opacity: 1;
  color: rgb(254 205 211 / var(--tw-text-opacity, 1));
}
.active\:text-rose-300:active {
  --tw-text-opacity: 1;
  color: rgb(253 164 175 / var(--tw-text-opacity, 1));
}
.active\:text-rose-400:active {
  --tw-text-opacity: 1;
  color: rgb(251 113 133 / var(--tw-text-opacity, 1));
}
.active\:text-rose-50:active {
  --tw-text-opacity: 1;
  color: rgb(255 241 242 / var(--tw-text-opacity, 1));
}
.active\:text-rose-500:active {
  --tw-text-opacity: 1;
  color: rgb(244 63 94 / var(--tw-text-opacity, 1));
}
.active\:text-rose-600:active {
  --tw-text-opacity: 1;
  color: rgb(225 29 72 / var(--tw-text-opacity, 1));
}
.active\:text-rose-700:active {
  --tw-text-opacity: 1;
  color: rgb(190 18 60 / var(--tw-text-opacity, 1));
}
.active\:text-rose-800:active {
  --tw-text-opacity: 1;
  color: rgb(159 18 57 / var(--tw-text-opacity, 1));
}
.active\:text-rose-900:active {
  --tw-text-opacity: 1;
  color: rgb(136 19 55 / var(--tw-text-opacity, 1));
}
.active\:text-rose-950:active {
  --tw-text-opacity: 1;
  color: rgb(76 5 25 / var(--tw-text-opacity, 1));
}
.active\:text-sky-100:active {
  --tw-text-opacity: 1;
  color: rgb(224 242 254 / var(--tw-text-opacity, 1));
}
.active\:text-sky-200:active {
  --tw-text-opacity: 1;
  color: rgb(186 230 253 / var(--tw-text-opacity, 1));
}
.active\:text-sky-300:active {
  --tw-text-opacity: 1;
  color: rgb(125 211 252 / var(--tw-text-opacity, 1));
}
.active\:text-sky-400:active {
  --tw-text-opacity: 1;
  color: rgb(56 189 248 / var(--tw-text-opacity, 1));
}
.active\:text-sky-50:active {
  --tw-text-opacity: 1;
  color: rgb(240 249 255 / var(--tw-text-opacity, 1));
}
.active\:text-sky-500:active {
  --tw-text-opacity: 1;
  color: rgb(14 165 233 / var(--tw-text-opacity, 1));
}
.active\:text-sky-600:active {
  --tw-text-opacity: 1;
  color: rgb(2 132 199 / var(--tw-text-opacity, 1));
}
.active\:text-sky-700:active {
  --tw-text-opacity: 1;
  color: rgb(3 105 161 / var(--tw-text-opacity, 1));
}
.active\:text-sky-800:active {
  --tw-text-opacity: 1;
  color: rgb(7 89 133 / var(--tw-text-opacity, 1));
}
.active\:text-sky-900:active {
  --tw-text-opacity: 1;
  color: rgb(12 74 110 / var(--tw-text-opacity, 1));
}
.active\:text-sky-950:active {
  --tw-text-opacity: 1;
  color: rgb(8 47 73 / var(--tw-text-opacity, 1));
}
.active\:text-slate-100:active {
  --tw-text-opacity: 1;
  color: rgb(241 245 249 / var(--tw-text-opacity, 1));
}
.active\:text-slate-200:active {
  --tw-text-opacity: 1;
  color: rgb(226 232 240 / var(--tw-text-opacity, 1));
}
.active\:text-slate-300:active {
  --tw-text-opacity: 1;
  color: rgb(203 213 225 / var(--tw-text-opacity, 1));
}
.active\:text-slate-400:active {
  --tw-text-opacity: 1;
  color: rgb(148 163 184 / var(--tw-text-opacity, 1));
}
.active\:text-slate-50:active {
  --tw-text-opacity: 1;
  color: rgb(248 250 252 / var(--tw-text-opacity, 1));
}
.active\:text-slate-500:active {
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}
.active\:text-slate-600:active {
  --tw-text-opacity: 1;
  color: rgb(71 85 105 / var(--tw-text-opacity, 1));
}
.active\:text-slate-700:active {
  --tw-text-opacity: 1;
  color: rgb(51 65 85 / var(--tw-text-opacity, 1));
}
.active\:text-slate-800:active {
  --tw-text-opacity: 1;
  color: rgb(30 41 59 / var(--tw-text-opacity, 1));
}
.active\:text-slate-900:active {
  --tw-text-opacity: 1;
  color: rgb(15 23 42 / var(--tw-text-opacity, 1));
}
.active\:text-slate-950:active {
  --tw-text-opacity: 1;
  color: rgb(2 6 23 / var(--tw-text-opacity, 1));
}
.active\:text-stone-100:active {
  --tw-text-opacity: 1;
  color: rgb(245 245 244 / var(--tw-text-opacity, 1));
}
.active\:text-stone-200:active {
  --tw-text-opacity: 1;
  color: rgb(231 229 228 / var(--tw-text-opacity, 1));
}
.active\:text-stone-300:active {
  --tw-text-opacity: 1;
  color: rgb(214 211 209 / var(--tw-text-opacity, 1));
}
.active\:text-stone-400:active {
  --tw-text-opacity: 1;
  color: rgb(168 162 158 / var(--tw-text-opacity, 1));
}
.active\:text-stone-50:active {
  --tw-text-opacity: 1;
  color: rgb(250 250 249 / var(--tw-text-opacity, 1));
}
.active\:text-stone-500:active {
  --tw-text-opacity: 1;
  color: rgb(120 113 108 / var(--tw-text-opacity, 1));
}
.active\:text-stone-600:active {
  --tw-text-opacity: 1;
  color: rgb(87 83 78 / var(--tw-text-opacity, 1));
}
.active\:text-stone-700:active {
  --tw-text-opacity: 1;
  color: rgb(68 64 60 / var(--tw-text-opacity, 1));
}
.active\:text-stone-800:active {
  --tw-text-opacity: 1;
  color: rgb(41 37 36 / var(--tw-text-opacity, 1));
}
.active\:text-stone-900:active {
  --tw-text-opacity: 1;
  color: rgb(28 25 23 / var(--tw-text-opacity, 1));
}
.active\:text-stone-950:active {
  --tw-text-opacity: 1;
  color: rgb(12 10 9 / var(--tw-text-opacity, 1));
}
.active\:text-teal-100:active {
  --tw-text-opacity: 1;
  color: rgb(204 251 241 / var(--tw-text-opacity, 1));
}
.active\:text-teal-200:active {
  --tw-text-opacity: 1;
  color: rgb(153 246 228 / var(--tw-text-opacity, 1));
}
.active\:text-teal-300:active {
  --tw-text-opacity: 1;
  color: rgb(94 234 212 / var(--tw-text-opacity, 1));
}
.active\:text-teal-400:active {
  --tw-text-opacity: 1;
  color: rgb(45 212 191 / var(--tw-text-opacity, 1));
}
.active\:text-teal-50:active {
  --tw-text-opacity: 1;
  color: rgb(240 253 250 / var(--tw-text-opacity, 1));
}
.active\:text-teal-500:active {
  --tw-text-opacity: 1;
  color: rgb(20 184 166 / var(--tw-text-opacity, 1));
}
.active\:text-teal-600:active {
  --tw-text-opacity: 1;
  color: rgb(13 148 136 / var(--tw-text-opacity, 1));
}
.active\:text-teal-700:active {
  --tw-text-opacity: 1;
  color: rgb(15 118 110 / var(--tw-text-opacity, 1));
}
.active\:text-teal-800:active {
  --tw-text-opacity: 1;
  color: rgb(17 94 89 / var(--tw-text-opacity, 1));
}
.active\:text-teal-900:active {
  --tw-text-opacity: 1;
  color: rgb(19 78 74 / var(--tw-text-opacity, 1));
}
.active\:text-teal-950:active {
  --tw-text-opacity: 1;
  color: rgb(4 47 46 / var(--tw-text-opacity, 1));
}
.active\:text-violet-100:active {
  --tw-text-opacity: 1;
  color: rgb(237 233 254 / var(--tw-text-opacity, 1));
}
.active\:text-violet-200:active {
  --tw-text-opacity: 1;
  color: rgb(221 214 254 / var(--tw-text-opacity, 1));
}
.active\:text-violet-300:active {
  --tw-text-opacity: 1;
  color: rgb(196 181 253 / var(--tw-text-opacity, 1));
}
.active\:text-violet-400:active {
  --tw-text-opacity: 1;
  color: rgb(167 139 250 / var(--tw-text-opacity, 1));
}
.active\:text-violet-50:active {
  --tw-text-opacity: 1;
  color: rgb(245 243 255 / var(--tw-text-opacity, 1));
}
.active\:text-violet-500:active {
  --tw-text-opacity: 1;
  color: rgb(139 92 246 / var(--tw-text-opacity, 1));
}
.active\:text-violet-600:active {
  --tw-text-opacity: 1;
  color: rgb(124 58 237 / var(--tw-text-opacity, 1));
}
.active\:text-violet-700:active {
  --tw-text-opacity: 1;
  color: rgb(109 40 217 / var(--tw-text-opacity, 1));
}
.active\:text-violet-800:active {
  --tw-text-opacity: 1;
  color: rgb(91 33 182 / var(--tw-text-opacity, 1));
}
.active\:text-violet-900:active {
  --tw-text-opacity: 1;
  color: rgb(76 29 149 / var(--tw-text-opacity, 1));
}
.active\:text-violet-950:active {
  --tw-text-opacity: 1;
  color: rgb(46 16 101 / var(--tw-text-opacity, 1));
}
.active\:text-yellow-100:active {
  --tw-text-opacity: 1;
  color: rgb(254 249 195 / var(--tw-text-opacity, 1));
}
.active\:text-yellow-200:active {
  --tw-text-opacity: 1;
  color: rgb(254 240 138 / var(--tw-text-opacity, 1));
}
.active\:text-yellow-300:active {
  --tw-text-opacity: 1;
  color: rgb(253 224 71 / var(--tw-text-opacity, 1));
}
.active\:text-yellow-400:active {
  --tw-text-opacity: 1;
  color: rgb(250 204 21 / var(--tw-text-opacity, 1));
}
.active\:text-yellow-50:active {
  --tw-text-opacity: 1;
  color: rgb(254 252 232 / var(--tw-text-opacity, 1));
}
.active\:text-yellow-500:active {
  --tw-text-opacity: 1;
  color: rgb(234 179 8 / var(--tw-text-opacity, 1));
}
.active\:text-yellow-600:active {
  --tw-text-opacity: 1;
  color: rgb(202 138 4 / var(--tw-text-opacity, 1));
}
.active\:text-yellow-700:active {
  --tw-text-opacity: 1;
  color: rgb(161 98 7 / var(--tw-text-opacity, 1));
}
.active\:text-yellow-800:active {
  --tw-text-opacity: 1;
  color: rgb(133 77 14 / var(--tw-text-opacity, 1));
}
.active\:text-yellow-900:active {
  --tw-text-opacity: 1;
  color: rgb(113 63 18 / var(--tw-text-opacity, 1));
}
.active\:text-yellow-950:active {
  --tw-text-opacity: 1;
  color: rgb(66 32 6 / var(--tw-text-opacity, 1));
}
.active\:text-zinc-100:active {
  --tw-text-opacity: 1;
  color: rgb(244 244 245 / var(--tw-text-opacity, 1));
}
.active\:text-zinc-200:active {
  --tw-text-opacity: 1;
  color: rgb(228 228 231 / var(--tw-text-opacity, 1));
}
.active\:text-zinc-300:active {
  --tw-text-opacity: 1;
  color: rgb(212 212 216 / var(--tw-text-opacity, 1));
}
.active\:text-zinc-400:active {
  --tw-text-opacity: 1;
  color: rgb(161 161 170 / var(--tw-text-opacity, 1));
}
.active\:text-zinc-50:active {
  --tw-text-opacity: 1;
  color: rgb(250 250 250 / var(--tw-text-opacity, 1));
}
.active\:text-zinc-500:active {
  --tw-text-opacity: 1;
  color: rgb(113 113 122 / var(--tw-text-opacity, 1));
}
.active\:text-zinc-600:active {
  --tw-text-opacity: 1;
  color: rgb(82 82 91 / var(--tw-text-opacity, 1));
}
.active\:text-zinc-700:active {
  --tw-text-opacity: 1;
  color: rgb(63 63 70 / var(--tw-text-opacity, 1));
}
.active\:text-zinc-800:active {
  --tw-text-opacity: 1;
  color: rgb(39 39 42 / var(--tw-text-opacity, 1));
}
.active\:text-zinc-900:active {
  --tw-text-opacity: 1;
  color: rgb(24 24 27 / var(--tw-text-opacity, 1));
}
.active\:text-zinc-950:active {
  --tw-text-opacity: 1;
  color: rgb(9 9 11 / var(--tw-text-opacity, 1));
}
.active\:shadow-lg:active {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.active\:shadow-md:active {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.active\:shadow-sm:active {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.active\:shadow-amber-100:active {
  --tw-shadow-color: #fef3c7;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-100\/10:active {
  --tw-shadow-color: rgb(254 243 199 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-100\/20:active {
  --tw-shadow-color: rgb(254 243 199 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-100\/30:active {
  --tw-shadow-color: rgb(254 243 199 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-100\/40:active {
  --tw-shadow-color: rgb(254 243 199 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-100\/5:active {
  --tw-shadow-color: rgb(254 243 199 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-100\/50:active {
  --tw-shadow-color: rgb(254 243 199 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-100\/60:active {
  --tw-shadow-color: rgb(254 243 199 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-100\/70:active {
  --tw-shadow-color: rgb(254 243 199 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-100\/80:active {
  --tw-shadow-color: rgb(254 243 199 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-100\/90:active {
  --tw-shadow-color: rgb(254 243 199 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-200:active {
  --tw-shadow-color: #fde68a;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-200\/10:active {
  --tw-shadow-color: rgb(253 230 138 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-200\/20:active {
  --tw-shadow-color: rgb(253 230 138 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-200\/30:active {
  --tw-shadow-color: rgb(253 230 138 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-200\/40:active {
  --tw-shadow-color: rgb(253 230 138 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-200\/5:active {
  --tw-shadow-color: rgb(253 230 138 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-200\/50:active {
  --tw-shadow-color: rgb(253 230 138 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-200\/60:active {
  --tw-shadow-color: rgb(253 230 138 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-200\/70:active {
  --tw-shadow-color: rgb(253 230 138 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-200\/80:active {
  --tw-shadow-color: rgb(253 230 138 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-200\/90:active {
  --tw-shadow-color: rgb(253 230 138 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-300:active {
  --tw-shadow-color: #fcd34d;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-300\/10:active {
  --tw-shadow-color: rgb(252 211 77 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-300\/20:active {
  --tw-shadow-color: rgb(252 211 77 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-300\/30:active {
  --tw-shadow-color: rgb(252 211 77 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-300\/40:active {
  --tw-shadow-color: rgb(252 211 77 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-300\/5:active {
  --tw-shadow-color: rgb(252 211 77 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-300\/50:active {
  --tw-shadow-color: rgb(252 211 77 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-300\/60:active {
  --tw-shadow-color: rgb(252 211 77 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-300\/70:active {
  --tw-shadow-color: rgb(252 211 77 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-300\/80:active {
  --tw-shadow-color: rgb(252 211 77 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-300\/90:active {
  --tw-shadow-color: rgb(252 211 77 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-400:active {
  --tw-shadow-color: #fbbf24;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-400\/10:active {
  --tw-shadow-color: rgb(251 191 36 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-400\/20:active {
  --tw-shadow-color: rgb(251 191 36 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-400\/30:active {
  --tw-shadow-color: rgb(251 191 36 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-400\/40:active {
  --tw-shadow-color: rgb(251 191 36 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-400\/5:active {
  --tw-shadow-color: rgb(251 191 36 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-400\/50:active {
  --tw-shadow-color: rgb(251 191 36 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-400\/60:active {
  --tw-shadow-color: rgb(251 191 36 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-400\/70:active {
  --tw-shadow-color: rgb(251 191 36 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-400\/80:active {
  --tw-shadow-color: rgb(251 191 36 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-400\/90:active {
  --tw-shadow-color: rgb(251 191 36 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-50:active {
  --tw-shadow-color: #fffbeb;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-50\/10:active {
  --tw-shadow-color: rgb(255 251 235 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-50\/20:active {
  --tw-shadow-color: rgb(255 251 235 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-50\/30:active {
  --tw-shadow-color: rgb(255 251 235 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-50\/40:active {
  --tw-shadow-color: rgb(255 251 235 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-50\/5:active {
  --tw-shadow-color: rgb(255 251 235 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-50\/50:active {
  --tw-shadow-color: rgb(255 251 235 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-50\/60:active {
  --tw-shadow-color: rgb(255 251 235 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-50\/70:active {
  --tw-shadow-color: rgb(255 251 235 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-50\/80:active {
  --tw-shadow-color: rgb(255 251 235 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-50\/90:active {
  --tw-shadow-color: rgb(255 251 235 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-500:active {
  --tw-shadow-color: #f59e0b;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-500\/10:active {
  --tw-shadow-color: rgb(245 158 11 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-500\/20:active {
  --tw-shadow-color: rgb(245 158 11 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-500\/30:active {
  --tw-shadow-color: rgb(245 158 11 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-500\/40:active {
  --tw-shadow-color: rgb(245 158 11 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-500\/5:active {
  --tw-shadow-color: rgb(245 158 11 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-500\/50:active {
  --tw-shadow-color: rgb(245 158 11 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-500\/60:active {
  --tw-shadow-color: rgb(245 158 11 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-500\/70:active {
  --tw-shadow-color: rgb(245 158 11 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-500\/80:active {
  --tw-shadow-color: rgb(245 158 11 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-500\/90:active {
  --tw-shadow-color: rgb(245 158 11 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-600:active {
  --tw-shadow-color: #d97706;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-600\/10:active {
  --tw-shadow-color: rgb(217 119 6 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-600\/20:active {
  --tw-shadow-color: rgb(217 119 6 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-600\/30:active {
  --tw-shadow-color: rgb(217 119 6 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-600\/40:active {
  --tw-shadow-color: rgb(217 119 6 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-600\/5:active {
  --tw-shadow-color: rgb(217 119 6 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-600\/50:active {
  --tw-shadow-color: rgb(217 119 6 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-600\/60:active {
  --tw-shadow-color: rgb(217 119 6 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-600\/70:active {
  --tw-shadow-color: rgb(217 119 6 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-600\/80:active {
  --tw-shadow-color: rgb(217 119 6 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-600\/90:active {
  --tw-shadow-color: rgb(217 119 6 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-700:active {
  --tw-shadow-color: #b45309;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-700\/10:active {
  --tw-shadow-color: rgb(180 83 9 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-700\/20:active {
  --tw-shadow-color: rgb(180 83 9 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-700\/30:active {
  --tw-shadow-color: rgb(180 83 9 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-700\/40:active {
  --tw-shadow-color: rgb(180 83 9 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-700\/5:active {
  --tw-shadow-color: rgb(180 83 9 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-700\/50:active {
  --tw-shadow-color: rgb(180 83 9 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-700\/60:active {
  --tw-shadow-color: rgb(180 83 9 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-700\/70:active {
  --tw-shadow-color: rgb(180 83 9 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-700\/80:active {
  --tw-shadow-color: rgb(180 83 9 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-700\/90:active {
  --tw-shadow-color: rgb(180 83 9 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-800:active {
  --tw-shadow-color: #92400e;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-800\/10:active {
  --tw-shadow-color: rgb(146 64 14 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-800\/20:active {
  --tw-shadow-color: rgb(146 64 14 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-800\/30:active {
  --tw-shadow-color: rgb(146 64 14 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-800\/40:active {
  --tw-shadow-color: rgb(146 64 14 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-800\/5:active {
  --tw-shadow-color: rgb(146 64 14 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-800\/50:active {
  --tw-shadow-color: rgb(146 64 14 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-800\/60:active {
  --tw-shadow-color: rgb(146 64 14 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-800\/70:active {
  --tw-shadow-color: rgb(146 64 14 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-800\/80:active {
  --tw-shadow-color: rgb(146 64 14 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-800\/90:active {
  --tw-shadow-color: rgb(146 64 14 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-900:active {
  --tw-shadow-color: #78350f;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-900\/10:active {
  --tw-shadow-color: rgb(120 53 15 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-900\/20:active {
  --tw-shadow-color: rgb(120 53 15 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-900\/30:active {
  --tw-shadow-color: rgb(120 53 15 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-900\/40:active {
  --tw-shadow-color: rgb(120 53 15 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-900\/5:active {
  --tw-shadow-color: rgb(120 53 15 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-900\/50:active {
  --tw-shadow-color: rgb(120 53 15 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-900\/60:active {
  --tw-shadow-color: rgb(120 53 15 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-900\/70:active {
  --tw-shadow-color: rgb(120 53 15 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-900\/80:active {
  --tw-shadow-color: rgb(120 53 15 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-900\/90:active {
  --tw-shadow-color: rgb(120 53 15 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-950:active {
  --tw-shadow-color: #451a03;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-950\/10:active {
  --tw-shadow-color: rgb(69 26 3 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-950\/20:active {
  --tw-shadow-color: rgb(69 26 3 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-950\/30:active {
  --tw-shadow-color: rgb(69 26 3 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-950\/40:active {
  --tw-shadow-color: rgb(69 26 3 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-950\/5:active {
  --tw-shadow-color: rgb(69 26 3 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-950\/50:active {
  --tw-shadow-color: rgb(69 26 3 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-950\/60:active {
  --tw-shadow-color: rgb(69 26 3 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-950\/70:active {
  --tw-shadow-color: rgb(69 26 3 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-950\/80:active {
  --tw-shadow-color: rgb(69 26 3 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-amber-950\/90:active {
  --tw-shadow-color: rgb(69 26 3 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-100:active {
  --tw-shadow-color: #dbeafe;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-100\/10:active {
  --tw-shadow-color: rgb(219 234 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-100\/20:active {
  --tw-shadow-color: rgb(219 234 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-100\/30:active {
  --tw-shadow-color: rgb(219 234 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-100\/40:active {
  --tw-shadow-color: rgb(219 234 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-100\/5:active {
  --tw-shadow-color: rgb(219 234 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-100\/50:active {
  --tw-shadow-color: rgb(219 234 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-100\/60:active {
  --tw-shadow-color: rgb(219 234 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-100\/70:active {
  --tw-shadow-color: rgb(219 234 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-100\/80:active {
  --tw-shadow-color: rgb(219 234 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-100\/90:active {
  --tw-shadow-color: rgb(219 234 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-200:active {
  --tw-shadow-color: #bfdbfe;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-200\/10:active {
  --tw-shadow-color: rgb(191 219 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-200\/20:active {
  --tw-shadow-color: rgb(191 219 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-200\/30:active {
  --tw-shadow-color: rgb(191 219 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-200\/40:active {
  --tw-shadow-color: rgb(191 219 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-200\/5:active {
  --tw-shadow-color: rgb(191 219 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-200\/50:active {
  --tw-shadow-color: rgb(191 219 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-200\/60:active {
  --tw-shadow-color: rgb(191 219 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-200\/70:active {
  --tw-shadow-color: rgb(191 219 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-200\/80:active {
  --tw-shadow-color: rgb(191 219 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-200\/90:active {
  --tw-shadow-color: rgb(191 219 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-300:active {
  --tw-shadow-color: #93c5fd;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-300\/10:active {
  --tw-shadow-color: rgb(147 197 253 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-300\/20:active {
  --tw-shadow-color: rgb(147 197 253 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-300\/30:active {
  --tw-shadow-color: rgb(147 197 253 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-300\/40:active {
  --tw-shadow-color: rgb(147 197 253 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-300\/5:active {
  --tw-shadow-color: rgb(147 197 253 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-300\/50:active {
  --tw-shadow-color: rgb(147 197 253 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-300\/60:active {
  --tw-shadow-color: rgb(147 197 253 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-300\/70:active {
  --tw-shadow-color: rgb(147 197 253 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-300\/80:active {
  --tw-shadow-color: rgb(147 197 253 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-300\/90:active {
  --tw-shadow-color: rgb(147 197 253 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-400:active {
  --tw-shadow-color: #60a5fa;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-400\/10:active {
  --tw-shadow-color: rgb(96 165 250 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-400\/20:active {
  --tw-shadow-color: rgb(96 165 250 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-400\/30:active {
  --tw-shadow-color: rgb(96 165 250 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-400\/40:active {
  --tw-shadow-color: rgb(96 165 250 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-400\/5:active {
  --tw-shadow-color: rgb(96 165 250 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-400\/50:active {
  --tw-shadow-color: rgb(96 165 250 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-400\/60:active {
  --tw-shadow-color: rgb(96 165 250 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-400\/70:active {
  --tw-shadow-color: rgb(96 165 250 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-400\/80:active {
  --tw-shadow-color: rgb(96 165 250 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-400\/90:active {
  --tw-shadow-color: rgb(96 165 250 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-50:active {
  --tw-shadow-color: #eff6ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-50\/10:active {
  --tw-shadow-color: rgb(239 246 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-50\/20:active {
  --tw-shadow-color: rgb(239 246 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-50\/30:active {
  --tw-shadow-color: rgb(239 246 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-50\/40:active {
  --tw-shadow-color: rgb(239 246 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-50\/5:active {
  --tw-shadow-color: rgb(239 246 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-50\/50:active {
  --tw-shadow-color: rgb(239 246 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-50\/60:active {
  --tw-shadow-color: rgb(239 246 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-50\/70:active {
  --tw-shadow-color: rgb(239 246 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-50\/80:active {
  --tw-shadow-color: rgb(239 246 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-50\/90:active {
  --tw-shadow-color: rgb(239 246 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-500:active {
  --tw-shadow-color: #3b82f6;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-500\/10:active {
  --tw-shadow-color: rgb(59 130 246 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-500\/20:active {
  --tw-shadow-color: rgb(59 130 246 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-500\/30:active {
  --tw-shadow-color: rgb(59 130 246 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-500\/40:active {
  --tw-shadow-color: rgb(59 130 246 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-500\/5:active {
  --tw-shadow-color: rgb(59 130 246 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-500\/50:active {
  --tw-shadow-color: rgb(59 130 246 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-500\/60:active {
  --tw-shadow-color: rgb(59 130 246 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-500\/70:active {
  --tw-shadow-color: rgb(59 130 246 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-500\/80:active {
  --tw-shadow-color: rgb(59 130 246 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-500\/90:active {
  --tw-shadow-color: rgb(59 130 246 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-600:active {
  --tw-shadow-color: #2563eb;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-600\/10:active {
  --tw-shadow-color: rgb(37 99 235 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-600\/20:active {
  --tw-shadow-color: rgb(37 99 235 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-600\/30:active {
  --tw-shadow-color: rgb(37 99 235 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-600\/40:active {
  --tw-shadow-color: rgb(37 99 235 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-600\/5:active {
  --tw-shadow-color: rgb(37 99 235 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-600\/50:active {
  --tw-shadow-color: rgb(37 99 235 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-600\/60:active {
  --tw-shadow-color: rgb(37 99 235 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-600\/70:active {
  --tw-shadow-color: rgb(37 99 235 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-600\/80:active {
  --tw-shadow-color: rgb(37 99 235 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-600\/90:active {
  --tw-shadow-color: rgb(37 99 235 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-700:active {
  --tw-shadow-color: #1d4ed8;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-700\/10:active {
  --tw-shadow-color: rgb(29 78 216 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-700\/20:active {
  --tw-shadow-color: rgb(29 78 216 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-700\/30:active {
  --tw-shadow-color: rgb(29 78 216 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-700\/40:active {
  --tw-shadow-color: rgb(29 78 216 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-700\/5:active {
  --tw-shadow-color: rgb(29 78 216 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-700\/50:active {
  --tw-shadow-color: rgb(29 78 216 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-700\/60:active {
  --tw-shadow-color: rgb(29 78 216 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-700\/70:active {
  --tw-shadow-color: rgb(29 78 216 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-700\/80:active {
  --tw-shadow-color: rgb(29 78 216 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-700\/90:active {
  --tw-shadow-color: rgb(29 78 216 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-800:active {
  --tw-shadow-color: #1e40af;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-800\/10:active {
  --tw-shadow-color: rgb(30 64 175 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-800\/20:active {
  --tw-shadow-color: rgb(30 64 175 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-800\/30:active {
  --tw-shadow-color: rgb(30 64 175 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-800\/40:active {
  --tw-shadow-color: rgb(30 64 175 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-800\/5:active {
  --tw-shadow-color: rgb(30 64 175 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-800\/50:active {
  --tw-shadow-color: rgb(30 64 175 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-800\/60:active {
  --tw-shadow-color: rgb(30 64 175 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-800\/70:active {
  --tw-shadow-color: rgb(30 64 175 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-800\/80:active {
  --tw-shadow-color: rgb(30 64 175 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-800\/90:active {
  --tw-shadow-color: rgb(30 64 175 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-900:active {
  --tw-shadow-color: #1e3a8a;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-900\/10:active {
  --tw-shadow-color: rgb(30 58 138 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-900\/20:active {
  --tw-shadow-color: rgb(30 58 138 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-900\/30:active {
  --tw-shadow-color: rgb(30 58 138 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-900\/40:active {
  --tw-shadow-color: rgb(30 58 138 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-900\/5:active {
  --tw-shadow-color: rgb(30 58 138 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-900\/50:active {
  --tw-shadow-color: rgb(30 58 138 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-900\/60:active {
  --tw-shadow-color: rgb(30 58 138 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-900\/70:active {
  --tw-shadow-color: rgb(30 58 138 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-900\/80:active {
  --tw-shadow-color: rgb(30 58 138 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-900\/90:active {
  --tw-shadow-color: rgb(30 58 138 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-950:active {
  --tw-shadow-color: #172554;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-950\/10:active {
  --tw-shadow-color: rgb(23 37 84 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-950\/20:active {
  --tw-shadow-color: rgb(23 37 84 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-950\/30:active {
  --tw-shadow-color: rgb(23 37 84 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-950\/40:active {
  --tw-shadow-color: rgb(23 37 84 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-950\/5:active {
  --tw-shadow-color: rgb(23 37 84 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-950\/50:active {
  --tw-shadow-color: rgb(23 37 84 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-950\/60:active {
  --tw-shadow-color: rgb(23 37 84 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-950\/70:active {
  --tw-shadow-color: rgb(23 37 84 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-950\/80:active {
  --tw-shadow-color: rgb(23 37 84 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-blue-950\/90:active {
  --tw-shadow-color: rgb(23 37 84 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-100:active {
  --tw-shadow-color: #cffafe;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-100\/10:active {
  --tw-shadow-color: rgb(207 250 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-100\/20:active {
  --tw-shadow-color: rgb(207 250 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-100\/30:active {
  --tw-shadow-color: rgb(207 250 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-100\/40:active {
  --tw-shadow-color: rgb(207 250 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-100\/5:active {
  --tw-shadow-color: rgb(207 250 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-100\/50:active {
  --tw-shadow-color: rgb(207 250 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-100\/60:active {
  --tw-shadow-color: rgb(207 250 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-100\/70:active {
  --tw-shadow-color: rgb(207 250 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-100\/80:active {
  --tw-shadow-color: rgb(207 250 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-100\/90:active {
  --tw-shadow-color: rgb(207 250 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-200:active {
  --tw-shadow-color: #a5f3fc;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-200\/10:active {
  --tw-shadow-color: rgb(165 243 252 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-200\/20:active {
  --tw-shadow-color: rgb(165 243 252 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-200\/30:active {
  --tw-shadow-color: rgb(165 243 252 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-200\/40:active {
  --tw-shadow-color: rgb(165 243 252 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-200\/5:active {
  --tw-shadow-color: rgb(165 243 252 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-200\/50:active {
  --tw-shadow-color: rgb(165 243 252 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-200\/60:active {
  --tw-shadow-color: rgb(165 243 252 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-200\/70:active {
  --tw-shadow-color: rgb(165 243 252 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-200\/80:active {
  --tw-shadow-color: rgb(165 243 252 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-200\/90:active {
  --tw-shadow-color: rgb(165 243 252 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-300:active {
  --tw-shadow-color: #67e8f9;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-300\/10:active {
  --tw-shadow-color: rgb(103 232 249 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-300\/20:active {
  --tw-shadow-color: rgb(103 232 249 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-300\/30:active {
  --tw-shadow-color: rgb(103 232 249 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-300\/40:active {
  --tw-shadow-color: rgb(103 232 249 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-300\/5:active {
  --tw-shadow-color: rgb(103 232 249 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-300\/50:active {
  --tw-shadow-color: rgb(103 232 249 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-300\/60:active {
  --tw-shadow-color: rgb(103 232 249 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-300\/70:active {
  --tw-shadow-color: rgb(103 232 249 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-300\/80:active {
  --tw-shadow-color: rgb(103 232 249 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-300\/90:active {
  --tw-shadow-color: rgb(103 232 249 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-400:active {
  --tw-shadow-color: #22d3ee;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-400\/10:active {
  --tw-shadow-color: rgb(34 211 238 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-400\/20:active {
  --tw-shadow-color: rgb(34 211 238 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-400\/30:active {
  --tw-shadow-color: rgb(34 211 238 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-400\/40:active {
  --tw-shadow-color: rgb(34 211 238 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-400\/5:active {
  --tw-shadow-color: rgb(34 211 238 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-400\/50:active {
  --tw-shadow-color: rgb(34 211 238 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-400\/60:active {
  --tw-shadow-color: rgb(34 211 238 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-400\/70:active {
  --tw-shadow-color: rgb(34 211 238 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-400\/80:active {
  --tw-shadow-color: rgb(34 211 238 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-400\/90:active {
  --tw-shadow-color: rgb(34 211 238 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-50:active {
  --tw-shadow-color: #ecfeff;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-50\/10:active {
  --tw-shadow-color: rgb(236 254 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-50\/20:active {
  --tw-shadow-color: rgb(236 254 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-50\/30:active {
  --tw-shadow-color: rgb(236 254 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-50\/40:active {
  --tw-shadow-color: rgb(236 254 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-50\/5:active {
  --tw-shadow-color: rgb(236 254 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-50\/50:active {
  --tw-shadow-color: rgb(236 254 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-50\/60:active {
  --tw-shadow-color: rgb(236 254 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-50\/70:active {
  --tw-shadow-color: rgb(236 254 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-50\/80:active {
  --tw-shadow-color: rgb(236 254 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-50\/90:active {
  --tw-shadow-color: rgb(236 254 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-500:active {
  --tw-shadow-color: #06b6d4;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-500\/10:active {
  --tw-shadow-color: rgb(6 182 212 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-500\/20:active {
  --tw-shadow-color: rgb(6 182 212 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-500\/30:active {
  --tw-shadow-color: rgb(6 182 212 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-500\/40:active {
  --tw-shadow-color: rgb(6 182 212 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-500\/5:active {
  --tw-shadow-color: rgb(6 182 212 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-500\/50:active {
  --tw-shadow-color: rgb(6 182 212 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-500\/60:active {
  --tw-shadow-color: rgb(6 182 212 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-500\/70:active {
  --tw-shadow-color: rgb(6 182 212 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-500\/80:active {
  --tw-shadow-color: rgb(6 182 212 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-500\/90:active {
  --tw-shadow-color: rgb(6 182 212 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-600:active {
  --tw-shadow-color: #0891b2;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-600\/10:active {
  --tw-shadow-color: rgb(8 145 178 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-600\/20:active {
  --tw-shadow-color: rgb(8 145 178 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-600\/30:active {
  --tw-shadow-color: rgb(8 145 178 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-600\/40:active {
  --tw-shadow-color: rgb(8 145 178 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-600\/5:active {
  --tw-shadow-color: rgb(8 145 178 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-600\/50:active {
  --tw-shadow-color: rgb(8 145 178 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-600\/60:active {
  --tw-shadow-color: rgb(8 145 178 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-600\/70:active {
  --tw-shadow-color: rgb(8 145 178 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-600\/80:active {
  --tw-shadow-color: rgb(8 145 178 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-600\/90:active {
  --tw-shadow-color: rgb(8 145 178 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-700:active {
  --tw-shadow-color: #0e7490;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-700\/10:active {
  --tw-shadow-color: rgb(14 116 144 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-700\/20:active {
  --tw-shadow-color: rgb(14 116 144 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-700\/30:active {
  --tw-shadow-color: rgb(14 116 144 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-700\/40:active {
  --tw-shadow-color: rgb(14 116 144 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-700\/5:active {
  --tw-shadow-color: rgb(14 116 144 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-700\/50:active {
  --tw-shadow-color: rgb(14 116 144 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-700\/60:active {
  --tw-shadow-color: rgb(14 116 144 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-700\/70:active {
  --tw-shadow-color: rgb(14 116 144 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-700\/80:active {
  --tw-shadow-color: rgb(14 116 144 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-700\/90:active {
  --tw-shadow-color: rgb(14 116 144 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-800:active {
  --tw-shadow-color: #155e75;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-800\/10:active {
  --tw-shadow-color: rgb(21 94 117 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-800\/20:active {
  --tw-shadow-color: rgb(21 94 117 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-800\/30:active {
  --tw-shadow-color: rgb(21 94 117 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-800\/40:active {
  --tw-shadow-color: rgb(21 94 117 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-800\/5:active {
  --tw-shadow-color: rgb(21 94 117 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-800\/50:active {
  --tw-shadow-color: rgb(21 94 117 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-800\/60:active {
  --tw-shadow-color: rgb(21 94 117 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-800\/70:active {
  --tw-shadow-color: rgb(21 94 117 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-800\/80:active {
  --tw-shadow-color: rgb(21 94 117 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-800\/90:active {
  --tw-shadow-color: rgb(21 94 117 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-900:active {
  --tw-shadow-color: #164e63;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-900\/10:active {
  --tw-shadow-color: rgb(22 78 99 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-900\/20:active {
  --tw-shadow-color: rgb(22 78 99 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-900\/30:active {
  --tw-shadow-color: rgb(22 78 99 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-900\/40:active {
  --tw-shadow-color: rgb(22 78 99 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-900\/5:active {
  --tw-shadow-color: rgb(22 78 99 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-900\/50:active {
  --tw-shadow-color: rgb(22 78 99 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-900\/60:active {
  --tw-shadow-color: rgb(22 78 99 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-900\/70:active {
  --tw-shadow-color: rgb(22 78 99 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-900\/80:active {
  --tw-shadow-color: rgb(22 78 99 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-900\/90:active {
  --tw-shadow-color: rgb(22 78 99 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-950:active {
  --tw-shadow-color: #083344;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-950\/10:active {
  --tw-shadow-color: rgb(8 51 68 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-950\/20:active {
  --tw-shadow-color: rgb(8 51 68 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-950\/30:active {
  --tw-shadow-color: rgb(8 51 68 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-950\/40:active {
  --tw-shadow-color: rgb(8 51 68 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-950\/5:active {
  --tw-shadow-color: rgb(8 51 68 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-950\/50:active {
  --tw-shadow-color: rgb(8 51 68 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-950\/60:active {
  --tw-shadow-color: rgb(8 51 68 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-950\/70:active {
  --tw-shadow-color: rgb(8 51 68 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-950\/80:active {
  --tw-shadow-color: rgb(8 51 68 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-cyan-950\/90:active {
  --tw-shadow-color: rgb(8 51 68 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-100:active {
  --tw-shadow-color: #d1fae5;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-100\/10:active {
  --tw-shadow-color: rgb(209 250 229 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-100\/20:active {
  --tw-shadow-color: rgb(209 250 229 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-100\/30:active {
  --tw-shadow-color: rgb(209 250 229 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-100\/40:active {
  --tw-shadow-color: rgb(209 250 229 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-100\/5:active {
  --tw-shadow-color: rgb(209 250 229 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-100\/50:active {
  --tw-shadow-color: rgb(209 250 229 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-100\/60:active {
  --tw-shadow-color: rgb(209 250 229 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-100\/70:active {
  --tw-shadow-color: rgb(209 250 229 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-100\/80:active {
  --tw-shadow-color: rgb(209 250 229 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-100\/90:active {
  --tw-shadow-color: rgb(209 250 229 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-200:active {
  --tw-shadow-color: #a7f3d0;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-200\/10:active {
  --tw-shadow-color: rgb(167 243 208 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-200\/20:active {
  --tw-shadow-color: rgb(167 243 208 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-200\/30:active {
  --tw-shadow-color: rgb(167 243 208 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-200\/40:active {
  --tw-shadow-color: rgb(167 243 208 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-200\/5:active {
  --tw-shadow-color: rgb(167 243 208 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-200\/50:active {
  --tw-shadow-color: rgb(167 243 208 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-200\/60:active {
  --tw-shadow-color: rgb(167 243 208 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-200\/70:active {
  --tw-shadow-color: rgb(167 243 208 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-200\/80:active {
  --tw-shadow-color: rgb(167 243 208 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-200\/90:active {
  --tw-shadow-color: rgb(167 243 208 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-300:active {
  --tw-shadow-color: #6ee7b7;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-300\/10:active {
  --tw-shadow-color: rgb(110 231 183 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-300\/20:active {
  --tw-shadow-color: rgb(110 231 183 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-300\/30:active {
  --tw-shadow-color: rgb(110 231 183 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-300\/40:active {
  --tw-shadow-color: rgb(110 231 183 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-300\/5:active {
  --tw-shadow-color: rgb(110 231 183 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-300\/50:active {
  --tw-shadow-color: rgb(110 231 183 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-300\/60:active {
  --tw-shadow-color: rgb(110 231 183 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-300\/70:active {
  --tw-shadow-color: rgb(110 231 183 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-300\/80:active {
  --tw-shadow-color: rgb(110 231 183 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-300\/90:active {
  --tw-shadow-color: rgb(110 231 183 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-400:active {
  --tw-shadow-color: #34d399;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-400\/10:active {
  --tw-shadow-color: rgb(52 211 153 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-400\/20:active {
  --tw-shadow-color: rgb(52 211 153 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-400\/30:active {
  --tw-shadow-color: rgb(52 211 153 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-400\/40:active {
  --tw-shadow-color: rgb(52 211 153 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-400\/5:active {
  --tw-shadow-color: rgb(52 211 153 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-400\/50:active {
  --tw-shadow-color: rgb(52 211 153 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-400\/60:active {
  --tw-shadow-color: rgb(52 211 153 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-400\/70:active {
  --tw-shadow-color: rgb(52 211 153 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-400\/80:active {
  --tw-shadow-color: rgb(52 211 153 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-400\/90:active {
  --tw-shadow-color: rgb(52 211 153 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-50:active {
  --tw-shadow-color: #ecfdf5;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-50\/10:active {
  --tw-shadow-color: rgb(236 253 245 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-50\/20:active {
  --tw-shadow-color: rgb(236 253 245 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-50\/30:active {
  --tw-shadow-color: rgb(236 253 245 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-50\/40:active {
  --tw-shadow-color: rgb(236 253 245 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-50\/5:active {
  --tw-shadow-color: rgb(236 253 245 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-50\/50:active {
  --tw-shadow-color: rgb(236 253 245 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-50\/60:active {
  --tw-shadow-color: rgb(236 253 245 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-50\/70:active {
  --tw-shadow-color: rgb(236 253 245 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-50\/80:active {
  --tw-shadow-color: rgb(236 253 245 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-50\/90:active {
  --tw-shadow-color: rgb(236 253 245 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-500:active {
  --tw-shadow-color: #10b981;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-500\/10:active {
  --tw-shadow-color: rgb(16 185 129 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-500\/20:active {
  --tw-shadow-color: rgb(16 185 129 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-500\/30:active {
  --tw-shadow-color: rgb(16 185 129 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-500\/40:active {
  --tw-shadow-color: rgb(16 185 129 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-500\/5:active {
  --tw-shadow-color: rgb(16 185 129 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-500\/50:active {
  --tw-shadow-color: rgb(16 185 129 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-500\/60:active {
  --tw-shadow-color: rgb(16 185 129 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-500\/70:active {
  --tw-shadow-color: rgb(16 185 129 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-500\/80:active {
  --tw-shadow-color: rgb(16 185 129 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-500\/90:active {
  --tw-shadow-color: rgb(16 185 129 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-600:active {
  --tw-shadow-color: #059669;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-600\/10:active {
  --tw-shadow-color: rgb(5 150 105 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-600\/20:active {
  --tw-shadow-color: rgb(5 150 105 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-600\/30:active {
  --tw-shadow-color: rgb(5 150 105 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-600\/40:active {
  --tw-shadow-color: rgb(5 150 105 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-600\/5:active {
  --tw-shadow-color: rgb(5 150 105 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-600\/50:active {
  --tw-shadow-color: rgb(5 150 105 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-600\/60:active {
  --tw-shadow-color: rgb(5 150 105 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-600\/70:active {
  --tw-shadow-color: rgb(5 150 105 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-600\/80:active {
  --tw-shadow-color: rgb(5 150 105 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-600\/90:active {
  --tw-shadow-color: rgb(5 150 105 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-700:active {
  --tw-shadow-color: #047857;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-700\/10:active {
  --tw-shadow-color: rgb(4 120 87 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-700\/20:active {
  --tw-shadow-color: rgb(4 120 87 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-700\/30:active {
  --tw-shadow-color: rgb(4 120 87 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-700\/40:active {
  --tw-shadow-color: rgb(4 120 87 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-700\/5:active {
  --tw-shadow-color: rgb(4 120 87 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-700\/50:active {
  --tw-shadow-color: rgb(4 120 87 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-700\/60:active {
  --tw-shadow-color: rgb(4 120 87 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-700\/70:active {
  --tw-shadow-color: rgb(4 120 87 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-700\/80:active {
  --tw-shadow-color: rgb(4 120 87 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-700\/90:active {
  --tw-shadow-color: rgb(4 120 87 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-800:active {
  --tw-shadow-color: #065f46;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-800\/10:active {
  --tw-shadow-color: rgb(6 95 70 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-800\/20:active {
  --tw-shadow-color: rgb(6 95 70 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-800\/30:active {
  --tw-shadow-color: rgb(6 95 70 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-800\/40:active {
  --tw-shadow-color: rgb(6 95 70 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-800\/5:active {
  --tw-shadow-color: rgb(6 95 70 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-800\/50:active {
  --tw-shadow-color: rgb(6 95 70 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-800\/60:active {
  --tw-shadow-color: rgb(6 95 70 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-800\/70:active {
  --tw-shadow-color: rgb(6 95 70 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-800\/80:active {
  --tw-shadow-color: rgb(6 95 70 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-800\/90:active {
  --tw-shadow-color: rgb(6 95 70 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-900:active {
  --tw-shadow-color: #064e3b;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-900\/10:active {
  --tw-shadow-color: rgb(6 78 59 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-900\/20:active {
  --tw-shadow-color: rgb(6 78 59 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-900\/30:active {
  --tw-shadow-color: rgb(6 78 59 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-900\/40:active {
  --tw-shadow-color: rgb(6 78 59 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-900\/5:active {
  --tw-shadow-color: rgb(6 78 59 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-900\/50:active {
  --tw-shadow-color: rgb(6 78 59 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-900\/60:active {
  --tw-shadow-color: rgb(6 78 59 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-900\/70:active {
  --tw-shadow-color: rgb(6 78 59 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-900\/80:active {
  --tw-shadow-color: rgb(6 78 59 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-900\/90:active {
  --tw-shadow-color: rgb(6 78 59 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-950:active {
  --tw-shadow-color: #022c22;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-950\/10:active {
  --tw-shadow-color: rgb(2 44 34 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-950\/20:active {
  --tw-shadow-color: rgb(2 44 34 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-950\/30:active {
  --tw-shadow-color: rgb(2 44 34 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-950\/40:active {
  --tw-shadow-color: rgb(2 44 34 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-950\/5:active {
  --tw-shadow-color: rgb(2 44 34 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-950\/50:active {
  --tw-shadow-color: rgb(2 44 34 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-950\/60:active {
  --tw-shadow-color: rgb(2 44 34 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-950\/70:active {
  --tw-shadow-color: rgb(2 44 34 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-950\/80:active {
  --tw-shadow-color: rgb(2 44 34 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-emerald-950\/90:active {
  --tw-shadow-color: rgb(2 44 34 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-100:active {
  --tw-shadow-color: #fae8ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-100\/10:active {
  --tw-shadow-color: rgb(250 232 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-100\/20:active {
  --tw-shadow-color: rgb(250 232 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-100\/30:active {
  --tw-shadow-color: rgb(250 232 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-100\/40:active {
  --tw-shadow-color: rgb(250 232 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-100\/5:active {
  --tw-shadow-color: rgb(250 232 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-100\/50:active {
  --tw-shadow-color: rgb(250 232 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-100\/60:active {
  --tw-shadow-color: rgb(250 232 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-100\/70:active {
  --tw-shadow-color: rgb(250 232 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-100\/80:active {
  --tw-shadow-color: rgb(250 232 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-100\/90:active {
  --tw-shadow-color: rgb(250 232 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-200:active {
  --tw-shadow-color: #f5d0fe;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-200\/10:active {
  --tw-shadow-color: rgb(245 208 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-200\/20:active {
  --tw-shadow-color: rgb(245 208 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-200\/30:active {
  --tw-shadow-color: rgb(245 208 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-200\/40:active {
  --tw-shadow-color: rgb(245 208 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-200\/5:active {
  --tw-shadow-color: rgb(245 208 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-200\/50:active {
  --tw-shadow-color: rgb(245 208 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-200\/60:active {
  --tw-shadow-color: rgb(245 208 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-200\/70:active {
  --tw-shadow-color: rgb(245 208 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-200\/80:active {
  --tw-shadow-color: rgb(245 208 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-200\/90:active {
  --tw-shadow-color: rgb(245 208 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-300:active {
  --tw-shadow-color: #f0abfc;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-300\/10:active {
  --tw-shadow-color: rgb(240 171 252 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-300\/20:active {
  --tw-shadow-color: rgb(240 171 252 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-300\/30:active {
  --tw-shadow-color: rgb(240 171 252 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-300\/40:active {
  --tw-shadow-color: rgb(240 171 252 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-300\/5:active {
  --tw-shadow-color: rgb(240 171 252 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-300\/50:active {
  --tw-shadow-color: rgb(240 171 252 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-300\/60:active {
  --tw-shadow-color: rgb(240 171 252 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-300\/70:active {
  --tw-shadow-color: rgb(240 171 252 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-300\/80:active {
  --tw-shadow-color: rgb(240 171 252 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-300\/90:active {
  --tw-shadow-color: rgb(240 171 252 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-400:active {
  --tw-shadow-color: #e879f9;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-400\/10:active {
  --tw-shadow-color: rgb(232 121 249 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-400\/20:active {
  --tw-shadow-color: rgb(232 121 249 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-400\/30:active {
  --tw-shadow-color: rgb(232 121 249 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-400\/40:active {
  --tw-shadow-color: rgb(232 121 249 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-400\/5:active {
  --tw-shadow-color: rgb(232 121 249 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-400\/50:active {
  --tw-shadow-color: rgb(232 121 249 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-400\/60:active {
  --tw-shadow-color: rgb(232 121 249 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-400\/70:active {
  --tw-shadow-color: rgb(232 121 249 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-400\/80:active {
  --tw-shadow-color: rgb(232 121 249 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-400\/90:active {
  --tw-shadow-color: rgb(232 121 249 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-50:active {
  --tw-shadow-color: #fdf4ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-50\/10:active {
  --tw-shadow-color: rgb(253 244 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-50\/20:active {
  --tw-shadow-color: rgb(253 244 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-50\/30:active {
  --tw-shadow-color: rgb(253 244 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-50\/40:active {
  --tw-shadow-color: rgb(253 244 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-50\/5:active {
  --tw-shadow-color: rgb(253 244 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-50\/50:active {
  --tw-shadow-color: rgb(253 244 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-50\/60:active {
  --tw-shadow-color: rgb(253 244 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-50\/70:active {
  --tw-shadow-color: rgb(253 244 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-50\/80:active {
  --tw-shadow-color: rgb(253 244 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-50\/90:active {
  --tw-shadow-color: rgb(253 244 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-500:active {
  --tw-shadow-color: #d946ef;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-500\/10:active {
  --tw-shadow-color: rgb(217 70 239 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-500\/20:active {
  --tw-shadow-color: rgb(217 70 239 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-500\/30:active {
  --tw-shadow-color: rgb(217 70 239 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-500\/40:active {
  --tw-shadow-color: rgb(217 70 239 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-500\/5:active {
  --tw-shadow-color: rgb(217 70 239 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-500\/50:active {
  --tw-shadow-color: rgb(217 70 239 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-500\/60:active {
  --tw-shadow-color: rgb(217 70 239 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-500\/70:active {
  --tw-shadow-color: rgb(217 70 239 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-500\/80:active {
  --tw-shadow-color: rgb(217 70 239 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-500\/90:active {
  --tw-shadow-color: rgb(217 70 239 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-600:active {
  --tw-shadow-color: #c026d3;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-600\/10:active {
  --tw-shadow-color: rgb(192 38 211 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-600\/20:active {
  --tw-shadow-color: rgb(192 38 211 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-600\/30:active {
  --tw-shadow-color: rgb(192 38 211 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-600\/40:active {
  --tw-shadow-color: rgb(192 38 211 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-600\/5:active {
  --tw-shadow-color: rgb(192 38 211 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-600\/50:active {
  --tw-shadow-color: rgb(192 38 211 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-600\/60:active {
  --tw-shadow-color: rgb(192 38 211 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-600\/70:active {
  --tw-shadow-color: rgb(192 38 211 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-600\/80:active {
  --tw-shadow-color: rgb(192 38 211 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-600\/90:active {
  --tw-shadow-color: rgb(192 38 211 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-700:active {
  --tw-shadow-color: #a21caf;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-700\/10:active {
  --tw-shadow-color: rgb(162 28 175 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-700\/20:active {
  --tw-shadow-color: rgb(162 28 175 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-700\/30:active {
  --tw-shadow-color: rgb(162 28 175 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-700\/40:active {
  --tw-shadow-color: rgb(162 28 175 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-700\/5:active {
  --tw-shadow-color: rgb(162 28 175 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-700\/50:active {
  --tw-shadow-color: rgb(162 28 175 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-700\/60:active {
  --tw-shadow-color: rgb(162 28 175 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-700\/70:active {
  --tw-shadow-color: rgb(162 28 175 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-700\/80:active {
  --tw-shadow-color: rgb(162 28 175 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-700\/90:active {
  --tw-shadow-color: rgb(162 28 175 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-800:active {
  --tw-shadow-color: #86198f;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-800\/10:active {
  --tw-shadow-color: rgb(134 25 143 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-800\/20:active {
  --tw-shadow-color: rgb(134 25 143 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-800\/30:active {
  --tw-shadow-color: rgb(134 25 143 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-800\/40:active {
  --tw-shadow-color: rgb(134 25 143 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-800\/5:active {
  --tw-shadow-color: rgb(134 25 143 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-800\/50:active {
  --tw-shadow-color: rgb(134 25 143 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-800\/60:active {
  --tw-shadow-color: rgb(134 25 143 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-800\/70:active {
  --tw-shadow-color: rgb(134 25 143 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-800\/80:active {
  --tw-shadow-color: rgb(134 25 143 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-800\/90:active {
  --tw-shadow-color: rgb(134 25 143 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-900:active {
  --tw-shadow-color: #701a75;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-900\/10:active {
  --tw-shadow-color: rgb(112 26 117 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-900\/20:active {
  --tw-shadow-color: rgb(112 26 117 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-900\/30:active {
  --tw-shadow-color: rgb(112 26 117 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-900\/40:active {
  --tw-shadow-color: rgb(112 26 117 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-900\/5:active {
  --tw-shadow-color: rgb(112 26 117 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-900\/50:active {
  --tw-shadow-color: rgb(112 26 117 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-900\/60:active {
  --tw-shadow-color: rgb(112 26 117 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-900\/70:active {
  --tw-shadow-color: rgb(112 26 117 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-900\/80:active {
  --tw-shadow-color: rgb(112 26 117 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-900\/90:active {
  --tw-shadow-color: rgb(112 26 117 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-950:active {
  --tw-shadow-color: #4a044e;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-950\/10:active {
  --tw-shadow-color: rgb(74 4 78 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-950\/20:active {
  --tw-shadow-color: rgb(74 4 78 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-950\/30:active {
  --tw-shadow-color: rgb(74 4 78 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-950\/40:active {
  --tw-shadow-color: rgb(74 4 78 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-950\/5:active {
  --tw-shadow-color: rgb(74 4 78 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-950\/50:active {
  --tw-shadow-color: rgb(74 4 78 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-950\/60:active {
  --tw-shadow-color: rgb(74 4 78 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-950\/70:active {
  --tw-shadow-color: rgb(74 4 78 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-950\/80:active {
  --tw-shadow-color: rgb(74 4 78 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-fuchsia-950\/90:active {
  --tw-shadow-color: rgb(74 4 78 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-100:active {
  --tw-shadow-color: #f3f4f6;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-100\/10:active {
  --tw-shadow-color: rgb(243 244 246 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-100\/20:active {
  --tw-shadow-color: rgb(243 244 246 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-100\/30:active {
  --tw-shadow-color: rgb(243 244 246 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-100\/40:active {
  --tw-shadow-color: rgb(243 244 246 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-100\/5:active {
  --tw-shadow-color: rgb(243 244 246 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-100\/50:active {
  --tw-shadow-color: rgb(243 244 246 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-100\/60:active {
  --tw-shadow-color: rgb(243 244 246 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-100\/70:active {
  --tw-shadow-color: rgb(243 244 246 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-100\/80:active {
  --tw-shadow-color: rgb(243 244 246 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-100\/90:active {
  --tw-shadow-color: rgb(243 244 246 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-200:active {
  --tw-shadow-color: #e5e7eb;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-200\/10:active {
  --tw-shadow-color: rgb(229 231 235 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-200\/20:active {
  --tw-shadow-color: rgb(229 231 235 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-200\/30:active {
  --tw-shadow-color: rgb(229 231 235 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-200\/40:active {
  --tw-shadow-color: rgb(229 231 235 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-200\/5:active {
  --tw-shadow-color: rgb(229 231 235 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-200\/50:active {
  --tw-shadow-color: rgb(229 231 235 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-200\/60:active {
  --tw-shadow-color: rgb(229 231 235 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-200\/70:active {
  --tw-shadow-color: rgb(229 231 235 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-200\/80:active {
  --tw-shadow-color: rgb(229 231 235 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-200\/90:active {
  --tw-shadow-color: rgb(229 231 235 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-300:active {
  --tw-shadow-color: #d1d5db;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-300\/10:active {
  --tw-shadow-color: rgb(209 213 219 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-300\/20:active {
  --tw-shadow-color: rgb(209 213 219 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-300\/30:active {
  --tw-shadow-color: rgb(209 213 219 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-300\/40:active {
  --tw-shadow-color: rgb(209 213 219 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-300\/5:active {
  --tw-shadow-color: rgb(209 213 219 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-300\/50:active {
  --tw-shadow-color: rgb(209 213 219 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-300\/60:active {
  --tw-shadow-color: rgb(209 213 219 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-300\/70:active {
  --tw-shadow-color: rgb(209 213 219 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-300\/80:active {
  --tw-shadow-color: rgb(209 213 219 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-300\/90:active {
  --tw-shadow-color: rgb(209 213 219 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-400:active {
  --tw-shadow-color: #9ca3af;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-400\/10:active {
  --tw-shadow-color: rgb(156 163 175 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-400\/20:active {
  --tw-shadow-color: rgb(156 163 175 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-400\/30:active {
  --tw-shadow-color: rgb(156 163 175 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-400\/40:active {
  --tw-shadow-color: rgb(156 163 175 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-400\/5:active {
  --tw-shadow-color: rgb(156 163 175 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-400\/50:active {
  --tw-shadow-color: rgb(156 163 175 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-400\/60:active {
  --tw-shadow-color: rgb(156 163 175 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-400\/70:active {
  --tw-shadow-color: rgb(156 163 175 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-400\/80:active {
  --tw-shadow-color: rgb(156 163 175 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-400\/90:active {
  --tw-shadow-color: rgb(156 163 175 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-50:active {
  --tw-shadow-color: #f9fafb;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-50\/10:active {
  --tw-shadow-color: rgb(249 250 251 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-50\/20:active {
  --tw-shadow-color: rgb(249 250 251 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-50\/30:active {
  --tw-shadow-color: rgb(249 250 251 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-50\/40:active {
  --tw-shadow-color: rgb(249 250 251 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-50\/5:active {
  --tw-shadow-color: rgb(249 250 251 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-50\/50:active {
  --tw-shadow-color: rgb(249 250 251 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-50\/60:active {
  --tw-shadow-color: rgb(249 250 251 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-50\/70:active {
  --tw-shadow-color: rgb(249 250 251 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-50\/80:active {
  --tw-shadow-color: rgb(249 250 251 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-50\/90:active {
  --tw-shadow-color: rgb(249 250 251 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-500:active {
  --tw-shadow-color: #6b7280;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-500\/10:active {
  --tw-shadow-color: rgb(107 114 128 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-500\/20:active {
  --tw-shadow-color: rgb(107 114 128 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-500\/30:active {
  --tw-shadow-color: rgb(107 114 128 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-500\/40:active {
  --tw-shadow-color: rgb(107 114 128 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-500\/5:active {
  --tw-shadow-color: rgb(107 114 128 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-500\/50:active {
  --tw-shadow-color: rgb(107 114 128 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-500\/60:active {
  --tw-shadow-color: rgb(107 114 128 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-500\/70:active {
  --tw-shadow-color: rgb(107 114 128 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-500\/80:active {
  --tw-shadow-color: rgb(107 114 128 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-500\/90:active {
  --tw-shadow-color: rgb(107 114 128 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-600:active {
  --tw-shadow-color: #4b5563;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-600\/10:active {
  --tw-shadow-color: rgb(75 85 99 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-600\/20:active {
  --tw-shadow-color: rgb(75 85 99 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-600\/30:active {
  --tw-shadow-color: rgb(75 85 99 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-600\/40:active {
  --tw-shadow-color: rgb(75 85 99 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-600\/5:active {
  --tw-shadow-color: rgb(75 85 99 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-600\/50:active {
  --tw-shadow-color: rgb(75 85 99 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-600\/60:active {
  --tw-shadow-color: rgb(75 85 99 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-600\/70:active {
  --tw-shadow-color: rgb(75 85 99 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-600\/80:active {
  --tw-shadow-color: rgb(75 85 99 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-600\/90:active {
  --tw-shadow-color: rgb(75 85 99 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-700:active {
  --tw-shadow-color: #374151;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-700\/10:active {
  --tw-shadow-color: rgb(55 65 81 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-700\/20:active {
  --tw-shadow-color: rgb(55 65 81 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-700\/30:active {
  --tw-shadow-color: rgb(55 65 81 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-700\/40:active {
  --tw-shadow-color: rgb(55 65 81 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-700\/5:active {
  --tw-shadow-color: rgb(55 65 81 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-700\/50:active {
  --tw-shadow-color: rgb(55 65 81 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-700\/60:active {
  --tw-shadow-color: rgb(55 65 81 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-700\/70:active {
  --tw-shadow-color: rgb(55 65 81 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-700\/80:active {
  --tw-shadow-color: rgb(55 65 81 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-700\/90:active {
  --tw-shadow-color: rgb(55 65 81 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-800:active {
  --tw-shadow-color: #1f2937;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-800\/10:active {
  --tw-shadow-color: rgb(31 41 55 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-800\/20:active {
  --tw-shadow-color: rgb(31 41 55 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-800\/30:active {
  --tw-shadow-color: rgb(31 41 55 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-800\/40:active {
  --tw-shadow-color: rgb(31 41 55 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-800\/5:active {
  --tw-shadow-color: rgb(31 41 55 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-800\/50:active {
  --tw-shadow-color: rgb(31 41 55 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-800\/60:active {
  --tw-shadow-color: rgb(31 41 55 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-800\/70:active {
  --tw-shadow-color: rgb(31 41 55 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-800\/80:active {
  --tw-shadow-color: rgb(31 41 55 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-800\/90:active {
  --tw-shadow-color: rgb(31 41 55 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-900:active {
  --tw-shadow-color: #111827;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-900\/10:active {
  --tw-shadow-color: rgb(17 24 39 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-900\/20:active {
  --tw-shadow-color: rgb(17 24 39 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-900\/30:active {
  --tw-shadow-color: rgb(17 24 39 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-900\/40:active {
  --tw-shadow-color: rgb(17 24 39 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-900\/5:active {
  --tw-shadow-color: rgb(17 24 39 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-900\/50:active {
  --tw-shadow-color: rgb(17 24 39 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-900\/60:active {
  --tw-shadow-color: rgb(17 24 39 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-900\/70:active {
  --tw-shadow-color: rgb(17 24 39 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-900\/80:active {
  --tw-shadow-color: rgb(17 24 39 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-900\/90:active {
  --tw-shadow-color: rgb(17 24 39 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-950:active {
  --tw-shadow-color: #030712;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-950\/10:active {
  --tw-shadow-color: rgb(3 7 18 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-950\/20:active {
  --tw-shadow-color: rgb(3 7 18 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-950\/30:active {
  --tw-shadow-color: rgb(3 7 18 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-950\/40:active {
  --tw-shadow-color: rgb(3 7 18 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-950\/5:active {
  --tw-shadow-color: rgb(3 7 18 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-950\/50:active {
  --tw-shadow-color: rgb(3 7 18 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-950\/60:active {
  --tw-shadow-color: rgb(3 7 18 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-950\/70:active {
  --tw-shadow-color: rgb(3 7 18 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-950\/80:active {
  --tw-shadow-color: rgb(3 7 18 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-gray-950\/90:active {
  --tw-shadow-color: rgb(3 7 18 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-100:active {
  --tw-shadow-color: #dcfce7;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-100\/10:active {
  --tw-shadow-color: rgb(220 252 231 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-100\/20:active {
  --tw-shadow-color: rgb(220 252 231 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-100\/30:active {
  --tw-shadow-color: rgb(220 252 231 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-100\/40:active {
  --tw-shadow-color: rgb(220 252 231 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-100\/5:active {
  --tw-shadow-color: rgb(220 252 231 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-100\/50:active {
  --tw-shadow-color: rgb(220 252 231 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-100\/60:active {
  --tw-shadow-color: rgb(220 252 231 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-100\/70:active {
  --tw-shadow-color: rgb(220 252 231 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-100\/80:active {
  --tw-shadow-color: rgb(220 252 231 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-100\/90:active {
  --tw-shadow-color: rgb(220 252 231 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-200:active {
  --tw-shadow-color: #bbf7d0;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-200\/10:active {
  --tw-shadow-color: rgb(187 247 208 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-200\/20:active {
  --tw-shadow-color: rgb(187 247 208 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-200\/30:active {
  --tw-shadow-color: rgb(187 247 208 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-200\/40:active {
  --tw-shadow-color: rgb(187 247 208 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-200\/5:active {
  --tw-shadow-color: rgb(187 247 208 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-200\/50:active {
  --tw-shadow-color: rgb(187 247 208 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-200\/60:active {
  --tw-shadow-color: rgb(187 247 208 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-200\/70:active {
  --tw-shadow-color: rgb(187 247 208 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-200\/80:active {
  --tw-shadow-color: rgb(187 247 208 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-200\/90:active {
  --tw-shadow-color: rgb(187 247 208 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-300:active {
  --tw-shadow-color: #86efac;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-300\/10:active {
  --tw-shadow-color: rgb(134 239 172 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-300\/20:active {
  --tw-shadow-color: rgb(134 239 172 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-300\/30:active {
  --tw-shadow-color: rgb(134 239 172 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-300\/40:active {
  --tw-shadow-color: rgb(134 239 172 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-300\/5:active {
  --tw-shadow-color: rgb(134 239 172 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-300\/50:active {
  --tw-shadow-color: rgb(134 239 172 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-300\/60:active {
  --tw-shadow-color: rgb(134 239 172 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-300\/70:active {
  --tw-shadow-color: rgb(134 239 172 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-300\/80:active {
  --tw-shadow-color: rgb(134 239 172 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-300\/90:active {
  --tw-shadow-color: rgb(134 239 172 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-400:active {
  --tw-shadow-color: #4ade80;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-400\/10:active {
  --tw-shadow-color: rgb(74 222 128 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-400\/20:active {
  --tw-shadow-color: rgb(74 222 128 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-400\/30:active {
  --tw-shadow-color: rgb(74 222 128 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-400\/40:active {
  --tw-shadow-color: rgb(74 222 128 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-400\/5:active {
  --tw-shadow-color: rgb(74 222 128 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-400\/50:active {
  --tw-shadow-color: rgb(74 222 128 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-400\/60:active {
  --tw-shadow-color: rgb(74 222 128 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-400\/70:active {
  --tw-shadow-color: rgb(74 222 128 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-400\/80:active {
  --tw-shadow-color: rgb(74 222 128 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-400\/90:active {
  --tw-shadow-color: rgb(74 222 128 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-50:active {
  --tw-shadow-color: #f0fdf4;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-50\/10:active {
  --tw-shadow-color: rgb(240 253 244 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-50\/20:active {
  --tw-shadow-color: rgb(240 253 244 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-50\/30:active {
  --tw-shadow-color: rgb(240 253 244 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-50\/40:active {
  --tw-shadow-color: rgb(240 253 244 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-50\/5:active {
  --tw-shadow-color: rgb(240 253 244 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-50\/50:active {
  --tw-shadow-color: rgb(240 253 244 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-50\/60:active {
  --tw-shadow-color: rgb(240 253 244 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-50\/70:active {
  --tw-shadow-color: rgb(240 253 244 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-50\/80:active {
  --tw-shadow-color: rgb(240 253 244 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-50\/90:active {
  --tw-shadow-color: rgb(240 253 244 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-500:active {
  --tw-shadow-color: #22c55e;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-500\/10:active {
  --tw-shadow-color: rgb(34 197 94 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-500\/20:active {
  --tw-shadow-color: rgb(34 197 94 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-500\/30:active {
  --tw-shadow-color: rgb(34 197 94 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-500\/40:active {
  --tw-shadow-color: rgb(34 197 94 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-500\/5:active {
  --tw-shadow-color: rgb(34 197 94 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-500\/50:active {
  --tw-shadow-color: rgb(34 197 94 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-500\/60:active {
  --tw-shadow-color: rgb(34 197 94 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-500\/70:active {
  --tw-shadow-color: rgb(34 197 94 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-500\/80:active {
  --tw-shadow-color: rgb(34 197 94 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-500\/90:active {
  --tw-shadow-color: rgb(34 197 94 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-600:active {
  --tw-shadow-color: #16a34a;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-600\/10:active {
  --tw-shadow-color: rgb(22 163 74 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-600\/20:active {
  --tw-shadow-color: rgb(22 163 74 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-600\/30:active {
  --tw-shadow-color: rgb(22 163 74 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-600\/40:active {
  --tw-shadow-color: rgb(22 163 74 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-600\/5:active {
  --tw-shadow-color: rgb(22 163 74 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-600\/50:active {
  --tw-shadow-color: rgb(22 163 74 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-600\/60:active {
  --tw-shadow-color: rgb(22 163 74 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-600\/70:active {
  --tw-shadow-color: rgb(22 163 74 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-600\/80:active {
  --tw-shadow-color: rgb(22 163 74 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-600\/90:active {
  --tw-shadow-color: rgb(22 163 74 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-700:active {
  --tw-shadow-color: #15803d;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-700\/10:active {
  --tw-shadow-color: rgb(21 128 61 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-700\/20:active {
  --tw-shadow-color: rgb(21 128 61 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-700\/30:active {
  --tw-shadow-color: rgb(21 128 61 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-700\/40:active {
  --tw-shadow-color: rgb(21 128 61 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-700\/5:active {
  --tw-shadow-color: rgb(21 128 61 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-700\/50:active {
  --tw-shadow-color: rgb(21 128 61 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-700\/60:active {
  --tw-shadow-color: rgb(21 128 61 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-700\/70:active {
  --tw-shadow-color: rgb(21 128 61 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-700\/80:active {
  --tw-shadow-color: rgb(21 128 61 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-700\/90:active {
  --tw-shadow-color: rgb(21 128 61 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-800:active {
  --tw-shadow-color: #166534;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-800\/10:active {
  --tw-shadow-color: rgb(22 101 52 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-800\/20:active {
  --tw-shadow-color: rgb(22 101 52 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-800\/30:active {
  --tw-shadow-color: rgb(22 101 52 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-800\/40:active {
  --tw-shadow-color: rgb(22 101 52 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-800\/5:active {
  --tw-shadow-color: rgb(22 101 52 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-800\/50:active {
  --tw-shadow-color: rgb(22 101 52 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-800\/60:active {
  --tw-shadow-color: rgb(22 101 52 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-800\/70:active {
  --tw-shadow-color: rgb(22 101 52 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-800\/80:active {
  --tw-shadow-color: rgb(22 101 52 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-800\/90:active {
  --tw-shadow-color: rgb(22 101 52 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-900:active {
  --tw-shadow-color: #14532d;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-900\/10:active {
  --tw-shadow-color: rgb(20 83 45 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-900\/20:active {
  --tw-shadow-color: rgb(20 83 45 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-900\/30:active {
  --tw-shadow-color: rgb(20 83 45 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-900\/40:active {
  --tw-shadow-color: rgb(20 83 45 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-900\/5:active {
  --tw-shadow-color: rgb(20 83 45 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-900\/50:active {
  --tw-shadow-color: rgb(20 83 45 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-900\/60:active {
  --tw-shadow-color: rgb(20 83 45 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-900\/70:active {
  --tw-shadow-color: rgb(20 83 45 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-900\/80:active {
  --tw-shadow-color: rgb(20 83 45 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-900\/90:active {
  --tw-shadow-color: rgb(20 83 45 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-950:active {
  --tw-shadow-color: #052e16;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-950\/10:active {
  --tw-shadow-color: rgb(5 46 22 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-950\/20:active {
  --tw-shadow-color: rgb(5 46 22 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-950\/30:active {
  --tw-shadow-color: rgb(5 46 22 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-950\/40:active {
  --tw-shadow-color: rgb(5 46 22 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-950\/5:active {
  --tw-shadow-color: rgb(5 46 22 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-950\/50:active {
  --tw-shadow-color: rgb(5 46 22 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-950\/60:active {
  --tw-shadow-color: rgb(5 46 22 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-950\/70:active {
  --tw-shadow-color: rgb(5 46 22 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-950\/80:active {
  --tw-shadow-color: rgb(5 46 22 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-green-950\/90:active {
  --tw-shadow-color: rgb(5 46 22 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-100:active {
  --tw-shadow-color: #e0e7ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-100\/10:active {
  --tw-shadow-color: rgb(224 231 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-100\/20:active {
  --tw-shadow-color: rgb(224 231 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-100\/30:active {
  --tw-shadow-color: rgb(224 231 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-100\/40:active {
  --tw-shadow-color: rgb(224 231 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-100\/5:active {
  --tw-shadow-color: rgb(224 231 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-100\/50:active {
  --tw-shadow-color: rgb(224 231 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-100\/60:active {
  --tw-shadow-color: rgb(224 231 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-100\/70:active {
  --tw-shadow-color: rgb(224 231 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-100\/80:active {
  --tw-shadow-color: rgb(224 231 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-100\/90:active {
  --tw-shadow-color: rgb(224 231 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-200:active {
  --tw-shadow-color: #c7d2fe;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-200\/10:active {
  --tw-shadow-color: rgb(199 210 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-200\/20:active {
  --tw-shadow-color: rgb(199 210 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-200\/30:active {
  --tw-shadow-color: rgb(199 210 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-200\/40:active {
  --tw-shadow-color: rgb(199 210 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-200\/5:active {
  --tw-shadow-color: rgb(199 210 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-200\/50:active {
  --tw-shadow-color: rgb(199 210 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-200\/60:active {
  --tw-shadow-color: rgb(199 210 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-200\/70:active {
  --tw-shadow-color: rgb(199 210 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-200\/80:active {
  --tw-shadow-color: rgb(199 210 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-200\/90:active {
  --tw-shadow-color: rgb(199 210 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-300:active {
  --tw-shadow-color: #a5b4fc;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-300\/10:active {
  --tw-shadow-color: rgb(165 180 252 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-300\/20:active {
  --tw-shadow-color: rgb(165 180 252 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-300\/30:active {
  --tw-shadow-color: rgb(165 180 252 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-300\/40:active {
  --tw-shadow-color: rgb(165 180 252 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-300\/5:active {
  --tw-shadow-color: rgb(165 180 252 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-300\/50:active {
  --tw-shadow-color: rgb(165 180 252 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-300\/60:active {
  --tw-shadow-color: rgb(165 180 252 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-300\/70:active {
  --tw-shadow-color: rgb(165 180 252 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-300\/80:active {
  --tw-shadow-color: rgb(165 180 252 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-300\/90:active {
  --tw-shadow-color: rgb(165 180 252 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-400:active {
  --tw-shadow-color: #818cf8;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-400\/10:active {
  --tw-shadow-color: rgb(129 140 248 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-400\/20:active {
  --tw-shadow-color: rgb(129 140 248 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-400\/30:active {
  --tw-shadow-color: rgb(129 140 248 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-400\/40:active {
  --tw-shadow-color: rgb(129 140 248 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-400\/5:active {
  --tw-shadow-color: rgb(129 140 248 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-400\/50:active {
  --tw-shadow-color: rgb(129 140 248 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-400\/60:active {
  --tw-shadow-color: rgb(129 140 248 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-400\/70:active {
  --tw-shadow-color: rgb(129 140 248 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-400\/80:active {
  --tw-shadow-color: rgb(129 140 248 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-400\/90:active {
  --tw-shadow-color: rgb(129 140 248 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-50:active {
  --tw-shadow-color: #eef2ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-50\/10:active {
  --tw-shadow-color: rgb(238 242 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-50\/20:active {
  --tw-shadow-color: rgb(238 242 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-50\/30:active {
  --tw-shadow-color: rgb(238 242 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-50\/40:active {
  --tw-shadow-color: rgb(238 242 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-50\/5:active {
  --tw-shadow-color: rgb(238 242 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-50\/50:active {
  --tw-shadow-color: rgb(238 242 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-50\/60:active {
  --tw-shadow-color: rgb(238 242 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-50\/70:active {
  --tw-shadow-color: rgb(238 242 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-50\/80:active {
  --tw-shadow-color: rgb(238 242 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-50\/90:active {
  --tw-shadow-color: rgb(238 242 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-500:active {
  --tw-shadow-color: #6366f1;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-500\/10:active {
  --tw-shadow-color: rgb(99 102 241 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-500\/20:active {
  --tw-shadow-color: rgb(99 102 241 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-500\/30:active {
  --tw-shadow-color: rgb(99 102 241 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-500\/40:active {
  --tw-shadow-color: rgb(99 102 241 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-500\/5:active {
  --tw-shadow-color: rgb(99 102 241 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-500\/50:active {
  --tw-shadow-color: rgb(99 102 241 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-500\/60:active {
  --tw-shadow-color: rgb(99 102 241 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-500\/70:active {
  --tw-shadow-color: rgb(99 102 241 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-500\/80:active {
  --tw-shadow-color: rgb(99 102 241 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-500\/90:active {
  --tw-shadow-color: rgb(99 102 241 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-600:active {
  --tw-shadow-color: #4f46e5;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-600\/10:active {
  --tw-shadow-color: rgb(79 70 229 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-600\/20:active {
  --tw-shadow-color: rgb(79 70 229 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-600\/30:active {
  --tw-shadow-color: rgb(79 70 229 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-600\/40:active {
  --tw-shadow-color: rgb(79 70 229 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-600\/5:active {
  --tw-shadow-color: rgb(79 70 229 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-600\/50:active {
  --tw-shadow-color: rgb(79 70 229 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-600\/60:active {
  --tw-shadow-color: rgb(79 70 229 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-600\/70:active {
  --tw-shadow-color: rgb(79 70 229 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-600\/80:active {
  --tw-shadow-color: rgb(79 70 229 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-600\/90:active {
  --tw-shadow-color: rgb(79 70 229 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-700:active {
  --tw-shadow-color: #4338ca;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-700\/10:active {
  --tw-shadow-color: rgb(67 56 202 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-700\/20:active {
  --tw-shadow-color: rgb(67 56 202 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-700\/30:active {
  --tw-shadow-color: rgb(67 56 202 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-700\/40:active {
  --tw-shadow-color: rgb(67 56 202 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-700\/5:active {
  --tw-shadow-color: rgb(67 56 202 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-700\/50:active {
  --tw-shadow-color: rgb(67 56 202 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-700\/60:active {
  --tw-shadow-color: rgb(67 56 202 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-700\/70:active {
  --tw-shadow-color: rgb(67 56 202 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-700\/80:active {
  --tw-shadow-color: rgb(67 56 202 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-700\/90:active {
  --tw-shadow-color: rgb(67 56 202 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-800:active {
  --tw-shadow-color: #3730a3;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-800\/10:active {
  --tw-shadow-color: rgb(55 48 163 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-800\/20:active {
  --tw-shadow-color: rgb(55 48 163 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-800\/30:active {
  --tw-shadow-color: rgb(55 48 163 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-800\/40:active {
  --tw-shadow-color: rgb(55 48 163 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-800\/5:active {
  --tw-shadow-color: rgb(55 48 163 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-800\/50:active {
  --tw-shadow-color: rgb(55 48 163 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-800\/60:active {
  --tw-shadow-color: rgb(55 48 163 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-800\/70:active {
  --tw-shadow-color: rgb(55 48 163 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-800\/80:active {
  --tw-shadow-color: rgb(55 48 163 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-800\/90:active {
  --tw-shadow-color: rgb(55 48 163 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-900:active {
  --tw-shadow-color: #312e81;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-900\/10:active {
  --tw-shadow-color: rgb(49 46 129 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-900\/20:active {
  --tw-shadow-color: rgb(49 46 129 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-900\/30:active {
  --tw-shadow-color: rgb(49 46 129 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-900\/40:active {
  --tw-shadow-color: rgb(49 46 129 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-900\/5:active {
  --tw-shadow-color: rgb(49 46 129 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-900\/50:active {
  --tw-shadow-color: rgb(49 46 129 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-900\/60:active {
  --tw-shadow-color: rgb(49 46 129 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-900\/70:active {
  --tw-shadow-color: rgb(49 46 129 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-900\/80:active {
  --tw-shadow-color: rgb(49 46 129 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-900\/90:active {
  --tw-shadow-color: rgb(49 46 129 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-950:active {
  --tw-shadow-color: #1e1b4b;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-950\/10:active {
  --tw-shadow-color: rgb(30 27 75 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-950\/20:active {
  --tw-shadow-color: rgb(30 27 75 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-950\/30:active {
  --tw-shadow-color: rgb(30 27 75 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-950\/40:active {
  --tw-shadow-color: rgb(30 27 75 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-950\/5:active {
  --tw-shadow-color: rgb(30 27 75 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-950\/50:active {
  --tw-shadow-color: rgb(30 27 75 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-950\/60:active {
  --tw-shadow-color: rgb(30 27 75 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-950\/70:active {
  --tw-shadow-color: rgb(30 27 75 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-950\/80:active {
  --tw-shadow-color: rgb(30 27 75 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-indigo-950\/90:active {
  --tw-shadow-color: rgb(30 27 75 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-100:active {
  --tw-shadow-color: #ecfccb;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-100\/10:active {
  --tw-shadow-color: rgb(236 252 203 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-100\/20:active {
  --tw-shadow-color: rgb(236 252 203 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-100\/30:active {
  --tw-shadow-color: rgb(236 252 203 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-100\/40:active {
  --tw-shadow-color: rgb(236 252 203 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-100\/5:active {
  --tw-shadow-color: rgb(236 252 203 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-100\/50:active {
  --tw-shadow-color: rgb(236 252 203 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-100\/60:active {
  --tw-shadow-color: rgb(236 252 203 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-100\/70:active {
  --tw-shadow-color: rgb(236 252 203 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-100\/80:active {
  --tw-shadow-color: rgb(236 252 203 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-100\/90:active {
  --tw-shadow-color: rgb(236 252 203 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-200:active {
  --tw-shadow-color: #d9f99d;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-200\/10:active {
  --tw-shadow-color: rgb(217 249 157 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-200\/20:active {
  --tw-shadow-color: rgb(217 249 157 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-200\/30:active {
  --tw-shadow-color: rgb(217 249 157 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-200\/40:active {
  --tw-shadow-color: rgb(217 249 157 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-200\/5:active {
  --tw-shadow-color: rgb(217 249 157 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-200\/50:active {
  --tw-shadow-color: rgb(217 249 157 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-200\/60:active {
  --tw-shadow-color: rgb(217 249 157 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-200\/70:active {
  --tw-shadow-color: rgb(217 249 157 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-200\/80:active {
  --tw-shadow-color: rgb(217 249 157 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-200\/90:active {
  --tw-shadow-color: rgb(217 249 157 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-300:active {
  --tw-shadow-color: #bef264;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-300\/10:active {
  --tw-shadow-color: rgb(190 242 100 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-300\/20:active {
  --tw-shadow-color: rgb(190 242 100 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-300\/30:active {
  --tw-shadow-color: rgb(190 242 100 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-300\/40:active {
  --tw-shadow-color: rgb(190 242 100 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-300\/5:active {
  --tw-shadow-color: rgb(190 242 100 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-300\/50:active {
  --tw-shadow-color: rgb(190 242 100 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-300\/60:active {
  --tw-shadow-color: rgb(190 242 100 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-300\/70:active {
  --tw-shadow-color: rgb(190 242 100 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-300\/80:active {
  --tw-shadow-color: rgb(190 242 100 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-300\/90:active {
  --tw-shadow-color: rgb(190 242 100 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-400:active {
  --tw-shadow-color: #a3e635;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-400\/10:active {
  --tw-shadow-color: rgb(163 230 53 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-400\/20:active {
  --tw-shadow-color: rgb(163 230 53 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-400\/30:active {
  --tw-shadow-color: rgb(163 230 53 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-400\/40:active {
  --tw-shadow-color: rgb(163 230 53 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-400\/5:active {
  --tw-shadow-color: rgb(163 230 53 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-400\/50:active {
  --tw-shadow-color: rgb(163 230 53 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-400\/60:active {
  --tw-shadow-color: rgb(163 230 53 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-400\/70:active {
  --tw-shadow-color: rgb(163 230 53 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-400\/80:active {
  --tw-shadow-color: rgb(163 230 53 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-400\/90:active {
  --tw-shadow-color: rgb(163 230 53 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-50:active {
  --tw-shadow-color: #f7fee7;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-50\/10:active {
  --tw-shadow-color: rgb(247 254 231 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-50\/20:active {
  --tw-shadow-color: rgb(247 254 231 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-50\/30:active {
  --tw-shadow-color: rgb(247 254 231 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-50\/40:active {
  --tw-shadow-color: rgb(247 254 231 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-50\/5:active {
  --tw-shadow-color: rgb(247 254 231 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-50\/50:active {
  --tw-shadow-color: rgb(247 254 231 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-50\/60:active {
  --tw-shadow-color: rgb(247 254 231 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-50\/70:active {
  --tw-shadow-color: rgb(247 254 231 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-50\/80:active {
  --tw-shadow-color: rgb(247 254 231 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-50\/90:active {
  --tw-shadow-color: rgb(247 254 231 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-500:active {
  --tw-shadow-color: #84cc16;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-500\/10:active {
  --tw-shadow-color: rgb(132 204 22 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-500\/20:active {
  --tw-shadow-color: rgb(132 204 22 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-500\/30:active {
  --tw-shadow-color: rgb(132 204 22 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-500\/40:active {
  --tw-shadow-color: rgb(132 204 22 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-500\/5:active {
  --tw-shadow-color: rgb(132 204 22 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-500\/50:active {
  --tw-shadow-color: rgb(132 204 22 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-500\/60:active {
  --tw-shadow-color: rgb(132 204 22 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-500\/70:active {
  --tw-shadow-color: rgb(132 204 22 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-500\/80:active {
  --tw-shadow-color: rgb(132 204 22 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-500\/90:active {
  --tw-shadow-color: rgb(132 204 22 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-600:active {
  --tw-shadow-color: #65a30d;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-600\/10:active {
  --tw-shadow-color: rgb(101 163 13 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-600\/20:active {
  --tw-shadow-color: rgb(101 163 13 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-600\/30:active {
  --tw-shadow-color: rgb(101 163 13 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-600\/40:active {
  --tw-shadow-color: rgb(101 163 13 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-600\/5:active {
  --tw-shadow-color: rgb(101 163 13 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-600\/50:active {
  --tw-shadow-color: rgb(101 163 13 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-600\/60:active {
  --tw-shadow-color: rgb(101 163 13 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-600\/70:active {
  --tw-shadow-color: rgb(101 163 13 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-600\/80:active {
  --tw-shadow-color: rgb(101 163 13 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-600\/90:active {
  --tw-shadow-color: rgb(101 163 13 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-700:active {
  --tw-shadow-color: #4d7c0f;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-700\/10:active {
  --tw-shadow-color: rgb(77 124 15 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-700\/20:active {
  --tw-shadow-color: rgb(77 124 15 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-700\/30:active {
  --tw-shadow-color: rgb(77 124 15 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-700\/40:active {
  --tw-shadow-color: rgb(77 124 15 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-700\/5:active {
  --tw-shadow-color: rgb(77 124 15 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-700\/50:active {
  --tw-shadow-color: rgb(77 124 15 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-700\/60:active {
  --tw-shadow-color: rgb(77 124 15 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-700\/70:active {
  --tw-shadow-color: rgb(77 124 15 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-700\/80:active {
  --tw-shadow-color: rgb(77 124 15 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-700\/90:active {
  --tw-shadow-color: rgb(77 124 15 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-800:active {
  --tw-shadow-color: #3f6212;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-800\/10:active {
  --tw-shadow-color: rgb(63 98 18 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-800\/20:active {
  --tw-shadow-color: rgb(63 98 18 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-800\/30:active {
  --tw-shadow-color: rgb(63 98 18 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-800\/40:active {
  --tw-shadow-color: rgb(63 98 18 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-800\/5:active {
  --tw-shadow-color: rgb(63 98 18 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-800\/50:active {
  --tw-shadow-color: rgb(63 98 18 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-800\/60:active {
  --tw-shadow-color: rgb(63 98 18 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-800\/70:active {
  --tw-shadow-color: rgb(63 98 18 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-800\/80:active {
  --tw-shadow-color: rgb(63 98 18 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-800\/90:active {
  --tw-shadow-color: rgb(63 98 18 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-900:active {
  --tw-shadow-color: #365314;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-900\/10:active {
  --tw-shadow-color: rgb(54 83 20 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-900\/20:active {
  --tw-shadow-color: rgb(54 83 20 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-900\/30:active {
  --tw-shadow-color: rgb(54 83 20 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-900\/40:active {
  --tw-shadow-color: rgb(54 83 20 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-900\/5:active {
  --tw-shadow-color: rgb(54 83 20 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-900\/50:active {
  --tw-shadow-color: rgb(54 83 20 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-900\/60:active {
  --tw-shadow-color: rgb(54 83 20 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-900\/70:active {
  --tw-shadow-color: rgb(54 83 20 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-900\/80:active {
  --tw-shadow-color: rgb(54 83 20 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-900\/90:active {
  --tw-shadow-color: rgb(54 83 20 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-950:active {
  --tw-shadow-color: #1a2e05;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-950\/10:active {
  --tw-shadow-color: rgb(26 46 5 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-950\/20:active {
  --tw-shadow-color: rgb(26 46 5 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-950\/30:active {
  --tw-shadow-color: rgb(26 46 5 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-950\/40:active {
  --tw-shadow-color: rgb(26 46 5 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-950\/5:active {
  --tw-shadow-color: rgb(26 46 5 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-950\/50:active {
  --tw-shadow-color: rgb(26 46 5 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-950\/60:active {
  --tw-shadow-color: rgb(26 46 5 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-950\/70:active {
  --tw-shadow-color: rgb(26 46 5 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-950\/80:active {
  --tw-shadow-color: rgb(26 46 5 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-lime-950\/90:active {
  --tw-shadow-color: rgb(26 46 5 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-100:active {
  --tw-shadow-color: #f5f5f5;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-100\/10:active {
  --tw-shadow-color: rgb(245 245 245 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-100\/20:active {
  --tw-shadow-color: rgb(245 245 245 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-100\/30:active {
  --tw-shadow-color: rgb(245 245 245 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-100\/40:active {
  --tw-shadow-color: rgb(245 245 245 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-100\/5:active {
  --tw-shadow-color: rgb(245 245 245 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-100\/50:active {
  --tw-shadow-color: rgb(245 245 245 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-100\/60:active {
  --tw-shadow-color: rgb(245 245 245 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-100\/70:active {
  --tw-shadow-color: rgb(245 245 245 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-100\/80:active {
  --tw-shadow-color: rgb(245 245 245 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-100\/90:active {
  --tw-shadow-color: rgb(245 245 245 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-200:active {
  --tw-shadow-color: #e5e5e5;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-200\/10:active {
  --tw-shadow-color: rgb(229 229 229 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-200\/20:active {
  --tw-shadow-color: rgb(229 229 229 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-200\/30:active {
  --tw-shadow-color: rgb(229 229 229 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-200\/40:active {
  --tw-shadow-color: rgb(229 229 229 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-200\/5:active {
  --tw-shadow-color: rgb(229 229 229 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-200\/50:active {
  --tw-shadow-color: rgb(229 229 229 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-200\/60:active {
  --tw-shadow-color: rgb(229 229 229 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-200\/70:active {
  --tw-shadow-color: rgb(229 229 229 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-200\/80:active {
  --tw-shadow-color: rgb(229 229 229 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-200\/90:active {
  --tw-shadow-color: rgb(229 229 229 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-300:active {
  --tw-shadow-color: #d4d4d4;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-300\/10:active {
  --tw-shadow-color: rgb(212 212 212 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-300\/20:active {
  --tw-shadow-color: rgb(212 212 212 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-300\/30:active {
  --tw-shadow-color: rgb(212 212 212 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-300\/40:active {
  --tw-shadow-color: rgb(212 212 212 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-300\/5:active {
  --tw-shadow-color: rgb(212 212 212 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-300\/50:active {
  --tw-shadow-color: rgb(212 212 212 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-300\/60:active {
  --tw-shadow-color: rgb(212 212 212 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-300\/70:active {
  --tw-shadow-color: rgb(212 212 212 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-300\/80:active {
  --tw-shadow-color: rgb(212 212 212 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-300\/90:active {
  --tw-shadow-color: rgb(212 212 212 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-400:active {
  --tw-shadow-color: #a3a3a3;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-400\/10:active {
  --tw-shadow-color: rgb(163 163 163 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-400\/20:active {
  --tw-shadow-color: rgb(163 163 163 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-400\/30:active {
  --tw-shadow-color: rgb(163 163 163 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-400\/40:active {
  --tw-shadow-color: rgb(163 163 163 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-400\/5:active {
  --tw-shadow-color: rgb(163 163 163 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-400\/50:active {
  --tw-shadow-color: rgb(163 163 163 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-400\/60:active {
  --tw-shadow-color: rgb(163 163 163 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-400\/70:active {
  --tw-shadow-color: rgb(163 163 163 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-400\/80:active {
  --tw-shadow-color: rgb(163 163 163 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-400\/90:active {
  --tw-shadow-color: rgb(163 163 163 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-50:active {
  --tw-shadow-color: #fafafa;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-50\/10:active {
  --tw-shadow-color: rgb(250 250 250 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-50\/20:active {
  --tw-shadow-color: rgb(250 250 250 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-50\/30:active {
  --tw-shadow-color: rgb(250 250 250 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-50\/40:active {
  --tw-shadow-color: rgb(250 250 250 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-50\/5:active {
  --tw-shadow-color: rgb(250 250 250 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-50\/50:active {
  --tw-shadow-color: rgb(250 250 250 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-50\/60:active {
  --tw-shadow-color: rgb(250 250 250 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-50\/70:active {
  --tw-shadow-color: rgb(250 250 250 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-50\/80:active {
  --tw-shadow-color: rgb(250 250 250 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-50\/90:active {
  --tw-shadow-color: rgb(250 250 250 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-500:active {
  --tw-shadow-color: #737373;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-500\/10:active {
  --tw-shadow-color: rgb(115 115 115 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-500\/20:active {
  --tw-shadow-color: rgb(115 115 115 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-500\/30:active {
  --tw-shadow-color: rgb(115 115 115 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-500\/40:active {
  --tw-shadow-color: rgb(115 115 115 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-500\/5:active {
  --tw-shadow-color: rgb(115 115 115 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-500\/50:active {
  --tw-shadow-color: rgb(115 115 115 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-500\/60:active {
  --tw-shadow-color: rgb(115 115 115 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-500\/70:active {
  --tw-shadow-color: rgb(115 115 115 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-500\/80:active {
  --tw-shadow-color: rgb(115 115 115 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-500\/90:active {
  --tw-shadow-color: rgb(115 115 115 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-600:active {
  --tw-shadow-color: #525252;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-600\/10:active {
  --tw-shadow-color: rgb(82 82 82 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-600\/20:active {
  --tw-shadow-color: rgb(82 82 82 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-600\/30:active {
  --tw-shadow-color: rgb(82 82 82 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-600\/40:active {
  --tw-shadow-color: rgb(82 82 82 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-600\/5:active {
  --tw-shadow-color: rgb(82 82 82 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-600\/50:active {
  --tw-shadow-color: rgb(82 82 82 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-600\/60:active {
  --tw-shadow-color: rgb(82 82 82 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-600\/70:active {
  --tw-shadow-color: rgb(82 82 82 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-600\/80:active {
  --tw-shadow-color: rgb(82 82 82 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-600\/90:active {
  --tw-shadow-color: rgb(82 82 82 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-700:active {
  --tw-shadow-color: #404040;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-700\/10:active {
  --tw-shadow-color: rgb(64 64 64 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-700\/20:active {
  --tw-shadow-color: rgb(64 64 64 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-700\/30:active {
  --tw-shadow-color: rgb(64 64 64 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-700\/40:active {
  --tw-shadow-color: rgb(64 64 64 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-700\/5:active {
  --tw-shadow-color: rgb(64 64 64 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-700\/50:active {
  --tw-shadow-color: rgb(64 64 64 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-700\/60:active {
  --tw-shadow-color: rgb(64 64 64 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-700\/70:active {
  --tw-shadow-color: rgb(64 64 64 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-700\/80:active {
  --tw-shadow-color: rgb(64 64 64 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-700\/90:active {
  --tw-shadow-color: rgb(64 64 64 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-800:active {
  --tw-shadow-color: #262626;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-800\/10:active {
  --tw-shadow-color: rgb(38 38 38 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-800\/20:active {
  --tw-shadow-color: rgb(38 38 38 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-800\/30:active {
  --tw-shadow-color: rgb(38 38 38 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-800\/40:active {
  --tw-shadow-color: rgb(38 38 38 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-800\/5:active {
  --tw-shadow-color: rgb(38 38 38 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-800\/50:active {
  --tw-shadow-color: rgb(38 38 38 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-800\/60:active {
  --tw-shadow-color: rgb(38 38 38 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-800\/70:active {
  --tw-shadow-color: rgb(38 38 38 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-800\/80:active {
  --tw-shadow-color: rgb(38 38 38 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-800\/90:active {
  --tw-shadow-color: rgb(38 38 38 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-900:active {
  --tw-shadow-color: #171717;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-900\/10:active {
  --tw-shadow-color: rgb(23 23 23 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-900\/20:active {
  --tw-shadow-color: rgb(23 23 23 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-900\/30:active {
  --tw-shadow-color: rgb(23 23 23 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-900\/40:active {
  --tw-shadow-color: rgb(23 23 23 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-900\/5:active {
  --tw-shadow-color: rgb(23 23 23 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-900\/50:active {
  --tw-shadow-color: rgb(23 23 23 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-900\/60:active {
  --tw-shadow-color: rgb(23 23 23 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-900\/70:active {
  --tw-shadow-color: rgb(23 23 23 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-900\/80:active {
  --tw-shadow-color: rgb(23 23 23 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-900\/90:active {
  --tw-shadow-color: rgb(23 23 23 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-950:active {
  --tw-shadow-color: #0a0a0a;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-950\/10:active {
  --tw-shadow-color: rgb(10 10 10 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-950\/20:active {
  --tw-shadow-color: rgb(10 10 10 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-950\/30:active {
  --tw-shadow-color: rgb(10 10 10 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-950\/40:active {
  --tw-shadow-color: rgb(10 10 10 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-950\/5:active {
  --tw-shadow-color: rgb(10 10 10 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-950\/50:active {
  --tw-shadow-color: rgb(10 10 10 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-950\/60:active {
  --tw-shadow-color: rgb(10 10 10 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-950\/70:active {
  --tw-shadow-color: rgb(10 10 10 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-950\/80:active {
  --tw-shadow-color: rgb(10 10 10 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-neutral-950\/90:active {
  --tw-shadow-color: rgb(10 10 10 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-100:active {
  --tw-shadow-color: #ffedd5;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-100\/10:active {
  --tw-shadow-color: rgb(255 237 213 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-100\/20:active {
  --tw-shadow-color: rgb(255 237 213 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-100\/30:active {
  --tw-shadow-color: rgb(255 237 213 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-100\/40:active {
  --tw-shadow-color: rgb(255 237 213 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-100\/5:active {
  --tw-shadow-color: rgb(255 237 213 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-100\/50:active {
  --tw-shadow-color: rgb(255 237 213 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-100\/60:active {
  --tw-shadow-color: rgb(255 237 213 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-100\/70:active {
  --tw-shadow-color: rgb(255 237 213 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-100\/80:active {
  --tw-shadow-color: rgb(255 237 213 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-100\/90:active {
  --tw-shadow-color: rgb(255 237 213 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-200:active {
  --tw-shadow-color: #fed7aa;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-200\/10:active {
  --tw-shadow-color: rgb(254 215 170 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-200\/20:active {
  --tw-shadow-color: rgb(254 215 170 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-200\/30:active {
  --tw-shadow-color: rgb(254 215 170 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-200\/40:active {
  --tw-shadow-color: rgb(254 215 170 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-200\/5:active {
  --tw-shadow-color: rgb(254 215 170 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-200\/50:active {
  --tw-shadow-color: rgb(254 215 170 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-200\/60:active {
  --tw-shadow-color: rgb(254 215 170 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-200\/70:active {
  --tw-shadow-color: rgb(254 215 170 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-200\/80:active {
  --tw-shadow-color: rgb(254 215 170 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-200\/90:active {
  --tw-shadow-color: rgb(254 215 170 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-300:active {
  --tw-shadow-color: #fdba74;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-300\/10:active {
  --tw-shadow-color: rgb(253 186 116 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-300\/20:active {
  --tw-shadow-color: rgb(253 186 116 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-300\/30:active {
  --tw-shadow-color: rgb(253 186 116 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-300\/40:active {
  --tw-shadow-color: rgb(253 186 116 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-300\/5:active {
  --tw-shadow-color: rgb(253 186 116 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-300\/50:active {
  --tw-shadow-color: rgb(253 186 116 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-300\/60:active {
  --tw-shadow-color: rgb(253 186 116 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-300\/70:active {
  --tw-shadow-color: rgb(253 186 116 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-300\/80:active {
  --tw-shadow-color: rgb(253 186 116 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-300\/90:active {
  --tw-shadow-color: rgb(253 186 116 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-400:active {
  --tw-shadow-color: #fb923c;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-400\/10:active {
  --tw-shadow-color: rgb(251 146 60 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-400\/20:active {
  --tw-shadow-color: rgb(251 146 60 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-400\/30:active {
  --tw-shadow-color: rgb(251 146 60 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-400\/40:active {
  --tw-shadow-color: rgb(251 146 60 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-400\/5:active {
  --tw-shadow-color: rgb(251 146 60 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-400\/50:active {
  --tw-shadow-color: rgb(251 146 60 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-400\/60:active {
  --tw-shadow-color: rgb(251 146 60 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-400\/70:active {
  --tw-shadow-color: rgb(251 146 60 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-400\/80:active {
  --tw-shadow-color: rgb(251 146 60 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-400\/90:active {
  --tw-shadow-color: rgb(251 146 60 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-50:active {
  --tw-shadow-color: #fff7ed;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-50\/10:active {
  --tw-shadow-color: rgb(255 247 237 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-50\/20:active {
  --tw-shadow-color: rgb(255 247 237 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-50\/30:active {
  --tw-shadow-color: rgb(255 247 237 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-50\/40:active {
  --tw-shadow-color: rgb(255 247 237 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-50\/5:active {
  --tw-shadow-color: rgb(255 247 237 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-50\/50:active {
  --tw-shadow-color: rgb(255 247 237 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-50\/60:active {
  --tw-shadow-color: rgb(255 247 237 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-50\/70:active {
  --tw-shadow-color: rgb(255 247 237 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-50\/80:active {
  --tw-shadow-color: rgb(255 247 237 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-50\/90:active {
  --tw-shadow-color: rgb(255 247 237 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-500:active {
  --tw-shadow-color: #f97316;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-500\/10:active {
  --tw-shadow-color: rgb(249 115 22 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-500\/20:active {
  --tw-shadow-color: rgb(249 115 22 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-500\/30:active {
  --tw-shadow-color: rgb(249 115 22 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-500\/40:active {
  --tw-shadow-color: rgb(249 115 22 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-500\/5:active {
  --tw-shadow-color: rgb(249 115 22 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-500\/50:active {
  --tw-shadow-color: rgb(249 115 22 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-500\/60:active {
  --tw-shadow-color: rgb(249 115 22 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-500\/70:active {
  --tw-shadow-color: rgb(249 115 22 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-500\/80:active {
  --tw-shadow-color: rgb(249 115 22 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-500\/90:active {
  --tw-shadow-color: rgb(249 115 22 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-600:active {
  --tw-shadow-color: #ea580c;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-600\/10:active {
  --tw-shadow-color: rgb(234 88 12 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-600\/20:active {
  --tw-shadow-color: rgb(234 88 12 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-600\/30:active {
  --tw-shadow-color: rgb(234 88 12 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-600\/40:active {
  --tw-shadow-color: rgb(234 88 12 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-600\/5:active {
  --tw-shadow-color: rgb(234 88 12 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-600\/50:active {
  --tw-shadow-color: rgb(234 88 12 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-600\/60:active {
  --tw-shadow-color: rgb(234 88 12 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-600\/70:active {
  --tw-shadow-color: rgb(234 88 12 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-600\/80:active {
  --tw-shadow-color: rgb(234 88 12 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-600\/90:active {
  --tw-shadow-color: rgb(234 88 12 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-700:active {
  --tw-shadow-color: #c2410c;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-700\/10:active {
  --tw-shadow-color: rgb(194 65 12 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-700\/20:active {
  --tw-shadow-color: rgb(194 65 12 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-700\/30:active {
  --tw-shadow-color: rgb(194 65 12 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-700\/40:active {
  --tw-shadow-color: rgb(194 65 12 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-700\/5:active {
  --tw-shadow-color: rgb(194 65 12 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-700\/50:active {
  --tw-shadow-color: rgb(194 65 12 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-700\/60:active {
  --tw-shadow-color: rgb(194 65 12 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-700\/70:active {
  --tw-shadow-color: rgb(194 65 12 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-700\/80:active {
  --tw-shadow-color: rgb(194 65 12 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-700\/90:active {
  --tw-shadow-color: rgb(194 65 12 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-800:active {
  --tw-shadow-color: #9a3412;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-800\/10:active {
  --tw-shadow-color: rgb(154 52 18 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-800\/20:active {
  --tw-shadow-color: rgb(154 52 18 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-800\/30:active {
  --tw-shadow-color: rgb(154 52 18 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-800\/40:active {
  --tw-shadow-color: rgb(154 52 18 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-800\/5:active {
  --tw-shadow-color: rgb(154 52 18 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-800\/50:active {
  --tw-shadow-color: rgb(154 52 18 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-800\/60:active {
  --tw-shadow-color: rgb(154 52 18 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-800\/70:active {
  --tw-shadow-color: rgb(154 52 18 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-800\/80:active {
  --tw-shadow-color: rgb(154 52 18 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-800\/90:active {
  --tw-shadow-color: rgb(154 52 18 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-900:active {
  --tw-shadow-color: #7c2d12;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-900\/10:active {
  --tw-shadow-color: rgb(124 45 18 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-900\/20:active {
  --tw-shadow-color: rgb(124 45 18 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-900\/30:active {
  --tw-shadow-color: rgb(124 45 18 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-900\/40:active {
  --tw-shadow-color: rgb(124 45 18 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-900\/5:active {
  --tw-shadow-color: rgb(124 45 18 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-900\/50:active {
  --tw-shadow-color: rgb(124 45 18 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-900\/60:active {
  --tw-shadow-color: rgb(124 45 18 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-900\/70:active {
  --tw-shadow-color: rgb(124 45 18 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-900\/80:active {
  --tw-shadow-color: rgb(124 45 18 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-900\/90:active {
  --tw-shadow-color: rgb(124 45 18 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-950:active {
  --tw-shadow-color: #431407;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-950\/10:active {
  --tw-shadow-color: rgb(67 20 7 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-950\/20:active {
  --tw-shadow-color: rgb(67 20 7 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-950\/30:active {
  --tw-shadow-color: rgb(67 20 7 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-950\/40:active {
  --tw-shadow-color: rgb(67 20 7 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-950\/5:active {
  --tw-shadow-color: rgb(67 20 7 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-950\/50:active {
  --tw-shadow-color: rgb(67 20 7 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-950\/60:active {
  --tw-shadow-color: rgb(67 20 7 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-950\/70:active {
  --tw-shadow-color: rgb(67 20 7 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-950\/80:active {
  --tw-shadow-color: rgb(67 20 7 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-orange-950\/90:active {
  --tw-shadow-color: rgb(67 20 7 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-100:active {
  --tw-shadow-color: #fce7f3;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-100\/10:active {
  --tw-shadow-color: rgb(252 231 243 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-100\/20:active {
  --tw-shadow-color: rgb(252 231 243 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-100\/30:active {
  --tw-shadow-color: rgb(252 231 243 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-100\/40:active {
  --tw-shadow-color: rgb(252 231 243 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-100\/5:active {
  --tw-shadow-color: rgb(252 231 243 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-100\/50:active {
  --tw-shadow-color: rgb(252 231 243 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-100\/60:active {
  --tw-shadow-color: rgb(252 231 243 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-100\/70:active {
  --tw-shadow-color: rgb(252 231 243 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-100\/80:active {
  --tw-shadow-color: rgb(252 231 243 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-100\/90:active {
  --tw-shadow-color: rgb(252 231 243 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-200:active {
  --tw-shadow-color: #fbcfe8;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-200\/10:active {
  --tw-shadow-color: rgb(251 207 232 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-200\/20:active {
  --tw-shadow-color: rgb(251 207 232 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-200\/30:active {
  --tw-shadow-color: rgb(251 207 232 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-200\/40:active {
  --tw-shadow-color: rgb(251 207 232 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-200\/5:active {
  --tw-shadow-color: rgb(251 207 232 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-200\/50:active {
  --tw-shadow-color: rgb(251 207 232 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-200\/60:active {
  --tw-shadow-color: rgb(251 207 232 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-200\/70:active {
  --tw-shadow-color: rgb(251 207 232 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-200\/80:active {
  --tw-shadow-color: rgb(251 207 232 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-200\/90:active {
  --tw-shadow-color: rgb(251 207 232 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-300:active {
  --tw-shadow-color: #f9a8d4;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-300\/10:active {
  --tw-shadow-color: rgb(249 168 212 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-300\/20:active {
  --tw-shadow-color: rgb(249 168 212 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-300\/30:active {
  --tw-shadow-color: rgb(249 168 212 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-300\/40:active {
  --tw-shadow-color: rgb(249 168 212 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-300\/5:active {
  --tw-shadow-color: rgb(249 168 212 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-300\/50:active {
  --tw-shadow-color: rgb(249 168 212 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-300\/60:active {
  --tw-shadow-color: rgb(249 168 212 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-300\/70:active {
  --tw-shadow-color: rgb(249 168 212 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-300\/80:active {
  --tw-shadow-color: rgb(249 168 212 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-300\/90:active {
  --tw-shadow-color: rgb(249 168 212 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-400:active {
  --tw-shadow-color: #f472b6;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-400\/10:active {
  --tw-shadow-color: rgb(244 114 182 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-400\/20:active {
  --tw-shadow-color: rgb(244 114 182 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-400\/30:active {
  --tw-shadow-color: rgb(244 114 182 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-400\/40:active {
  --tw-shadow-color: rgb(244 114 182 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-400\/5:active {
  --tw-shadow-color: rgb(244 114 182 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-400\/50:active {
  --tw-shadow-color: rgb(244 114 182 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-400\/60:active {
  --tw-shadow-color: rgb(244 114 182 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-400\/70:active {
  --tw-shadow-color: rgb(244 114 182 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-400\/80:active {
  --tw-shadow-color: rgb(244 114 182 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-400\/90:active {
  --tw-shadow-color: rgb(244 114 182 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-50:active {
  --tw-shadow-color: #fdf2f8;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-50\/10:active {
  --tw-shadow-color: rgb(253 242 248 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-50\/20:active {
  --tw-shadow-color: rgb(253 242 248 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-50\/30:active {
  --tw-shadow-color: rgb(253 242 248 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-50\/40:active {
  --tw-shadow-color: rgb(253 242 248 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-50\/5:active {
  --tw-shadow-color: rgb(253 242 248 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-50\/50:active {
  --tw-shadow-color: rgb(253 242 248 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-50\/60:active {
  --tw-shadow-color: rgb(253 242 248 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-50\/70:active {
  --tw-shadow-color: rgb(253 242 248 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-50\/80:active {
  --tw-shadow-color: rgb(253 242 248 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-50\/90:active {
  --tw-shadow-color: rgb(253 242 248 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-500:active {
  --tw-shadow-color: #ec4899;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-500\/10:active {
  --tw-shadow-color: rgb(236 72 153 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-500\/20:active {
  --tw-shadow-color: rgb(236 72 153 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-500\/30:active {
  --tw-shadow-color: rgb(236 72 153 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-500\/40:active {
  --tw-shadow-color: rgb(236 72 153 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-500\/5:active {
  --tw-shadow-color: rgb(236 72 153 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-500\/50:active {
  --tw-shadow-color: rgb(236 72 153 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-500\/60:active {
  --tw-shadow-color: rgb(236 72 153 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-500\/70:active {
  --tw-shadow-color: rgb(236 72 153 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-500\/80:active {
  --tw-shadow-color: rgb(236 72 153 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-500\/90:active {
  --tw-shadow-color: rgb(236 72 153 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-600:active {
  --tw-shadow-color: #db2777;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-600\/10:active {
  --tw-shadow-color: rgb(219 39 119 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-600\/20:active {
  --tw-shadow-color: rgb(219 39 119 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-600\/30:active {
  --tw-shadow-color: rgb(219 39 119 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-600\/40:active {
  --tw-shadow-color: rgb(219 39 119 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-600\/5:active {
  --tw-shadow-color: rgb(219 39 119 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-600\/50:active {
  --tw-shadow-color: rgb(219 39 119 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-600\/60:active {
  --tw-shadow-color: rgb(219 39 119 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-600\/70:active {
  --tw-shadow-color: rgb(219 39 119 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-600\/80:active {
  --tw-shadow-color: rgb(219 39 119 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-600\/90:active {
  --tw-shadow-color: rgb(219 39 119 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-700:active {
  --tw-shadow-color: #be185d;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-700\/10:active {
  --tw-shadow-color: rgb(190 24 93 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-700\/20:active {
  --tw-shadow-color: rgb(190 24 93 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-700\/30:active {
  --tw-shadow-color: rgb(190 24 93 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-700\/40:active {
  --tw-shadow-color: rgb(190 24 93 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-700\/5:active {
  --tw-shadow-color: rgb(190 24 93 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-700\/50:active {
  --tw-shadow-color: rgb(190 24 93 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-700\/60:active {
  --tw-shadow-color: rgb(190 24 93 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-700\/70:active {
  --tw-shadow-color: rgb(190 24 93 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-700\/80:active {
  --tw-shadow-color: rgb(190 24 93 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-700\/90:active {
  --tw-shadow-color: rgb(190 24 93 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-800:active {
  --tw-shadow-color: #9d174d;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-800\/10:active {
  --tw-shadow-color: rgb(157 23 77 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-800\/20:active {
  --tw-shadow-color: rgb(157 23 77 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-800\/30:active {
  --tw-shadow-color: rgb(157 23 77 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-800\/40:active {
  --tw-shadow-color: rgb(157 23 77 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-800\/5:active {
  --tw-shadow-color: rgb(157 23 77 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-800\/50:active {
  --tw-shadow-color: rgb(157 23 77 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-800\/60:active {
  --tw-shadow-color: rgb(157 23 77 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-800\/70:active {
  --tw-shadow-color: rgb(157 23 77 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-800\/80:active {
  --tw-shadow-color: rgb(157 23 77 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-800\/90:active {
  --tw-shadow-color: rgb(157 23 77 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-900:active {
  --tw-shadow-color: #831843;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-900\/10:active {
  --tw-shadow-color: rgb(131 24 67 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-900\/20:active {
  --tw-shadow-color: rgb(131 24 67 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-900\/30:active {
  --tw-shadow-color: rgb(131 24 67 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-900\/40:active {
  --tw-shadow-color: rgb(131 24 67 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-900\/5:active {
  --tw-shadow-color: rgb(131 24 67 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-900\/50:active {
  --tw-shadow-color: rgb(131 24 67 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-900\/60:active {
  --tw-shadow-color: rgb(131 24 67 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-900\/70:active {
  --tw-shadow-color: rgb(131 24 67 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-900\/80:active {
  --tw-shadow-color: rgb(131 24 67 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-900\/90:active {
  --tw-shadow-color: rgb(131 24 67 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-950:active {
  --tw-shadow-color: #500724;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-950\/10:active {
  --tw-shadow-color: rgb(80 7 36 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-950\/20:active {
  --tw-shadow-color: rgb(80 7 36 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-950\/30:active {
  --tw-shadow-color: rgb(80 7 36 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-950\/40:active {
  --tw-shadow-color: rgb(80 7 36 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-950\/5:active {
  --tw-shadow-color: rgb(80 7 36 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-950\/50:active {
  --tw-shadow-color: rgb(80 7 36 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-950\/60:active {
  --tw-shadow-color: rgb(80 7 36 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-950\/70:active {
  --tw-shadow-color: rgb(80 7 36 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-950\/80:active {
  --tw-shadow-color: rgb(80 7 36 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-pink-950\/90:active {
  --tw-shadow-color: rgb(80 7 36 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-100:active {
  --tw-shadow-color: #f3e8ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-100\/10:active {
  --tw-shadow-color: rgb(243 232 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-100\/20:active {
  --tw-shadow-color: rgb(243 232 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-100\/30:active {
  --tw-shadow-color: rgb(243 232 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-100\/40:active {
  --tw-shadow-color: rgb(243 232 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-100\/5:active {
  --tw-shadow-color: rgb(243 232 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-100\/50:active {
  --tw-shadow-color: rgb(243 232 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-100\/60:active {
  --tw-shadow-color: rgb(243 232 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-100\/70:active {
  --tw-shadow-color: rgb(243 232 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-100\/80:active {
  --tw-shadow-color: rgb(243 232 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-100\/90:active {
  --tw-shadow-color: rgb(243 232 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-200:active {
  --tw-shadow-color: #e9d5ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-200\/10:active {
  --tw-shadow-color: rgb(233 213 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-200\/20:active {
  --tw-shadow-color: rgb(233 213 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-200\/30:active {
  --tw-shadow-color: rgb(233 213 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-200\/40:active {
  --tw-shadow-color: rgb(233 213 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-200\/5:active {
  --tw-shadow-color: rgb(233 213 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-200\/50:active {
  --tw-shadow-color: rgb(233 213 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-200\/60:active {
  --tw-shadow-color: rgb(233 213 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-200\/70:active {
  --tw-shadow-color: rgb(233 213 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-200\/80:active {
  --tw-shadow-color: rgb(233 213 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-200\/90:active {
  --tw-shadow-color: rgb(233 213 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-300:active {
  --tw-shadow-color: #d8b4fe;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-300\/10:active {
  --tw-shadow-color: rgb(216 180 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-300\/20:active {
  --tw-shadow-color: rgb(216 180 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-300\/30:active {
  --tw-shadow-color: rgb(216 180 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-300\/40:active {
  --tw-shadow-color: rgb(216 180 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-300\/5:active {
  --tw-shadow-color: rgb(216 180 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-300\/50:active {
  --tw-shadow-color: rgb(216 180 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-300\/60:active {
  --tw-shadow-color: rgb(216 180 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-300\/70:active {
  --tw-shadow-color: rgb(216 180 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-300\/80:active {
  --tw-shadow-color: rgb(216 180 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-300\/90:active {
  --tw-shadow-color: rgb(216 180 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-400:active {
  --tw-shadow-color: #c084fc;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-400\/10:active {
  --tw-shadow-color: rgb(192 132 252 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-400\/20:active {
  --tw-shadow-color: rgb(192 132 252 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-400\/30:active {
  --tw-shadow-color: rgb(192 132 252 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-400\/40:active {
  --tw-shadow-color: rgb(192 132 252 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-400\/5:active {
  --tw-shadow-color: rgb(192 132 252 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-400\/50:active {
  --tw-shadow-color: rgb(192 132 252 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-400\/60:active {
  --tw-shadow-color: rgb(192 132 252 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-400\/70:active {
  --tw-shadow-color: rgb(192 132 252 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-400\/80:active {
  --tw-shadow-color: rgb(192 132 252 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-400\/90:active {
  --tw-shadow-color: rgb(192 132 252 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-50:active {
  --tw-shadow-color: #faf5ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-50\/10:active {
  --tw-shadow-color: rgb(250 245 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-50\/20:active {
  --tw-shadow-color: rgb(250 245 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-50\/30:active {
  --tw-shadow-color: rgb(250 245 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-50\/40:active {
  --tw-shadow-color: rgb(250 245 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-50\/5:active {
  --tw-shadow-color: rgb(250 245 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-50\/50:active {
  --tw-shadow-color: rgb(250 245 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-50\/60:active {
  --tw-shadow-color: rgb(250 245 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-50\/70:active {
  --tw-shadow-color: rgb(250 245 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-50\/80:active {
  --tw-shadow-color: rgb(250 245 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-50\/90:active {
  --tw-shadow-color: rgb(250 245 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-500:active {
  --tw-shadow-color: #a855f7;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-500\/10:active {
  --tw-shadow-color: rgb(168 85 247 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-500\/20:active {
  --tw-shadow-color: rgb(168 85 247 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-500\/30:active {
  --tw-shadow-color: rgb(168 85 247 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-500\/40:active {
  --tw-shadow-color: rgb(168 85 247 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-500\/5:active {
  --tw-shadow-color: rgb(168 85 247 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-500\/50:active {
  --tw-shadow-color: rgb(168 85 247 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-500\/60:active {
  --tw-shadow-color: rgb(168 85 247 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-500\/70:active {
  --tw-shadow-color: rgb(168 85 247 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-500\/80:active {
  --tw-shadow-color: rgb(168 85 247 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-500\/90:active {
  --tw-shadow-color: rgb(168 85 247 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-600:active {
  --tw-shadow-color: #9333ea;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-600\/10:active {
  --tw-shadow-color: rgb(147 51 234 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-600\/20:active {
  --tw-shadow-color: rgb(147 51 234 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-600\/30:active {
  --tw-shadow-color: rgb(147 51 234 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-600\/40:active {
  --tw-shadow-color: rgb(147 51 234 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-600\/5:active {
  --tw-shadow-color: rgb(147 51 234 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-600\/50:active {
  --tw-shadow-color: rgb(147 51 234 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-600\/60:active {
  --tw-shadow-color: rgb(147 51 234 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-600\/70:active {
  --tw-shadow-color: rgb(147 51 234 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-600\/80:active {
  --tw-shadow-color: rgb(147 51 234 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-600\/90:active {
  --tw-shadow-color: rgb(147 51 234 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-700:active {
  --tw-shadow-color: #7e22ce;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-700\/10:active {
  --tw-shadow-color: rgb(126 34 206 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-700\/20:active {
  --tw-shadow-color: rgb(126 34 206 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-700\/30:active {
  --tw-shadow-color: rgb(126 34 206 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-700\/40:active {
  --tw-shadow-color: rgb(126 34 206 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-700\/5:active {
  --tw-shadow-color: rgb(126 34 206 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-700\/50:active {
  --tw-shadow-color: rgb(126 34 206 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-700\/60:active {
  --tw-shadow-color: rgb(126 34 206 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-700\/70:active {
  --tw-shadow-color: rgb(126 34 206 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-700\/80:active {
  --tw-shadow-color: rgb(126 34 206 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-700\/90:active {
  --tw-shadow-color: rgb(126 34 206 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-800:active {
  --tw-shadow-color: #6b21a8;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-800\/10:active {
  --tw-shadow-color: rgb(107 33 168 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-800\/20:active {
  --tw-shadow-color: rgb(107 33 168 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-800\/30:active {
  --tw-shadow-color: rgb(107 33 168 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-800\/40:active {
  --tw-shadow-color: rgb(107 33 168 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-800\/5:active {
  --tw-shadow-color: rgb(107 33 168 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-800\/50:active {
  --tw-shadow-color: rgb(107 33 168 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-800\/60:active {
  --tw-shadow-color: rgb(107 33 168 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-800\/70:active {
  --tw-shadow-color: rgb(107 33 168 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-800\/80:active {
  --tw-shadow-color: rgb(107 33 168 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-800\/90:active {
  --tw-shadow-color: rgb(107 33 168 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-900:active {
  --tw-shadow-color: #581c87;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-900\/10:active {
  --tw-shadow-color: rgb(88 28 135 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-900\/20:active {
  --tw-shadow-color: rgb(88 28 135 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-900\/30:active {
  --tw-shadow-color: rgb(88 28 135 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-900\/40:active {
  --tw-shadow-color: rgb(88 28 135 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-900\/5:active {
  --tw-shadow-color: rgb(88 28 135 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-900\/50:active {
  --tw-shadow-color: rgb(88 28 135 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-900\/60:active {
  --tw-shadow-color: rgb(88 28 135 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-900\/70:active {
  --tw-shadow-color: rgb(88 28 135 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-900\/80:active {
  --tw-shadow-color: rgb(88 28 135 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-900\/90:active {
  --tw-shadow-color: rgb(88 28 135 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-950:active {
  --tw-shadow-color: #3b0764;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-950\/10:active {
  --tw-shadow-color: rgb(59 7 100 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-950\/20:active {
  --tw-shadow-color: rgb(59 7 100 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-950\/30:active {
  --tw-shadow-color: rgb(59 7 100 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-950\/40:active {
  --tw-shadow-color: rgb(59 7 100 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-950\/5:active {
  --tw-shadow-color: rgb(59 7 100 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-950\/50:active {
  --tw-shadow-color: rgb(59 7 100 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-950\/60:active {
  --tw-shadow-color: rgb(59 7 100 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-950\/70:active {
  --tw-shadow-color: rgb(59 7 100 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-950\/80:active {
  --tw-shadow-color: rgb(59 7 100 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-purple-950\/90:active {
  --tw-shadow-color: rgb(59 7 100 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-100:active {
  --tw-shadow-color: #fee2e2;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-100\/10:active {
  --tw-shadow-color: rgb(254 226 226 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-100\/20:active {
  --tw-shadow-color: rgb(254 226 226 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-100\/30:active {
  --tw-shadow-color: rgb(254 226 226 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-100\/40:active {
  --tw-shadow-color: rgb(254 226 226 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-100\/5:active {
  --tw-shadow-color: rgb(254 226 226 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-100\/50:active {
  --tw-shadow-color: rgb(254 226 226 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-100\/60:active {
  --tw-shadow-color: rgb(254 226 226 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-100\/70:active {
  --tw-shadow-color: rgb(254 226 226 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-100\/80:active {
  --tw-shadow-color: rgb(254 226 226 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-100\/90:active {
  --tw-shadow-color: rgb(254 226 226 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-200:active {
  --tw-shadow-color: #fecaca;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-200\/10:active {
  --tw-shadow-color: rgb(254 202 202 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-200\/20:active {
  --tw-shadow-color: rgb(254 202 202 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-200\/30:active {
  --tw-shadow-color: rgb(254 202 202 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-200\/40:active {
  --tw-shadow-color: rgb(254 202 202 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-200\/5:active {
  --tw-shadow-color: rgb(254 202 202 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-200\/50:active {
  --tw-shadow-color: rgb(254 202 202 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-200\/60:active {
  --tw-shadow-color: rgb(254 202 202 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-200\/70:active {
  --tw-shadow-color: rgb(254 202 202 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-200\/80:active {
  --tw-shadow-color: rgb(254 202 202 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-200\/90:active {
  --tw-shadow-color: rgb(254 202 202 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-300:active {
  --tw-shadow-color: #fca5a5;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-300\/10:active {
  --tw-shadow-color: rgb(252 165 165 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-300\/20:active {
  --tw-shadow-color: rgb(252 165 165 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-300\/30:active {
  --tw-shadow-color: rgb(252 165 165 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-300\/40:active {
  --tw-shadow-color: rgb(252 165 165 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-300\/5:active {
  --tw-shadow-color: rgb(252 165 165 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-300\/50:active {
  --tw-shadow-color: rgb(252 165 165 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-300\/60:active {
  --tw-shadow-color: rgb(252 165 165 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-300\/70:active {
  --tw-shadow-color: rgb(252 165 165 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-300\/80:active {
  --tw-shadow-color: rgb(252 165 165 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-300\/90:active {
  --tw-shadow-color: rgb(252 165 165 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-400:active {
  --tw-shadow-color: #f87171;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-400\/10:active {
  --tw-shadow-color: rgb(248 113 113 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-400\/20:active {
  --tw-shadow-color: rgb(248 113 113 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-400\/30:active {
  --tw-shadow-color: rgb(248 113 113 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-400\/40:active {
  --tw-shadow-color: rgb(248 113 113 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-400\/5:active {
  --tw-shadow-color: rgb(248 113 113 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-400\/50:active {
  --tw-shadow-color: rgb(248 113 113 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-400\/60:active {
  --tw-shadow-color: rgb(248 113 113 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-400\/70:active {
  --tw-shadow-color: rgb(248 113 113 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-400\/80:active {
  --tw-shadow-color: rgb(248 113 113 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-400\/90:active {
  --tw-shadow-color: rgb(248 113 113 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-50:active {
  --tw-shadow-color: #fef2f2;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-50\/10:active {
  --tw-shadow-color: rgb(254 242 242 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-50\/20:active {
  --tw-shadow-color: rgb(254 242 242 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-50\/30:active {
  --tw-shadow-color: rgb(254 242 242 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-50\/40:active {
  --tw-shadow-color: rgb(254 242 242 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-50\/5:active {
  --tw-shadow-color: rgb(254 242 242 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-50\/50:active {
  --tw-shadow-color: rgb(254 242 242 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-50\/60:active {
  --tw-shadow-color: rgb(254 242 242 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-50\/70:active {
  --tw-shadow-color: rgb(254 242 242 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-50\/80:active {
  --tw-shadow-color: rgb(254 242 242 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-50\/90:active {
  --tw-shadow-color: rgb(254 242 242 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-500:active {
  --tw-shadow-color: #ef4444;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-500\/10:active {
  --tw-shadow-color: rgb(239 68 68 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-500\/20:active {
  --tw-shadow-color: rgb(239 68 68 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-500\/30:active {
  --tw-shadow-color: rgb(239 68 68 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-500\/40:active {
  --tw-shadow-color: rgb(239 68 68 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-500\/5:active {
  --tw-shadow-color: rgb(239 68 68 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-500\/50:active {
  --tw-shadow-color: rgb(239 68 68 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-500\/60:active {
  --tw-shadow-color: rgb(239 68 68 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-500\/70:active {
  --tw-shadow-color: rgb(239 68 68 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-500\/80:active {
  --tw-shadow-color: rgb(239 68 68 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-500\/90:active {
  --tw-shadow-color: rgb(239 68 68 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-600:active {
  --tw-shadow-color: #dc2626;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-600\/10:active {
  --tw-shadow-color: rgb(220 38 38 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-600\/20:active {
  --tw-shadow-color: rgb(220 38 38 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-600\/30:active {
  --tw-shadow-color: rgb(220 38 38 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-600\/40:active {
  --tw-shadow-color: rgb(220 38 38 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-600\/5:active {
  --tw-shadow-color: rgb(220 38 38 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-600\/50:active {
  --tw-shadow-color: rgb(220 38 38 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-600\/60:active {
  --tw-shadow-color: rgb(220 38 38 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-600\/70:active {
  --tw-shadow-color: rgb(220 38 38 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-600\/80:active {
  --tw-shadow-color: rgb(220 38 38 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-600\/90:active {
  --tw-shadow-color: rgb(220 38 38 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-700:active {
  --tw-shadow-color: #b91c1c;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-700\/10:active {
  --tw-shadow-color: rgb(185 28 28 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-700\/20:active {
  --tw-shadow-color: rgb(185 28 28 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-700\/30:active {
  --tw-shadow-color: rgb(185 28 28 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-700\/40:active {
  --tw-shadow-color: rgb(185 28 28 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-700\/5:active {
  --tw-shadow-color: rgb(185 28 28 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-700\/50:active {
  --tw-shadow-color: rgb(185 28 28 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-700\/60:active {
  --tw-shadow-color: rgb(185 28 28 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-700\/70:active {
  --tw-shadow-color: rgb(185 28 28 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-700\/80:active {
  --tw-shadow-color: rgb(185 28 28 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-700\/90:active {
  --tw-shadow-color: rgb(185 28 28 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-800:active {
  --tw-shadow-color: #991b1b;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-800\/10:active {
  --tw-shadow-color: rgb(153 27 27 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-800\/20:active {
  --tw-shadow-color: rgb(153 27 27 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-800\/30:active {
  --tw-shadow-color: rgb(153 27 27 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-800\/40:active {
  --tw-shadow-color: rgb(153 27 27 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-800\/5:active {
  --tw-shadow-color: rgb(153 27 27 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-800\/50:active {
  --tw-shadow-color: rgb(153 27 27 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-800\/60:active {
  --tw-shadow-color: rgb(153 27 27 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-800\/70:active {
  --tw-shadow-color: rgb(153 27 27 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-800\/80:active {
  --tw-shadow-color: rgb(153 27 27 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-800\/90:active {
  --tw-shadow-color: rgb(153 27 27 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-900:active {
  --tw-shadow-color: #7f1d1d;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-900\/10:active {
  --tw-shadow-color: rgb(127 29 29 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-900\/20:active {
  --tw-shadow-color: rgb(127 29 29 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-900\/30:active {
  --tw-shadow-color: rgb(127 29 29 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-900\/40:active {
  --tw-shadow-color: rgb(127 29 29 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-900\/5:active {
  --tw-shadow-color: rgb(127 29 29 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-900\/50:active {
  --tw-shadow-color: rgb(127 29 29 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-900\/60:active {
  --tw-shadow-color: rgb(127 29 29 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-900\/70:active {
  --tw-shadow-color: rgb(127 29 29 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-900\/80:active {
  --tw-shadow-color: rgb(127 29 29 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-900\/90:active {
  --tw-shadow-color: rgb(127 29 29 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-950:active {
  --tw-shadow-color: #450a0a;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-950\/10:active {
  --tw-shadow-color: rgb(69 10 10 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-950\/20:active {
  --tw-shadow-color: rgb(69 10 10 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-950\/30:active {
  --tw-shadow-color: rgb(69 10 10 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-950\/40:active {
  --tw-shadow-color: rgb(69 10 10 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-950\/5:active {
  --tw-shadow-color: rgb(69 10 10 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-950\/50:active {
  --tw-shadow-color: rgb(69 10 10 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-950\/60:active {
  --tw-shadow-color: rgb(69 10 10 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-950\/70:active {
  --tw-shadow-color: rgb(69 10 10 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-950\/80:active {
  --tw-shadow-color: rgb(69 10 10 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-red-950\/90:active {
  --tw-shadow-color: rgb(69 10 10 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-100:active {
  --tw-shadow-color: #ffe4e6;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-100\/10:active {
  --tw-shadow-color: rgb(255 228 230 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-100\/20:active {
  --tw-shadow-color: rgb(255 228 230 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-100\/30:active {
  --tw-shadow-color: rgb(255 228 230 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-100\/40:active {
  --tw-shadow-color: rgb(255 228 230 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-100\/5:active {
  --tw-shadow-color: rgb(255 228 230 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-100\/50:active {
  --tw-shadow-color: rgb(255 228 230 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-100\/60:active {
  --tw-shadow-color: rgb(255 228 230 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-100\/70:active {
  --tw-shadow-color: rgb(255 228 230 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-100\/80:active {
  --tw-shadow-color: rgb(255 228 230 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-100\/90:active {
  --tw-shadow-color: rgb(255 228 230 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-200:active {
  --tw-shadow-color: #fecdd3;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-200\/10:active {
  --tw-shadow-color: rgb(254 205 211 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-200\/20:active {
  --tw-shadow-color: rgb(254 205 211 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-200\/30:active {
  --tw-shadow-color: rgb(254 205 211 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-200\/40:active {
  --tw-shadow-color: rgb(254 205 211 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-200\/5:active {
  --tw-shadow-color: rgb(254 205 211 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-200\/50:active {
  --tw-shadow-color: rgb(254 205 211 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-200\/60:active {
  --tw-shadow-color: rgb(254 205 211 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-200\/70:active {
  --tw-shadow-color: rgb(254 205 211 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-200\/80:active {
  --tw-shadow-color: rgb(254 205 211 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-200\/90:active {
  --tw-shadow-color: rgb(254 205 211 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-300:active {
  --tw-shadow-color: #fda4af;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-300\/10:active {
  --tw-shadow-color: rgb(253 164 175 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-300\/20:active {
  --tw-shadow-color: rgb(253 164 175 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-300\/30:active {
  --tw-shadow-color: rgb(253 164 175 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-300\/40:active {
  --tw-shadow-color: rgb(253 164 175 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-300\/5:active {
  --tw-shadow-color: rgb(253 164 175 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-300\/50:active {
  --tw-shadow-color: rgb(253 164 175 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-300\/60:active {
  --tw-shadow-color: rgb(253 164 175 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-300\/70:active {
  --tw-shadow-color: rgb(253 164 175 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-300\/80:active {
  --tw-shadow-color: rgb(253 164 175 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-300\/90:active {
  --tw-shadow-color: rgb(253 164 175 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-400:active {
  --tw-shadow-color: #fb7185;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-400\/10:active {
  --tw-shadow-color: rgb(251 113 133 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-400\/20:active {
  --tw-shadow-color: rgb(251 113 133 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-400\/30:active {
  --tw-shadow-color: rgb(251 113 133 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-400\/40:active {
  --tw-shadow-color: rgb(251 113 133 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-400\/5:active {
  --tw-shadow-color: rgb(251 113 133 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-400\/50:active {
  --tw-shadow-color: rgb(251 113 133 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-400\/60:active {
  --tw-shadow-color: rgb(251 113 133 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-400\/70:active {
  --tw-shadow-color: rgb(251 113 133 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-400\/80:active {
  --tw-shadow-color: rgb(251 113 133 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-400\/90:active {
  --tw-shadow-color: rgb(251 113 133 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-50:active {
  --tw-shadow-color: #fff1f2;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-50\/10:active {
  --tw-shadow-color: rgb(255 241 242 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-50\/20:active {
  --tw-shadow-color: rgb(255 241 242 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-50\/30:active {
  --tw-shadow-color: rgb(255 241 242 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-50\/40:active {
  --tw-shadow-color: rgb(255 241 242 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-50\/5:active {
  --tw-shadow-color: rgb(255 241 242 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-50\/50:active {
  --tw-shadow-color: rgb(255 241 242 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-50\/60:active {
  --tw-shadow-color: rgb(255 241 242 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-50\/70:active {
  --tw-shadow-color: rgb(255 241 242 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-50\/80:active {
  --tw-shadow-color: rgb(255 241 242 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-50\/90:active {
  --tw-shadow-color: rgb(255 241 242 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-500:active {
  --tw-shadow-color: #f43f5e;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-500\/10:active {
  --tw-shadow-color: rgb(244 63 94 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-500\/20:active {
  --tw-shadow-color: rgb(244 63 94 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-500\/30:active {
  --tw-shadow-color: rgb(244 63 94 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-500\/40:active {
  --tw-shadow-color: rgb(244 63 94 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-500\/5:active {
  --tw-shadow-color: rgb(244 63 94 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-500\/50:active {
  --tw-shadow-color: rgb(244 63 94 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-500\/60:active {
  --tw-shadow-color: rgb(244 63 94 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-500\/70:active {
  --tw-shadow-color: rgb(244 63 94 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-500\/80:active {
  --tw-shadow-color: rgb(244 63 94 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-500\/90:active {
  --tw-shadow-color: rgb(244 63 94 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-600:active {
  --tw-shadow-color: #e11d48;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-600\/10:active {
  --tw-shadow-color: rgb(225 29 72 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-600\/20:active {
  --tw-shadow-color: rgb(225 29 72 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-600\/30:active {
  --tw-shadow-color: rgb(225 29 72 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-600\/40:active {
  --tw-shadow-color: rgb(225 29 72 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-600\/5:active {
  --tw-shadow-color: rgb(225 29 72 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-600\/50:active {
  --tw-shadow-color: rgb(225 29 72 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-600\/60:active {
  --tw-shadow-color: rgb(225 29 72 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-600\/70:active {
  --tw-shadow-color: rgb(225 29 72 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-600\/80:active {
  --tw-shadow-color: rgb(225 29 72 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-600\/90:active {
  --tw-shadow-color: rgb(225 29 72 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-700:active {
  --tw-shadow-color: #be123c;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-700\/10:active {
  --tw-shadow-color: rgb(190 18 60 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-700\/20:active {
  --tw-shadow-color: rgb(190 18 60 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-700\/30:active {
  --tw-shadow-color: rgb(190 18 60 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-700\/40:active {
  --tw-shadow-color: rgb(190 18 60 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-700\/5:active {
  --tw-shadow-color: rgb(190 18 60 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-700\/50:active {
  --tw-shadow-color: rgb(190 18 60 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-700\/60:active {
  --tw-shadow-color: rgb(190 18 60 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-700\/70:active {
  --tw-shadow-color: rgb(190 18 60 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-700\/80:active {
  --tw-shadow-color: rgb(190 18 60 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-700\/90:active {
  --tw-shadow-color: rgb(190 18 60 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-800:active {
  --tw-shadow-color: #9f1239;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-800\/10:active {
  --tw-shadow-color: rgb(159 18 57 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-800\/20:active {
  --tw-shadow-color: rgb(159 18 57 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-800\/30:active {
  --tw-shadow-color: rgb(159 18 57 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-800\/40:active {
  --tw-shadow-color: rgb(159 18 57 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-800\/5:active {
  --tw-shadow-color: rgb(159 18 57 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-800\/50:active {
  --tw-shadow-color: rgb(159 18 57 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-800\/60:active {
  --tw-shadow-color: rgb(159 18 57 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-800\/70:active {
  --tw-shadow-color: rgb(159 18 57 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-800\/80:active {
  --tw-shadow-color: rgb(159 18 57 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-800\/90:active {
  --tw-shadow-color: rgb(159 18 57 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-900:active {
  --tw-shadow-color: #881337;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-900\/10:active {
  --tw-shadow-color: rgb(136 19 55 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-900\/20:active {
  --tw-shadow-color: rgb(136 19 55 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-900\/30:active {
  --tw-shadow-color: rgb(136 19 55 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-900\/40:active {
  --tw-shadow-color: rgb(136 19 55 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-900\/5:active {
  --tw-shadow-color: rgb(136 19 55 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-900\/50:active {
  --tw-shadow-color: rgb(136 19 55 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-900\/60:active {
  --tw-shadow-color: rgb(136 19 55 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-900\/70:active {
  --tw-shadow-color: rgb(136 19 55 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-900\/80:active {
  --tw-shadow-color: rgb(136 19 55 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-900\/90:active {
  --tw-shadow-color: rgb(136 19 55 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-950:active {
  --tw-shadow-color: #4c0519;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-950\/10:active {
  --tw-shadow-color: rgb(76 5 25 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-950\/20:active {
  --tw-shadow-color: rgb(76 5 25 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-950\/30:active {
  --tw-shadow-color: rgb(76 5 25 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-950\/40:active {
  --tw-shadow-color: rgb(76 5 25 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-950\/5:active {
  --tw-shadow-color: rgb(76 5 25 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-950\/50:active {
  --tw-shadow-color: rgb(76 5 25 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-950\/60:active {
  --tw-shadow-color: rgb(76 5 25 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-950\/70:active {
  --tw-shadow-color: rgb(76 5 25 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-950\/80:active {
  --tw-shadow-color: rgb(76 5 25 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-rose-950\/90:active {
  --tw-shadow-color: rgb(76 5 25 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-100:active {
  --tw-shadow-color: #e0f2fe;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-100\/10:active {
  --tw-shadow-color: rgb(224 242 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-100\/20:active {
  --tw-shadow-color: rgb(224 242 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-100\/30:active {
  --tw-shadow-color: rgb(224 242 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-100\/40:active {
  --tw-shadow-color: rgb(224 242 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-100\/5:active {
  --tw-shadow-color: rgb(224 242 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-100\/50:active {
  --tw-shadow-color: rgb(224 242 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-100\/60:active {
  --tw-shadow-color: rgb(224 242 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-100\/70:active {
  --tw-shadow-color: rgb(224 242 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-100\/80:active {
  --tw-shadow-color: rgb(224 242 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-100\/90:active {
  --tw-shadow-color: rgb(224 242 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-200:active {
  --tw-shadow-color: #bae6fd;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-200\/10:active {
  --tw-shadow-color: rgb(186 230 253 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-200\/20:active {
  --tw-shadow-color: rgb(186 230 253 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-200\/30:active {
  --tw-shadow-color: rgb(186 230 253 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-200\/40:active {
  --tw-shadow-color: rgb(186 230 253 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-200\/5:active {
  --tw-shadow-color: rgb(186 230 253 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-200\/50:active {
  --tw-shadow-color: rgb(186 230 253 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-200\/60:active {
  --tw-shadow-color: rgb(186 230 253 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-200\/70:active {
  --tw-shadow-color: rgb(186 230 253 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-200\/80:active {
  --tw-shadow-color: rgb(186 230 253 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-200\/90:active {
  --tw-shadow-color: rgb(186 230 253 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-300:active {
  --tw-shadow-color: #7dd3fc;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-300\/10:active {
  --tw-shadow-color: rgb(125 211 252 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-300\/20:active {
  --tw-shadow-color: rgb(125 211 252 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-300\/30:active {
  --tw-shadow-color: rgb(125 211 252 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-300\/40:active {
  --tw-shadow-color: rgb(125 211 252 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-300\/5:active {
  --tw-shadow-color: rgb(125 211 252 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-300\/50:active {
  --tw-shadow-color: rgb(125 211 252 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-300\/60:active {
  --tw-shadow-color: rgb(125 211 252 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-300\/70:active {
  --tw-shadow-color: rgb(125 211 252 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-300\/80:active {
  --tw-shadow-color: rgb(125 211 252 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-300\/90:active {
  --tw-shadow-color: rgb(125 211 252 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-400:active {
  --tw-shadow-color: #38bdf8;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-400\/10:active {
  --tw-shadow-color: rgb(56 189 248 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-400\/20:active {
  --tw-shadow-color: rgb(56 189 248 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-400\/30:active {
  --tw-shadow-color: rgb(56 189 248 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-400\/40:active {
  --tw-shadow-color: rgb(56 189 248 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-400\/5:active {
  --tw-shadow-color: rgb(56 189 248 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-400\/50:active {
  --tw-shadow-color: rgb(56 189 248 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-400\/60:active {
  --tw-shadow-color: rgb(56 189 248 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-400\/70:active {
  --tw-shadow-color: rgb(56 189 248 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-400\/80:active {
  --tw-shadow-color: rgb(56 189 248 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-400\/90:active {
  --tw-shadow-color: rgb(56 189 248 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-50:active {
  --tw-shadow-color: #f0f9ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-50\/10:active {
  --tw-shadow-color: rgb(240 249 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-50\/20:active {
  --tw-shadow-color: rgb(240 249 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-50\/30:active {
  --tw-shadow-color: rgb(240 249 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-50\/40:active {
  --tw-shadow-color: rgb(240 249 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-50\/5:active {
  --tw-shadow-color: rgb(240 249 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-50\/50:active {
  --tw-shadow-color: rgb(240 249 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-50\/60:active {
  --tw-shadow-color: rgb(240 249 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-50\/70:active {
  --tw-shadow-color: rgb(240 249 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-50\/80:active {
  --tw-shadow-color: rgb(240 249 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-50\/90:active {
  --tw-shadow-color: rgb(240 249 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-500:active {
  --tw-shadow-color: #0ea5e9;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-500\/10:active {
  --tw-shadow-color: rgb(14 165 233 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-500\/20:active {
  --tw-shadow-color: rgb(14 165 233 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-500\/30:active {
  --tw-shadow-color: rgb(14 165 233 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-500\/40:active {
  --tw-shadow-color: rgb(14 165 233 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-500\/5:active {
  --tw-shadow-color: rgb(14 165 233 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-500\/50:active {
  --tw-shadow-color: rgb(14 165 233 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-500\/60:active {
  --tw-shadow-color: rgb(14 165 233 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-500\/70:active {
  --tw-shadow-color: rgb(14 165 233 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-500\/80:active {
  --tw-shadow-color: rgb(14 165 233 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-500\/90:active {
  --tw-shadow-color: rgb(14 165 233 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-600:active {
  --tw-shadow-color: #0284c7;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-600\/10:active {
  --tw-shadow-color: rgb(2 132 199 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-600\/20:active {
  --tw-shadow-color: rgb(2 132 199 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-600\/30:active {
  --tw-shadow-color: rgb(2 132 199 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-600\/40:active {
  --tw-shadow-color: rgb(2 132 199 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-600\/5:active {
  --tw-shadow-color: rgb(2 132 199 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-600\/50:active {
  --tw-shadow-color: rgb(2 132 199 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-600\/60:active {
  --tw-shadow-color: rgb(2 132 199 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-600\/70:active {
  --tw-shadow-color: rgb(2 132 199 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-600\/80:active {
  --tw-shadow-color: rgb(2 132 199 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-600\/90:active {
  --tw-shadow-color: rgb(2 132 199 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-700:active {
  --tw-shadow-color: #0369a1;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-700\/10:active {
  --tw-shadow-color: rgb(3 105 161 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-700\/20:active {
  --tw-shadow-color: rgb(3 105 161 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-700\/30:active {
  --tw-shadow-color: rgb(3 105 161 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-700\/40:active {
  --tw-shadow-color: rgb(3 105 161 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-700\/5:active {
  --tw-shadow-color: rgb(3 105 161 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-700\/50:active {
  --tw-shadow-color: rgb(3 105 161 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-700\/60:active {
  --tw-shadow-color: rgb(3 105 161 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-700\/70:active {
  --tw-shadow-color: rgb(3 105 161 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-700\/80:active {
  --tw-shadow-color: rgb(3 105 161 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-700\/90:active {
  --tw-shadow-color: rgb(3 105 161 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-800:active {
  --tw-shadow-color: #075985;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-800\/10:active {
  --tw-shadow-color: rgb(7 89 133 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-800\/20:active {
  --tw-shadow-color: rgb(7 89 133 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-800\/30:active {
  --tw-shadow-color: rgb(7 89 133 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-800\/40:active {
  --tw-shadow-color: rgb(7 89 133 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-800\/5:active {
  --tw-shadow-color: rgb(7 89 133 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-800\/50:active {
  --tw-shadow-color: rgb(7 89 133 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-800\/60:active {
  --tw-shadow-color: rgb(7 89 133 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-800\/70:active {
  --tw-shadow-color: rgb(7 89 133 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-800\/80:active {
  --tw-shadow-color: rgb(7 89 133 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-800\/90:active {
  --tw-shadow-color: rgb(7 89 133 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-900:active {
  --tw-shadow-color: #0c4a6e;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-900\/10:active {
  --tw-shadow-color: rgb(12 74 110 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-900\/20:active {
  --tw-shadow-color: rgb(12 74 110 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-900\/30:active {
  --tw-shadow-color: rgb(12 74 110 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-900\/40:active {
  --tw-shadow-color: rgb(12 74 110 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-900\/5:active {
  --tw-shadow-color: rgb(12 74 110 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-900\/50:active {
  --tw-shadow-color: rgb(12 74 110 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-900\/60:active {
  --tw-shadow-color: rgb(12 74 110 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-900\/70:active {
  --tw-shadow-color: rgb(12 74 110 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-900\/80:active {
  --tw-shadow-color: rgb(12 74 110 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-900\/90:active {
  --tw-shadow-color: rgb(12 74 110 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-950:active {
  --tw-shadow-color: #082f49;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-950\/10:active {
  --tw-shadow-color: rgb(8 47 73 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-950\/20:active {
  --tw-shadow-color: rgb(8 47 73 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-950\/30:active {
  --tw-shadow-color: rgb(8 47 73 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-950\/40:active {
  --tw-shadow-color: rgb(8 47 73 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-950\/5:active {
  --tw-shadow-color: rgb(8 47 73 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-950\/50:active {
  --tw-shadow-color: rgb(8 47 73 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-950\/60:active {
  --tw-shadow-color: rgb(8 47 73 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-950\/70:active {
  --tw-shadow-color: rgb(8 47 73 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-950\/80:active {
  --tw-shadow-color: rgb(8 47 73 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-sky-950\/90:active {
  --tw-shadow-color: rgb(8 47 73 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-100:active {
  --tw-shadow-color: #f1f5f9;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-100\/10:active {
  --tw-shadow-color: rgb(241 245 249 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-100\/20:active {
  --tw-shadow-color: rgb(241 245 249 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-100\/30:active {
  --tw-shadow-color: rgb(241 245 249 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-100\/40:active {
  --tw-shadow-color: rgb(241 245 249 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-100\/5:active {
  --tw-shadow-color: rgb(241 245 249 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-100\/50:active {
  --tw-shadow-color: rgb(241 245 249 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-100\/60:active {
  --tw-shadow-color: rgb(241 245 249 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-100\/70:active {
  --tw-shadow-color: rgb(241 245 249 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-100\/80:active {
  --tw-shadow-color: rgb(241 245 249 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-100\/90:active {
  --tw-shadow-color: rgb(241 245 249 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-200:active {
  --tw-shadow-color: #e2e8f0;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-200\/10:active {
  --tw-shadow-color: rgb(226 232 240 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-200\/20:active {
  --tw-shadow-color: rgb(226 232 240 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-200\/30:active {
  --tw-shadow-color: rgb(226 232 240 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-200\/40:active {
  --tw-shadow-color: rgb(226 232 240 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-200\/5:active {
  --tw-shadow-color: rgb(226 232 240 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-200\/50:active {
  --tw-shadow-color: rgb(226 232 240 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-200\/60:active {
  --tw-shadow-color: rgb(226 232 240 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-200\/70:active {
  --tw-shadow-color: rgb(226 232 240 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-200\/80:active {
  --tw-shadow-color: rgb(226 232 240 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-200\/90:active {
  --tw-shadow-color: rgb(226 232 240 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-300:active {
  --tw-shadow-color: #cbd5e1;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-300\/10:active {
  --tw-shadow-color: rgb(203 213 225 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-300\/20:active {
  --tw-shadow-color: rgb(203 213 225 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-300\/30:active {
  --tw-shadow-color: rgb(203 213 225 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-300\/40:active {
  --tw-shadow-color: rgb(203 213 225 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-300\/5:active {
  --tw-shadow-color: rgb(203 213 225 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-300\/50:active {
  --tw-shadow-color: rgb(203 213 225 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-300\/60:active {
  --tw-shadow-color: rgb(203 213 225 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-300\/70:active {
  --tw-shadow-color: rgb(203 213 225 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-300\/80:active {
  --tw-shadow-color: rgb(203 213 225 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-300\/90:active {
  --tw-shadow-color: rgb(203 213 225 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-400:active {
  --tw-shadow-color: #94a3b8;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-400\/10:active {
  --tw-shadow-color: rgb(148 163 184 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-400\/20:active {
  --tw-shadow-color: rgb(148 163 184 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-400\/30:active {
  --tw-shadow-color: rgb(148 163 184 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-400\/40:active {
  --tw-shadow-color: rgb(148 163 184 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-400\/5:active {
  --tw-shadow-color: rgb(148 163 184 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-400\/50:active {
  --tw-shadow-color: rgb(148 163 184 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-400\/60:active {
  --tw-shadow-color: rgb(148 163 184 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-400\/70:active {
  --tw-shadow-color: rgb(148 163 184 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-400\/80:active {
  --tw-shadow-color: rgb(148 163 184 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-400\/90:active {
  --tw-shadow-color: rgb(148 163 184 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-50:active {
  --tw-shadow-color: #f8fafc;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-50\/10:active {
  --tw-shadow-color: rgb(248 250 252 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-50\/20:active {
  --tw-shadow-color: rgb(248 250 252 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-50\/30:active {
  --tw-shadow-color: rgb(248 250 252 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-50\/40:active {
  --tw-shadow-color: rgb(248 250 252 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-50\/5:active {
  --tw-shadow-color: rgb(248 250 252 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-50\/50:active {
  --tw-shadow-color: rgb(248 250 252 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-50\/60:active {
  --tw-shadow-color: rgb(248 250 252 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-50\/70:active {
  --tw-shadow-color: rgb(248 250 252 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-50\/80:active {
  --tw-shadow-color: rgb(248 250 252 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-50\/90:active {
  --tw-shadow-color: rgb(248 250 252 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-500:active {
  --tw-shadow-color: #64748b;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-500\/10:active {
  --tw-shadow-color: rgb(100 116 139 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-500\/20:active {
  --tw-shadow-color: rgb(100 116 139 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-500\/30:active {
  --tw-shadow-color: rgb(100 116 139 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-500\/40:active {
  --tw-shadow-color: rgb(100 116 139 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-500\/5:active {
  --tw-shadow-color: rgb(100 116 139 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-500\/50:active {
  --tw-shadow-color: rgb(100 116 139 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-500\/60:active {
  --tw-shadow-color: rgb(100 116 139 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-500\/70:active {
  --tw-shadow-color: rgb(100 116 139 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-500\/80:active {
  --tw-shadow-color: rgb(100 116 139 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-500\/90:active {
  --tw-shadow-color: rgb(100 116 139 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-600:active {
  --tw-shadow-color: #475569;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-600\/10:active {
  --tw-shadow-color: rgb(71 85 105 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-600\/20:active {
  --tw-shadow-color: rgb(71 85 105 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-600\/30:active {
  --tw-shadow-color: rgb(71 85 105 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-600\/40:active {
  --tw-shadow-color: rgb(71 85 105 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-600\/5:active {
  --tw-shadow-color: rgb(71 85 105 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-600\/50:active {
  --tw-shadow-color: rgb(71 85 105 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-600\/60:active {
  --tw-shadow-color: rgb(71 85 105 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-600\/70:active {
  --tw-shadow-color: rgb(71 85 105 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-600\/80:active {
  --tw-shadow-color: rgb(71 85 105 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-600\/90:active {
  --tw-shadow-color: rgb(71 85 105 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-700:active {
  --tw-shadow-color: #334155;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-700\/10:active {
  --tw-shadow-color: rgb(51 65 85 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-700\/20:active {
  --tw-shadow-color: rgb(51 65 85 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-700\/30:active {
  --tw-shadow-color: rgb(51 65 85 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-700\/40:active {
  --tw-shadow-color: rgb(51 65 85 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-700\/5:active {
  --tw-shadow-color: rgb(51 65 85 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-700\/50:active {
  --tw-shadow-color: rgb(51 65 85 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-700\/60:active {
  --tw-shadow-color: rgb(51 65 85 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-700\/70:active {
  --tw-shadow-color: rgb(51 65 85 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-700\/80:active {
  --tw-shadow-color: rgb(51 65 85 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-700\/90:active {
  --tw-shadow-color: rgb(51 65 85 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-800:active {
  --tw-shadow-color: #1e293b;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-800\/10:active {
  --tw-shadow-color: rgb(30 41 59 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-800\/20:active {
  --tw-shadow-color: rgb(30 41 59 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-800\/30:active {
  --tw-shadow-color: rgb(30 41 59 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-800\/40:active {
  --tw-shadow-color: rgb(30 41 59 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-800\/5:active {
  --tw-shadow-color: rgb(30 41 59 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-800\/50:active {
  --tw-shadow-color: rgb(30 41 59 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-800\/60:active {
  --tw-shadow-color: rgb(30 41 59 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-800\/70:active {
  --tw-shadow-color: rgb(30 41 59 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-800\/80:active {
  --tw-shadow-color: rgb(30 41 59 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-800\/90:active {
  --tw-shadow-color: rgb(30 41 59 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-900:active {
  --tw-shadow-color: #0f172a;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-900\/10:active {
  --tw-shadow-color: rgb(15 23 42 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-900\/20:active {
  --tw-shadow-color: rgb(15 23 42 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-900\/30:active {
  --tw-shadow-color: rgb(15 23 42 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-900\/40:active {
  --tw-shadow-color: rgb(15 23 42 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-900\/5:active {
  --tw-shadow-color: rgb(15 23 42 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-900\/50:active {
  --tw-shadow-color: rgb(15 23 42 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-900\/60:active {
  --tw-shadow-color: rgb(15 23 42 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-900\/70:active {
  --tw-shadow-color: rgb(15 23 42 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-900\/80:active {
  --tw-shadow-color: rgb(15 23 42 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-900\/90:active {
  --tw-shadow-color: rgb(15 23 42 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-950:active {
  --tw-shadow-color: #020617;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-950\/10:active {
  --tw-shadow-color: rgb(2 6 23 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-950\/20:active {
  --tw-shadow-color: rgb(2 6 23 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-950\/30:active {
  --tw-shadow-color: rgb(2 6 23 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-950\/40:active {
  --tw-shadow-color: rgb(2 6 23 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-950\/5:active {
  --tw-shadow-color: rgb(2 6 23 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-950\/50:active {
  --tw-shadow-color: rgb(2 6 23 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-950\/60:active {
  --tw-shadow-color: rgb(2 6 23 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-950\/70:active {
  --tw-shadow-color: rgb(2 6 23 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-950\/80:active {
  --tw-shadow-color: rgb(2 6 23 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-slate-950\/90:active {
  --tw-shadow-color: rgb(2 6 23 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-100:active {
  --tw-shadow-color: #f5f5f4;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-100\/10:active {
  --tw-shadow-color: rgb(245 245 244 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-100\/20:active {
  --tw-shadow-color: rgb(245 245 244 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-100\/30:active {
  --tw-shadow-color: rgb(245 245 244 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-100\/40:active {
  --tw-shadow-color: rgb(245 245 244 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-100\/5:active {
  --tw-shadow-color: rgb(245 245 244 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-100\/50:active {
  --tw-shadow-color: rgb(245 245 244 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-100\/60:active {
  --tw-shadow-color: rgb(245 245 244 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-100\/70:active {
  --tw-shadow-color: rgb(245 245 244 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-100\/80:active {
  --tw-shadow-color: rgb(245 245 244 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-100\/90:active {
  --tw-shadow-color: rgb(245 245 244 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-200:active {
  --tw-shadow-color: #e7e5e4;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-200\/10:active {
  --tw-shadow-color: rgb(231 229 228 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-200\/20:active {
  --tw-shadow-color: rgb(231 229 228 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-200\/30:active {
  --tw-shadow-color: rgb(231 229 228 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-200\/40:active {
  --tw-shadow-color: rgb(231 229 228 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-200\/5:active {
  --tw-shadow-color: rgb(231 229 228 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-200\/50:active {
  --tw-shadow-color: rgb(231 229 228 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-200\/60:active {
  --tw-shadow-color: rgb(231 229 228 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-200\/70:active {
  --tw-shadow-color: rgb(231 229 228 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-200\/80:active {
  --tw-shadow-color: rgb(231 229 228 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-200\/90:active {
  --tw-shadow-color: rgb(231 229 228 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-300:active {
  --tw-shadow-color: #d6d3d1;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-300\/10:active {
  --tw-shadow-color: rgb(214 211 209 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-300\/20:active {
  --tw-shadow-color: rgb(214 211 209 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-300\/30:active {
  --tw-shadow-color: rgb(214 211 209 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-300\/40:active {
  --tw-shadow-color: rgb(214 211 209 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-300\/5:active {
  --tw-shadow-color: rgb(214 211 209 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-300\/50:active {
  --tw-shadow-color: rgb(214 211 209 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-300\/60:active {
  --tw-shadow-color: rgb(214 211 209 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-300\/70:active {
  --tw-shadow-color: rgb(214 211 209 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-300\/80:active {
  --tw-shadow-color: rgb(214 211 209 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-300\/90:active {
  --tw-shadow-color: rgb(214 211 209 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-400:active {
  --tw-shadow-color: #a8a29e;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-400\/10:active {
  --tw-shadow-color: rgb(168 162 158 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-400\/20:active {
  --tw-shadow-color: rgb(168 162 158 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-400\/30:active {
  --tw-shadow-color: rgb(168 162 158 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-400\/40:active {
  --tw-shadow-color: rgb(168 162 158 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-400\/5:active {
  --tw-shadow-color: rgb(168 162 158 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-400\/50:active {
  --tw-shadow-color: rgb(168 162 158 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-400\/60:active {
  --tw-shadow-color: rgb(168 162 158 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-400\/70:active {
  --tw-shadow-color: rgb(168 162 158 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-400\/80:active {
  --tw-shadow-color: rgb(168 162 158 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-400\/90:active {
  --tw-shadow-color: rgb(168 162 158 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-50:active {
  --tw-shadow-color: #fafaf9;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-50\/10:active {
  --tw-shadow-color: rgb(250 250 249 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-50\/20:active {
  --tw-shadow-color: rgb(250 250 249 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-50\/30:active {
  --tw-shadow-color: rgb(250 250 249 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-50\/40:active {
  --tw-shadow-color: rgb(250 250 249 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-50\/5:active {
  --tw-shadow-color: rgb(250 250 249 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-50\/50:active {
  --tw-shadow-color: rgb(250 250 249 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-50\/60:active {
  --tw-shadow-color: rgb(250 250 249 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-50\/70:active {
  --tw-shadow-color: rgb(250 250 249 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-50\/80:active {
  --tw-shadow-color: rgb(250 250 249 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-50\/90:active {
  --tw-shadow-color: rgb(250 250 249 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-500:active {
  --tw-shadow-color: #78716c;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-500\/10:active {
  --tw-shadow-color: rgb(120 113 108 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-500\/20:active {
  --tw-shadow-color: rgb(120 113 108 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-500\/30:active {
  --tw-shadow-color: rgb(120 113 108 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-500\/40:active {
  --tw-shadow-color: rgb(120 113 108 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-500\/5:active {
  --tw-shadow-color: rgb(120 113 108 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-500\/50:active {
  --tw-shadow-color: rgb(120 113 108 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-500\/60:active {
  --tw-shadow-color: rgb(120 113 108 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-500\/70:active {
  --tw-shadow-color: rgb(120 113 108 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-500\/80:active {
  --tw-shadow-color: rgb(120 113 108 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-500\/90:active {
  --tw-shadow-color: rgb(120 113 108 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-600:active {
  --tw-shadow-color: #57534e;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-600\/10:active {
  --tw-shadow-color: rgb(87 83 78 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-600\/20:active {
  --tw-shadow-color: rgb(87 83 78 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-600\/30:active {
  --tw-shadow-color: rgb(87 83 78 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-600\/40:active {
  --tw-shadow-color: rgb(87 83 78 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-600\/5:active {
  --tw-shadow-color: rgb(87 83 78 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-600\/50:active {
  --tw-shadow-color: rgb(87 83 78 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-600\/60:active {
  --tw-shadow-color: rgb(87 83 78 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-600\/70:active {
  --tw-shadow-color: rgb(87 83 78 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-600\/80:active {
  --tw-shadow-color: rgb(87 83 78 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-600\/90:active {
  --tw-shadow-color: rgb(87 83 78 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-700:active {
  --tw-shadow-color: #44403c;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-700\/10:active {
  --tw-shadow-color: rgb(68 64 60 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-700\/20:active {
  --tw-shadow-color: rgb(68 64 60 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-700\/30:active {
  --tw-shadow-color: rgb(68 64 60 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-700\/40:active {
  --tw-shadow-color: rgb(68 64 60 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-700\/5:active {
  --tw-shadow-color: rgb(68 64 60 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-700\/50:active {
  --tw-shadow-color: rgb(68 64 60 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-700\/60:active {
  --tw-shadow-color: rgb(68 64 60 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-700\/70:active {
  --tw-shadow-color: rgb(68 64 60 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-700\/80:active {
  --tw-shadow-color: rgb(68 64 60 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-700\/90:active {
  --tw-shadow-color: rgb(68 64 60 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-800:active {
  --tw-shadow-color: #292524;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-800\/10:active {
  --tw-shadow-color: rgb(41 37 36 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-800\/20:active {
  --tw-shadow-color: rgb(41 37 36 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-800\/30:active {
  --tw-shadow-color: rgb(41 37 36 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-800\/40:active {
  --tw-shadow-color: rgb(41 37 36 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-800\/5:active {
  --tw-shadow-color: rgb(41 37 36 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-800\/50:active {
  --tw-shadow-color: rgb(41 37 36 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-800\/60:active {
  --tw-shadow-color: rgb(41 37 36 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-800\/70:active {
  --tw-shadow-color: rgb(41 37 36 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-800\/80:active {
  --tw-shadow-color: rgb(41 37 36 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-800\/90:active {
  --tw-shadow-color: rgb(41 37 36 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-900:active {
  --tw-shadow-color: #1c1917;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-900\/10:active {
  --tw-shadow-color: rgb(28 25 23 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-900\/20:active {
  --tw-shadow-color: rgb(28 25 23 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-900\/30:active {
  --tw-shadow-color: rgb(28 25 23 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-900\/40:active {
  --tw-shadow-color: rgb(28 25 23 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-900\/5:active {
  --tw-shadow-color: rgb(28 25 23 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-900\/50:active {
  --tw-shadow-color: rgb(28 25 23 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-900\/60:active {
  --tw-shadow-color: rgb(28 25 23 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-900\/70:active {
  --tw-shadow-color: rgb(28 25 23 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-900\/80:active {
  --tw-shadow-color: rgb(28 25 23 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-900\/90:active {
  --tw-shadow-color: rgb(28 25 23 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-950:active {
  --tw-shadow-color: #0c0a09;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-950\/10:active {
  --tw-shadow-color: rgb(12 10 9 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-950\/20:active {
  --tw-shadow-color: rgb(12 10 9 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-950\/30:active {
  --tw-shadow-color: rgb(12 10 9 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-950\/40:active {
  --tw-shadow-color: rgb(12 10 9 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-950\/5:active {
  --tw-shadow-color: rgb(12 10 9 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-950\/50:active {
  --tw-shadow-color: rgb(12 10 9 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-950\/60:active {
  --tw-shadow-color: rgb(12 10 9 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-950\/70:active {
  --tw-shadow-color: rgb(12 10 9 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-950\/80:active {
  --tw-shadow-color: rgb(12 10 9 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-stone-950\/90:active {
  --tw-shadow-color: rgb(12 10 9 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-100:active {
  --tw-shadow-color: #ccfbf1;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-100\/10:active {
  --tw-shadow-color: rgb(204 251 241 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-100\/20:active {
  --tw-shadow-color: rgb(204 251 241 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-100\/30:active {
  --tw-shadow-color: rgb(204 251 241 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-100\/40:active {
  --tw-shadow-color: rgb(204 251 241 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-100\/5:active {
  --tw-shadow-color: rgb(204 251 241 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-100\/50:active {
  --tw-shadow-color: rgb(204 251 241 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-100\/60:active {
  --tw-shadow-color: rgb(204 251 241 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-100\/70:active {
  --tw-shadow-color: rgb(204 251 241 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-100\/80:active {
  --tw-shadow-color: rgb(204 251 241 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-100\/90:active {
  --tw-shadow-color: rgb(204 251 241 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-200:active {
  --tw-shadow-color: #99f6e4;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-200\/10:active {
  --tw-shadow-color: rgb(153 246 228 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-200\/20:active {
  --tw-shadow-color: rgb(153 246 228 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-200\/30:active {
  --tw-shadow-color: rgb(153 246 228 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-200\/40:active {
  --tw-shadow-color: rgb(153 246 228 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-200\/5:active {
  --tw-shadow-color: rgb(153 246 228 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-200\/50:active {
  --tw-shadow-color: rgb(153 246 228 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-200\/60:active {
  --tw-shadow-color: rgb(153 246 228 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-200\/70:active {
  --tw-shadow-color: rgb(153 246 228 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-200\/80:active {
  --tw-shadow-color: rgb(153 246 228 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-200\/90:active {
  --tw-shadow-color: rgb(153 246 228 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-300:active {
  --tw-shadow-color: #5eead4;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-300\/10:active {
  --tw-shadow-color: rgb(94 234 212 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-300\/20:active {
  --tw-shadow-color: rgb(94 234 212 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-300\/30:active {
  --tw-shadow-color: rgb(94 234 212 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-300\/40:active {
  --tw-shadow-color: rgb(94 234 212 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-300\/5:active {
  --tw-shadow-color: rgb(94 234 212 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-300\/50:active {
  --tw-shadow-color: rgb(94 234 212 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-300\/60:active {
  --tw-shadow-color: rgb(94 234 212 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-300\/70:active {
  --tw-shadow-color: rgb(94 234 212 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-300\/80:active {
  --tw-shadow-color: rgb(94 234 212 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-300\/90:active {
  --tw-shadow-color: rgb(94 234 212 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-400:active {
  --tw-shadow-color: #2dd4bf;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-400\/10:active {
  --tw-shadow-color: rgb(45 212 191 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-400\/20:active {
  --tw-shadow-color: rgb(45 212 191 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-400\/30:active {
  --tw-shadow-color: rgb(45 212 191 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-400\/40:active {
  --tw-shadow-color: rgb(45 212 191 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-400\/5:active {
  --tw-shadow-color: rgb(45 212 191 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-400\/50:active {
  --tw-shadow-color: rgb(45 212 191 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-400\/60:active {
  --tw-shadow-color: rgb(45 212 191 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-400\/70:active {
  --tw-shadow-color: rgb(45 212 191 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-400\/80:active {
  --tw-shadow-color: rgb(45 212 191 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-400\/90:active {
  --tw-shadow-color: rgb(45 212 191 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-50:active {
  --tw-shadow-color: #f0fdfa;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-50\/10:active {
  --tw-shadow-color: rgb(240 253 250 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-50\/20:active {
  --tw-shadow-color: rgb(240 253 250 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-50\/30:active {
  --tw-shadow-color: rgb(240 253 250 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-50\/40:active {
  --tw-shadow-color: rgb(240 253 250 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-50\/5:active {
  --tw-shadow-color: rgb(240 253 250 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-50\/50:active {
  --tw-shadow-color: rgb(240 253 250 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-50\/60:active {
  --tw-shadow-color: rgb(240 253 250 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-50\/70:active {
  --tw-shadow-color: rgb(240 253 250 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-50\/80:active {
  --tw-shadow-color: rgb(240 253 250 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-50\/90:active {
  --tw-shadow-color: rgb(240 253 250 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-500:active {
  --tw-shadow-color: #14b8a6;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-500\/10:active {
  --tw-shadow-color: rgb(20 184 166 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-500\/20:active {
  --tw-shadow-color: rgb(20 184 166 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-500\/30:active {
  --tw-shadow-color: rgb(20 184 166 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-500\/40:active {
  --tw-shadow-color: rgb(20 184 166 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-500\/5:active {
  --tw-shadow-color: rgb(20 184 166 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-500\/50:active {
  --tw-shadow-color: rgb(20 184 166 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-500\/60:active {
  --tw-shadow-color: rgb(20 184 166 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-500\/70:active {
  --tw-shadow-color: rgb(20 184 166 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-500\/80:active {
  --tw-shadow-color: rgb(20 184 166 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-500\/90:active {
  --tw-shadow-color: rgb(20 184 166 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-600:active {
  --tw-shadow-color: #0d9488;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-600\/10:active {
  --tw-shadow-color: rgb(13 148 136 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-600\/20:active {
  --tw-shadow-color: rgb(13 148 136 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-600\/30:active {
  --tw-shadow-color: rgb(13 148 136 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-600\/40:active {
  --tw-shadow-color: rgb(13 148 136 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-600\/5:active {
  --tw-shadow-color: rgb(13 148 136 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-600\/50:active {
  --tw-shadow-color: rgb(13 148 136 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-600\/60:active {
  --tw-shadow-color: rgb(13 148 136 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-600\/70:active {
  --tw-shadow-color: rgb(13 148 136 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-600\/80:active {
  --tw-shadow-color: rgb(13 148 136 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-600\/90:active {
  --tw-shadow-color: rgb(13 148 136 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-700:active {
  --tw-shadow-color: #0f766e;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-700\/10:active {
  --tw-shadow-color: rgb(15 118 110 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-700\/20:active {
  --tw-shadow-color: rgb(15 118 110 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-700\/30:active {
  --tw-shadow-color: rgb(15 118 110 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-700\/40:active {
  --tw-shadow-color: rgb(15 118 110 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-700\/5:active {
  --tw-shadow-color: rgb(15 118 110 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-700\/50:active {
  --tw-shadow-color: rgb(15 118 110 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-700\/60:active {
  --tw-shadow-color: rgb(15 118 110 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-700\/70:active {
  --tw-shadow-color: rgb(15 118 110 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-700\/80:active {
  --tw-shadow-color: rgb(15 118 110 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-700\/90:active {
  --tw-shadow-color: rgb(15 118 110 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-800:active {
  --tw-shadow-color: #115e59;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-800\/10:active {
  --tw-shadow-color: rgb(17 94 89 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-800\/20:active {
  --tw-shadow-color: rgb(17 94 89 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-800\/30:active {
  --tw-shadow-color: rgb(17 94 89 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-800\/40:active {
  --tw-shadow-color: rgb(17 94 89 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-800\/5:active {
  --tw-shadow-color: rgb(17 94 89 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-800\/50:active {
  --tw-shadow-color: rgb(17 94 89 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-800\/60:active {
  --tw-shadow-color: rgb(17 94 89 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-800\/70:active {
  --tw-shadow-color: rgb(17 94 89 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-800\/80:active {
  --tw-shadow-color: rgb(17 94 89 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-800\/90:active {
  --tw-shadow-color: rgb(17 94 89 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-900:active {
  --tw-shadow-color: #134e4a;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-900\/10:active {
  --tw-shadow-color: rgb(19 78 74 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-900\/20:active {
  --tw-shadow-color: rgb(19 78 74 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-900\/30:active {
  --tw-shadow-color: rgb(19 78 74 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-900\/40:active {
  --tw-shadow-color: rgb(19 78 74 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-900\/5:active {
  --tw-shadow-color: rgb(19 78 74 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-900\/50:active {
  --tw-shadow-color: rgb(19 78 74 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-900\/60:active {
  --tw-shadow-color: rgb(19 78 74 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-900\/70:active {
  --tw-shadow-color: rgb(19 78 74 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-900\/80:active {
  --tw-shadow-color: rgb(19 78 74 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-900\/90:active {
  --tw-shadow-color: rgb(19 78 74 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-950:active {
  --tw-shadow-color: #042f2e;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-950\/10:active {
  --tw-shadow-color: rgb(4 47 46 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-950\/20:active {
  --tw-shadow-color: rgb(4 47 46 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-950\/30:active {
  --tw-shadow-color: rgb(4 47 46 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-950\/40:active {
  --tw-shadow-color: rgb(4 47 46 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-950\/5:active {
  --tw-shadow-color: rgb(4 47 46 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-950\/50:active {
  --tw-shadow-color: rgb(4 47 46 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-950\/60:active {
  --tw-shadow-color: rgb(4 47 46 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-950\/70:active {
  --tw-shadow-color: rgb(4 47 46 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-950\/80:active {
  --tw-shadow-color: rgb(4 47 46 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-teal-950\/90:active {
  --tw-shadow-color: rgb(4 47 46 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-100:active {
  --tw-shadow-color: #ede9fe;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-100\/10:active {
  --tw-shadow-color: rgb(237 233 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-100\/20:active {
  --tw-shadow-color: rgb(237 233 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-100\/30:active {
  --tw-shadow-color: rgb(237 233 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-100\/40:active {
  --tw-shadow-color: rgb(237 233 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-100\/5:active {
  --tw-shadow-color: rgb(237 233 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-100\/50:active {
  --tw-shadow-color: rgb(237 233 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-100\/60:active {
  --tw-shadow-color: rgb(237 233 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-100\/70:active {
  --tw-shadow-color: rgb(237 233 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-100\/80:active {
  --tw-shadow-color: rgb(237 233 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-100\/90:active {
  --tw-shadow-color: rgb(237 233 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-200:active {
  --tw-shadow-color: #ddd6fe;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-200\/10:active {
  --tw-shadow-color: rgb(221 214 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-200\/20:active {
  --tw-shadow-color: rgb(221 214 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-200\/30:active {
  --tw-shadow-color: rgb(221 214 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-200\/40:active {
  --tw-shadow-color: rgb(221 214 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-200\/5:active {
  --tw-shadow-color: rgb(221 214 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-200\/50:active {
  --tw-shadow-color: rgb(221 214 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-200\/60:active {
  --tw-shadow-color: rgb(221 214 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-200\/70:active {
  --tw-shadow-color: rgb(221 214 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-200\/80:active {
  --tw-shadow-color: rgb(221 214 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-200\/90:active {
  --tw-shadow-color: rgb(221 214 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-300:active {
  --tw-shadow-color: #c4b5fd;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-300\/10:active {
  --tw-shadow-color: rgb(196 181 253 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-300\/20:active {
  --tw-shadow-color: rgb(196 181 253 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-300\/30:active {
  --tw-shadow-color: rgb(196 181 253 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-300\/40:active {
  --tw-shadow-color: rgb(196 181 253 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-300\/5:active {
  --tw-shadow-color: rgb(196 181 253 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-300\/50:active {
  --tw-shadow-color: rgb(196 181 253 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-300\/60:active {
  --tw-shadow-color: rgb(196 181 253 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-300\/70:active {
  --tw-shadow-color: rgb(196 181 253 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-300\/80:active {
  --tw-shadow-color: rgb(196 181 253 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-300\/90:active {
  --tw-shadow-color: rgb(196 181 253 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-400:active {
  --tw-shadow-color: #a78bfa;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-400\/10:active {
  --tw-shadow-color: rgb(167 139 250 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-400\/20:active {
  --tw-shadow-color: rgb(167 139 250 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-400\/30:active {
  --tw-shadow-color: rgb(167 139 250 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-400\/40:active {
  --tw-shadow-color: rgb(167 139 250 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-400\/5:active {
  --tw-shadow-color: rgb(167 139 250 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-400\/50:active {
  --tw-shadow-color: rgb(167 139 250 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-400\/60:active {
  --tw-shadow-color: rgb(167 139 250 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-400\/70:active {
  --tw-shadow-color: rgb(167 139 250 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-400\/80:active {
  --tw-shadow-color: rgb(167 139 250 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-400\/90:active {
  --tw-shadow-color: rgb(167 139 250 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-50:active {
  --tw-shadow-color: #f5f3ff;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-50\/10:active {
  --tw-shadow-color: rgb(245 243 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-50\/20:active {
  --tw-shadow-color: rgb(245 243 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-50\/30:active {
  --tw-shadow-color: rgb(245 243 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-50\/40:active {
  --tw-shadow-color: rgb(245 243 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-50\/5:active {
  --tw-shadow-color: rgb(245 243 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-50\/50:active {
  --tw-shadow-color: rgb(245 243 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-50\/60:active {
  --tw-shadow-color: rgb(245 243 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-50\/70:active {
  --tw-shadow-color: rgb(245 243 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-50\/80:active {
  --tw-shadow-color: rgb(245 243 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-50\/90:active {
  --tw-shadow-color: rgb(245 243 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-500:active {
  --tw-shadow-color: #8b5cf6;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-500\/10:active {
  --tw-shadow-color: rgb(139 92 246 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-500\/20:active {
  --tw-shadow-color: rgb(139 92 246 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-500\/30:active {
  --tw-shadow-color: rgb(139 92 246 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-500\/40:active {
  --tw-shadow-color: rgb(139 92 246 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-500\/5:active {
  --tw-shadow-color: rgb(139 92 246 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-500\/50:active {
  --tw-shadow-color: rgb(139 92 246 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-500\/60:active {
  --tw-shadow-color: rgb(139 92 246 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-500\/70:active {
  --tw-shadow-color: rgb(139 92 246 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-500\/80:active {
  --tw-shadow-color: rgb(139 92 246 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-500\/90:active {
  --tw-shadow-color: rgb(139 92 246 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-600:active {
  --tw-shadow-color: #7c3aed;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-600\/10:active {
  --tw-shadow-color: rgb(124 58 237 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-600\/20:active {
  --tw-shadow-color: rgb(124 58 237 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-600\/30:active {
  --tw-shadow-color: rgb(124 58 237 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-600\/40:active {
  --tw-shadow-color: rgb(124 58 237 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-600\/5:active {
  --tw-shadow-color: rgb(124 58 237 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-600\/50:active {
  --tw-shadow-color: rgb(124 58 237 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-600\/60:active {
  --tw-shadow-color: rgb(124 58 237 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-600\/70:active {
  --tw-shadow-color: rgb(124 58 237 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-600\/80:active {
  --tw-shadow-color: rgb(124 58 237 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-600\/90:active {
  --tw-shadow-color: rgb(124 58 237 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-700:active {
  --tw-shadow-color: #6d28d9;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-700\/10:active {
  --tw-shadow-color: rgb(109 40 217 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-700\/20:active {
  --tw-shadow-color: rgb(109 40 217 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-700\/30:active {
  --tw-shadow-color: rgb(109 40 217 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-700\/40:active {
  --tw-shadow-color: rgb(109 40 217 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-700\/5:active {
  --tw-shadow-color: rgb(109 40 217 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-700\/50:active {
  --tw-shadow-color: rgb(109 40 217 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-700\/60:active {
  --tw-shadow-color: rgb(109 40 217 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-700\/70:active {
  --tw-shadow-color: rgb(109 40 217 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-700\/80:active {
  --tw-shadow-color: rgb(109 40 217 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-700\/90:active {
  --tw-shadow-color: rgb(109 40 217 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-800:active {
  --tw-shadow-color: #5b21b6;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-800\/10:active {
  --tw-shadow-color: rgb(91 33 182 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-800\/20:active {
  --tw-shadow-color: rgb(91 33 182 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-800\/30:active {
  --tw-shadow-color: rgb(91 33 182 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-800\/40:active {
  --tw-shadow-color: rgb(91 33 182 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-800\/5:active {
  --tw-shadow-color: rgb(91 33 182 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-800\/50:active {
  --tw-shadow-color: rgb(91 33 182 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-800\/60:active {
  --tw-shadow-color: rgb(91 33 182 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-800\/70:active {
  --tw-shadow-color: rgb(91 33 182 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-800\/80:active {
  --tw-shadow-color: rgb(91 33 182 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-800\/90:active {
  --tw-shadow-color: rgb(91 33 182 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-900:active {
  --tw-shadow-color: #4c1d95;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-900\/10:active {
  --tw-shadow-color: rgb(76 29 149 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-900\/20:active {
  --tw-shadow-color: rgb(76 29 149 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-900\/30:active {
  --tw-shadow-color: rgb(76 29 149 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-900\/40:active {
  --tw-shadow-color: rgb(76 29 149 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-900\/5:active {
  --tw-shadow-color: rgb(76 29 149 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-900\/50:active {
  --tw-shadow-color: rgb(76 29 149 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-900\/60:active {
  --tw-shadow-color: rgb(76 29 149 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-900\/70:active {
  --tw-shadow-color: rgb(76 29 149 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-900\/80:active {
  --tw-shadow-color: rgb(76 29 149 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-900\/90:active {
  --tw-shadow-color: rgb(76 29 149 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-950:active {
  --tw-shadow-color: #2e1065;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-950\/10:active {
  --tw-shadow-color: rgb(46 16 101 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-950\/20:active {
  --tw-shadow-color: rgb(46 16 101 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-950\/30:active {
  --tw-shadow-color: rgb(46 16 101 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-950\/40:active {
  --tw-shadow-color: rgb(46 16 101 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-950\/5:active {
  --tw-shadow-color: rgb(46 16 101 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-950\/50:active {
  --tw-shadow-color: rgb(46 16 101 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-950\/60:active {
  --tw-shadow-color: rgb(46 16 101 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-950\/70:active {
  --tw-shadow-color: rgb(46 16 101 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-950\/80:active {
  --tw-shadow-color: rgb(46 16 101 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-violet-950\/90:active {
  --tw-shadow-color: rgb(46 16 101 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-100:active {
  --tw-shadow-color: #fef9c3;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-100\/10:active {
  --tw-shadow-color: rgb(254 249 195 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-100\/20:active {
  --tw-shadow-color: rgb(254 249 195 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-100\/30:active {
  --tw-shadow-color: rgb(254 249 195 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-100\/40:active {
  --tw-shadow-color: rgb(254 249 195 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-100\/5:active {
  --tw-shadow-color: rgb(254 249 195 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-100\/50:active {
  --tw-shadow-color: rgb(254 249 195 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-100\/60:active {
  --tw-shadow-color: rgb(254 249 195 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-100\/70:active {
  --tw-shadow-color: rgb(254 249 195 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-100\/80:active {
  --tw-shadow-color: rgb(254 249 195 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-100\/90:active {
  --tw-shadow-color: rgb(254 249 195 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-200:active {
  --tw-shadow-color: #fef08a;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-200\/10:active {
  --tw-shadow-color: rgb(254 240 138 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-200\/20:active {
  --tw-shadow-color: rgb(254 240 138 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-200\/30:active {
  --tw-shadow-color: rgb(254 240 138 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-200\/40:active {
  --tw-shadow-color: rgb(254 240 138 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-200\/5:active {
  --tw-shadow-color: rgb(254 240 138 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-200\/50:active {
  --tw-shadow-color: rgb(254 240 138 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-200\/60:active {
  --tw-shadow-color: rgb(254 240 138 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-200\/70:active {
  --tw-shadow-color: rgb(254 240 138 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-200\/80:active {
  --tw-shadow-color: rgb(254 240 138 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-200\/90:active {
  --tw-shadow-color: rgb(254 240 138 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-300:active {
  --tw-shadow-color: #fde047;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-300\/10:active {
  --tw-shadow-color: rgb(253 224 71 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-300\/20:active {
  --tw-shadow-color: rgb(253 224 71 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-300\/30:active {
  --tw-shadow-color: rgb(253 224 71 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-300\/40:active {
  --tw-shadow-color: rgb(253 224 71 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-300\/5:active {
  --tw-shadow-color: rgb(253 224 71 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-300\/50:active {
  --tw-shadow-color: rgb(253 224 71 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-300\/60:active {
  --tw-shadow-color: rgb(253 224 71 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-300\/70:active {
  --tw-shadow-color: rgb(253 224 71 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-300\/80:active {
  --tw-shadow-color: rgb(253 224 71 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-300\/90:active {
  --tw-shadow-color: rgb(253 224 71 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-400:active {
  --tw-shadow-color: #facc15;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-400\/10:active {
  --tw-shadow-color: rgb(250 204 21 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-400\/20:active {
  --tw-shadow-color: rgb(250 204 21 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-400\/30:active {
  --tw-shadow-color: rgb(250 204 21 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-400\/40:active {
  --tw-shadow-color: rgb(250 204 21 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-400\/5:active {
  --tw-shadow-color: rgb(250 204 21 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-400\/50:active {
  --tw-shadow-color: rgb(250 204 21 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-400\/60:active {
  --tw-shadow-color: rgb(250 204 21 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-400\/70:active {
  --tw-shadow-color: rgb(250 204 21 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-400\/80:active {
  --tw-shadow-color: rgb(250 204 21 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-400\/90:active {
  --tw-shadow-color: rgb(250 204 21 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-50:active {
  --tw-shadow-color: #fefce8;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-50\/10:active {
  --tw-shadow-color: rgb(254 252 232 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-50\/20:active {
  --tw-shadow-color: rgb(254 252 232 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-50\/30:active {
  --tw-shadow-color: rgb(254 252 232 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-50\/40:active {
  --tw-shadow-color: rgb(254 252 232 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-50\/5:active {
  --tw-shadow-color: rgb(254 252 232 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-50\/50:active {
  --tw-shadow-color: rgb(254 252 232 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-50\/60:active {
  --tw-shadow-color: rgb(254 252 232 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-50\/70:active {
  --tw-shadow-color: rgb(254 252 232 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-50\/80:active {
  --tw-shadow-color: rgb(254 252 232 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-50\/90:active {
  --tw-shadow-color: rgb(254 252 232 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-500:active {
  --tw-shadow-color: #eab308;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-500\/10:active {
  --tw-shadow-color: rgb(234 179 8 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-500\/20:active {
  --tw-shadow-color: rgb(234 179 8 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-500\/30:active {
  --tw-shadow-color: rgb(234 179 8 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-500\/40:active {
  --tw-shadow-color: rgb(234 179 8 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-500\/5:active {
  --tw-shadow-color: rgb(234 179 8 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-500\/50:active {
  --tw-shadow-color: rgb(234 179 8 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-500\/60:active {
  --tw-shadow-color: rgb(234 179 8 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-500\/70:active {
  --tw-shadow-color: rgb(234 179 8 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-500\/80:active {
  --tw-shadow-color: rgb(234 179 8 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-500\/90:active {
  --tw-shadow-color: rgb(234 179 8 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-600:active {
  --tw-shadow-color: #ca8a04;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-600\/10:active {
  --tw-shadow-color: rgb(202 138 4 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-600\/20:active {
  --tw-shadow-color: rgb(202 138 4 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-600\/30:active {
  --tw-shadow-color: rgb(202 138 4 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-600\/40:active {
  --tw-shadow-color: rgb(202 138 4 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-600\/5:active {
  --tw-shadow-color: rgb(202 138 4 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-600\/50:active {
  --tw-shadow-color: rgb(202 138 4 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-600\/60:active {
  --tw-shadow-color: rgb(202 138 4 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-600\/70:active {
  --tw-shadow-color: rgb(202 138 4 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-600\/80:active {
  --tw-shadow-color: rgb(202 138 4 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-600\/90:active {
  --tw-shadow-color: rgb(202 138 4 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-700:active {
  --tw-shadow-color: #a16207;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-700\/10:active {
  --tw-shadow-color: rgb(161 98 7 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-700\/20:active {
  --tw-shadow-color: rgb(161 98 7 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-700\/30:active {
  --tw-shadow-color: rgb(161 98 7 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-700\/40:active {
  --tw-shadow-color: rgb(161 98 7 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-700\/5:active {
  --tw-shadow-color: rgb(161 98 7 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-700\/50:active {
  --tw-shadow-color: rgb(161 98 7 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-700\/60:active {
  --tw-shadow-color: rgb(161 98 7 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-700\/70:active {
  --tw-shadow-color: rgb(161 98 7 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-700\/80:active {
  --tw-shadow-color: rgb(161 98 7 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-700\/90:active {
  --tw-shadow-color: rgb(161 98 7 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-800:active {
  --tw-shadow-color: #854d0e;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-800\/10:active {
  --tw-shadow-color: rgb(133 77 14 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-800\/20:active {
  --tw-shadow-color: rgb(133 77 14 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-800\/30:active {
  --tw-shadow-color: rgb(133 77 14 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-800\/40:active {
  --tw-shadow-color: rgb(133 77 14 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-800\/5:active {
  --tw-shadow-color: rgb(133 77 14 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-800\/50:active {
  --tw-shadow-color: rgb(133 77 14 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-800\/60:active {
  --tw-shadow-color: rgb(133 77 14 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-800\/70:active {
  --tw-shadow-color: rgb(133 77 14 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-800\/80:active {
  --tw-shadow-color: rgb(133 77 14 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-800\/90:active {
  --tw-shadow-color: rgb(133 77 14 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-900:active {
  --tw-shadow-color: #713f12;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-900\/10:active {
  --tw-shadow-color: rgb(113 63 18 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-900\/20:active {
  --tw-shadow-color: rgb(113 63 18 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-900\/30:active {
  --tw-shadow-color: rgb(113 63 18 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-900\/40:active {
  --tw-shadow-color: rgb(113 63 18 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-900\/5:active {
  --tw-shadow-color: rgb(113 63 18 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-900\/50:active {
  --tw-shadow-color: rgb(113 63 18 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-900\/60:active {
  --tw-shadow-color: rgb(113 63 18 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-900\/70:active {
  --tw-shadow-color: rgb(113 63 18 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-900\/80:active {
  --tw-shadow-color: rgb(113 63 18 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-900\/90:active {
  --tw-shadow-color: rgb(113 63 18 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-950:active {
  --tw-shadow-color: #422006;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-950\/10:active {
  --tw-shadow-color: rgb(66 32 6 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-950\/20:active {
  --tw-shadow-color: rgb(66 32 6 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-950\/30:active {
  --tw-shadow-color: rgb(66 32 6 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-950\/40:active {
  --tw-shadow-color: rgb(66 32 6 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-950\/5:active {
  --tw-shadow-color: rgb(66 32 6 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-950\/50:active {
  --tw-shadow-color: rgb(66 32 6 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-950\/60:active {
  --tw-shadow-color: rgb(66 32 6 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-950\/70:active {
  --tw-shadow-color: rgb(66 32 6 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-950\/80:active {
  --tw-shadow-color: rgb(66 32 6 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-yellow-950\/90:active {
  --tw-shadow-color: rgb(66 32 6 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-100:active {
  --tw-shadow-color: #f4f4f5;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-100\/10:active {
  --tw-shadow-color: rgb(244 244 245 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-100\/20:active {
  --tw-shadow-color: rgb(244 244 245 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-100\/30:active {
  --tw-shadow-color: rgb(244 244 245 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-100\/40:active {
  --tw-shadow-color: rgb(244 244 245 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-100\/5:active {
  --tw-shadow-color: rgb(244 244 245 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-100\/50:active {
  --tw-shadow-color: rgb(244 244 245 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-100\/60:active {
  --tw-shadow-color: rgb(244 244 245 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-100\/70:active {
  --tw-shadow-color: rgb(244 244 245 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-100\/80:active {
  --tw-shadow-color: rgb(244 244 245 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-100\/90:active {
  --tw-shadow-color: rgb(244 244 245 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-200:active {
  --tw-shadow-color: #e4e4e7;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-200\/10:active {
  --tw-shadow-color: rgb(228 228 231 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-200\/20:active {
  --tw-shadow-color: rgb(228 228 231 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-200\/30:active {
  --tw-shadow-color: rgb(228 228 231 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-200\/40:active {
  --tw-shadow-color: rgb(228 228 231 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-200\/5:active {
  --tw-shadow-color: rgb(228 228 231 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-200\/50:active {
  --tw-shadow-color: rgb(228 228 231 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-200\/60:active {
  --tw-shadow-color: rgb(228 228 231 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-200\/70:active {
  --tw-shadow-color: rgb(228 228 231 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-200\/80:active {
  --tw-shadow-color: rgb(228 228 231 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-200\/90:active {
  --tw-shadow-color: rgb(228 228 231 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-300:active {
  --tw-shadow-color: #d4d4d8;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-300\/10:active {
  --tw-shadow-color: rgb(212 212 216 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-300\/20:active {
  --tw-shadow-color: rgb(212 212 216 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-300\/30:active {
  --tw-shadow-color: rgb(212 212 216 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-300\/40:active {
  --tw-shadow-color: rgb(212 212 216 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-300\/5:active {
  --tw-shadow-color: rgb(212 212 216 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-300\/50:active {
  --tw-shadow-color: rgb(212 212 216 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-300\/60:active {
  --tw-shadow-color: rgb(212 212 216 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-300\/70:active {
  --tw-shadow-color: rgb(212 212 216 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-300\/80:active {
  --tw-shadow-color: rgb(212 212 216 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-300\/90:active {
  --tw-shadow-color: rgb(212 212 216 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-400:active {
  --tw-shadow-color: #a1a1aa;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-400\/10:active {
  --tw-shadow-color: rgb(161 161 170 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-400\/20:active {
  --tw-shadow-color: rgb(161 161 170 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-400\/30:active {
  --tw-shadow-color: rgb(161 161 170 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-400\/40:active {
  --tw-shadow-color: rgb(161 161 170 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-400\/5:active {
  --tw-shadow-color: rgb(161 161 170 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-400\/50:active {
  --tw-shadow-color: rgb(161 161 170 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-400\/60:active {
  --tw-shadow-color: rgb(161 161 170 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-400\/70:active {
  --tw-shadow-color: rgb(161 161 170 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-400\/80:active {
  --tw-shadow-color: rgb(161 161 170 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-400\/90:active {
  --tw-shadow-color: rgb(161 161 170 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-50:active {
  --tw-shadow-color: #fafafa;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-50\/10:active {
  --tw-shadow-color: rgb(250 250 250 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-50\/20:active {
  --tw-shadow-color: rgb(250 250 250 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-50\/30:active {
  --tw-shadow-color: rgb(250 250 250 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-50\/40:active {
  --tw-shadow-color: rgb(250 250 250 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-50\/5:active {
  --tw-shadow-color: rgb(250 250 250 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-50\/50:active {
  --tw-shadow-color: rgb(250 250 250 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-50\/60:active {
  --tw-shadow-color: rgb(250 250 250 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-50\/70:active {
  --tw-shadow-color: rgb(250 250 250 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-50\/80:active {
  --tw-shadow-color: rgb(250 250 250 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-50\/90:active {
  --tw-shadow-color: rgb(250 250 250 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-500:active {
  --tw-shadow-color: #71717a;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-500\/10:active {
  --tw-shadow-color: rgb(113 113 122 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-500\/20:active {
  --tw-shadow-color: rgb(113 113 122 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-500\/30:active {
  --tw-shadow-color: rgb(113 113 122 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-500\/40:active {
  --tw-shadow-color: rgb(113 113 122 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-500\/5:active {
  --tw-shadow-color: rgb(113 113 122 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-500\/50:active {
  --tw-shadow-color: rgb(113 113 122 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-500\/60:active {
  --tw-shadow-color: rgb(113 113 122 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-500\/70:active {
  --tw-shadow-color: rgb(113 113 122 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-500\/80:active {
  --tw-shadow-color: rgb(113 113 122 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-500\/90:active {
  --tw-shadow-color: rgb(113 113 122 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-600:active {
  --tw-shadow-color: #52525b;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-600\/10:active {
  --tw-shadow-color: rgb(82 82 91 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-600\/20:active {
  --tw-shadow-color: rgb(82 82 91 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-600\/30:active {
  --tw-shadow-color: rgb(82 82 91 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-600\/40:active {
  --tw-shadow-color: rgb(82 82 91 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-600\/5:active {
  --tw-shadow-color: rgb(82 82 91 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-600\/50:active {
  --tw-shadow-color: rgb(82 82 91 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-600\/60:active {
  --tw-shadow-color: rgb(82 82 91 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-600\/70:active {
  --tw-shadow-color: rgb(82 82 91 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-600\/80:active {
  --tw-shadow-color: rgb(82 82 91 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-600\/90:active {
  --tw-shadow-color: rgb(82 82 91 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-700:active {
  --tw-shadow-color: #3f3f46;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-700\/10:active {
  --tw-shadow-color: rgb(63 63 70 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-700\/20:active {
  --tw-shadow-color: rgb(63 63 70 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-700\/30:active {
  --tw-shadow-color: rgb(63 63 70 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-700\/40:active {
  --tw-shadow-color: rgb(63 63 70 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-700\/5:active {
  --tw-shadow-color: rgb(63 63 70 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-700\/50:active {
  --tw-shadow-color: rgb(63 63 70 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-700\/60:active {
  --tw-shadow-color: rgb(63 63 70 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-700\/70:active {
  --tw-shadow-color: rgb(63 63 70 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-700\/80:active {
  --tw-shadow-color: rgb(63 63 70 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-700\/90:active {
  --tw-shadow-color: rgb(63 63 70 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-800:active {
  --tw-shadow-color: #27272a;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-800\/10:active {
  --tw-shadow-color: rgb(39 39 42 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-800\/20:active {
  --tw-shadow-color: rgb(39 39 42 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-800\/30:active {
  --tw-shadow-color: rgb(39 39 42 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-800\/40:active {
  --tw-shadow-color: rgb(39 39 42 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-800\/5:active {
  --tw-shadow-color: rgb(39 39 42 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-800\/50:active {
  --tw-shadow-color: rgb(39 39 42 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-800\/60:active {
  --tw-shadow-color: rgb(39 39 42 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-800\/70:active {
  --tw-shadow-color: rgb(39 39 42 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-800\/80:active {
  --tw-shadow-color: rgb(39 39 42 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-800\/90:active {
  --tw-shadow-color: rgb(39 39 42 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-900:active {
  --tw-shadow-color: #18181b;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-900\/10:active {
  --tw-shadow-color: rgb(24 24 27 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-900\/20:active {
  --tw-shadow-color: rgb(24 24 27 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-900\/30:active {
  --tw-shadow-color: rgb(24 24 27 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-900\/40:active {
  --tw-shadow-color: rgb(24 24 27 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-900\/5:active {
  --tw-shadow-color: rgb(24 24 27 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-900\/50:active {
  --tw-shadow-color: rgb(24 24 27 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-900\/60:active {
  --tw-shadow-color: rgb(24 24 27 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-900\/70:active {
  --tw-shadow-color: rgb(24 24 27 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-900\/80:active {
  --tw-shadow-color: rgb(24 24 27 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-900\/90:active {
  --tw-shadow-color: rgb(24 24 27 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-950:active {
  --tw-shadow-color: #09090b;
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-950\/10:active {
  --tw-shadow-color: rgb(9 9 11 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-950\/20:active {
  --tw-shadow-color: rgb(9 9 11 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-950\/30:active {
  --tw-shadow-color: rgb(9 9 11 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-950\/40:active {
  --tw-shadow-color: rgb(9 9 11 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-950\/5:active {
  --tw-shadow-color: rgb(9 9 11 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-950\/50:active {
  --tw-shadow-color: rgb(9 9 11 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-950\/60:active {
  --tw-shadow-color: rgb(9 9 11 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-950\/70:active {
  --tw-shadow-color: rgb(9 9 11 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-950\/80:active {
  --tw-shadow-color: rgb(9 9 11 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:shadow-zinc-950\/90:active {
  --tw-shadow-color: rgb(9 9 11 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}
.active\:ring-1:active {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.active\:ring-2:active {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.active\:ring-4:active {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.active\:ring-8:active {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.active\:ring-amber-100:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 243 199 / var(--tw-ring-opacity, 1));
}
.active\:ring-amber-200:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(253 230 138 / var(--tw-ring-opacity, 1));
}
.active\:ring-amber-300:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(252 211 77 / var(--tw-ring-opacity, 1));
}
.active\:ring-amber-400:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(251 191 36 / var(--tw-ring-opacity, 1));
}
.active\:ring-amber-50:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 251 235 / var(--tw-ring-opacity, 1));
}
.active\:ring-amber-500:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(245 158 11 / var(--tw-ring-opacity, 1));
}
.active\:ring-amber-600:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(217 119 6 / var(--tw-ring-opacity, 1));
}
.active\:ring-amber-700:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(180 83 9 / var(--tw-ring-opacity, 1));
}
.active\:ring-amber-800:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(146 64 14 / var(--tw-ring-opacity, 1));
}
.active\:ring-amber-900:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(120 53 15 / var(--tw-ring-opacity, 1));
}
.active\:ring-amber-950:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(69 26 3 / var(--tw-ring-opacity, 1));
}
.active\:ring-black:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity, 1));
}
.active\:ring-blue-100:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(219 234 254 / var(--tw-ring-opacity, 1));
}
.active\:ring-blue-200:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(191 219 254 / var(--tw-ring-opacity, 1));
}
.active\:ring-blue-300:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(147 197 253 / var(--tw-ring-opacity, 1));
}
.active\:ring-blue-400:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(96 165 250 / var(--tw-ring-opacity, 1));
}
.active\:ring-blue-50:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(239 246 255 / var(--tw-ring-opacity, 1));
}
.active\:ring-blue-500:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
}
.active\:ring-blue-600:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(37 99 235 / var(--tw-ring-opacity, 1));
}
.active\:ring-blue-700:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(29 78 216 / var(--tw-ring-opacity, 1));
}
.active\:ring-blue-800:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(30 64 175 / var(--tw-ring-opacity, 1));
}
.active\:ring-blue-900:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(30 58 138 / var(--tw-ring-opacity, 1));
}
.active\:ring-blue-950:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(23 37 84 / var(--tw-ring-opacity, 1));
}
.active\:ring-cyan-100:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(207 250 254 / var(--tw-ring-opacity, 1));
}
.active\:ring-cyan-200:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(165 243 252 / var(--tw-ring-opacity, 1));
}
.active\:ring-cyan-300:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(103 232 249 / var(--tw-ring-opacity, 1));
}
.active\:ring-cyan-400:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(34 211 238 / var(--tw-ring-opacity, 1));
}
.active\:ring-cyan-50:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(236 254 255 / var(--tw-ring-opacity, 1));
}
.active\:ring-cyan-500:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(6 182 212 / var(--tw-ring-opacity, 1));
}
.active\:ring-cyan-600:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(8 145 178 / var(--tw-ring-opacity, 1));
}
.active\:ring-cyan-700:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(14 116 144 / var(--tw-ring-opacity, 1));
}
.active\:ring-cyan-800:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(21 94 117 / var(--tw-ring-opacity, 1));
}
.active\:ring-cyan-900:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(22 78 99 / var(--tw-ring-opacity, 1));
}
.active\:ring-cyan-950:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(8 51 68 / var(--tw-ring-opacity, 1));
}
.active\:ring-emerald-100:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(209 250 229 / var(--tw-ring-opacity, 1));
}
.active\:ring-emerald-200:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(167 243 208 / var(--tw-ring-opacity, 1));
}
.active\:ring-emerald-300:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(110 231 183 / var(--tw-ring-opacity, 1));
}
.active\:ring-emerald-400:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(52 211 153 / var(--tw-ring-opacity, 1));
}
.active\:ring-emerald-50:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(236 253 245 / var(--tw-ring-opacity, 1));
}
.active\:ring-emerald-500:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(16 185 129 / var(--tw-ring-opacity, 1));
}
.active\:ring-emerald-600:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(5 150 105 / var(--tw-ring-opacity, 1));
}
.active\:ring-emerald-700:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(4 120 87 / var(--tw-ring-opacity, 1));
}
.active\:ring-emerald-800:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(6 95 70 / var(--tw-ring-opacity, 1));
}
.active\:ring-emerald-900:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(6 78 59 / var(--tw-ring-opacity, 1));
}
.active\:ring-emerald-950:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(2 44 34 / var(--tw-ring-opacity, 1));
}
.active\:ring-fuchsia-100:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(250 232 255 / var(--tw-ring-opacity, 1));
}
.active\:ring-fuchsia-200:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(245 208 254 / var(--tw-ring-opacity, 1));
}
.active\:ring-fuchsia-300:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(240 171 252 / var(--tw-ring-opacity, 1));
}
.active\:ring-fuchsia-400:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(232 121 249 / var(--tw-ring-opacity, 1));
}
.active\:ring-fuchsia-50:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(253 244 255 / var(--tw-ring-opacity, 1));
}
.active\:ring-fuchsia-500:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(217 70 239 / var(--tw-ring-opacity, 1));
}
.active\:ring-fuchsia-600:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(192 38 211 / var(--tw-ring-opacity, 1));
}
.active\:ring-fuchsia-700:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(162 28 175 / var(--tw-ring-opacity, 1));
}
.active\:ring-fuchsia-800:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(134 25 143 / var(--tw-ring-opacity, 1));
}
.active\:ring-fuchsia-900:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(112 26 117 / var(--tw-ring-opacity, 1));
}
.active\:ring-fuchsia-950:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(74 4 78 / var(--tw-ring-opacity, 1));
}
.active\:ring-gray-100:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(243 244 246 / var(--tw-ring-opacity, 1));
}
.active\:ring-gray-200:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity, 1));
}
.active\:ring-gray-300:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity, 1));
}
.active\:ring-gray-400:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(156 163 175 / var(--tw-ring-opacity, 1));
}
.active\:ring-gray-50:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(249 250 251 / var(--tw-ring-opacity, 1));
}
.active\:ring-gray-500:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(107 114 128 / var(--tw-ring-opacity, 1));
}
.active\:ring-gray-600:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(75 85 99 / var(--tw-ring-opacity, 1));
}
.active\:ring-gray-700:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(55 65 81 / var(--tw-ring-opacity, 1));
}
.active\:ring-gray-800:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(31 41 55 / var(--tw-ring-opacity, 1));
}
.active\:ring-gray-900:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(17 24 39 / var(--tw-ring-opacity, 1));
}
.active\:ring-gray-950:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(3 7 18 / var(--tw-ring-opacity, 1));
}
.active\:ring-green-100:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(220 252 231 / var(--tw-ring-opacity, 1));
}
.active\:ring-green-200:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(187 247 208 / var(--tw-ring-opacity, 1));
}
.active\:ring-green-300:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(134 239 172 / var(--tw-ring-opacity, 1));
}
.active\:ring-green-400:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(74 222 128 / var(--tw-ring-opacity, 1));
}
.active\:ring-green-50:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(240 253 244 / var(--tw-ring-opacity, 1));
}
.active\:ring-green-500:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(34 197 94 / var(--tw-ring-opacity, 1));
}
.active\:ring-green-600:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(22 163 74 / var(--tw-ring-opacity, 1));
}
.active\:ring-green-700:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(21 128 61 / var(--tw-ring-opacity, 1));
}
.active\:ring-green-800:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(22 101 52 / var(--tw-ring-opacity, 1));
}
.active\:ring-green-900:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(20 83 45 / var(--tw-ring-opacity, 1));
}
.active\:ring-green-950:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(5 46 22 / var(--tw-ring-opacity, 1));
}
.active\:ring-indigo-100:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(224 231 255 / var(--tw-ring-opacity, 1));
}
.active\:ring-indigo-200:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(199 210 254 / var(--tw-ring-opacity, 1));
}
.active\:ring-indigo-300:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(165 180 252 / var(--tw-ring-opacity, 1));
}
.active\:ring-indigo-400:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(129 140 248 / var(--tw-ring-opacity, 1));
}
.active\:ring-indigo-50:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(238 242 255 / var(--tw-ring-opacity, 1));
}
.active\:ring-indigo-500:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(99 102 241 / var(--tw-ring-opacity, 1));
}
.active\:ring-indigo-600:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(79 70 229 / var(--tw-ring-opacity, 1));
}
.active\:ring-indigo-700:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(67 56 202 / var(--tw-ring-opacity, 1));
}
.active\:ring-indigo-800:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(55 48 163 / var(--tw-ring-opacity, 1));
}
.active\:ring-indigo-900:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(49 46 129 / var(--tw-ring-opacity, 1));
}
.active\:ring-indigo-950:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(30 27 75 / var(--tw-ring-opacity, 1));
}
.active\:ring-lime-100:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(236 252 203 / var(--tw-ring-opacity, 1));
}
.active\:ring-lime-200:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(217 249 157 / var(--tw-ring-opacity, 1));
}
.active\:ring-lime-300:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(190 242 100 / var(--tw-ring-opacity, 1));
}
.active\:ring-lime-400:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(163 230 53 / var(--tw-ring-opacity, 1));
}
.active\:ring-lime-50:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(247 254 231 / var(--tw-ring-opacity, 1));
}
.active\:ring-lime-500:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(132 204 22 / var(--tw-ring-opacity, 1));
}
.active\:ring-lime-600:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(101 163 13 / var(--tw-ring-opacity, 1));
}
.active\:ring-lime-700:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(77 124 15 / var(--tw-ring-opacity, 1));
}
.active\:ring-lime-800:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(63 98 18 / var(--tw-ring-opacity, 1));
}
.active\:ring-lime-900:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(54 83 20 / var(--tw-ring-opacity, 1));
}
.active\:ring-lime-950:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(26 46 5 / var(--tw-ring-opacity, 1));
}
.active\:ring-neutral-100:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(245 245 245 / var(--tw-ring-opacity, 1));
}
.active\:ring-neutral-200:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(229 229 229 / var(--tw-ring-opacity, 1));
}
.active\:ring-neutral-300:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(212 212 212 / var(--tw-ring-opacity, 1));
}
.active\:ring-neutral-400:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(163 163 163 / var(--tw-ring-opacity, 1));
}
.active\:ring-neutral-50:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(250 250 250 / var(--tw-ring-opacity, 1));
}
.active\:ring-neutral-500:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(115 115 115 / var(--tw-ring-opacity, 1));
}
.active\:ring-neutral-600:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(82 82 82 / var(--tw-ring-opacity, 1));
}
.active\:ring-neutral-700:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(64 64 64 / var(--tw-ring-opacity, 1));
}
.active\:ring-neutral-800:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(38 38 38 / var(--tw-ring-opacity, 1));
}
.active\:ring-neutral-900:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(23 23 23 / var(--tw-ring-opacity, 1));
}
.active\:ring-neutral-950:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(10 10 10 / var(--tw-ring-opacity, 1));
}
.active\:ring-orange-100:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 237 213 / var(--tw-ring-opacity, 1));
}
.active\:ring-orange-200:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 215 170 / var(--tw-ring-opacity, 1));
}
.active\:ring-orange-300:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(253 186 116 / var(--tw-ring-opacity, 1));
}
.active\:ring-orange-400:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(251 146 60 / var(--tw-ring-opacity, 1));
}
.active\:ring-orange-50:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 247 237 / var(--tw-ring-opacity, 1));
}
.active\:ring-orange-500:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(249 115 22 / var(--tw-ring-opacity, 1));
}
.active\:ring-orange-600:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(234 88 12 / var(--tw-ring-opacity, 1));
}
.active\:ring-orange-700:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(194 65 12 / var(--tw-ring-opacity, 1));
}
.active\:ring-orange-800:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(154 52 18 / var(--tw-ring-opacity, 1));
}
.active\:ring-orange-900:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(124 45 18 / var(--tw-ring-opacity, 1));
}
.active\:ring-orange-950:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(67 20 7 / var(--tw-ring-opacity, 1));
}
.active\:ring-pink-100:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(252 231 243 / var(--tw-ring-opacity, 1));
}
.active\:ring-pink-200:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(251 207 232 / var(--tw-ring-opacity, 1));
}
.active\:ring-pink-300:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(249 168 212 / var(--tw-ring-opacity, 1));
}
.active\:ring-pink-400:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(244 114 182 / var(--tw-ring-opacity, 1));
}
.active\:ring-pink-50:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(253 242 248 / var(--tw-ring-opacity, 1));
}
.active\:ring-pink-500:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(236 72 153 / var(--tw-ring-opacity, 1));
}
.active\:ring-pink-600:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(219 39 119 / var(--tw-ring-opacity, 1));
}
.active\:ring-pink-700:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(190 24 93 / var(--tw-ring-opacity, 1));
}
.active\:ring-pink-800:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(157 23 77 / var(--tw-ring-opacity, 1));
}
.active\:ring-pink-900:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(131 24 67 / var(--tw-ring-opacity, 1));
}
.active\:ring-pink-950:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(80 7 36 / var(--tw-ring-opacity, 1));
}
.active\:ring-purple-100:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(243 232 255 / var(--tw-ring-opacity, 1));
}
.active\:ring-purple-200:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(233 213 255 / var(--tw-ring-opacity, 1));
}
.active\:ring-purple-300:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(216 180 254 / var(--tw-ring-opacity, 1));
}
.active\:ring-purple-400:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(192 132 252 / var(--tw-ring-opacity, 1));
}
.active\:ring-purple-50:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(250 245 255 / var(--tw-ring-opacity, 1));
}
.active\:ring-purple-500:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(168 85 247 / var(--tw-ring-opacity, 1));
}
.active\:ring-purple-600:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(147 51 234 / var(--tw-ring-opacity, 1));
}
.active\:ring-purple-700:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(126 34 206 / var(--tw-ring-opacity, 1));
}
.active\:ring-purple-800:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(107 33 168 / var(--tw-ring-opacity, 1));
}
.active\:ring-purple-900:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(88 28 135 / var(--tw-ring-opacity, 1));
}
.active\:ring-purple-950:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 7 100 / var(--tw-ring-opacity, 1));
}
.active\:ring-red-100:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 226 226 / var(--tw-ring-opacity, 1));
}
.active\:ring-red-200:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 202 202 / var(--tw-ring-opacity, 1));
}
.active\:ring-red-300:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(252 165 165 / var(--tw-ring-opacity, 1));
}
.active\:ring-red-400:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(248 113 113 / var(--tw-ring-opacity, 1));
}
.active\:ring-red-50:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 242 242 / var(--tw-ring-opacity, 1));
}
.active\:ring-red-500:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity, 1));
}
.active\:ring-red-600:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(220 38 38 / var(--tw-ring-opacity, 1));
}
.active\:ring-red-700:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(185 28 28 / var(--tw-ring-opacity, 1));
}
.active\:ring-red-800:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(153 27 27 / var(--tw-ring-opacity, 1));
}
.active\:ring-red-900:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(127 29 29 / var(--tw-ring-opacity, 1));
}
.active\:ring-red-950:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(69 10 10 / var(--tw-ring-opacity, 1));
}
.active\:ring-rose-100:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 228 230 / var(--tw-ring-opacity, 1));
}
.active\:ring-rose-200:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 205 211 / var(--tw-ring-opacity, 1));
}
.active\:ring-rose-300:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(253 164 175 / var(--tw-ring-opacity, 1));
}
.active\:ring-rose-400:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(251 113 133 / var(--tw-ring-opacity, 1));
}
.active\:ring-rose-50:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 241 242 / var(--tw-ring-opacity, 1));
}
.active\:ring-rose-500:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(244 63 94 / var(--tw-ring-opacity, 1));
}
.active\:ring-rose-600:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(225 29 72 / var(--tw-ring-opacity, 1));
}
.active\:ring-rose-700:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(190 18 60 / var(--tw-ring-opacity, 1));
}
.active\:ring-rose-800:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(159 18 57 / var(--tw-ring-opacity, 1));
}
.active\:ring-rose-900:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(136 19 55 / var(--tw-ring-opacity, 1));
}
.active\:ring-rose-950:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(76 5 25 / var(--tw-ring-opacity, 1));
}
.active\:ring-sky-100:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(224 242 254 / var(--tw-ring-opacity, 1));
}
.active\:ring-sky-200:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(186 230 253 / var(--tw-ring-opacity, 1));
}
.active\:ring-sky-300:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(125 211 252 / var(--tw-ring-opacity, 1));
}
.active\:ring-sky-400:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(56 189 248 / var(--tw-ring-opacity, 1));
}
.active\:ring-sky-50:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(240 249 255 / var(--tw-ring-opacity, 1));
}
.active\:ring-sky-500:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(14 165 233 / var(--tw-ring-opacity, 1));
}
.active\:ring-sky-600:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(2 132 199 / var(--tw-ring-opacity, 1));
}
.active\:ring-sky-700:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(3 105 161 / var(--tw-ring-opacity, 1));
}
.active\:ring-sky-800:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(7 89 133 / var(--tw-ring-opacity, 1));
}
.active\:ring-sky-900:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(12 74 110 / var(--tw-ring-opacity, 1));
}
.active\:ring-sky-950:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(8 47 73 / var(--tw-ring-opacity, 1));
}
.active\:ring-slate-100:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(241 245 249 / var(--tw-ring-opacity, 1));
}
.active\:ring-slate-200:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(226 232 240 / var(--tw-ring-opacity, 1));
}
.active\:ring-slate-300:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(203 213 225 / var(--tw-ring-opacity, 1));
}
.active\:ring-slate-400:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(148 163 184 / var(--tw-ring-opacity, 1));
}
.active\:ring-slate-50:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(248 250 252 / var(--tw-ring-opacity, 1));
}
.active\:ring-slate-500:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(100 116 139 / var(--tw-ring-opacity, 1));
}
.active\:ring-slate-600:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(71 85 105 / var(--tw-ring-opacity, 1));
}
.active\:ring-slate-700:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(51 65 85 / var(--tw-ring-opacity, 1));
}
.active\:ring-slate-800:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(30 41 59 / var(--tw-ring-opacity, 1));
}
.active\:ring-slate-900:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(15 23 42 / var(--tw-ring-opacity, 1));
}
.active\:ring-slate-950:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(2 6 23 / var(--tw-ring-opacity, 1));
}
.active\:ring-stone-100:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(245 245 244 / var(--tw-ring-opacity, 1));
}
.active\:ring-stone-200:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(231 229 228 / var(--tw-ring-opacity, 1));
}
.active\:ring-stone-300:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(214 211 209 / var(--tw-ring-opacity, 1));
}
.active\:ring-stone-400:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(168 162 158 / var(--tw-ring-opacity, 1));
}
.active\:ring-stone-50:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(250 250 249 / var(--tw-ring-opacity, 1));
}
.active\:ring-stone-500:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(120 113 108 / var(--tw-ring-opacity, 1));
}
.active\:ring-stone-600:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(87 83 78 / var(--tw-ring-opacity, 1));
}
.active\:ring-stone-700:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(68 64 60 / var(--tw-ring-opacity, 1));
}
.active\:ring-stone-800:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(41 37 36 / var(--tw-ring-opacity, 1));
}
.active\:ring-stone-900:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(28 25 23 / var(--tw-ring-opacity, 1));
}
.active\:ring-stone-950:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(12 10 9 / var(--tw-ring-opacity, 1));
}
.active\:ring-teal-100:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(204 251 241 / var(--tw-ring-opacity, 1));
}
.active\:ring-teal-200:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(153 246 228 / var(--tw-ring-opacity, 1));
}
.active\:ring-teal-300:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(94 234 212 / var(--tw-ring-opacity, 1));
}
.active\:ring-teal-400:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(45 212 191 / var(--tw-ring-opacity, 1));
}
.active\:ring-teal-50:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(240 253 250 / var(--tw-ring-opacity, 1));
}
.active\:ring-teal-500:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(20 184 166 / var(--tw-ring-opacity, 1));
}
.active\:ring-teal-600:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(13 148 136 / var(--tw-ring-opacity, 1));
}
.active\:ring-teal-700:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(15 118 110 / var(--tw-ring-opacity, 1));
}
.active\:ring-teal-800:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(17 94 89 / var(--tw-ring-opacity, 1));
}
.active\:ring-teal-900:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(19 78 74 / var(--tw-ring-opacity, 1));
}
.active\:ring-teal-950:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(4 47 46 / var(--tw-ring-opacity, 1));
}
.active\:ring-violet-100:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(237 233 254 / var(--tw-ring-opacity, 1));
}
.active\:ring-violet-200:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(221 214 254 / var(--tw-ring-opacity, 1));
}
.active\:ring-violet-300:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(196 181 253 / var(--tw-ring-opacity, 1));
}
.active\:ring-violet-400:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(167 139 250 / var(--tw-ring-opacity, 1));
}
.active\:ring-violet-50:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(245 243 255 / var(--tw-ring-opacity, 1));
}
.active\:ring-violet-500:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(139 92 246 / var(--tw-ring-opacity, 1));
}
.active\:ring-violet-600:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(124 58 237 / var(--tw-ring-opacity, 1));
}
.active\:ring-violet-700:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(109 40 217 / var(--tw-ring-opacity, 1));
}
.active\:ring-violet-800:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(91 33 182 / var(--tw-ring-opacity, 1));
}
.active\:ring-violet-900:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(76 29 149 / var(--tw-ring-opacity, 1));
}
.active\:ring-violet-950:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(46 16 101 / var(--tw-ring-opacity, 1));
}
.active\:ring-white:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity, 1));
}
.active\:ring-yellow-100:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 249 195 / var(--tw-ring-opacity, 1));
}
.active\:ring-yellow-200:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 240 138 / var(--tw-ring-opacity, 1));
}
.active\:ring-yellow-300:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(253 224 71 / var(--tw-ring-opacity, 1));
}
.active\:ring-yellow-400:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(250 204 21 / var(--tw-ring-opacity, 1));
}
.active\:ring-yellow-50:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 252 232 / var(--tw-ring-opacity, 1));
}
.active\:ring-yellow-500:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(234 179 8 / var(--tw-ring-opacity, 1));
}
.active\:ring-yellow-600:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(202 138 4 / var(--tw-ring-opacity, 1));
}
.active\:ring-yellow-700:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(161 98 7 / var(--tw-ring-opacity, 1));
}
.active\:ring-yellow-800:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(133 77 14 / var(--tw-ring-opacity, 1));
}
.active\:ring-yellow-900:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(113 63 18 / var(--tw-ring-opacity, 1));
}
.active\:ring-yellow-950:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(66 32 6 / var(--tw-ring-opacity, 1));
}
.active\:ring-zinc-100:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(244 244 245 / var(--tw-ring-opacity, 1));
}
.active\:ring-zinc-200:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(228 228 231 / var(--tw-ring-opacity, 1));
}
.active\:ring-zinc-300:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(212 212 216 / var(--tw-ring-opacity, 1));
}
.active\:ring-zinc-400:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(161 161 170 / var(--tw-ring-opacity, 1));
}
.active\:ring-zinc-50:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(250 250 250 / var(--tw-ring-opacity, 1));
}
.active\:ring-zinc-500:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(113 113 122 / var(--tw-ring-opacity, 1));
}
.active\:ring-zinc-600:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(82 82 91 / var(--tw-ring-opacity, 1));
}
.active\:ring-zinc-700:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(63 63 70 / var(--tw-ring-opacity, 1));
}
.active\:ring-zinc-800:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(39 39 42 / var(--tw-ring-opacity, 1));
}
.active\:ring-zinc-900:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(24 24 27 / var(--tw-ring-opacity, 1));
}
.active\:ring-zinc-950:active {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(9 9 11 / var(--tw-ring-opacity, 1));
}
.active\:blur-2xl:active {
  --tw-blur: blur(40px);
  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);
}
.active\:blur-3xl:active {
  --tw-blur: blur(64px);
  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);
}
.active\:blur-lg:active {
  --tw-blur: blur(16px);
  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);
}
.active\:blur-md:active {
  --tw-blur: blur(12px);
  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);
}
.active\:blur-sm:active {
  --tw-blur: blur(4px);
  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);
}
.active\:blur-xl:active {
  --tw-blur: blur(24px);
  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);
}
.active\:brightness-90:active {
  --tw-brightness: brightness(.9);
  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);
}
.active\:drop-shadow-lg:active {
  --tw-drop-shadow: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
  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);
}
.active\:drop-shadow-md:active {
  --tw-drop-shadow: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
  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);
}
.active\:drop-shadow-sm:active {
  --tw-drop-shadow: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05));
  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);
}
.active\:backdrop-blur-lg:active {
  --tw-backdrop-blur: blur(16px);
  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);
}
.active\:backdrop-blur-md:active {
  --tw-backdrop-blur: blur(12px);
  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);
}
.active\:motion-blur-in-lg:active {
  --motion-origin-blur: 16px;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-blur-in-md:active {
  --motion-origin-blur: 12px;
  --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-blur-out-lg:active {
  --motion-end-blur: 16px;
  --motion-filter-out-animation: motion-filter-out calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-out-animation), var(--motion-translate-out-animation), var(--motion-rotate-out-animation), var(--motion-filter-out-animation), var(--motion-opacity-out-animation), var(--motion-background-color-out-animation), var(--motion-text-color-out-animation);
}
.active\:motion-blur-out-md:active {
  --motion-end-blur: 12px;
  --motion-filter-out-animation: motion-filter-out calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
  animation: var(--motion-scale-out-animation), var(--motion-translate-out-animation), var(--motion-rotate-out-animation), var(--motion-filter-out-animation), var(--motion-opacity-out-animation), var(--motion-background-color-out-animation), var(--motion-text-color-out-animation);
}
.active\:motion-blur-loop-lg:active {
  --motion-loop-blur: 16px;
  --motion-filter-loop-animation: motion-filter-loop-mirror calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both var(--motion-filter-loop-count, var(--motion-loop-count));
  animation-composition: accumulate;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.active\:motion-blur-loop-md:active {
  --motion-loop-blur: 12px;
  --motion-filter-loop-animation: motion-filter-loop-mirror calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both var(--motion-filter-loop-count, var(--motion-loop-count));
  animation-composition: accumulate;
  animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
}
.disabled\:pointer-events-none:disabled {
  pointer-events: none;
}
.disabled\:cursor-not-allowed:disabled {
  cursor: not-allowed;
}
.disabled\:opacity-50:disabled {
  opacity: 0.5;
}
.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}
.group.toaster .group-\[\.toaster\]\:border-border {
  border-color: var(--border);
}
.group.toast .group-\[\.toast\]\:bg-primary {
  background-color: var(--primary);
}
.group.toaster .group-\[\.toaster\]\:bg-background {
  background-color: var(--background);
}
.group.destructive .group-\[\.destructive\]\:text-red-300 {
  --tw-text-opacity: 1;
  color: rgb(252 165 165 / var(--tw-text-opacity, 1));
}
.group.toast .group-\[\.toast\]\:text-primary-foreground {
  color: var(--primary-foreground);
}
.group.toaster .group-\[\.toaster\]\:text-foreground {
  color: var(--foreground);
}
.group.toaster .group-\[\.toaster\]\:shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.group.destructive .group-\[\.destructive\]\:hover\:bg-destructive:hover {
  background-color: var(--destructive);
}
.group.destructive .group-\[\.destructive\]\:hover\:text-destructive-foreground:hover {
  color: var(--destructive-foreground);
}
.group.destructive .group-\[\.destructive\]\:hover\:text-red-50:hover {
  --tw-text-opacity: 1;
  color: rgb(254 242 242 / var(--tw-text-opacity, 1));
}
.group.destructive .group-\[\.destructive\]\:focus\:ring-destructive:focus {
  --tw-ring-color: var(--destructive);
}
.group.destructive .group-\[\.destructive\]\:focus\:ring-red-400:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(248 113 113 / var(--tw-ring-opacity, 1));
}
.group.destructive .group-\[\.destructive\]\:focus\:ring-offset-red-600:focus {
  --tw-ring-offset-color: #dc2626;
}
.peer:disabled ~ .peer-disabled\:cursor-not-allowed {
  cursor: not-allowed;
}
.peer:disabled ~ .peer-disabled\:opacity-70 {
  opacity: 0.7;
}
.data-\[disabled\]\:pointer-events-none[data-disabled] {
  pointer-events: none;
}
.data-\[panel-group-direction\=vertical\]\:h-px[data-panel-group-direction="vertical"] {
  height: 1px;
}
.data-\[panel-group-direction\=vertical\]\:w-full[data-panel-group-direction="vertical"] {
  width: 100%;
}
.data-\[side\=bottom\]\:translate-y-1[data-side="bottom"] {
  --tw-translate-y: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[side\=left\]\:-translate-x-1[data-side="left"] {
  --tw-translate-x: -0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[side\=right\]\:translate-x-1[data-side="right"] {
  --tw-translate-x: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[side\=top\]\:-translate-y-1[data-side="top"] {
  --tw-translate-y: -0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[state\=checked\]\:translate-x-5[data-state="checked"] {
  --tw-translate-x: 1.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[state\=unchecked\]\:translate-x-0[data-state="unchecked"] {
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[swipe\=cancel\]\:translate-x-0[data-swipe="cancel"] {
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[swipe\=end\]\:translate-x-\[var\(--radix-toast-swipe-end-x\)\][data-swipe="end"] {
  --tw-translate-x: var(--radix-toast-swipe-end-x);
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[swipe\=move\]\:translate-x-\[var\(--radix-toast-swipe-move-x\)\][data-swipe="move"] {
  --tw-translate-x: var(--radix-toast-swipe-move-x);
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[panel-group-direction\=vertical\]\:flex-col[data-panel-group-direction="vertical"] {
  flex-direction: column;
}
.data-\[state\=active\]\:bg-background[data-state="active"] {
  background-color: var(--background);
}
.data-\[state\=active\]\:bg-primary[data-state="active"] {
  background-color: var(--primary);
}
.data-\[state\=checked\]\:bg-primary[data-state="checked"] {
  background-color: var(--primary);
}
.data-\[state\=on\]\:bg-accent[data-state="on"] {
  background-color: var(--accent);
}
.data-\[state\=open\]\:bg-accent[data-state="open"] {
  background-color: var(--accent);
}
.data-\[state\=unchecked\]\:bg-input[data-state="unchecked"] {
  background-color: var(--input);
}
.data-\[state\=active\]\:text-foreground[data-state="active"] {
  color: var(--foreground);
}
.data-\[state\=active\]\:text-white[data-state="active"] {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.data-\[state\=checked\]\:text-primary-foreground[data-state="checked"] {
  color: var(--primary-foreground);
}
.data-\[state\=on\]\:text-accent-foreground[data-state="on"] {
  color: var(--accent-foreground);
}
.data-\[disabled\]\:opacity-50[data-disabled] {
  opacity: 0.5;
}
.data-\[state\=active\]\:shadow-sm[data-state="active"] {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.data-\[state\=active\]\:outline-none[data-state="active"] {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.data-\[swipe\=move\]\:transition-none[data-swipe="move"] {
  transition-property: none;
}
.data-\[state\=closed\]\:duration-300[data-state="closed"] {
  transition-duration: 300ms;
}
.data-\[state\=open\]\:duration-500[data-state="open"] {
  transition-duration: 500ms;
}
.data-\[state\=open\]\:animate-in[data-state="open"] {
  animation-name: enter;
  animation-duration: 150ms;
  --tw-enter-opacity: initial;
  --tw-enter-scale: initial;
  --tw-enter-rotate: initial;
  --tw-enter-translate-x: initial;
  --tw-enter-translate-y: initial;
}
.data-\[state\=closed\]\:animate-out[data-state="closed"] {
  animation-name: exit;
  animation-duration: 150ms;
  --tw-exit-opacity: initial;
  --tw-exit-scale: initial;
  --tw-exit-rotate: initial;
  --tw-exit-translate-x: initial;
  --tw-exit-translate-y: initial;
}
.data-\[swipe\=end\]\:animate-out[data-swipe="end"] {
  animation-name: exit;
  animation-duration: 150ms;
  --tw-exit-opacity: initial;
  --tw-exit-scale: initial;
  --tw-exit-rotate: initial;
  --tw-exit-translate-x: initial;
  --tw-exit-translate-y: initial;
}
.data-\[state\=closed\]\:fade-out-0[data-state="closed"] {
  --tw-exit-opacity: 0;
}
.data-\[state\=closed\]\:fade-out-80[data-state="closed"] {
  --tw-exit-opacity: 0.8;
}
.data-\[state\=open\]\:fade-in-0[data-state="open"] {
  --tw-enter-opacity: 0;
}
.data-\[state\=closed\]\:zoom-out-95[data-state="closed"] {
  --tw-exit-scale: .95;
}
.data-\[state\=open\]\:zoom-in-95[data-state="open"] {
  --tw-enter-scale: .95;
}
.data-\[side\=bottom\]\:slide-in-from-top-2[data-side="bottom"] {
  --tw-enter-translate-y: -0.5rem;
}
.data-\[side\=left\]\:slide-in-from-right-2[data-side="left"] {
  --tw-enter-translate-x: 0.5rem;
}
.data-\[side\=right\]\:slide-in-from-left-2[data-side="right"] {
  --tw-enter-translate-x: -0.5rem;
}
.data-\[side\=top\]\:slide-in-from-bottom-2[data-side="top"] {
  --tw-enter-translate-y: 0.5rem;
}
.data-\[state\=closed\]\:slide-out-to-bottom[data-state="closed"] {
  --tw-exit-translate-y: 100%;
}
.data-\[state\=closed\]\:slide-out-to-left[data-state="closed"] {
  --tw-exit-translate-x: -100%;
}
.data-\[state\=closed\]\:slide-out-to-left-1\/2[data-state="closed"] {
  --tw-exit-translate-x: -50%;
}
.data-\[state\=closed\]\:slide-out-to-right[data-state="closed"] {
  --tw-exit-translate-x: 100%;
}
.data-\[state\=closed\]\:slide-out-to-right-full[data-state="closed"] {
  --tw-exit-translate-x: 100%;
}
.data-\[state\=closed\]\:slide-out-to-top[data-state="closed"] {
  --tw-exit-translate-y: -100%;
}
.data-\[state\=closed\]\:slide-out-to-top-\[48\%\][data-state="closed"] {
  --tw-exit-translate-y: -48%;
}
.data-\[state\=open\]\:slide-in-from-bottom[data-state="open"] {
  --tw-enter-translate-y: 100%;
}
.data-\[state\=open\]\:slide-in-from-left[data-state="open"] {
  --tw-enter-translate-x: -100%;
}
.data-\[state\=open\]\:slide-in-from-left-1\/2[data-state="open"] {
  --tw-enter-translate-x: -50%;
}
.data-\[state\=open\]\:slide-in-from-right[data-state="open"] {
  --tw-enter-translate-x: 100%;
}
.data-\[state\=open\]\:slide-in-from-top[data-state="open"] {
  --tw-enter-translate-y: -100%;
}
.data-\[state\=open\]\:slide-in-from-top-\[48\%\][data-state="open"] {
  --tw-enter-translate-y: -48%;
}
.data-\[state\=open\]\:slide-in-from-top-full[data-state="open"] {
  --tw-enter-translate-y: -100%;
}
.data-\[state\=closed\]\:duration-300[data-state="closed"] {
  animation-duration: 300ms;
}
.data-\[state\=open\]\:duration-500[data-state="open"] {
  animation-duration: 500ms;
}
.data-\[panel-group-direction\=vertical\]\:after\:left-0[data-panel-group-direction="vertical"]::after {
  content: var(--tw-content);
  left: 0px;
}
.data-\[panel-group-direction\=vertical\]\:after\:h-1[data-panel-group-direction="vertical"]::after {
  content: var(--tw-content);
  height: 0.25rem;
}
.data-\[panel-group-direction\=vertical\]\:after\:w-full[data-panel-group-direction="vertical"]::after {
  content: var(--tw-content);
  width: 100%;
}
.data-\[panel-group-direction\=vertical\]\:after\:-translate-y-1\/2[data-panel-group-direction="vertical"]::after {
  content: var(--tw-content);
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[panel-group-direction\=vertical\]\:after\:translate-x-0[data-panel-group-direction="vertical"]::after {
  content: var(--tw-content);
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.intersect\:opacity-100:not([no-intersect]) {
  opacity: 1;
}
.intersect\:duration-700:not([no-intersect]) {
  transition-duration: 700ms;
}
.intersect\:animate-in:not([no-intersect]) {
  animation-name: enter;
  animation-duration: 150ms;
  --tw-enter-opacity: initial;
  --tw-enter-scale: initial;
  --tw-enter-rotate: initial;
  --tw-enter-translate-x: initial;
  --tw-enter-translate-y: initial;
}
.intersect\:fade-in:not([no-intersect]) {
  --tw-enter-opacity: 0;
}
.intersect\:slide-in-from-bottom-6:not([no-intersect]) {
  --tw-enter-translate-y: 1.5rem;
}
.intersect\:duration-700:not([no-intersect]) {
  animation-duration: 700ms;
}
.intersect\:fill-mode-both:not([no-intersect]) {
  animation-fill-mode: both;
}
.dark\:border-gray-600:is(.dark *) {
  --tw-border-opacity: 1;
  border-color: rgb(75 85 99 / var(--tw-border-opacity, 1));
}
.dark\:border-gray-700:is(.dark *) {
  --tw-border-opacity: 1;
  border-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
}
.dark\:bg-gray-700:is(.dark *) {
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}
.dark\:bg-gray-800:is(.dark *) {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}
@media (min-width: 640px) {

  .sm\:bottom-0 {
    bottom: 0px;
  }

  .sm\:right-0 {
    right: 0px;
  }

  .sm\:top-auto {
    top: auto;
  }

  .sm\:m-0 {
    margin: 0px;
  }

  .sm\:m-1 {
    margin: 0.25rem;
  }

  .sm\:m-10 {
    margin: 2.5rem;
  }

  .sm\:m-11 {
    margin: 2.75rem;
  }

  .sm\:m-12 {
    margin: 3rem;
  }

  .sm\:m-14 {
    margin: 3.5rem;
  }

  .sm\:m-16 {
    margin: 4rem;
  }

  .sm\:m-2 {
    margin: 0.5rem;
  }

  .sm\:m-20 {
    margin: 5rem;
  }

  .sm\:m-24 {
    margin: 6rem;
  }

  .sm\:m-28 {
    margin: 7rem;
  }

  .sm\:m-3 {
    margin: 0.75rem;
  }

  .sm\:m-32 {
    margin: 8rem;
  }

  .sm\:m-36 {
    margin: 9rem;
  }

  .sm\:m-4 {
    margin: 1rem;
  }

  .sm\:m-40 {
    margin: 10rem;
  }

  .sm\:m-44 {
    margin: 11rem;
  }

  .sm\:m-48 {
    margin: 12rem;
  }

  .sm\:m-5 {
    margin: 1.25rem;
  }

  .sm\:m-52 {
    margin: 13rem;
  }

  .sm\:m-56 {
    margin: 14rem;
  }

  .sm\:m-6 {
    margin: 1.5rem;
  }

  .sm\:m-60 {
    margin: 15rem;
  }

  .sm\:m-64 {
    margin: 16rem;
  }

  .sm\:m-7 {
    margin: 1.75rem;
  }

  .sm\:m-72 {
    margin: 18rem;
  }

  .sm\:m-8 {
    margin: 2rem;
  }

  .sm\:m-80 {
    margin: 20rem;
  }

  .sm\:m-9 {
    margin: 2.25rem;
  }

  .sm\:m-96 {
    margin: 24rem;
  }

  .sm\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }

  .sm\:mx-1 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .sm\:mx-10 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .sm\:mx-11 {
    margin-left: 2.75rem;
    margin-right: 2.75rem;
  }

  .sm\:mx-12 {
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .sm\:mx-14 {
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .sm\:mx-16 {
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .sm\:mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .sm\:mx-20 {
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .sm\:mx-24 {
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .sm\:mx-28 {
    margin-left: 7rem;
    margin-right: 7rem;
  }

  .sm\:mx-3 {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .sm\:mx-32 {
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .sm\:mx-36 {
    margin-left: 9rem;
    margin-right: 9rem;
  }

  .sm\:mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .sm\:mx-40 {
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .sm\:mx-44 {
    margin-left: 11rem;
    margin-right: 11rem;
  }

  .sm\:mx-48 {
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .sm\:mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .sm\:mx-52 {
    margin-left: 13rem;
    margin-right: 13rem;
  }

  .sm\:mx-56 {
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .sm\:mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .sm\:mx-60 {
    margin-left: 15rem;
    margin-right: 15rem;
  }

  .sm\:mx-64 {
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .sm\:mx-7 {
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .sm\:mx-72 {
    margin-left: 18rem;
    margin-right: 18rem;
  }

  .sm\:mx-8 {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .sm\:mx-80 {
    margin-left: 20rem;
    margin-right: 20rem;
  }

  .sm\:mx-9 {
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .sm\:mx-96 {
    margin-left: 24rem;
    margin-right: 24rem;
  }

  .sm\:my-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .sm\:my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .sm\:my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .sm\:my-11 {
    margin-top: 2.75rem;
    margin-bottom: 2.75rem;
  }

  .sm\:my-12 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .sm\:my-14 {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .sm\:my-16 {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .sm\:my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .sm\:my-20 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .sm\:my-24 {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .sm\:my-28 {
    margin-top: 7rem;
    margin-bottom: 7rem;
  }

  .sm\:my-3 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .sm\:my-32 {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .sm\:my-36 {
    margin-top: 9rem;
    margin-bottom: 9rem;
  }

  .sm\:my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .sm\:my-40 {
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .sm\:my-44 {
    margin-top: 11rem;
    margin-bottom: 11rem;
  }

  .sm\:my-48 {
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .sm\:my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .sm\:my-52 {
    margin-top: 13rem;
    margin-bottom: 13rem;
  }

  .sm\:my-56 {
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .sm\:my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .sm\:my-60 {
    margin-top: 15rem;
    margin-bottom: 15rem;
  }

  .sm\:my-64 {
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .sm\:my-7 {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .sm\:my-72 {
    margin-top: 18rem;
    margin-bottom: 18rem;
  }

  .sm\:my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .sm\:my-80 {
    margin-top: 20rem;
    margin-bottom: 20rem;
  }

  .sm\:my-9 {
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }

  .sm\:my-96 {
    margin-top: 24rem;
    margin-bottom: 24rem;
  }

  .sm\:mb-0 {
    margin-bottom: 0px;
  }

  .sm\:mb-1 {
    margin-bottom: 0.25rem;
  }

  .sm\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .sm\:mb-11 {
    margin-bottom: 2.75rem;
  }

  .sm\:mb-12 {
    margin-bottom: 3rem;
  }

  .sm\:mb-14 {
    margin-bottom: 3.5rem;
  }

  .sm\:mb-16 {
    margin-bottom: 4rem;
  }

  .sm\:mb-2 {
    margin-bottom: 0.5rem;
  }

  .sm\:mb-20 {
    margin-bottom: 5rem;
  }

  .sm\:mb-24 {
    margin-bottom: 6rem;
  }

  .sm\:mb-28 {
    margin-bottom: 7rem;
  }

  .sm\:mb-3 {
    margin-bottom: 0.75rem;
  }

  .sm\:mb-32 {
    margin-bottom: 8rem;
  }

  .sm\:mb-36 {
    margin-bottom: 9rem;
  }

  .sm\:mb-4 {
    margin-bottom: 1rem;
  }

  .sm\:mb-40 {
    margin-bottom: 10rem;
  }

  .sm\:mb-44 {
    margin-bottom: 11rem;
  }

  .sm\:mb-48 {
    margin-bottom: 12rem;
  }

  .sm\:mb-5 {
    margin-bottom: 1.25rem;
  }

  .sm\:mb-52 {
    margin-bottom: 13rem;
  }

  .sm\:mb-56 {
    margin-bottom: 14rem;
  }

  .sm\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .sm\:mb-60 {
    margin-bottom: 15rem;
  }

  .sm\:mb-64 {
    margin-bottom: 16rem;
  }

  .sm\:mb-7 {
    margin-bottom: 1.75rem;
  }

  .sm\:mb-72 {
    margin-bottom: 18rem;
  }

  .sm\:mb-8 {
    margin-bottom: 2rem;
  }

  .sm\:mb-80 {
    margin-bottom: 20rem;
  }

  .sm\:mb-9 {
    margin-bottom: 2.25rem;
  }

  .sm\:mb-96 {
    margin-bottom: 24rem;
  }

  .sm\:ml-0 {
    margin-left: 0px;
  }

  .sm\:ml-1 {
    margin-left: 0.25rem;
  }

  .sm\:ml-10 {
    margin-left: 2.5rem;
  }

  .sm\:ml-11 {
    margin-left: 2.75rem;
  }

  .sm\:ml-12 {
    margin-left: 3rem;
  }

  .sm\:ml-14 {
    margin-left: 3.5rem;
  }

  .sm\:ml-16 {
    margin-left: 4rem;
  }

  .sm\:ml-2 {
    margin-left: 0.5rem;
  }

  .sm\:ml-20 {
    margin-left: 5rem;
  }

  .sm\:ml-24 {
    margin-left: 6rem;
  }

  .sm\:ml-28 {
    margin-left: 7rem;
  }

  .sm\:ml-3 {
    margin-left: 0.75rem;
  }

  .sm\:ml-32 {
    margin-left: 8rem;
  }

  .sm\:ml-36 {
    margin-left: 9rem;
  }

  .sm\:ml-4 {
    margin-left: 1rem;
  }

  .sm\:ml-40 {
    margin-left: 10rem;
  }

  .sm\:ml-44 {
    margin-left: 11rem;
  }

  .sm\:ml-48 {
    margin-left: 12rem;
  }

  .sm\:ml-5 {
    margin-left: 1.25rem;
  }

  .sm\:ml-52 {
    margin-left: 13rem;
  }

  .sm\:ml-56 {
    margin-left: 14rem;
  }

  .sm\:ml-6 {
    margin-left: 1.5rem;
  }

  .sm\:ml-60 {
    margin-left: 15rem;
  }

  .sm\:ml-64 {
    margin-left: 16rem;
  }

  .sm\:ml-7 {
    margin-left: 1.75rem;
  }

  .sm\:ml-72 {
    margin-left: 18rem;
  }

  .sm\:ml-8 {
    margin-left: 2rem;
  }

  .sm\:ml-80 {
    margin-left: 20rem;
  }

  .sm\:ml-9 {
    margin-left: 2.25rem;
  }

  .sm\:ml-96 {
    margin-left: 24rem;
  }

  .sm\:mr-0 {
    margin-right: 0px;
  }

  .sm\:mr-1 {
    margin-right: 0.25rem;
  }

  .sm\:mr-10 {
    margin-right: 2.5rem;
  }

  .sm\:mr-11 {
    margin-right: 2.75rem;
  }

  .sm\:mr-12 {
    margin-right: 3rem;
  }

  .sm\:mr-14 {
    margin-right: 3.5rem;
  }

  .sm\:mr-16 {
    margin-right: 4rem;
  }

  .sm\:mr-2 {
    margin-right: 0.5rem;
  }

  .sm\:mr-20 {
    margin-right: 5rem;
  }

  .sm\:mr-24 {
    margin-right: 6rem;
  }

  .sm\:mr-28 {
    margin-right: 7rem;
  }

  .sm\:mr-3 {
    margin-right: 0.75rem;
  }

  .sm\:mr-32 {
    margin-right: 8rem;
  }

  .sm\:mr-36 {
    margin-right: 9rem;
  }

  .sm\:mr-4 {
    margin-right: 1rem;
  }

  .sm\:mr-40 {
    margin-right: 10rem;
  }

  .sm\:mr-44 {
    margin-right: 11rem;
  }

  .sm\:mr-48 {
    margin-right: 12rem;
  }

  .sm\:mr-5 {
    margin-right: 1.25rem;
  }

  .sm\:mr-52 {
    margin-right: 13rem;
  }

  .sm\:mr-56 {
    margin-right: 14rem;
  }

  .sm\:mr-6 {
    margin-right: 1.5rem;
  }

  .sm\:mr-60 {
    margin-right: 15rem;
  }

  .sm\:mr-64 {
    margin-right: 16rem;
  }

  .sm\:mr-7 {
    margin-right: 1.75rem;
  }

  .sm\:mr-72 {
    margin-right: 18rem;
  }

  .sm\:mr-8 {
    margin-right: 2rem;
  }

  .sm\:mr-80 {
    margin-right: 20rem;
  }

  .sm\:mr-9 {
    margin-right: 2.25rem;
  }

  .sm\:mr-96 {
    margin-right: 24rem;
  }

  .sm\:mt-0 {
    margin-top: 0px;
  }

  .sm\:mt-1 {
    margin-top: 0.25rem;
  }

  .sm\:mt-10 {
    margin-top: 2.5rem;
  }

  .sm\:mt-11 {
    margin-top: 2.75rem;
  }

  .sm\:mt-12 {
    margin-top: 3rem;
  }

  .sm\:mt-14 {
    margin-top: 3.5rem;
  }

  .sm\:mt-16 {
    margin-top: 4rem;
  }

  .sm\:mt-2 {
    margin-top: 0.5rem;
  }

  .sm\:mt-20 {
    margin-top: 5rem;
  }

  .sm\:mt-24 {
    margin-top: 6rem;
  }

  .sm\:mt-28 {
    margin-top: 7rem;
  }

  .sm\:mt-3 {
    margin-top: 0.75rem;
  }

  .sm\:mt-32 {
    margin-top: 8rem;
  }

  .sm\:mt-36 {
    margin-top: 9rem;
  }

  .sm\:mt-4 {
    margin-top: 1rem;
  }

  .sm\:mt-40 {
    margin-top: 10rem;
  }

  .sm\:mt-44 {
    margin-top: 11rem;
  }

  .sm\:mt-48 {
    margin-top: 12rem;
  }

  .sm\:mt-5 {
    margin-top: 1.25rem;
  }

  .sm\:mt-52 {
    margin-top: 13rem;
  }

  .sm\:mt-56 {
    margin-top: 14rem;
  }

  .sm\:mt-6 {
    margin-top: 1.5rem;
  }

  .sm\:mt-60 {
    margin-top: 15rem;
  }

  .sm\:mt-64 {
    margin-top: 16rem;
  }

  .sm\:mt-7 {
    margin-top: 1.75rem;
  }

  .sm\:mt-72 {
    margin-top: 18rem;
  }

  .sm\:mt-8 {
    margin-top: 2rem;
  }

  .sm\:mt-80 {
    margin-top: 20rem;
  }

  .sm\:mt-9 {
    margin-top: 2.25rem;
  }

  .sm\:mt-96 {
    margin-top: 24rem;
  }

  .sm\:h-0 {
    height: 0px;
  }

  .sm\:h-0\.5 {
    height: 0.125rem;
  }

  .sm\:h-1 {
    height: 0.25rem;
  }

  .sm\:h-1\.5 {
    height: 0.375rem;
  }

  .sm\:h-1\/2 {
    height: 50%;
  }

  .sm\:h-1\/3 {
    height: 33.333333%;
  }

  .sm\:h-1\/4 {
    height: 25%;
  }

  .sm\:h-1\/5 {
    height: 20%;
  }

  .sm\:h-1\/6 {
    height: 16.666667%;
  }

  .sm\:h-10 {
    height: 2.5rem;
  }

  .sm\:h-11 {
    height: 2.75rem;
  }

  .sm\:h-12 {
    height: 3rem;
  }

  .sm\:h-14 {
    height: 3.5rem;
  }

  .sm\:h-16 {
    height: 4rem;
  }

  .sm\:h-2 {
    height: 0.5rem;
  }

  .sm\:h-2\.5 {
    height: 0.625rem;
  }

  .sm\:h-2\/3 {
    height: 66.666667%;
  }

  .sm\:h-2\/4 {
    height: 50%;
  }

  .sm\:h-2\/5 {
    height: 40%;
  }

  .sm\:h-2\/6 {
    height: 33.333333%;
  }

  .sm\:h-20 {
    height: 5rem;
  }

  .sm\:h-24 {
    height: 6rem;
  }

  .sm\:h-28 {
    height: 7rem;
  }

  .sm\:h-3 {
    height: 0.75rem;
  }

  .sm\:h-3\.5 {
    height: 0.875rem;
  }

  .sm\:h-3\/4 {
    height: 75%;
  }

  .sm\:h-3\/5 {
    height: 60%;
  }

  .sm\:h-3\/6 {
    height: 50%;
  }

  .sm\:h-32 {
    height: 8rem;
  }

  .sm\:h-36 {
    height: 9rem;
  }

  .sm\:h-4 {
    height: 1rem;
  }

  .sm\:h-4\/5 {
    height: 80%;
  }

  .sm\:h-4\/6 {
    height: 66.666667%;
  }

  .sm\:h-40 {
    height: 10rem;
  }

  .sm\:h-44 {
    height: 11rem;
  }

  .sm\:h-48 {
    height: 12rem;
  }

  .sm\:h-5 {
    height: 1.25rem;
  }

  .sm\:h-5\/6 {
    height: 83.333333%;
  }

  .sm\:h-52 {
    height: 13rem;
  }

  .sm\:h-56 {
    height: 14rem;
  }

  .sm\:h-6 {
    height: 1.5rem;
  }

  .sm\:h-60 {
    height: 15rem;
  }

  .sm\:h-64 {
    height: 16rem;
  }

  .sm\:h-7 {
    height: 1.75rem;
  }

  .sm\:h-72 {
    height: 18rem;
  }

  .sm\:h-8 {
    height: 2rem;
  }

  .sm\:h-80 {
    height: 20rem;
  }

  .sm\:h-9 {
    height: 2.25rem;
  }

  .sm\:h-96 {
    height: 24rem;
  }

  .sm\:h-auto {
    height: auto;
  }

  .sm\:h-dvh {
    height: 100dvh;
  }

  .sm\:h-fit {
    height: -moz-fit-content;
    height: fit-content;
  }

  .sm\:h-full {
    height: 100%;
  }

  .sm\:h-lvh {
    height: 100lvh;
  }

  .sm\:h-max {
    height: -moz-max-content;
    height: max-content;
  }

  .sm\:h-min {
    height: -moz-min-content;
    height: min-content;
  }

  .sm\:h-px {
    height: 1px;
  }

  .sm\:h-screen {
    height: 100vh;
  }

  .sm\:h-svh {
    height: 100svh;
  }

  .sm\:max-h-\[var\(--max-h-base-sm\)\] {
    max-height: var(--max-h-base-sm);
  }

  .sm\:max-h-full {
    max-height: 100%;
  }

  .sm\:max-h-none {
    max-height: none;
  }

  .sm\:min-h-full {
    min-height: 100%;
  }

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

  .sm\:w-1\/3 {
    width: 33.333333%;
  }

  .sm\:w-1\/4 {
    width: 25%;
  }

  .sm\:w-1\/5 {
    width: 20%;
  }

  .sm\:w-1\/6 {
    width: 16.666667%;
  }

  .sm\:w-\[var\(--w-sm-base\)\] {
    width: var(--w-sm-base);
  }

  .sm\:w-full {
    width: 100%;
  }

  .sm\:w-screen {
    width: 100vw;
  }

  .sm\:min-w-full {
    min-width: 100%;
  }

  .sm\:max-w-\[var\(--max-w-base-sm\)\] {
    max-width: var(--max-w-base-sm);
  }

  .sm\:max-w-\[var\(--max-w-sm-base\)\] {
    max-width: var(--max-w-sm-base);
  }

  .sm\:max-w-full {
    max-width: 100%;
  }

  .sm\:max-w-lg {
    max-width: 32rem;
  }

  .sm\:max-w-md {
    max-width: 28rem;
  }

  .sm\:max-w-none {
    max-width: none;
  }

  .sm\:max-w-screen-lg {
    max-width: 1024px;
  }

  .sm\:max-w-screen-md {
    max-width: 768px;
  }

  .sm\:max-w-sm {
    max-width: 24rem;
  }

  .sm\:basis-1\/3 {
    flex-basis: 33.333333%;
  }

  .sm\:scale-0 {
    --tw-scale-x: 0;
    --tw-scale-y: 0;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .sm\:scale-100 {
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .sm\:scale-105 {
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .sm\:scale-110 {
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .sm\:scale-125 {
    --tw-scale-x: 1.25;
    --tw-scale-y: 1.25;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .sm\:scale-150 {
    --tw-scale-x: 1.5;
    --tw-scale-y: 1.5;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .sm\:scale-95 {
    --tw-scale-x: .95;
    --tw-scale-y: .95;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .sm\:columns-lg {
    -moz-columns: 32rem;
         columns: 32rem;
  }

  .sm\:columns-md {
    -moz-columns: 28rem;
         columns: 28rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .sm\:gap-1 {
    gap: 0.25rem;
  }

  .sm\:gap-10 {
    gap: 2.5rem;
  }

  .sm\:gap-11 {
    gap: 2.75rem;
  }

  .sm\:gap-12 {
    gap: 3rem;
  }

  .sm\:gap-2 {
    gap: 0.5rem;
  }

  .sm\:gap-3 {
    gap: 0.75rem;
  }

  .sm\:gap-4 {
    gap: 1rem;
  }

  .sm\:gap-5 {
    gap: 1.25rem;
  }

  .sm\:gap-6 {
    gap: 1.5rem;
  }

  .sm\:gap-7 {
    gap: 1.75rem;
  }

  .sm\:gap-8 {
    gap: 2rem;
  }

  .sm\:gap-9 {
    gap: 2.25rem;
  }

  .sm\:space-x-2 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--tw-space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

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

  .sm\:rounded-md {
    border-radius: calc(var(--radius) - 2px);
  }

  .sm\:rounded-xl {
    border-radius: 0.75rem;
  }

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

  .sm\:rounded-b-md {
    border-bottom-right-radius: calc(var(--radius) - 2px);
    border-bottom-left-radius: calc(var(--radius) - 2px);
  }

  .sm\:rounded-e-lg {
    border-start-end-radius: var(--radius);
    border-end-end-radius: var(--radius);
  }

  .sm\:rounded-e-md {
    border-start-end-radius: calc(var(--radius) - 2px);
    border-end-end-radius: calc(var(--radius) - 2px);
  }

  .sm\:rounded-l-lg {
    border-top-left-radius: var(--radius);
    border-bottom-left-radius: var(--radius);
  }

  .sm\:rounded-l-md {
    border-top-left-radius: calc(var(--radius) - 2px);
    border-bottom-left-radius: calc(var(--radius) - 2px);
  }

  .sm\:rounded-r-lg {
    border-top-right-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
  }

  .sm\:rounded-r-md {
    border-top-right-radius: calc(var(--radius) - 2px);
    border-bottom-right-radius: calc(var(--radius) - 2px);
  }

  .sm\:rounded-s-lg {
    border-start-start-radius: var(--radius);
    border-end-start-radius: var(--radius);
  }

  .sm\:rounded-s-md {
    border-start-start-radius: calc(var(--radius) - 2px);
    border-end-start-radius: calc(var(--radius) - 2px);
  }

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

  .sm\:rounded-t-md {
    border-top-left-radius: calc(var(--radius) - 2px);
    border-top-right-radius: calc(var(--radius) - 2px);
  }

  .sm\:rounded-bl-lg {
    border-bottom-left-radius: var(--radius);
  }

  .sm\:rounded-bl-md {
    border-bottom-left-radius: calc(var(--radius) - 2px);
  }

  .sm\:rounded-br-lg {
    border-bottom-right-radius: var(--radius);
  }

  .sm\:rounded-br-md {
    border-bottom-right-radius: calc(var(--radius) - 2px);
  }

  .sm\:rounded-ee-lg {
    border-end-end-radius: var(--radius);
  }

  .sm\:rounded-ee-md {
    border-end-end-radius: calc(var(--radius) - 2px);
  }

  .sm\:rounded-es-lg {
    border-end-start-radius: var(--radius);
  }

  .sm\:rounded-es-md {
    border-end-start-radius: calc(var(--radius) - 2px);
  }

  .sm\:rounded-se-lg {
    border-start-end-radius: var(--radius);
  }

  .sm\:rounded-se-md {
    border-start-end-radius: calc(var(--radius) - 2px);
  }

  .sm\:rounded-ss-lg {
    border-start-start-radius: var(--radius);
  }

  .sm\:rounded-ss-md {
    border-start-start-radius: calc(var(--radius) - 2px);
  }

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

  .sm\:rounded-tl-md {
    border-top-left-radius: calc(var(--radius) - 2px);
  }

  .sm\:rounded-tr-lg {
    border-top-right-radius: var(--radius);
  }

  .sm\:rounded-tr-md {
    border-top-right-radius: calc(var(--radius) - 2px);
  }

  .sm\:border-amber-100 {
    --tw-border-opacity: 1;
    border-color: rgb(254 243 199 / var(--tw-border-opacity, 1));
  }

  .sm\:border-amber-200 {
    --tw-border-opacity: 1;
    border-color: rgb(253 230 138 / var(--tw-border-opacity, 1));
  }

  .sm\:border-amber-300 {
    --tw-border-opacity: 1;
    border-color: rgb(252 211 77 / var(--tw-border-opacity, 1));
  }

  .sm\:border-amber-400 {
    --tw-border-opacity: 1;
    border-color: rgb(251 191 36 / var(--tw-border-opacity, 1));
  }

  .sm\:border-amber-50 {
    --tw-border-opacity: 1;
    border-color: rgb(255 251 235 / var(--tw-border-opacity, 1));
  }

  .sm\:border-amber-500 {
    --tw-border-opacity: 1;
    border-color: rgb(245 158 11 / var(--tw-border-opacity, 1));
  }

  .sm\:border-amber-600 {
    --tw-border-opacity: 1;
    border-color: rgb(217 119 6 / var(--tw-border-opacity, 1));
  }

  .sm\:border-amber-700 {
    --tw-border-opacity: 1;
    border-color: rgb(180 83 9 / var(--tw-border-opacity, 1));
  }

  .sm\:border-amber-800 {
    --tw-border-opacity: 1;
    border-color: rgb(146 64 14 / var(--tw-border-opacity, 1));
  }

  .sm\:border-amber-900 {
    --tw-border-opacity: 1;
    border-color: rgb(120 53 15 / var(--tw-border-opacity, 1));
  }

  .sm\:border-amber-950 {
    --tw-border-opacity: 1;
    border-color: rgb(69 26 3 / var(--tw-border-opacity, 1));
  }

  .sm\:border-blue-100 {
    --tw-border-opacity: 1;
    border-color: rgb(219 234 254 / var(--tw-border-opacity, 1));
  }

  .sm\:border-blue-200 {
    --tw-border-opacity: 1;
    border-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
  }

  .sm\:border-blue-300 {
    --tw-border-opacity: 1;
    border-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
  }

  .sm\:border-blue-400 {
    --tw-border-opacity: 1;
    border-color: rgb(96 165 250 / var(--tw-border-opacity, 1));
  }

  .sm\:border-blue-50 {
    --tw-border-opacity: 1;
    border-color: rgb(239 246 255 / var(--tw-border-opacity, 1));
  }

  .sm\:border-blue-500 {
    --tw-border-opacity: 1;
    border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
  }

  .sm\:border-blue-600 {
    --tw-border-opacity: 1;
    border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
  }

  .sm\:border-blue-700 {
    --tw-border-opacity: 1;
    border-color: rgb(29 78 216 / var(--tw-border-opacity, 1));
  }

  .sm\:border-blue-800 {
    --tw-border-opacity: 1;
    border-color: rgb(30 64 175 / var(--tw-border-opacity, 1));
  }

  .sm\:border-blue-900 {
    --tw-border-opacity: 1;
    border-color: rgb(30 58 138 / var(--tw-border-opacity, 1));
  }

  .sm\:border-blue-950 {
    --tw-border-opacity: 1;
    border-color: rgb(23 37 84 / var(--tw-border-opacity, 1));
  }

  .sm\:border-cyan-100 {
    --tw-border-opacity: 1;
    border-color: rgb(207 250 254 / var(--tw-border-opacity, 1));
  }

  .sm\:border-cyan-200 {
    --tw-border-opacity: 1;
    border-color: rgb(165 243 252 / var(--tw-border-opacity, 1));
  }

  .sm\:border-cyan-300 {
    --tw-border-opacity: 1;
    border-color: rgb(103 232 249 / var(--tw-border-opacity, 1));
  }

  .sm\:border-cyan-400 {
    --tw-border-opacity: 1;
    border-color: rgb(34 211 238 / var(--tw-border-opacity, 1));
  }

  .sm\:border-cyan-50 {
    --tw-border-opacity: 1;
    border-color: rgb(236 254 255 / var(--tw-border-opacity, 1));
  }

  .sm\:border-cyan-500 {
    --tw-border-opacity: 1;
    border-color: rgb(6 182 212 / var(--tw-border-opacity, 1));
  }

  .sm\:border-cyan-600 {
    --tw-border-opacity: 1;
    border-color: rgb(8 145 178 / var(--tw-border-opacity, 1));
  }

  .sm\:border-cyan-700 {
    --tw-border-opacity: 1;
    border-color: rgb(14 116 144 / var(--tw-border-opacity, 1));
  }

  .sm\:border-cyan-800 {
    --tw-border-opacity: 1;
    border-color: rgb(21 94 117 / var(--tw-border-opacity, 1));
  }

  .sm\:border-cyan-900 {
    --tw-border-opacity: 1;
    border-color: rgb(22 78 99 / var(--tw-border-opacity, 1));
  }

  .sm\:border-cyan-950 {
    --tw-border-opacity: 1;
    border-color: rgb(8 51 68 / var(--tw-border-opacity, 1));
  }

  .sm\:border-emerald-100 {
    --tw-border-opacity: 1;
    border-color: rgb(209 250 229 / var(--tw-border-opacity, 1));
  }

  .sm\:border-emerald-200 {
    --tw-border-opacity: 1;
    border-color: rgb(167 243 208 / var(--tw-border-opacity, 1));
  }

  .sm\:border-emerald-300 {
    --tw-border-opacity: 1;
    border-color: rgb(110 231 183 / var(--tw-border-opacity, 1));
  }

  .sm\:border-emerald-400 {
    --tw-border-opacity: 1;
    border-color: rgb(52 211 153 / var(--tw-border-opacity, 1));
  }

  .sm\:border-emerald-50 {
    --tw-border-opacity: 1;
    border-color: rgb(236 253 245 / var(--tw-border-opacity, 1));
  }

  .sm\:border-emerald-500 {
    --tw-border-opacity: 1;
    border-color: rgb(16 185 129 / var(--tw-border-opacity, 1));
  }

  .sm\:border-emerald-600 {
    --tw-border-opacity: 1;
    border-color: rgb(5 150 105 / var(--tw-border-opacity, 1));
  }

  .sm\:border-emerald-700 {
    --tw-border-opacity: 1;
    border-color: rgb(4 120 87 / var(--tw-border-opacity, 1));
  }

  .sm\:border-emerald-800 {
    --tw-border-opacity: 1;
    border-color: rgb(6 95 70 / var(--tw-border-opacity, 1));
  }

  .sm\:border-emerald-900 {
    --tw-border-opacity: 1;
    border-color: rgb(6 78 59 / var(--tw-border-opacity, 1));
  }

  .sm\:border-emerald-950 {
    --tw-border-opacity: 1;
    border-color: rgb(2 44 34 / var(--tw-border-opacity, 1));
  }

  .sm\:border-fuchsia-100 {
    --tw-border-opacity: 1;
    border-color: rgb(250 232 255 / var(--tw-border-opacity, 1));
  }

  .sm\:border-fuchsia-200 {
    --tw-border-opacity: 1;
    border-color: rgb(245 208 254 / var(--tw-border-opacity, 1));
  }

  .sm\:border-fuchsia-300 {
    --tw-border-opacity: 1;
    border-color: rgb(240 171 252 / var(--tw-border-opacity, 1));
  }

  .sm\:border-fuchsia-400 {
    --tw-border-opacity: 1;
    border-color: rgb(232 121 249 / var(--tw-border-opacity, 1));
  }

  .sm\:border-fuchsia-50 {
    --tw-border-opacity: 1;
    border-color: rgb(253 244 255 / var(--tw-border-opacity, 1));
  }

  .sm\:border-fuchsia-500 {
    --tw-border-opacity: 1;
    border-color: rgb(217 70 239 / var(--tw-border-opacity, 1));
  }

  .sm\:border-fuchsia-600 {
    --tw-border-opacity: 1;
    border-color: rgb(192 38 211 / var(--tw-border-opacity, 1));
  }

  .sm\:border-fuchsia-700 {
    --tw-border-opacity: 1;
    border-color: rgb(162 28 175 / var(--tw-border-opacity, 1));
  }

  .sm\:border-fuchsia-800 {
    --tw-border-opacity: 1;
    border-color: rgb(134 25 143 / var(--tw-border-opacity, 1));
  }

  .sm\:border-fuchsia-900 {
    --tw-border-opacity: 1;
    border-color: rgb(112 26 117 / var(--tw-border-opacity, 1));
  }

  .sm\:border-fuchsia-950 {
    --tw-border-opacity: 1;
    border-color: rgb(74 4 78 / var(--tw-border-opacity, 1));
  }

  .sm\:border-gray-100 {
    --tw-border-opacity: 1;
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
  }

  .sm\:border-gray-200 {
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
  }

  .sm\:border-gray-300 {
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
  }

  .sm\:border-gray-400 {
    --tw-border-opacity: 1;
    border-color: rgb(156 163 175 / var(--tw-border-opacity, 1));
  }

  .sm\:border-gray-50 {
    --tw-border-opacity: 1;
    border-color: rgb(249 250 251 / var(--tw-border-opacity, 1));
  }

  .sm\:border-gray-500 {
    --tw-border-opacity: 1;
    border-color: rgb(107 114 128 / var(--tw-border-opacity, 1));
  }

  .sm\:border-gray-600 {
    --tw-border-opacity: 1;
    border-color: rgb(75 85 99 / var(--tw-border-opacity, 1));
  }

  .sm\:border-gray-700 {
    --tw-border-opacity: 1;
    border-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
  }

  .sm\:border-gray-800 {
    --tw-border-opacity: 1;
    border-color: rgb(31 41 55 / var(--tw-border-opacity, 1));
  }

  .sm\:border-gray-900 {
    --tw-border-opacity: 1;
    border-color: rgb(17 24 39 / var(--tw-border-opacity, 1));
  }

  .sm\:border-gray-950 {
    --tw-border-opacity: 1;
    border-color: rgb(3 7 18 / var(--tw-border-opacity, 1));
  }

  .sm\:border-green-100 {
    --tw-border-opacity: 1;
    border-color: rgb(220 252 231 / var(--tw-border-opacity, 1));
  }

  .sm\:border-green-200 {
    --tw-border-opacity: 1;
    border-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
  }

  .sm\:border-green-300 {
    --tw-border-opacity: 1;
    border-color: rgb(134 239 172 / var(--tw-border-opacity, 1));
  }

  .sm\:border-green-400 {
    --tw-border-opacity: 1;
    border-color: rgb(74 222 128 / var(--tw-border-opacity, 1));
  }

  .sm\:border-green-50 {
    --tw-border-opacity: 1;
    border-color: rgb(240 253 244 / var(--tw-border-opacity, 1));
  }

  .sm\:border-green-500 {
    --tw-border-opacity: 1;
    border-color: rgb(34 197 94 / var(--tw-border-opacity, 1));
  }

  .sm\:border-green-600 {
    --tw-border-opacity: 1;
    border-color: rgb(22 163 74 / var(--tw-border-opacity, 1));
  }

  .sm\:border-green-700 {
    --tw-border-opacity: 1;
    border-color: rgb(21 128 61 / var(--tw-border-opacity, 1));
  }

  .sm\:border-green-800 {
    --tw-border-opacity: 1;
    border-color: rgb(22 101 52 / var(--tw-border-opacity, 1));
  }

  .sm\:border-green-900 {
    --tw-border-opacity: 1;
    border-color: rgb(20 83 45 / var(--tw-border-opacity, 1));
  }

  .sm\:border-green-950 {
    --tw-border-opacity: 1;
    border-color: rgb(5 46 22 / var(--tw-border-opacity, 1));
  }

  .sm\:border-indigo-100 {
    --tw-border-opacity: 1;
    border-color: rgb(224 231 255 / var(--tw-border-opacity, 1));
  }

  .sm\:border-indigo-200 {
    --tw-border-opacity: 1;
    border-color: rgb(199 210 254 / var(--tw-border-opacity, 1));
  }

  .sm\:border-indigo-300 {
    --tw-border-opacity: 1;
    border-color: rgb(165 180 252 / var(--tw-border-opacity, 1));
  }

  .sm\:border-indigo-400 {
    --tw-border-opacity: 1;
    border-color: rgb(129 140 248 / var(--tw-border-opacity, 1));
  }

  .sm\:border-indigo-50 {
    --tw-border-opacity: 1;
    border-color: rgb(238 242 255 / var(--tw-border-opacity, 1));
  }

  .sm\:border-indigo-500 {
    --tw-border-opacity: 1;
    border-color: rgb(99 102 241 / var(--tw-border-opacity, 1));
  }

  .sm\:border-indigo-600 {
    --tw-border-opacity: 1;
    border-color: rgb(79 70 229 / var(--tw-border-opacity, 1));
  }

  .sm\:border-indigo-700 {
    --tw-border-opacity: 1;
    border-color: rgb(67 56 202 / var(--tw-border-opacity, 1));
  }

  .sm\:border-indigo-800 {
    --tw-border-opacity: 1;
    border-color: rgb(55 48 163 / var(--tw-border-opacity, 1));
  }

  .sm\:border-indigo-900 {
    --tw-border-opacity: 1;
    border-color: rgb(49 46 129 / var(--tw-border-opacity, 1));
  }

  .sm\:border-indigo-950 {
    --tw-border-opacity: 1;
    border-color: rgb(30 27 75 / var(--tw-border-opacity, 1));
  }

  .sm\:border-lime-100 {
    --tw-border-opacity: 1;
    border-color: rgb(236 252 203 / var(--tw-border-opacity, 1));
  }

  .sm\:border-lime-200 {
    --tw-border-opacity: 1;
    border-color: rgb(217 249 157 / var(--tw-border-opacity, 1));
  }

  .sm\:border-lime-300 {
    --tw-border-opacity: 1;
    border-color: rgb(190 242 100 / var(--tw-border-opacity, 1));
  }

  .sm\:border-lime-400 {
    --tw-border-opacity: 1;
    border-color: rgb(163 230 53 / var(--tw-border-opacity, 1));
  }

  .sm\:border-lime-50 {
    --tw-border-opacity: 1;
    border-color: rgb(247 254 231 / var(--tw-border-opacity, 1));
  }

  .sm\:border-lime-500 {
    --tw-border-opacity: 1;
    border-color: rgb(132 204 22 / var(--tw-border-opacity, 1));
  }

  .sm\:border-lime-600 {
    --tw-border-opacity: 1;
    border-color: rgb(101 163 13 / var(--tw-border-opacity, 1));
  }

  .sm\:border-lime-700 {
    --tw-border-opacity: 1;
    border-color: rgb(77 124 15 / var(--tw-border-opacity, 1));
  }

  .sm\:border-lime-800 {
    --tw-border-opacity: 1;
    border-color: rgb(63 98 18 / var(--tw-border-opacity, 1));
  }

  .sm\:border-lime-900 {
    --tw-border-opacity: 1;
    border-color: rgb(54 83 20 / var(--tw-border-opacity, 1));
  }

  .sm\:border-lime-950 {
    --tw-border-opacity: 1;
    border-color: rgb(26 46 5 / var(--tw-border-opacity, 1));
  }

  .sm\:border-neutral-100 {
    --tw-border-opacity: 1;
    border-color: rgb(245 245 245 / var(--tw-border-opacity, 1));
  }

  .sm\:border-neutral-200 {
    --tw-border-opacity: 1;
    border-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
  }

  .sm\:border-neutral-300 {
    --tw-border-opacity: 1;
    border-color: rgb(212 212 212 / var(--tw-border-opacity, 1));
  }

  .sm\:border-neutral-400 {
    --tw-border-opacity: 1;
    border-color: rgb(163 163 163 / var(--tw-border-opacity, 1));
  }

  .sm\:border-neutral-50 {
    --tw-border-opacity: 1;
    border-color: rgb(250 250 250 / var(--tw-border-opacity, 1));
  }

  .sm\:border-neutral-500 {
    --tw-border-opacity: 1;
    border-color: rgb(115 115 115 / var(--tw-border-opacity, 1));
  }

  .sm\:border-neutral-600 {
    --tw-border-opacity: 1;
    border-color: rgb(82 82 82 / var(--tw-border-opacity, 1));
  }

  .sm\:border-neutral-700 {
    --tw-border-opacity: 1;
    border-color: rgb(64 64 64 / var(--tw-border-opacity, 1));
  }

  .sm\:border-neutral-800 {
    --tw-border-opacity: 1;
    border-color: rgb(38 38 38 / var(--tw-border-opacity, 1));
  }

  .sm\:border-neutral-900 {
    --tw-border-opacity: 1;
    border-color: rgb(23 23 23 / var(--tw-border-opacity, 1));
  }

  .sm\:border-neutral-950 {
    --tw-border-opacity: 1;
    border-color: rgb(10 10 10 / var(--tw-border-opacity, 1));
  }

  .sm\:border-orange-100 {
    --tw-border-opacity: 1;
    border-color: rgb(255 237 213 / var(--tw-border-opacity, 1));
  }

  .sm\:border-orange-200 {
    --tw-border-opacity: 1;
    border-color: rgb(254 215 170 / var(--tw-border-opacity, 1));
  }

  .sm\:border-orange-300 {
    --tw-border-opacity: 1;
    border-color: rgb(253 186 116 / var(--tw-border-opacity, 1));
  }

  .sm\:border-orange-400 {
    --tw-border-opacity: 1;
    border-color: rgb(251 146 60 / var(--tw-border-opacity, 1));
  }

  .sm\:border-orange-50 {
    --tw-border-opacity: 1;
    border-color: rgb(255 247 237 / var(--tw-border-opacity, 1));
  }

  .sm\:border-orange-500 {
    --tw-border-opacity: 1;
    border-color: rgb(249 115 22 / var(--tw-border-opacity, 1));
  }

  .sm\:border-orange-600 {
    --tw-border-opacity: 1;
    border-color: rgb(234 88 12 / var(--tw-border-opacity, 1));
  }

  .sm\:border-orange-700 {
    --tw-border-opacity: 1;
    border-color: rgb(194 65 12 / var(--tw-border-opacity, 1));
  }

  .sm\:border-orange-800 {
    --tw-border-opacity: 1;
    border-color: rgb(154 52 18 / var(--tw-border-opacity, 1));
  }

  .sm\:border-orange-900 {
    --tw-border-opacity: 1;
    border-color: rgb(124 45 18 / var(--tw-border-opacity, 1));
  }

  .sm\:border-orange-950 {
    --tw-border-opacity: 1;
    border-color: rgb(67 20 7 / var(--tw-border-opacity, 1));
  }

  .sm\:border-pink-100 {
    --tw-border-opacity: 1;
    border-color: rgb(252 231 243 / var(--tw-border-opacity, 1));
  }

  .sm\:border-pink-200 {
    --tw-border-opacity: 1;
    border-color: rgb(251 207 232 / var(--tw-border-opacity, 1));
  }

  .sm\:border-pink-300 {
    --tw-border-opacity: 1;
    border-color: rgb(249 168 212 / var(--tw-border-opacity, 1));
  }

  .sm\:border-pink-400 {
    --tw-border-opacity: 1;
    border-color: rgb(244 114 182 / var(--tw-border-opacity, 1));
  }

  .sm\:border-pink-50 {
    --tw-border-opacity: 1;
    border-color: rgb(253 242 248 / var(--tw-border-opacity, 1));
  }

  .sm\:border-pink-500 {
    --tw-border-opacity: 1;
    border-color: rgb(236 72 153 / var(--tw-border-opacity, 1));
  }

  .sm\:border-pink-600 {
    --tw-border-opacity: 1;
    border-color: rgb(219 39 119 / var(--tw-border-opacity, 1));
  }

  .sm\:border-pink-700 {
    --tw-border-opacity: 1;
    border-color: rgb(190 24 93 / var(--tw-border-opacity, 1));
  }

  .sm\:border-pink-800 {
    --tw-border-opacity: 1;
    border-color: rgb(157 23 77 / var(--tw-border-opacity, 1));
  }

  .sm\:border-pink-900 {
    --tw-border-opacity: 1;
    border-color: rgb(131 24 67 / var(--tw-border-opacity, 1));
  }

  .sm\:border-pink-950 {
    --tw-border-opacity: 1;
    border-color: rgb(80 7 36 / var(--tw-border-opacity, 1));
  }

  .sm\:border-purple-100 {
    --tw-border-opacity: 1;
    border-color: rgb(243 232 255 / var(--tw-border-opacity, 1));
  }

  .sm\:border-purple-200 {
    --tw-border-opacity: 1;
    border-color: rgb(233 213 255 / var(--tw-border-opacity, 1));
  }

  .sm\:border-purple-300 {
    --tw-border-opacity: 1;
    border-color: rgb(216 180 254 / var(--tw-border-opacity, 1));
  }

  .sm\:border-purple-400 {
    --tw-border-opacity: 1;
    border-color: rgb(192 132 252 / var(--tw-border-opacity, 1));
  }

  .sm\:border-purple-50 {
    --tw-border-opacity: 1;
    border-color: rgb(250 245 255 / var(--tw-border-opacity, 1));
  }

  .sm\:border-purple-500 {
    --tw-border-opacity: 1;
    border-color: rgb(168 85 247 / var(--tw-border-opacity, 1));
  }

  .sm\:border-purple-600 {
    --tw-border-opacity: 1;
    border-color: rgb(147 51 234 / var(--tw-border-opacity, 1));
  }

  .sm\:border-purple-700 {
    --tw-border-opacity: 1;
    border-color: rgb(126 34 206 / var(--tw-border-opacity, 1));
  }

  .sm\:border-purple-800 {
    --tw-border-opacity: 1;
    border-color: rgb(107 33 168 / var(--tw-border-opacity, 1));
  }

  .sm\:border-purple-900 {
    --tw-border-opacity: 1;
    border-color: rgb(88 28 135 / var(--tw-border-opacity, 1));
  }

  .sm\:border-purple-950 {
    --tw-border-opacity: 1;
    border-color: rgb(59 7 100 / var(--tw-border-opacity, 1));
  }

  .sm\:border-red-100 {
    --tw-border-opacity: 1;
    border-color: rgb(254 226 226 / var(--tw-border-opacity, 1));
  }

  .sm\:border-red-200 {
    --tw-border-opacity: 1;
    border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
  }

  .sm\:border-red-300 {
    --tw-border-opacity: 1;
    border-color: rgb(252 165 165 / var(--tw-border-opacity, 1));
  }

  .sm\:border-red-400 {
    --tw-border-opacity: 1;
    border-color: rgb(248 113 113 / var(--tw-border-opacity, 1));
  }

  .sm\:border-red-50 {
    --tw-border-opacity: 1;
    border-color: rgb(254 242 242 / var(--tw-border-opacity, 1));
  }

  .sm\:border-red-500 {
    --tw-border-opacity: 1;
    border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
  }

  .sm\:border-red-600 {
    --tw-border-opacity: 1;
    border-color: rgb(220 38 38 / var(--tw-border-opacity, 1));
  }

  .sm\:border-red-700 {
    --tw-border-opacity: 1;
    border-color: rgb(185 28 28 / var(--tw-border-opacity, 1));
  }

  .sm\:border-red-800 {
    --tw-border-opacity: 1;
    border-color: rgb(153 27 27 / var(--tw-border-opacity, 1));
  }

  .sm\:border-red-900 {
    --tw-border-opacity: 1;
    border-color: rgb(127 29 29 / var(--tw-border-opacity, 1));
  }

  .sm\:border-red-950 {
    --tw-border-opacity: 1;
    border-color: rgb(69 10 10 / var(--tw-border-opacity, 1));
  }

  .sm\:border-rose-100 {
    --tw-border-opacity: 1;
    border-color: rgb(255 228 230 / var(--tw-border-opacity, 1));
  }

  .sm\:border-rose-200 {
    --tw-border-opacity: 1;
    border-color: rgb(254 205 211 / var(--tw-border-opacity, 1));
  }

  .sm\:border-rose-300 {
    --tw-border-opacity: 1;
    border-color: rgb(253 164 175 / var(--tw-border-opacity, 1));
  }

  .sm\:border-rose-400 {
    --tw-border-opacity: 1;
    border-color: rgb(251 113 133 / var(--tw-border-opacity, 1));
  }

  .sm\:border-rose-50 {
    --tw-border-opacity: 1;
    border-color: rgb(255 241 242 / var(--tw-border-opacity, 1));
  }

  .sm\:border-rose-500 {
    --tw-border-opacity: 1;
    border-color: rgb(244 63 94 / var(--tw-border-opacity, 1));
  }

  .sm\:border-rose-600 {
    --tw-border-opacity: 1;
    border-color: rgb(225 29 72 / var(--tw-border-opacity, 1));
  }

  .sm\:border-rose-700 {
    --tw-border-opacity: 1;
    border-color: rgb(190 18 60 / var(--tw-border-opacity, 1));
  }

  .sm\:border-rose-800 {
    --tw-border-opacity: 1;
    border-color: rgb(159 18 57 / var(--tw-border-opacity, 1));
  }

  .sm\:border-rose-900 {
    --tw-border-opacity: 1;
    border-color: rgb(136 19 55 / var(--tw-border-opacity, 1));
  }

  .sm\:border-rose-950 {
    --tw-border-opacity: 1;
    border-color: rgb(76 5 25 / var(--tw-border-opacity, 1));
  }

  .sm\:border-sky-100 {
    --tw-border-opacity: 1;
    border-color: rgb(224 242 254 / var(--tw-border-opacity, 1));
  }

  .sm\:border-sky-200 {
    --tw-border-opacity: 1;
    border-color: rgb(186 230 253 / var(--tw-border-opacity, 1));
  }

  .sm\:border-sky-300 {
    --tw-border-opacity: 1;
    border-color: rgb(125 211 252 / var(--tw-border-opacity, 1));
  }

  .sm\:border-sky-400 {
    --tw-border-opacity: 1;
    border-color: rgb(56 189 248 / var(--tw-border-opacity, 1));
  }

  .sm\:border-sky-50 {
    --tw-border-opacity: 1;
    border-color: rgb(240 249 255 / var(--tw-border-opacity, 1));
  }

  .sm\:border-sky-500 {
    --tw-border-opacity: 1;
    border-color: rgb(14 165 233 / var(--tw-border-opacity, 1));
  }

  .sm\:border-sky-600 {
    --tw-border-opacity: 1;
    border-color: rgb(2 132 199 / var(--tw-border-opacity, 1));
  }

  .sm\:border-sky-700 {
    --tw-border-opacity: 1;
    border-color: rgb(3 105 161 / var(--tw-border-opacity, 1));
  }

  .sm\:border-sky-800 {
    --tw-border-opacity: 1;
    border-color: rgb(7 89 133 / var(--tw-border-opacity, 1));
  }

  .sm\:border-sky-900 {
    --tw-border-opacity: 1;
    border-color: rgb(12 74 110 / var(--tw-border-opacity, 1));
  }

  .sm\:border-sky-950 {
    --tw-border-opacity: 1;
    border-color: rgb(8 47 73 / var(--tw-border-opacity, 1));
  }

  .sm\:border-slate-100 {
    --tw-border-opacity: 1;
    border-color: rgb(241 245 249 / var(--tw-border-opacity, 1));
  }

  .sm\:border-slate-200 {
    --tw-border-opacity: 1;
    border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
  }

  .sm\:border-slate-300 {
    --tw-border-opacity: 1;
    border-color: rgb(203 213 225 / var(--tw-border-opacity, 1));
  }

  .sm\:border-slate-400 {
    --tw-border-opacity: 1;
    border-color: rgb(148 163 184 / var(--tw-border-opacity, 1));
  }

  .sm\:border-slate-50 {
    --tw-border-opacity: 1;
    border-color: rgb(248 250 252 / var(--tw-border-opacity, 1));
  }

  .sm\:border-slate-500 {
    --tw-border-opacity: 1;
    border-color: rgb(100 116 139 / var(--tw-border-opacity, 1));
  }

  .sm\:border-slate-600 {
    --tw-border-opacity: 1;
    border-color: rgb(71 85 105 / var(--tw-border-opacity, 1));
  }

  .sm\:border-slate-700 {
    --tw-border-opacity: 1;
    border-color: rgb(51 65 85 / var(--tw-border-opacity, 1));
  }

  .sm\:border-slate-800 {
    --tw-border-opacity: 1;
    border-color: rgb(30 41 59 / var(--tw-border-opacity, 1));
  }

  .sm\:border-slate-900 {
    --tw-border-opacity: 1;
    border-color: rgb(15 23 42 / var(--tw-border-opacity, 1));
  }

  .sm\:border-slate-950 {
    --tw-border-opacity: 1;
    border-color: rgb(2 6 23 / var(--tw-border-opacity, 1));
  }

  .sm\:border-stone-100 {
    --tw-border-opacity: 1;
    border-color: rgb(245 245 244 / var(--tw-border-opacity, 1));
  }

  .sm\:border-stone-200 {
    --tw-border-opacity: 1;
    border-color: rgb(231 229 228 / var(--tw-border-opacity, 1));
  }

  .sm\:border-stone-300 {
    --tw-border-opacity: 1;
    border-color: rgb(214 211 209 / var(--tw-border-opacity, 1));
  }

  .sm\:border-stone-400 {
    --tw-border-opacity: 1;
    border-color: rgb(168 162 158 / var(--tw-border-opacity, 1));
  }

  .sm\:border-stone-50 {
    --tw-border-opacity: 1;
    border-color: rgb(250 250 249 / var(--tw-border-opacity, 1));
  }

  .sm\:border-stone-500 {
    --tw-border-opacity: 1;
    border-color: rgb(120 113 108 / var(--tw-border-opacity, 1));
  }

  .sm\:border-stone-600 {
    --tw-border-opacity: 1;
    border-color: rgb(87 83 78 / var(--tw-border-opacity, 1));
  }

  .sm\:border-stone-700 {
    --tw-border-opacity: 1;
    border-color: rgb(68 64 60 / var(--tw-border-opacity, 1));
  }

  .sm\:border-stone-800 {
    --tw-border-opacity: 1;
    border-color: rgb(41 37 36 / var(--tw-border-opacity, 1));
  }

  .sm\:border-stone-900 {
    --tw-border-opacity: 1;
    border-color: rgb(28 25 23 / var(--tw-border-opacity, 1));
  }

  .sm\:border-stone-950 {
    --tw-border-opacity: 1;
    border-color: rgb(12 10 9 / var(--tw-border-opacity, 1));
  }

  .sm\:border-teal-100 {
    --tw-border-opacity: 1;
    border-color: rgb(204 251 241 / var(--tw-border-opacity, 1));
  }

  .sm\:border-teal-200 {
    --tw-border-opacity: 1;
    border-color: rgb(153 246 228 / var(--tw-border-opacity, 1));
  }

  .sm\:border-teal-300 {
    --tw-border-opacity: 1;
    border-color: rgb(94 234 212 / var(--tw-border-opacity, 1));
  }

  .sm\:border-teal-400 {
    --tw-border-opacity: 1;
    border-color: rgb(45 212 191 / var(--tw-border-opacity, 1));
  }

  .sm\:border-teal-50 {
    --tw-border-opacity: 1;
    border-color: rgb(240 253 250 / var(--tw-border-opacity, 1));
  }

  .sm\:border-teal-500 {
    --tw-border-opacity: 1;
    border-color: rgb(20 184 166 / var(--tw-border-opacity, 1));
  }

  .sm\:border-teal-600 {
    --tw-border-opacity: 1;
    border-color: rgb(13 148 136 / var(--tw-border-opacity, 1));
  }

  .sm\:border-teal-700 {
    --tw-border-opacity: 1;
    border-color: rgb(15 118 110 / var(--tw-border-opacity, 1));
  }

  .sm\:border-teal-800 {
    --tw-border-opacity: 1;
    border-color: rgb(17 94 89 / var(--tw-border-opacity, 1));
  }

  .sm\:border-teal-900 {
    --tw-border-opacity: 1;
    border-color: rgb(19 78 74 / var(--tw-border-opacity, 1));
  }

  .sm\:border-teal-950 {
    --tw-border-opacity: 1;
    border-color: rgb(4 47 46 / var(--tw-border-opacity, 1));
  }

  .sm\:border-violet-100 {
    --tw-border-opacity: 1;
    border-color: rgb(237 233 254 / var(--tw-border-opacity, 1));
  }

  .sm\:border-violet-200 {
    --tw-border-opacity: 1;
    border-color: rgb(221 214 254 / var(--tw-border-opacity, 1));
  }

  .sm\:border-violet-300 {
    --tw-border-opacity: 1;
    border-color: rgb(196 181 253 / var(--tw-border-opacity, 1));
  }

  .sm\:border-violet-400 {
    --tw-border-opacity: 1;
    border-color: rgb(167 139 250 / var(--tw-border-opacity, 1));
  }

  .sm\:border-violet-50 {
    --tw-border-opacity: 1;
    border-color: rgb(245 243 255 / var(--tw-border-opacity, 1));
  }

  .sm\:border-violet-500 {
    --tw-border-opacity: 1;
    border-color: rgb(139 92 246 / var(--tw-border-opacity, 1));
  }

  .sm\:border-violet-600 {
    --tw-border-opacity: 1;
    border-color: rgb(124 58 237 / var(--tw-border-opacity, 1));
  }

  .sm\:border-violet-700 {
    --tw-border-opacity: 1;
    border-color: rgb(109 40 217 / var(--tw-border-opacity, 1));
  }

  .sm\:border-violet-800 {
    --tw-border-opacity: 1;
    border-color: rgb(91 33 182 / var(--tw-border-opacity, 1));
  }

  .sm\:border-violet-900 {
    --tw-border-opacity: 1;
    border-color: rgb(76 29 149 / var(--tw-border-opacity, 1));
  }

  .sm\:border-violet-950 {
    --tw-border-opacity: 1;
    border-color: rgb(46 16 101 / var(--tw-border-opacity, 1));
  }

  .sm\:border-yellow-100 {
    --tw-border-opacity: 1;
    border-color: rgb(254 249 195 / var(--tw-border-opacity, 1));
  }

  .sm\:border-yellow-200 {
    --tw-border-opacity: 1;
    border-color: rgb(254 240 138 / var(--tw-border-opacity, 1));
  }

  .sm\:border-yellow-300 {
    --tw-border-opacity: 1;
    border-color: rgb(253 224 71 / var(--tw-border-opacity, 1));
  }

  .sm\:border-yellow-400 {
    --tw-border-opacity: 1;
    border-color: rgb(250 204 21 / var(--tw-border-opacity, 1));
  }

  .sm\:border-yellow-50 {
    --tw-border-opacity: 1;
    border-color: rgb(254 252 232 / var(--tw-border-opacity, 1));
  }

  .sm\:border-yellow-500 {
    --tw-border-opacity: 1;
    border-color: rgb(234 179 8 / var(--tw-border-opacity, 1));
  }

  .sm\:border-yellow-600 {
    --tw-border-opacity: 1;
    border-color: rgb(202 138 4 / var(--tw-border-opacity, 1));
  }

  .sm\:border-yellow-700 {
    --tw-border-opacity: 1;
    border-color: rgb(161 98 7 / var(--tw-border-opacity, 1));
  }

  .sm\:border-yellow-800 {
    --tw-border-opacity: 1;
    border-color: rgb(133 77 14 / var(--tw-border-opacity, 1));
  }

  .sm\:border-yellow-900 {
    --tw-border-opacity: 1;
    border-color: rgb(113 63 18 / var(--tw-border-opacity, 1));
  }

  .sm\:border-yellow-950 {
    --tw-border-opacity: 1;
    border-color: rgb(66 32 6 / var(--tw-border-opacity, 1));
  }

  .sm\:border-zinc-100 {
    --tw-border-opacity: 1;
    border-color: rgb(244 244 245 / var(--tw-border-opacity, 1));
  }

  .sm\:border-zinc-200 {
    --tw-border-opacity: 1;
    border-color: rgb(228 228 231 / var(--tw-border-opacity, 1));
  }

  .sm\:border-zinc-300 {
    --tw-border-opacity: 1;
    border-color: rgb(212 212 216 / var(--tw-border-opacity, 1));
  }

  .sm\:border-zinc-400 {
    --tw-border-opacity: 1;
    border-color: rgb(161 161 170 / var(--tw-border-opacity, 1));
  }

  .sm\:border-zinc-50 {
    --tw-border-opacity: 1;
    border-color: rgb(250 250 250 / var(--tw-border-opacity, 1));
  }

  .sm\:border-zinc-500 {
    --tw-border-opacity: 1;
    border-color: rgb(113 113 122 / var(--tw-border-opacity, 1));
  }

  .sm\:border-zinc-600 {
    --tw-border-opacity: 1;
    border-color: rgb(82 82 91 / var(--tw-border-opacity, 1));
  }

  .sm\:border-zinc-700 {
    --tw-border-opacity: 1;
    border-color: rgb(63 63 70 / var(--tw-border-opacity, 1));
  }

  .sm\:border-zinc-800 {
    --tw-border-opacity: 1;
    border-color: rgb(39 39 42 / var(--tw-border-opacity, 1));
  }

  .sm\:border-zinc-900 {
    --tw-border-opacity: 1;
    border-color: rgb(24 24 27 / var(--tw-border-opacity, 1));
  }

  .sm\:border-zinc-950 {
    --tw-border-opacity: 1;
    border-color: rgb(9 9 11 / var(--tw-border-opacity, 1));
  }

  .sm\:bg-amber-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 243 199 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-amber-100\/10 {
    background-color: rgb(254 243 199 / 0.1);
  }

  .sm\:bg-amber-100\/20 {
    background-color: rgb(254 243 199 / 0.2);
  }

  .sm\:bg-amber-100\/30 {
    background-color: rgb(254 243 199 / 0.3);
  }

  .sm\:bg-amber-100\/40 {
    background-color: rgb(254 243 199 / 0.4);
  }

  .sm\:bg-amber-100\/5 {
    background-color: rgb(254 243 199 / 0.05);
  }

  .sm\:bg-amber-100\/50 {
    background-color: rgb(254 243 199 / 0.5);
  }

  .sm\:bg-amber-100\/60 {
    background-color: rgb(254 243 199 / 0.6);
  }

  .sm\:bg-amber-100\/70 {
    background-color: rgb(254 243 199 / 0.7);
  }

  .sm\:bg-amber-100\/80 {
    background-color: rgb(254 243 199 / 0.8);
  }

  .sm\:bg-amber-100\/90 {
    background-color: rgb(254 243 199 / 0.9);
  }

  .sm\:bg-amber-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(253 230 138 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-amber-200\/10 {
    background-color: rgb(253 230 138 / 0.1);
  }

  .sm\:bg-amber-200\/20 {
    background-color: rgb(253 230 138 / 0.2);
  }

  .sm\:bg-amber-200\/30 {
    background-color: rgb(253 230 138 / 0.3);
  }

  .sm\:bg-amber-200\/40 {
    background-color: rgb(253 230 138 / 0.4);
  }

  .sm\:bg-amber-200\/5 {
    background-color: rgb(253 230 138 / 0.05);
  }

  .sm\:bg-amber-200\/50 {
    background-color: rgb(253 230 138 / 0.5);
  }

  .sm\:bg-amber-200\/60 {
    background-color: rgb(253 230 138 / 0.6);
  }

  .sm\:bg-amber-200\/70 {
    background-color: rgb(253 230 138 / 0.7);
  }

  .sm\:bg-amber-200\/80 {
    background-color: rgb(253 230 138 / 0.8);
  }

  .sm\:bg-amber-200\/90 {
    background-color: rgb(253 230 138 / 0.9);
  }

  .sm\:bg-amber-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(252 211 77 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-amber-300\/10 {
    background-color: rgb(252 211 77 / 0.1);
  }

  .sm\:bg-amber-300\/20 {
    background-color: rgb(252 211 77 / 0.2);
  }

  .sm\:bg-amber-300\/30 {
    background-color: rgb(252 211 77 / 0.3);
  }

  .sm\:bg-amber-300\/40 {
    background-color: rgb(252 211 77 / 0.4);
  }

  .sm\:bg-amber-300\/5 {
    background-color: rgb(252 211 77 / 0.05);
  }

  .sm\:bg-amber-300\/50 {
    background-color: rgb(252 211 77 / 0.5);
  }

  .sm\:bg-amber-300\/60 {
    background-color: rgb(252 211 77 / 0.6);
  }

  .sm\:bg-amber-300\/70 {
    background-color: rgb(252 211 77 / 0.7);
  }

  .sm\:bg-amber-300\/80 {
    background-color: rgb(252 211 77 / 0.8);
  }

  .sm\:bg-amber-300\/90 {
    background-color: rgb(252 211 77 / 0.9);
  }

  .sm\:bg-amber-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(251 191 36 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-amber-400\/10 {
    background-color: rgb(251 191 36 / 0.1);
  }

  .sm\:bg-amber-400\/20 {
    background-color: rgb(251 191 36 / 0.2);
  }

  .sm\:bg-amber-400\/30 {
    background-color: rgb(251 191 36 / 0.3);
  }

  .sm\:bg-amber-400\/40 {
    background-color: rgb(251 191 36 / 0.4);
  }

  .sm\:bg-amber-400\/5 {
    background-color: rgb(251 191 36 / 0.05);
  }

  .sm\:bg-amber-400\/50 {
    background-color: rgb(251 191 36 / 0.5);
  }

  .sm\:bg-amber-400\/60 {
    background-color: rgb(251 191 36 / 0.6);
  }

  .sm\:bg-amber-400\/70 {
    background-color: rgb(251 191 36 / 0.7);
  }

  .sm\:bg-amber-400\/80 {
    background-color: rgb(251 191 36 / 0.8);
  }

  .sm\:bg-amber-400\/90 {
    background-color: rgb(251 191 36 / 0.9);
  }

  .sm\:bg-amber-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 251 235 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-amber-50\/10 {
    background-color: rgb(255 251 235 / 0.1);
  }

  .sm\:bg-amber-50\/20 {
    background-color: rgb(255 251 235 / 0.2);
  }

  .sm\:bg-amber-50\/30 {
    background-color: rgb(255 251 235 / 0.3);
  }

  .sm\:bg-amber-50\/40 {
    background-color: rgb(255 251 235 / 0.4);
  }

  .sm\:bg-amber-50\/5 {
    background-color: rgb(255 251 235 / 0.05);
  }

  .sm\:bg-amber-50\/50 {
    background-color: rgb(255 251 235 / 0.5);
  }

  .sm\:bg-amber-50\/60 {
    background-color: rgb(255 251 235 / 0.6);
  }

  .sm\:bg-amber-50\/70 {
    background-color: rgb(255 251 235 / 0.7);
  }

  .sm\:bg-amber-50\/80 {
    background-color: rgb(255 251 235 / 0.8);
  }

  .sm\:bg-amber-50\/90 {
    background-color: rgb(255 251 235 / 0.9);
  }

  .sm\:bg-amber-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(245 158 11 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-amber-500\/10 {
    background-color: rgb(245 158 11 / 0.1);
  }

  .sm\:bg-amber-500\/20 {
    background-color: rgb(245 158 11 / 0.2);
  }

  .sm\:bg-amber-500\/30 {
    background-color: rgb(245 158 11 / 0.3);
  }

  .sm\:bg-amber-500\/40 {
    background-color: rgb(245 158 11 / 0.4);
  }

  .sm\:bg-amber-500\/5 {
    background-color: rgb(245 158 11 / 0.05);
  }

  .sm\:bg-amber-500\/50 {
    background-color: rgb(245 158 11 / 0.5);
  }

  .sm\:bg-amber-500\/60 {
    background-color: rgb(245 158 11 / 0.6);
  }

  .sm\:bg-amber-500\/70 {
    background-color: rgb(245 158 11 / 0.7);
  }

  .sm\:bg-amber-500\/80 {
    background-color: rgb(245 158 11 / 0.8);
  }

  .sm\:bg-amber-500\/90 {
    background-color: rgb(245 158 11 / 0.9);
  }

  .sm\:bg-amber-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(217 119 6 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-amber-600\/10 {
    background-color: rgb(217 119 6 / 0.1);
  }

  .sm\:bg-amber-600\/20 {
    background-color: rgb(217 119 6 / 0.2);
  }

  .sm\:bg-amber-600\/30 {
    background-color: rgb(217 119 6 / 0.3);
  }

  .sm\:bg-amber-600\/40 {
    background-color: rgb(217 119 6 / 0.4);
  }

  .sm\:bg-amber-600\/5 {
    background-color: rgb(217 119 6 / 0.05);
  }

  .sm\:bg-amber-600\/50 {
    background-color: rgb(217 119 6 / 0.5);
  }

  .sm\:bg-amber-600\/60 {
    background-color: rgb(217 119 6 / 0.6);
  }

  .sm\:bg-amber-600\/70 {
    background-color: rgb(217 119 6 / 0.7);
  }

  .sm\:bg-amber-600\/80 {
    background-color: rgb(217 119 6 / 0.8);
  }

  .sm\:bg-amber-600\/90 {
    background-color: rgb(217 119 6 / 0.9);
  }

  .sm\:bg-amber-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(180 83 9 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-amber-700\/10 {
    background-color: rgb(180 83 9 / 0.1);
  }

  .sm\:bg-amber-700\/20 {
    background-color: rgb(180 83 9 / 0.2);
  }

  .sm\:bg-amber-700\/30 {
    background-color: rgb(180 83 9 / 0.3);
  }

  .sm\:bg-amber-700\/40 {
    background-color: rgb(180 83 9 / 0.4);
  }

  .sm\:bg-amber-700\/5 {
    background-color: rgb(180 83 9 / 0.05);
  }

  .sm\:bg-amber-700\/50 {
    background-color: rgb(180 83 9 / 0.5);
  }

  .sm\:bg-amber-700\/60 {
    background-color: rgb(180 83 9 / 0.6);
  }

  .sm\:bg-amber-700\/70 {
    background-color: rgb(180 83 9 / 0.7);
  }

  .sm\:bg-amber-700\/80 {
    background-color: rgb(180 83 9 / 0.8);
  }

  .sm\:bg-amber-700\/90 {
    background-color: rgb(180 83 9 / 0.9);
  }

  .sm\:bg-amber-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(146 64 14 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-amber-800\/10 {
    background-color: rgb(146 64 14 / 0.1);
  }

  .sm\:bg-amber-800\/20 {
    background-color: rgb(146 64 14 / 0.2);
  }

  .sm\:bg-amber-800\/30 {
    background-color: rgb(146 64 14 / 0.3);
  }

  .sm\:bg-amber-800\/40 {
    background-color: rgb(146 64 14 / 0.4);
  }

  .sm\:bg-amber-800\/5 {
    background-color: rgb(146 64 14 / 0.05);
  }

  .sm\:bg-amber-800\/50 {
    background-color: rgb(146 64 14 / 0.5);
  }

  .sm\:bg-amber-800\/60 {
    background-color: rgb(146 64 14 / 0.6);
  }

  .sm\:bg-amber-800\/70 {
    background-color: rgb(146 64 14 / 0.7);
  }

  .sm\:bg-amber-800\/80 {
    background-color: rgb(146 64 14 / 0.8);
  }

  .sm\:bg-amber-800\/90 {
    background-color: rgb(146 64 14 / 0.9);
  }

  .sm\:bg-amber-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(120 53 15 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-amber-900\/10 {
    background-color: rgb(120 53 15 / 0.1);
  }

  .sm\:bg-amber-900\/20 {
    background-color: rgb(120 53 15 / 0.2);
  }

  .sm\:bg-amber-900\/30 {
    background-color: rgb(120 53 15 / 0.3);
  }

  .sm\:bg-amber-900\/40 {
    background-color: rgb(120 53 15 / 0.4);
  }

  .sm\:bg-amber-900\/5 {
    background-color: rgb(120 53 15 / 0.05);
  }

  .sm\:bg-amber-900\/50 {
    background-color: rgb(120 53 15 / 0.5);
  }

  .sm\:bg-amber-900\/60 {
    background-color: rgb(120 53 15 / 0.6);
  }

  .sm\:bg-amber-900\/70 {
    background-color: rgb(120 53 15 / 0.7);
  }

  .sm\:bg-amber-900\/80 {
    background-color: rgb(120 53 15 / 0.8);
  }

  .sm\:bg-amber-900\/90 {
    background-color: rgb(120 53 15 / 0.9);
  }

  .sm\:bg-amber-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(69 26 3 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-amber-950\/10 {
    background-color: rgb(69 26 3 / 0.1);
  }

  .sm\:bg-amber-950\/20 {
    background-color: rgb(69 26 3 / 0.2);
  }

  .sm\:bg-amber-950\/30 {
    background-color: rgb(69 26 3 / 0.3);
  }

  .sm\:bg-amber-950\/40 {
    background-color: rgb(69 26 3 / 0.4);
  }

  .sm\:bg-amber-950\/5 {
    background-color: rgb(69 26 3 / 0.05);
  }

  .sm\:bg-amber-950\/50 {
    background-color: rgb(69 26 3 / 0.5);
  }

  .sm\:bg-amber-950\/60 {
    background-color: rgb(69 26 3 / 0.6);
  }

  .sm\:bg-amber-950\/70 {
    background-color: rgb(69 26 3 / 0.7);
  }

  .sm\:bg-amber-950\/80 {
    background-color: rgb(69 26 3 / 0.8);
  }

  .sm\:bg-amber-950\/90 {
    background-color: rgb(69 26 3 / 0.9);
  }

  .sm\:bg-blue-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-blue-100\/10 {
    background-color: rgb(219 234 254 / 0.1);
  }

  .sm\:bg-blue-100\/20 {
    background-color: rgb(219 234 254 / 0.2);
  }

  .sm\:bg-blue-100\/30 {
    background-color: rgb(219 234 254 / 0.3);
  }

  .sm\:bg-blue-100\/40 {
    background-color: rgb(219 234 254 / 0.4);
  }

  .sm\:bg-blue-100\/5 {
    background-color: rgb(219 234 254 / 0.05);
  }

  .sm\:bg-blue-100\/50 {
    background-color: rgb(219 234 254 / 0.5);
  }

  .sm\:bg-blue-100\/60 {
    background-color: rgb(219 234 254 / 0.6);
  }

  .sm\:bg-blue-100\/70 {
    background-color: rgb(219 234 254 / 0.7);
  }

  .sm\:bg-blue-100\/80 {
    background-color: rgb(219 234 254 / 0.8);
  }

  .sm\:bg-blue-100\/90 {
    background-color: rgb(219 234 254 / 0.9);
  }

  .sm\:bg-blue-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(191 219 254 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-blue-200\/10 {
    background-color: rgb(191 219 254 / 0.1);
  }

  .sm\:bg-blue-200\/20 {
    background-color: rgb(191 219 254 / 0.2);
  }

  .sm\:bg-blue-200\/30 {
    background-color: rgb(191 219 254 / 0.3);
  }

  .sm\:bg-blue-200\/40 {
    background-color: rgb(191 219 254 / 0.4);
  }

  .sm\:bg-blue-200\/5 {
    background-color: rgb(191 219 254 / 0.05);
  }

  .sm\:bg-blue-200\/50 {
    background-color: rgb(191 219 254 / 0.5);
  }

  .sm\:bg-blue-200\/60 {
    background-color: rgb(191 219 254 / 0.6);
  }

  .sm\:bg-blue-200\/70 {
    background-color: rgb(191 219 254 / 0.7);
  }

  .sm\:bg-blue-200\/80 {
    background-color: rgb(191 219 254 / 0.8);
  }

  .sm\:bg-blue-200\/90 {
    background-color: rgb(191 219 254 / 0.9);
  }

  .sm\:bg-blue-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(147 197 253 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-blue-300\/10 {
    background-color: rgb(147 197 253 / 0.1);
  }

  .sm\:bg-blue-300\/20 {
    background-color: rgb(147 197 253 / 0.2);
  }

  .sm\:bg-blue-300\/30 {
    background-color: rgb(147 197 253 / 0.3);
  }

  .sm\:bg-blue-300\/40 {
    background-color: rgb(147 197 253 / 0.4);
  }

  .sm\:bg-blue-300\/5 {
    background-color: rgb(147 197 253 / 0.05);
  }

  .sm\:bg-blue-300\/50 {
    background-color: rgb(147 197 253 / 0.5);
  }

  .sm\:bg-blue-300\/60 {
    background-color: rgb(147 197 253 / 0.6);
  }

  .sm\:bg-blue-300\/70 {
    background-color: rgb(147 197 253 / 0.7);
  }

  .sm\:bg-blue-300\/80 {
    background-color: rgb(147 197 253 / 0.8);
  }

  .sm\:bg-blue-300\/90 {
    background-color: rgb(147 197 253 / 0.9);
  }

  .sm\:bg-blue-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(96 165 250 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-blue-400\/10 {
    background-color: rgb(96 165 250 / 0.1);
  }

  .sm\:bg-blue-400\/20 {
    background-color: rgb(96 165 250 / 0.2);
  }

  .sm\:bg-blue-400\/30 {
    background-color: rgb(96 165 250 / 0.3);
  }

  .sm\:bg-blue-400\/40 {
    background-color: rgb(96 165 250 / 0.4);
  }

  .sm\:bg-blue-400\/5 {
    background-color: rgb(96 165 250 / 0.05);
  }

  .sm\:bg-blue-400\/50 {
    background-color: rgb(96 165 250 / 0.5);
  }

  .sm\:bg-blue-400\/60 {
    background-color: rgb(96 165 250 / 0.6);
  }

  .sm\:bg-blue-400\/70 {
    background-color: rgb(96 165 250 / 0.7);
  }

  .sm\:bg-blue-400\/80 {
    background-color: rgb(96 165 250 / 0.8);
  }

  .sm\:bg-blue-400\/90 {
    background-color: rgb(96 165 250 / 0.9);
  }

  .sm\:bg-blue-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-blue-50\/10 {
    background-color: rgb(239 246 255 / 0.1);
  }

  .sm\:bg-blue-50\/20 {
    background-color: rgb(239 246 255 / 0.2);
  }

  .sm\:bg-blue-50\/30 {
    background-color: rgb(239 246 255 / 0.3);
  }

  .sm\:bg-blue-50\/40 {
    background-color: rgb(239 246 255 / 0.4);
  }

  .sm\:bg-blue-50\/5 {
    background-color: rgb(239 246 255 / 0.05);
  }

  .sm\:bg-blue-50\/50 {
    background-color: rgb(239 246 255 / 0.5);
  }

  .sm\:bg-blue-50\/60 {
    background-color: rgb(239 246 255 / 0.6);
  }

  .sm\:bg-blue-50\/70 {
    background-color: rgb(239 246 255 / 0.7);
  }

  .sm\:bg-blue-50\/80 {
    background-color: rgb(239 246 255 / 0.8);
  }

  .sm\:bg-blue-50\/90 {
    background-color: rgb(239 246 255 / 0.9);
  }

  .sm\:bg-blue-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-blue-500\/10 {
    background-color: rgb(59 130 246 / 0.1);
  }

  .sm\:bg-blue-500\/20 {
    background-color: rgb(59 130 246 / 0.2);
  }

  .sm\:bg-blue-500\/30 {
    background-color: rgb(59 130 246 / 0.3);
  }

  .sm\:bg-blue-500\/40 {
    background-color: rgb(59 130 246 / 0.4);
  }

  .sm\:bg-blue-500\/5 {
    background-color: rgb(59 130 246 / 0.05);
  }

  .sm\:bg-blue-500\/50 {
    background-color: rgb(59 130 246 / 0.5);
  }

  .sm\:bg-blue-500\/60 {
    background-color: rgb(59 130 246 / 0.6);
  }

  .sm\:bg-blue-500\/70 {
    background-color: rgb(59 130 246 / 0.7);
  }

  .sm\:bg-blue-500\/80 {
    background-color: rgb(59 130 246 / 0.8);
  }

  .sm\:bg-blue-500\/90 {
    background-color: rgb(59 130 246 / 0.9);
  }

  .sm\:bg-blue-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-blue-600\/10 {
    background-color: rgb(37 99 235 / 0.1);
  }

  .sm\:bg-blue-600\/20 {
    background-color: rgb(37 99 235 / 0.2);
  }

  .sm\:bg-blue-600\/30 {
    background-color: rgb(37 99 235 / 0.3);
  }

  .sm\:bg-blue-600\/40 {
    background-color: rgb(37 99 235 / 0.4);
  }

  .sm\:bg-blue-600\/5 {
    background-color: rgb(37 99 235 / 0.05);
  }

  .sm\:bg-blue-600\/50 {
    background-color: rgb(37 99 235 / 0.5);
  }

  .sm\:bg-blue-600\/60 {
    background-color: rgb(37 99 235 / 0.6);
  }

  .sm\:bg-blue-600\/70 {
    background-color: rgb(37 99 235 / 0.7);
  }

  .sm\:bg-blue-600\/80 {
    background-color: rgb(37 99 235 / 0.8);
  }

  .sm\:bg-blue-600\/90 {
    background-color: rgb(37 99 235 / 0.9);
  }

  .sm\:bg-blue-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-blue-700\/10 {
    background-color: rgb(29 78 216 / 0.1);
  }

  .sm\:bg-blue-700\/20 {
    background-color: rgb(29 78 216 / 0.2);
  }

  .sm\:bg-blue-700\/30 {
    background-color: rgb(29 78 216 / 0.3);
  }

  .sm\:bg-blue-700\/40 {
    background-color: rgb(29 78 216 / 0.4);
  }

  .sm\:bg-blue-700\/5 {
    background-color: rgb(29 78 216 / 0.05);
  }

  .sm\:bg-blue-700\/50 {
    background-color: rgb(29 78 216 / 0.5);
  }

  .sm\:bg-blue-700\/60 {
    background-color: rgb(29 78 216 / 0.6);
  }

  .sm\:bg-blue-700\/70 {
    background-color: rgb(29 78 216 / 0.7);
  }

  .sm\:bg-blue-700\/80 {
    background-color: rgb(29 78 216 / 0.8);
  }

  .sm\:bg-blue-700\/90 {
    background-color: rgb(29 78 216 / 0.9);
  }

  .sm\:bg-blue-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(30 64 175 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-blue-800\/10 {
    background-color: rgb(30 64 175 / 0.1);
  }

  .sm\:bg-blue-800\/20 {
    background-color: rgb(30 64 175 / 0.2);
  }

  .sm\:bg-blue-800\/30 {
    background-color: rgb(30 64 175 / 0.3);
  }

  .sm\:bg-blue-800\/40 {
    background-color: rgb(30 64 175 / 0.4);
  }

  .sm\:bg-blue-800\/5 {
    background-color: rgb(30 64 175 / 0.05);
  }

  .sm\:bg-blue-800\/50 {
    background-color: rgb(30 64 175 / 0.5);
  }

  .sm\:bg-blue-800\/60 {
    background-color: rgb(30 64 175 / 0.6);
  }

  .sm\:bg-blue-800\/70 {
    background-color: rgb(30 64 175 / 0.7);
  }

  .sm\:bg-blue-800\/80 {
    background-color: rgb(30 64 175 / 0.8);
  }

  .sm\:bg-blue-800\/90 {
    background-color: rgb(30 64 175 / 0.9);
  }

  .sm\:bg-blue-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(30 58 138 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-blue-900\/10 {
    background-color: rgb(30 58 138 / 0.1);
  }

  .sm\:bg-blue-900\/20 {
    background-color: rgb(30 58 138 / 0.2);
  }

  .sm\:bg-blue-900\/30 {
    background-color: rgb(30 58 138 / 0.3);
  }

  .sm\:bg-blue-900\/40 {
    background-color: rgb(30 58 138 / 0.4);
  }

  .sm\:bg-blue-900\/5 {
    background-color: rgb(30 58 138 / 0.05);
  }

  .sm\:bg-blue-900\/50 {
    background-color: rgb(30 58 138 / 0.5);
  }

  .sm\:bg-blue-900\/60 {
    background-color: rgb(30 58 138 / 0.6);
  }

  .sm\:bg-blue-900\/70 {
    background-color: rgb(30 58 138 / 0.7);
  }

  .sm\:bg-blue-900\/80 {
    background-color: rgb(30 58 138 / 0.8);
  }

  .sm\:bg-blue-900\/90 {
    background-color: rgb(30 58 138 / 0.9);
  }

  .sm\:bg-blue-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(23 37 84 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-blue-950\/10 {
    background-color: rgb(23 37 84 / 0.1);
  }

  .sm\:bg-blue-950\/20 {
    background-color: rgb(23 37 84 / 0.2);
  }

  .sm\:bg-blue-950\/30 {
    background-color: rgb(23 37 84 / 0.3);
  }

  .sm\:bg-blue-950\/40 {
    background-color: rgb(23 37 84 / 0.4);
  }

  .sm\:bg-blue-950\/5 {
    background-color: rgb(23 37 84 / 0.05);
  }

  .sm\:bg-blue-950\/50 {
    background-color: rgb(23 37 84 / 0.5);
  }

  .sm\:bg-blue-950\/60 {
    background-color: rgb(23 37 84 / 0.6);
  }

  .sm\:bg-blue-950\/70 {
    background-color: rgb(23 37 84 / 0.7);
  }

  .sm\:bg-blue-950\/80 {
    background-color: rgb(23 37 84 / 0.8);
  }

  .sm\:bg-blue-950\/90 {
    background-color: rgb(23 37 84 / 0.9);
  }

  .sm\:bg-cyan-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(207 250 254 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-cyan-100\/10 {
    background-color: rgb(207 250 254 / 0.1);
  }

  .sm\:bg-cyan-100\/20 {
    background-color: rgb(207 250 254 / 0.2);
  }

  .sm\:bg-cyan-100\/30 {
    background-color: rgb(207 250 254 / 0.3);
  }

  .sm\:bg-cyan-100\/40 {
    background-color: rgb(207 250 254 / 0.4);
  }

  .sm\:bg-cyan-100\/5 {
    background-color: rgb(207 250 254 / 0.05);
  }

  .sm\:bg-cyan-100\/50 {
    background-color: rgb(207 250 254 / 0.5);
  }

  .sm\:bg-cyan-100\/60 {
    background-color: rgb(207 250 254 / 0.6);
  }

  .sm\:bg-cyan-100\/70 {
    background-color: rgb(207 250 254 / 0.7);
  }

  .sm\:bg-cyan-100\/80 {
    background-color: rgb(207 250 254 / 0.8);
  }

  .sm\:bg-cyan-100\/90 {
    background-color: rgb(207 250 254 / 0.9);
  }

  .sm\:bg-cyan-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(165 243 252 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-cyan-200\/10 {
    background-color: rgb(165 243 252 / 0.1);
  }

  .sm\:bg-cyan-200\/20 {
    background-color: rgb(165 243 252 / 0.2);
  }

  .sm\:bg-cyan-200\/30 {
    background-color: rgb(165 243 252 / 0.3);
  }

  .sm\:bg-cyan-200\/40 {
    background-color: rgb(165 243 252 / 0.4);
  }

  .sm\:bg-cyan-200\/5 {
    background-color: rgb(165 243 252 / 0.05);
  }

  .sm\:bg-cyan-200\/50 {
    background-color: rgb(165 243 252 / 0.5);
  }

  .sm\:bg-cyan-200\/60 {
    background-color: rgb(165 243 252 / 0.6);
  }

  .sm\:bg-cyan-200\/70 {
    background-color: rgb(165 243 252 / 0.7);
  }

  .sm\:bg-cyan-200\/80 {
    background-color: rgb(165 243 252 / 0.8);
  }

  .sm\:bg-cyan-200\/90 {
    background-color: rgb(165 243 252 / 0.9);
  }

  .sm\:bg-cyan-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(103 232 249 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-cyan-300\/10 {
    background-color: rgb(103 232 249 / 0.1);
  }

  .sm\:bg-cyan-300\/20 {
    background-color: rgb(103 232 249 / 0.2);
  }

  .sm\:bg-cyan-300\/30 {
    background-color: rgb(103 232 249 / 0.3);
  }

  .sm\:bg-cyan-300\/40 {
    background-color: rgb(103 232 249 / 0.4);
  }

  .sm\:bg-cyan-300\/5 {
    background-color: rgb(103 232 249 / 0.05);
  }

  .sm\:bg-cyan-300\/50 {
    background-color: rgb(103 232 249 / 0.5);
  }

  .sm\:bg-cyan-300\/60 {
    background-color: rgb(103 232 249 / 0.6);
  }

  .sm\:bg-cyan-300\/70 {
    background-color: rgb(103 232 249 / 0.7);
  }

  .sm\:bg-cyan-300\/80 {
    background-color: rgb(103 232 249 / 0.8);
  }

  .sm\:bg-cyan-300\/90 {
    background-color: rgb(103 232 249 / 0.9);
  }

  .sm\:bg-cyan-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(34 211 238 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-cyan-400\/10 {
    background-color: rgb(34 211 238 / 0.1);
  }

  .sm\:bg-cyan-400\/20 {
    background-color: rgb(34 211 238 / 0.2);
  }

  .sm\:bg-cyan-400\/30 {
    background-color: rgb(34 211 238 / 0.3);
  }

  .sm\:bg-cyan-400\/40 {
    background-color: rgb(34 211 238 / 0.4);
  }

  .sm\:bg-cyan-400\/5 {
    background-color: rgb(34 211 238 / 0.05);
  }

  .sm\:bg-cyan-400\/50 {
    background-color: rgb(34 211 238 / 0.5);
  }

  .sm\:bg-cyan-400\/60 {
    background-color: rgb(34 211 238 / 0.6);
  }

  .sm\:bg-cyan-400\/70 {
    background-color: rgb(34 211 238 / 0.7);
  }

  .sm\:bg-cyan-400\/80 {
    background-color: rgb(34 211 238 / 0.8);
  }

  .sm\:bg-cyan-400\/90 {
    background-color: rgb(34 211 238 / 0.9);
  }

  .sm\:bg-cyan-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(236 254 255 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-cyan-50\/10 {
    background-color: rgb(236 254 255 / 0.1);
  }

  .sm\:bg-cyan-50\/20 {
    background-color: rgb(236 254 255 / 0.2);
  }

  .sm\:bg-cyan-50\/30 {
    background-color: rgb(236 254 255 / 0.3);
  }

  .sm\:bg-cyan-50\/40 {
    background-color: rgb(236 254 255 / 0.4);
  }

  .sm\:bg-cyan-50\/5 {
    background-color: rgb(236 254 255 / 0.05);
  }

  .sm\:bg-cyan-50\/50 {
    background-color: rgb(236 254 255 / 0.5);
  }

  .sm\:bg-cyan-50\/60 {
    background-color: rgb(236 254 255 / 0.6);
  }

  .sm\:bg-cyan-50\/70 {
    background-color: rgb(236 254 255 / 0.7);
  }

  .sm\:bg-cyan-50\/80 {
    background-color: rgb(236 254 255 / 0.8);
  }

  .sm\:bg-cyan-50\/90 {
    background-color: rgb(236 254 255 / 0.9);
  }

  .sm\:bg-cyan-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(6 182 212 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-cyan-500\/10 {
    background-color: rgb(6 182 212 / 0.1);
  }

  .sm\:bg-cyan-500\/20 {
    background-color: rgb(6 182 212 / 0.2);
  }

  .sm\:bg-cyan-500\/30 {
    background-color: rgb(6 182 212 / 0.3);
  }

  .sm\:bg-cyan-500\/40 {
    background-color: rgb(6 182 212 / 0.4);
  }

  .sm\:bg-cyan-500\/5 {
    background-color: rgb(6 182 212 / 0.05);
  }

  .sm\:bg-cyan-500\/50 {
    background-color: rgb(6 182 212 / 0.5);
  }

  .sm\:bg-cyan-500\/60 {
    background-color: rgb(6 182 212 / 0.6);
  }

  .sm\:bg-cyan-500\/70 {
    background-color: rgb(6 182 212 / 0.7);
  }

  .sm\:bg-cyan-500\/80 {
    background-color: rgb(6 182 212 / 0.8);
  }

  .sm\:bg-cyan-500\/90 {
    background-color: rgb(6 182 212 / 0.9);
  }

  .sm\:bg-cyan-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(8 145 178 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-cyan-600\/10 {
    background-color: rgb(8 145 178 / 0.1);
  }

  .sm\:bg-cyan-600\/20 {
    background-color: rgb(8 145 178 / 0.2);
  }

  .sm\:bg-cyan-600\/30 {
    background-color: rgb(8 145 178 / 0.3);
  }

  .sm\:bg-cyan-600\/40 {
    background-color: rgb(8 145 178 / 0.4);
  }

  .sm\:bg-cyan-600\/5 {
    background-color: rgb(8 145 178 / 0.05);
  }

  .sm\:bg-cyan-600\/50 {
    background-color: rgb(8 145 178 / 0.5);
  }

  .sm\:bg-cyan-600\/60 {
    background-color: rgb(8 145 178 / 0.6);
  }

  .sm\:bg-cyan-600\/70 {
    background-color: rgb(8 145 178 / 0.7);
  }

  .sm\:bg-cyan-600\/80 {
    background-color: rgb(8 145 178 / 0.8);
  }

  .sm\:bg-cyan-600\/90 {
    background-color: rgb(8 145 178 / 0.9);
  }

  .sm\:bg-cyan-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(14 116 144 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-cyan-700\/10 {
    background-color: rgb(14 116 144 / 0.1);
  }

  .sm\:bg-cyan-700\/20 {
    background-color: rgb(14 116 144 / 0.2);
  }

  .sm\:bg-cyan-700\/30 {
    background-color: rgb(14 116 144 / 0.3);
  }

  .sm\:bg-cyan-700\/40 {
    background-color: rgb(14 116 144 / 0.4);
  }

  .sm\:bg-cyan-700\/5 {
    background-color: rgb(14 116 144 / 0.05);
  }

  .sm\:bg-cyan-700\/50 {
    background-color: rgb(14 116 144 / 0.5);
  }

  .sm\:bg-cyan-700\/60 {
    background-color: rgb(14 116 144 / 0.6);
  }

  .sm\:bg-cyan-700\/70 {
    background-color: rgb(14 116 144 / 0.7);
  }

  .sm\:bg-cyan-700\/80 {
    background-color: rgb(14 116 144 / 0.8);
  }

  .sm\:bg-cyan-700\/90 {
    background-color: rgb(14 116 144 / 0.9);
  }

  .sm\:bg-cyan-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(21 94 117 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-cyan-800\/10 {
    background-color: rgb(21 94 117 / 0.1);
  }

  .sm\:bg-cyan-800\/20 {
    background-color: rgb(21 94 117 / 0.2);
  }

  .sm\:bg-cyan-800\/30 {
    background-color: rgb(21 94 117 / 0.3);
  }

  .sm\:bg-cyan-800\/40 {
    background-color: rgb(21 94 117 / 0.4);
  }

  .sm\:bg-cyan-800\/5 {
    background-color: rgb(21 94 117 / 0.05);
  }

  .sm\:bg-cyan-800\/50 {
    background-color: rgb(21 94 117 / 0.5);
  }

  .sm\:bg-cyan-800\/60 {
    background-color: rgb(21 94 117 / 0.6);
  }

  .sm\:bg-cyan-800\/70 {
    background-color: rgb(21 94 117 / 0.7);
  }

  .sm\:bg-cyan-800\/80 {
    background-color: rgb(21 94 117 / 0.8);
  }

  .sm\:bg-cyan-800\/90 {
    background-color: rgb(21 94 117 / 0.9);
  }

  .sm\:bg-cyan-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(22 78 99 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-cyan-900\/10 {
    background-color: rgb(22 78 99 / 0.1);
  }

  .sm\:bg-cyan-900\/20 {
    background-color: rgb(22 78 99 / 0.2);
  }

  .sm\:bg-cyan-900\/30 {
    background-color: rgb(22 78 99 / 0.3);
  }

  .sm\:bg-cyan-900\/40 {
    background-color: rgb(22 78 99 / 0.4);
  }

  .sm\:bg-cyan-900\/5 {
    background-color: rgb(22 78 99 / 0.05);
  }

  .sm\:bg-cyan-900\/50 {
    background-color: rgb(22 78 99 / 0.5);
  }

  .sm\:bg-cyan-900\/60 {
    background-color: rgb(22 78 99 / 0.6);
  }

  .sm\:bg-cyan-900\/70 {
    background-color: rgb(22 78 99 / 0.7);
  }

  .sm\:bg-cyan-900\/80 {
    background-color: rgb(22 78 99 / 0.8);
  }

  .sm\:bg-cyan-900\/90 {
    background-color: rgb(22 78 99 / 0.9);
  }

  .sm\:bg-cyan-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(8 51 68 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-cyan-950\/10 {
    background-color: rgb(8 51 68 / 0.1);
  }

  .sm\:bg-cyan-950\/20 {
    background-color: rgb(8 51 68 / 0.2);
  }

  .sm\:bg-cyan-950\/30 {
    background-color: rgb(8 51 68 / 0.3);
  }

  .sm\:bg-cyan-950\/40 {
    background-color: rgb(8 51 68 / 0.4);
  }

  .sm\:bg-cyan-950\/5 {
    background-color: rgb(8 51 68 / 0.05);
  }

  .sm\:bg-cyan-950\/50 {
    background-color: rgb(8 51 68 / 0.5);
  }

  .sm\:bg-cyan-950\/60 {
    background-color: rgb(8 51 68 / 0.6);
  }

  .sm\:bg-cyan-950\/70 {
    background-color: rgb(8 51 68 / 0.7);
  }

  .sm\:bg-cyan-950\/80 {
    background-color: rgb(8 51 68 / 0.8);
  }

  .sm\:bg-cyan-950\/90 {
    background-color: rgb(8 51 68 / 0.9);
  }

  .sm\:bg-emerald-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(209 250 229 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-emerald-100\/10 {
    background-color: rgb(209 250 229 / 0.1);
  }

  .sm\:bg-emerald-100\/20 {
    background-color: rgb(209 250 229 / 0.2);
  }

  .sm\:bg-emerald-100\/30 {
    background-color: rgb(209 250 229 / 0.3);
  }

  .sm\:bg-emerald-100\/40 {
    background-color: rgb(209 250 229 / 0.4);
  }

  .sm\:bg-emerald-100\/5 {
    background-color: rgb(209 250 229 / 0.05);
  }

  .sm\:bg-emerald-100\/50 {
    background-color: rgb(209 250 229 / 0.5);
  }

  .sm\:bg-emerald-100\/60 {
    background-color: rgb(209 250 229 / 0.6);
  }

  .sm\:bg-emerald-100\/70 {
    background-color: rgb(209 250 229 / 0.7);
  }

  .sm\:bg-emerald-100\/80 {
    background-color: rgb(209 250 229 / 0.8);
  }

  .sm\:bg-emerald-100\/90 {
    background-color: rgb(209 250 229 / 0.9);
  }

  .sm\:bg-emerald-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(167 243 208 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-emerald-200\/10 {
    background-color: rgb(167 243 208 / 0.1);
  }

  .sm\:bg-emerald-200\/20 {
    background-color: rgb(167 243 208 / 0.2);
  }

  .sm\:bg-emerald-200\/30 {
    background-color: rgb(167 243 208 / 0.3);
  }

  .sm\:bg-emerald-200\/40 {
    background-color: rgb(167 243 208 / 0.4);
  }

  .sm\:bg-emerald-200\/5 {
    background-color: rgb(167 243 208 / 0.05);
  }

  .sm\:bg-emerald-200\/50 {
    background-color: rgb(167 243 208 / 0.5);
  }

  .sm\:bg-emerald-200\/60 {
    background-color: rgb(167 243 208 / 0.6);
  }

  .sm\:bg-emerald-200\/70 {
    background-color: rgb(167 243 208 / 0.7);
  }

  .sm\:bg-emerald-200\/80 {
    background-color: rgb(167 243 208 / 0.8);
  }

  .sm\:bg-emerald-200\/90 {
    background-color: rgb(167 243 208 / 0.9);
  }

  .sm\:bg-emerald-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(110 231 183 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-emerald-300\/10 {
    background-color: rgb(110 231 183 / 0.1);
  }

  .sm\:bg-emerald-300\/20 {
    background-color: rgb(110 231 183 / 0.2);
  }

  .sm\:bg-emerald-300\/30 {
    background-color: rgb(110 231 183 / 0.3);
  }

  .sm\:bg-emerald-300\/40 {
    background-color: rgb(110 231 183 / 0.4);
  }

  .sm\:bg-emerald-300\/5 {
    background-color: rgb(110 231 183 / 0.05);
  }

  .sm\:bg-emerald-300\/50 {
    background-color: rgb(110 231 183 / 0.5);
  }

  .sm\:bg-emerald-300\/60 {
    background-color: rgb(110 231 183 / 0.6);
  }

  .sm\:bg-emerald-300\/70 {
    background-color: rgb(110 231 183 / 0.7);
  }

  .sm\:bg-emerald-300\/80 {
    background-color: rgb(110 231 183 / 0.8);
  }

  .sm\:bg-emerald-300\/90 {
    background-color: rgb(110 231 183 / 0.9);
  }

  .sm\:bg-emerald-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(52 211 153 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-emerald-400\/10 {
    background-color: rgb(52 211 153 / 0.1);
  }

  .sm\:bg-emerald-400\/20 {
    background-color: rgb(52 211 153 / 0.2);
  }

  .sm\:bg-emerald-400\/30 {
    background-color: rgb(52 211 153 / 0.3);
  }

  .sm\:bg-emerald-400\/40 {
    background-color: rgb(52 211 153 / 0.4);
  }

  .sm\:bg-emerald-400\/5 {
    background-color: rgb(52 211 153 / 0.05);
  }

  .sm\:bg-emerald-400\/50 {
    background-color: rgb(52 211 153 / 0.5);
  }

  .sm\:bg-emerald-400\/60 {
    background-color: rgb(52 211 153 / 0.6);
  }

  .sm\:bg-emerald-400\/70 {
    background-color: rgb(52 211 153 / 0.7);
  }

  .sm\:bg-emerald-400\/80 {
    background-color: rgb(52 211 153 / 0.8);
  }

  .sm\:bg-emerald-400\/90 {
    background-color: rgb(52 211 153 / 0.9);
  }

  .sm\:bg-emerald-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(236 253 245 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-emerald-50\/10 {
    background-color: rgb(236 253 245 / 0.1);
  }

  .sm\:bg-emerald-50\/20 {
    background-color: rgb(236 253 245 / 0.2);
  }

  .sm\:bg-emerald-50\/30 {
    background-color: rgb(236 253 245 / 0.3);
  }

  .sm\:bg-emerald-50\/40 {
    background-color: rgb(236 253 245 / 0.4);
  }

  .sm\:bg-emerald-50\/5 {
    background-color: rgb(236 253 245 / 0.05);
  }

  .sm\:bg-emerald-50\/50 {
    background-color: rgb(236 253 245 / 0.5);
  }

  .sm\:bg-emerald-50\/60 {
    background-color: rgb(236 253 245 / 0.6);
  }

  .sm\:bg-emerald-50\/70 {
    background-color: rgb(236 253 245 / 0.7);
  }

  .sm\:bg-emerald-50\/80 {
    background-color: rgb(236 253 245 / 0.8);
  }

  .sm\:bg-emerald-50\/90 {
    background-color: rgb(236 253 245 / 0.9);
  }

  .sm\:bg-emerald-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(16 185 129 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-emerald-500\/10 {
    background-color: rgb(16 185 129 / 0.1);
  }

  .sm\:bg-emerald-500\/20 {
    background-color: rgb(16 185 129 / 0.2);
  }

  .sm\:bg-emerald-500\/30 {
    background-color: rgb(16 185 129 / 0.3);
  }

  .sm\:bg-emerald-500\/40 {
    background-color: rgb(16 185 129 / 0.4);
  }

  .sm\:bg-emerald-500\/5 {
    background-color: rgb(16 185 129 / 0.05);
  }

  .sm\:bg-emerald-500\/50 {
    background-color: rgb(16 185 129 / 0.5);
  }

  .sm\:bg-emerald-500\/60 {
    background-color: rgb(16 185 129 / 0.6);
  }

  .sm\:bg-emerald-500\/70 {
    background-color: rgb(16 185 129 / 0.7);
  }

  .sm\:bg-emerald-500\/80 {
    background-color: rgb(16 185 129 / 0.8);
  }

  .sm\:bg-emerald-500\/90 {
    background-color: rgb(16 185 129 / 0.9);
  }

  .sm\:bg-emerald-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(5 150 105 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-emerald-600\/10 {
    background-color: rgb(5 150 105 / 0.1);
  }

  .sm\:bg-emerald-600\/20 {
    background-color: rgb(5 150 105 / 0.2);
  }

  .sm\:bg-emerald-600\/30 {
    background-color: rgb(5 150 105 / 0.3);
  }

  .sm\:bg-emerald-600\/40 {
    background-color: rgb(5 150 105 / 0.4);
  }

  .sm\:bg-emerald-600\/5 {
    background-color: rgb(5 150 105 / 0.05);
  }

  .sm\:bg-emerald-600\/50 {
    background-color: rgb(5 150 105 / 0.5);
  }

  .sm\:bg-emerald-600\/60 {
    background-color: rgb(5 150 105 / 0.6);
  }

  .sm\:bg-emerald-600\/70 {
    background-color: rgb(5 150 105 / 0.7);
  }

  .sm\:bg-emerald-600\/80 {
    background-color: rgb(5 150 105 / 0.8);
  }

  .sm\:bg-emerald-600\/90 {
    background-color: rgb(5 150 105 / 0.9);
  }

  .sm\:bg-emerald-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(4 120 87 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-emerald-700\/10 {
    background-color: rgb(4 120 87 / 0.1);
  }

  .sm\:bg-emerald-700\/20 {
    background-color: rgb(4 120 87 / 0.2);
  }

  .sm\:bg-emerald-700\/30 {
    background-color: rgb(4 120 87 / 0.3);
  }

  .sm\:bg-emerald-700\/40 {
    background-color: rgb(4 120 87 / 0.4);
  }

  .sm\:bg-emerald-700\/5 {
    background-color: rgb(4 120 87 / 0.05);
  }

  .sm\:bg-emerald-700\/50 {
    background-color: rgb(4 120 87 / 0.5);
  }

  .sm\:bg-emerald-700\/60 {
    background-color: rgb(4 120 87 / 0.6);
  }

  .sm\:bg-emerald-700\/70 {
    background-color: rgb(4 120 87 / 0.7);
  }

  .sm\:bg-emerald-700\/80 {
    background-color: rgb(4 120 87 / 0.8);
  }

  .sm\:bg-emerald-700\/90 {
    background-color: rgb(4 120 87 / 0.9);
  }

  .sm\:bg-emerald-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(6 95 70 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-emerald-800\/10 {
    background-color: rgb(6 95 70 / 0.1);
  }

  .sm\:bg-emerald-800\/20 {
    background-color: rgb(6 95 70 / 0.2);
  }

  .sm\:bg-emerald-800\/30 {
    background-color: rgb(6 95 70 / 0.3);
  }

  .sm\:bg-emerald-800\/40 {
    background-color: rgb(6 95 70 / 0.4);
  }

  .sm\:bg-emerald-800\/5 {
    background-color: rgb(6 95 70 / 0.05);
  }

  .sm\:bg-emerald-800\/50 {
    background-color: rgb(6 95 70 / 0.5);
  }

  .sm\:bg-emerald-800\/60 {
    background-color: rgb(6 95 70 / 0.6);
  }

  .sm\:bg-emerald-800\/70 {
    background-color: rgb(6 95 70 / 0.7);
  }

  .sm\:bg-emerald-800\/80 {
    background-color: rgb(6 95 70 / 0.8);
  }

  .sm\:bg-emerald-800\/90 {
    background-color: rgb(6 95 70 / 0.9);
  }

  .sm\:bg-emerald-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(6 78 59 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-emerald-900\/10 {
    background-color: rgb(6 78 59 / 0.1);
  }

  .sm\:bg-emerald-900\/20 {
    background-color: rgb(6 78 59 / 0.2);
  }

  .sm\:bg-emerald-900\/30 {
    background-color: rgb(6 78 59 / 0.3);
  }

  .sm\:bg-emerald-900\/40 {
    background-color: rgb(6 78 59 / 0.4);
  }

  .sm\:bg-emerald-900\/5 {
    background-color: rgb(6 78 59 / 0.05);
  }

  .sm\:bg-emerald-900\/50 {
    background-color: rgb(6 78 59 / 0.5);
  }

  .sm\:bg-emerald-900\/60 {
    background-color: rgb(6 78 59 / 0.6);
  }

  .sm\:bg-emerald-900\/70 {
    background-color: rgb(6 78 59 / 0.7);
  }

  .sm\:bg-emerald-900\/80 {
    background-color: rgb(6 78 59 / 0.8);
  }

  .sm\:bg-emerald-900\/90 {
    background-color: rgb(6 78 59 / 0.9);
  }

  .sm\:bg-emerald-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(2 44 34 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-emerald-950\/10 {
    background-color: rgb(2 44 34 / 0.1);
  }

  .sm\:bg-emerald-950\/20 {
    background-color: rgb(2 44 34 / 0.2);
  }

  .sm\:bg-emerald-950\/30 {
    background-color: rgb(2 44 34 / 0.3);
  }

  .sm\:bg-emerald-950\/40 {
    background-color: rgb(2 44 34 / 0.4);
  }

  .sm\:bg-emerald-950\/5 {
    background-color: rgb(2 44 34 / 0.05);
  }

  .sm\:bg-emerald-950\/50 {
    background-color: rgb(2 44 34 / 0.5);
  }

  .sm\:bg-emerald-950\/60 {
    background-color: rgb(2 44 34 / 0.6);
  }

  .sm\:bg-emerald-950\/70 {
    background-color: rgb(2 44 34 / 0.7);
  }

  .sm\:bg-emerald-950\/80 {
    background-color: rgb(2 44 34 / 0.8);
  }

  .sm\:bg-emerald-950\/90 {
    background-color: rgb(2 44 34 / 0.9);
  }

  .sm\:bg-fuchsia-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 232 255 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-fuchsia-100\/10 {
    background-color: rgb(250 232 255 / 0.1);
  }

  .sm\:bg-fuchsia-100\/20 {
    background-color: rgb(250 232 255 / 0.2);
  }

  .sm\:bg-fuchsia-100\/30 {
    background-color: rgb(250 232 255 / 0.3);
  }

  .sm\:bg-fuchsia-100\/40 {
    background-color: rgb(250 232 255 / 0.4);
  }

  .sm\:bg-fuchsia-100\/5 {
    background-color: rgb(250 232 255 / 0.05);
  }

  .sm\:bg-fuchsia-100\/50 {
    background-color: rgb(250 232 255 / 0.5);
  }

  .sm\:bg-fuchsia-100\/60 {
    background-color: rgb(250 232 255 / 0.6);
  }

  .sm\:bg-fuchsia-100\/70 {
    background-color: rgb(250 232 255 / 0.7);
  }

  .sm\:bg-fuchsia-100\/80 {
    background-color: rgb(250 232 255 / 0.8);
  }

  .sm\:bg-fuchsia-100\/90 {
    background-color: rgb(250 232 255 / 0.9);
  }

  .sm\:bg-fuchsia-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(245 208 254 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-fuchsia-200\/10 {
    background-color: rgb(245 208 254 / 0.1);
  }

  .sm\:bg-fuchsia-200\/20 {
    background-color: rgb(245 208 254 / 0.2);
  }

  .sm\:bg-fuchsia-200\/30 {
    background-color: rgb(245 208 254 / 0.3);
  }

  .sm\:bg-fuchsia-200\/40 {
    background-color: rgb(245 208 254 / 0.4);
  }

  .sm\:bg-fuchsia-200\/5 {
    background-color: rgb(245 208 254 / 0.05);
  }

  .sm\:bg-fuchsia-200\/50 {
    background-color: rgb(245 208 254 / 0.5);
  }

  .sm\:bg-fuchsia-200\/60 {
    background-color: rgb(245 208 254 / 0.6);
  }

  .sm\:bg-fuchsia-200\/70 {
    background-color: rgb(245 208 254 / 0.7);
  }

  .sm\:bg-fuchsia-200\/80 {
    background-color: rgb(245 208 254 / 0.8);
  }

  .sm\:bg-fuchsia-200\/90 {
    background-color: rgb(245 208 254 / 0.9);
  }

  .sm\:bg-fuchsia-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(240 171 252 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-fuchsia-300\/10 {
    background-color: rgb(240 171 252 / 0.1);
  }

  .sm\:bg-fuchsia-300\/20 {
    background-color: rgb(240 171 252 / 0.2);
  }

  .sm\:bg-fuchsia-300\/30 {
    background-color: rgb(240 171 252 / 0.3);
  }

  .sm\:bg-fuchsia-300\/40 {
    background-color: rgb(240 171 252 / 0.4);
  }

  .sm\:bg-fuchsia-300\/5 {
    background-color: rgb(240 171 252 / 0.05);
  }

  .sm\:bg-fuchsia-300\/50 {
    background-color: rgb(240 171 252 / 0.5);
  }

  .sm\:bg-fuchsia-300\/60 {
    background-color: rgb(240 171 252 / 0.6);
  }

  .sm\:bg-fuchsia-300\/70 {
    background-color: rgb(240 171 252 / 0.7);
  }

  .sm\:bg-fuchsia-300\/80 {
    background-color: rgb(240 171 252 / 0.8);
  }

  .sm\:bg-fuchsia-300\/90 {
    background-color: rgb(240 171 252 / 0.9);
  }

  .sm\:bg-fuchsia-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(232 121 249 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-fuchsia-400\/10 {
    background-color: rgb(232 121 249 / 0.1);
  }

  .sm\:bg-fuchsia-400\/20 {
    background-color: rgb(232 121 249 / 0.2);
  }

  .sm\:bg-fuchsia-400\/30 {
    background-color: rgb(232 121 249 / 0.3);
  }

  .sm\:bg-fuchsia-400\/40 {
    background-color: rgb(232 121 249 / 0.4);
  }

  .sm\:bg-fuchsia-400\/5 {
    background-color: rgb(232 121 249 / 0.05);
  }

  .sm\:bg-fuchsia-400\/50 {
    background-color: rgb(232 121 249 / 0.5);
  }

  .sm\:bg-fuchsia-400\/60 {
    background-color: rgb(232 121 249 / 0.6);
  }

  .sm\:bg-fuchsia-400\/70 {
    background-color: rgb(232 121 249 / 0.7);
  }

  .sm\:bg-fuchsia-400\/80 {
    background-color: rgb(232 121 249 / 0.8);
  }

  .sm\:bg-fuchsia-400\/90 {
    background-color: rgb(232 121 249 / 0.9);
  }

  .sm\:bg-fuchsia-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(253 244 255 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-fuchsia-50\/10 {
    background-color: rgb(253 244 255 / 0.1);
  }

  .sm\:bg-fuchsia-50\/20 {
    background-color: rgb(253 244 255 / 0.2);
  }

  .sm\:bg-fuchsia-50\/30 {
    background-color: rgb(253 244 255 / 0.3);
  }

  .sm\:bg-fuchsia-50\/40 {
    background-color: rgb(253 244 255 / 0.4);
  }

  .sm\:bg-fuchsia-50\/5 {
    background-color: rgb(253 244 255 / 0.05);
  }

  .sm\:bg-fuchsia-50\/50 {
    background-color: rgb(253 244 255 / 0.5);
  }

  .sm\:bg-fuchsia-50\/60 {
    background-color: rgb(253 244 255 / 0.6);
  }

  .sm\:bg-fuchsia-50\/70 {
    background-color: rgb(253 244 255 / 0.7);
  }

  .sm\:bg-fuchsia-50\/80 {
    background-color: rgb(253 244 255 / 0.8);
  }

  .sm\:bg-fuchsia-50\/90 {
    background-color: rgb(253 244 255 / 0.9);
  }

  .sm\:bg-fuchsia-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(217 70 239 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-fuchsia-500\/10 {
    background-color: rgb(217 70 239 / 0.1);
  }

  .sm\:bg-fuchsia-500\/20 {
    background-color: rgb(217 70 239 / 0.2);
  }

  .sm\:bg-fuchsia-500\/30 {
    background-color: rgb(217 70 239 / 0.3);
  }

  .sm\:bg-fuchsia-500\/40 {
    background-color: rgb(217 70 239 / 0.4);
  }

  .sm\:bg-fuchsia-500\/5 {
    background-color: rgb(217 70 239 / 0.05);
  }

  .sm\:bg-fuchsia-500\/50 {
    background-color: rgb(217 70 239 / 0.5);
  }

  .sm\:bg-fuchsia-500\/60 {
    background-color: rgb(217 70 239 / 0.6);
  }

  .sm\:bg-fuchsia-500\/70 {
    background-color: rgb(217 70 239 / 0.7);
  }

  .sm\:bg-fuchsia-500\/80 {
    background-color: rgb(217 70 239 / 0.8);
  }

  .sm\:bg-fuchsia-500\/90 {
    background-color: rgb(217 70 239 / 0.9);
  }

  .sm\:bg-fuchsia-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(192 38 211 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-fuchsia-600\/10 {
    background-color: rgb(192 38 211 / 0.1);
  }

  .sm\:bg-fuchsia-600\/20 {
    background-color: rgb(192 38 211 / 0.2);
  }

  .sm\:bg-fuchsia-600\/30 {
    background-color: rgb(192 38 211 / 0.3);
  }

  .sm\:bg-fuchsia-600\/40 {
    background-color: rgb(192 38 211 / 0.4);
  }

  .sm\:bg-fuchsia-600\/5 {
    background-color: rgb(192 38 211 / 0.05);
  }

  .sm\:bg-fuchsia-600\/50 {
    background-color: rgb(192 38 211 / 0.5);
  }

  .sm\:bg-fuchsia-600\/60 {
    background-color: rgb(192 38 211 / 0.6);
  }

  .sm\:bg-fuchsia-600\/70 {
    background-color: rgb(192 38 211 / 0.7);
  }

  .sm\:bg-fuchsia-600\/80 {
    background-color: rgb(192 38 211 / 0.8);
  }

  .sm\:bg-fuchsia-600\/90 {
    background-color: rgb(192 38 211 / 0.9);
  }

  .sm\:bg-fuchsia-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(162 28 175 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-fuchsia-700\/10 {
    background-color: rgb(162 28 175 / 0.1);
  }

  .sm\:bg-fuchsia-700\/20 {
    background-color: rgb(162 28 175 / 0.2);
  }

  .sm\:bg-fuchsia-700\/30 {
    background-color: rgb(162 28 175 / 0.3);
  }

  .sm\:bg-fuchsia-700\/40 {
    background-color: rgb(162 28 175 / 0.4);
  }

  .sm\:bg-fuchsia-700\/5 {
    background-color: rgb(162 28 175 / 0.05);
  }

  .sm\:bg-fuchsia-700\/50 {
    background-color: rgb(162 28 175 / 0.5);
  }

  .sm\:bg-fuchsia-700\/60 {
    background-color: rgb(162 28 175 / 0.6);
  }

  .sm\:bg-fuchsia-700\/70 {
    background-color: rgb(162 28 175 / 0.7);
  }

  .sm\:bg-fuchsia-700\/80 {
    background-color: rgb(162 28 175 / 0.8);
  }

  .sm\:bg-fuchsia-700\/90 {
    background-color: rgb(162 28 175 / 0.9);
  }

  .sm\:bg-fuchsia-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(134 25 143 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-fuchsia-800\/10 {
    background-color: rgb(134 25 143 / 0.1);
  }

  .sm\:bg-fuchsia-800\/20 {
    background-color: rgb(134 25 143 / 0.2);
  }

  .sm\:bg-fuchsia-800\/30 {
    background-color: rgb(134 25 143 / 0.3);
  }

  .sm\:bg-fuchsia-800\/40 {
    background-color: rgb(134 25 143 / 0.4);
  }

  .sm\:bg-fuchsia-800\/5 {
    background-color: rgb(134 25 143 / 0.05);
  }

  .sm\:bg-fuchsia-800\/50 {
    background-color: rgb(134 25 143 / 0.5);
  }

  .sm\:bg-fuchsia-800\/60 {
    background-color: rgb(134 25 143 / 0.6);
  }

  .sm\:bg-fuchsia-800\/70 {
    background-color: rgb(134 25 143 / 0.7);
  }

  .sm\:bg-fuchsia-800\/80 {
    background-color: rgb(134 25 143 / 0.8);
  }

  .sm\:bg-fuchsia-800\/90 {
    background-color: rgb(134 25 143 / 0.9);
  }

  .sm\:bg-fuchsia-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(112 26 117 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-fuchsia-900\/10 {
    background-color: rgb(112 26 117 / 0.1);
  }

  .sm\:bg-fuchsia-900\/20 {
    background-color: rgb(112 26 117 / 0.2);
  }

  .sm\:bg-fuchsia-900\/30 {
    background-color: rgb(112 26 117 / 0.3);
  }

  .sm\:bg-fuchsia-900\/40 {
    background-color: rgb(112 26 117 / 0.4);
  }

  .sm\:bg-fuchsia-900\/5 {
    background-color: rgb(112 26 117 / 0.05);
  }

  .sm\:bg-fuchsia-900\/50 {
    background-color: rgb(112 26 117 / 0.5);
  }

  .sm\:bg-fuchsia-900\/60 {
    background-color: rgb(112 26 117 / 0.6);
  }

  .sm\:bg-fuchsia-900\/70 {
    background-color: rgb(112 26 117 / 0.7);
  }

  .sm\:bg-fuchsia-900\/80 {
    background-color: rgb(112 26 117 / 0.8);
  }

  .sm\:bg-fuchsia-900\/90 {
    background-color: rgb(112 26 117 / 0.9);
  }

  .sm\:bg-fuchsia-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(74 4 78 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-fuchsia-950\/10 {
    background-color: rgb(74 4 78 / 0.1);
  }

  .sm\:bg-fuchsia-950\/20 {
    background-color: rgb(74 4 78 / 0.2);
  }

  .sm\:bg-fuchsia-950\/30 {
    background-color: rgb(74 4 78 / 0.3);
  }

  .sm\:bg-fuchsia-950\/40 {
    background-color: rgb(74 4 78 / 0.4);
  }

  .sm\:bg-fuchsia-950\/5 {
    background-color: rgb(74 4 78 / 0.05);
  }

  .sm\:bg-fuchsia-950\/50 {
    background-color: rgb(74 4 78 / 0.5);
  }

  .sm\:bg-fuchsia-950\/60 {
    background-color: rgb(74 4 78 / 0.6);
  }

  .sm\:bg-fuchsia-950\/70 {
    background-color: rgb(74 4 78 / 0.7);
  }

  .sm\:bg-fuchsia-950\/80 {
    background-color: rgb(74 4 78 / 0.8);
  }

  .sm\:bg-fuchsia-950\/90 {
    background-color: rgb(74 4 78 / 0.9);
  }

  .sm\:bg-gray-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-gray-100\/10 {
    background-color: rgb(243 244 246 / 0.1);
  }

  .sm\:bg-gray-100\/20 {
    background-color: rgb(243 244 246 / 0.2);
  }

  .sm\:bg-gray-100\/30 {
    background-color: rgb(243 244 246 / 0.3);
  }

  .sm\:bg-gray-100\/40 {
    background-color: rgb(243 244 246 / 0.4);
  }

  .sm\:bg-gray-100\/5 {
    background-color: rgb(243 244 246 / 0.05);
  }

  .sm\:bg-gray-100\/50 {
    background-color: rgb(243 244 246 / 0.5);
  }

  .sm\:bg-gray-100\/60 {
    background-color: rgb(243 244 246 / 0.6);
  }

  .sm\:bg-gray-100\/70 {
    background-color: rgb(243 244 246 / 0.7);
  }

  .sm\:bg-gray-100\/80 {
    background-color: rgb(243 244 246 / 0.8);
  }

  .sm\:bg-gray-100\/90 {
    background-color: rgb(243 244 246 / 0.9);
  }

  .sm\:bg-gray-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-gray-200\/10 {
    background-color: rgb(229 231 235 / 0.1);
  }

  .sm\:bg-gray-200\/20 {
    background-color: rgb(229 231 235 / 0.2);
  }

  .sm\:bg-gray-200\/30 {
    background-color: rgb(229 231 235 / 0.3);
  }

  .sm\:bg-gray-200\/40 {
    background-color: rgb(229 231 235 / 0.4);
  }

  .sm\:bg-gray-200\/5 {
    background-color: rgb(229 231 235 / 0.05);
  }

  .sm\:bg-gray-200\/50 {
    background-color: rgb(229 231 235 / 0.5);
  }

  .sm\:bg-gray-200\/60 {
    background-color: rgb(229 231 235 / 0.6);
  }

  .sm\:bg-gray-200\/70 {
    background-color: rgb(229 231 235 / 0.7);
  }

  .sm\:bg-gray-200\/80 {
    background-color: rgb(229 231 235 / 0.8);
  }

  .sm\:bg-gray-200\/90 {
    background-color: rgb(229 231 235 / 0.9);
  }

  .sm\:bg-gray-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-gray-300\/10 {
    background-color: rgb(209 213 219 / 0.1);
  }

  .sm\:bg-gray-300\/20 {
    background-color: rgb(209 213 219 / 0.2);
  }

  .sm\:bg-gray-300\/30 {
    background-color: rgb(209 213 219 / 0.3);
  }

  .sm\:bg-gray-300\/40 {
    background-color: rgb(209 213 219 / 0.4);
  }

  .sm\:bg-gray-300\/5 {
    background-color: rgb(209 213 219 / 0.05);
  }

  .sm\:bg-gray-300\/50 {
    background-color: rgb(209 213 219 / 0.5);
  }

  .sm\:bg-gray-300\/60 {
    background-color: rgb(209 213 219 / 0.6);
  }

  .sm\:bg-gray-300\/70 {
    background-color: rgb(209 213 219 / 0.7);
  }

  .sm\:bg-gray-300\/80 {
    background-color: rgb(209 213 219 / 0.8);
  }

  .sm\:bg-gray-300\/90 {
    background-color: rgb(209 213 219 / 0.9);
  }

  .sm\:bg-gray-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(156 163 175 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-gray-400\/10 {
    background-color: rgb(156 163 175 / 0.1);
  }

  .sm\:bg-gray-400\/20 {
    background-color: rgb(156 163 175 / 0.2);
  }

  .sm\:bg-gray-400\/30 {
    background-color: rgb(156 163 175 / 0.3);
  }

  .sm\:bg-gray-400\/40 {
    background-color: rgb(156 163 175 / 0.4);
  }

  .sm\:bg-gray-400\/5 {
    background-color: rgb(156 163 175 / 0.05);
  }

  .sm\:bg-gray-400\/50 {
    background-color: rgb(156 163 175 / 0.5);
  }

  .sm\:bg-gray-400\/60 {
    background-color: rgb(156 163 175 / 0.6);
  }

  .sm\:bg-gray-400\/70 {
    background-color: rgb(156 163 175 / 0.7);
  }

  .sm\:bg-gray-400\/80 {
    background-color: rgb(156 163 175 / 0.8);
  }

  .sm\:bg-gray-400\/90 {
    background-color: rgb(156 163 175 / 0.9);
  }

  .sm\:bg-gray-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-gray-50\/10 {
    background-color: rgb(249 250 251 / 0.1);
  }

  .sm\:bg-gray-50\/20 {
    background-color: rgb(249 250 251 / 0.2);
  }

  .sm\:bg-gray-50\/30 {
    background-color: rgb(249 250 251 / 0.3);
  }

  .sm\:bg-gray-50\/40 {
    background-color: rgb(249 250 251 / 0.4);
  }

  .sm\:bg-gray-50\/5 {
    background-color: rgb(249 250 251 / 0.05);
  }

  .sm\:bg-gray-50\/50 {
    background-color: rgb(249 250 251 / 0.5);
  }

  .sm\:bg-gray-50\/60 {
    background-color: rgb(249 250 251 / 0.6);
  }

  .sm\:bg-gray-50\/70 {
    background-color: rgb(249 250 251 / 0.7);
  }

  .sm\:bg-gray-50\/80 {
    background-color: rgb(249 250 251 / 0.8);
  }

  .sm\:bg-gray-50\/90 {
    background-color: rgb(249 250 251 / 0.9);
  }

  .sm\:bg-gray-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(107 114 128 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-gray-500\/10 {
    background-color: rgb(107 114 128 / 0.1);
  }

  .sm\:bg-gray-500\/20 {
    background-color: rgb(107 114 128 / 0.2);
  }

  .sm\:bg-gray-500\/30 {
    background-color: rgb(107 114 128 / 0.3);
  }

  .sm\:bg-gray-500\/40 {
    background-color: rgb(107 114 128 / 0.4);
  }

  .sm\:bg-gray-500\/5 {
    background-color: rgb(107 114 128 / 0.05);
  }

  .sm\:bg-gray-500\/50 {
    background-color: rgb(107 114 128 / 0.5);
  }

  .sm\:bg-gray-500\/60 {
    background-color: rgb(107 114 128 / 0.6);
  }

  .sm\:bg-gray-500\/70 {
    background-color: rgb(107 114 128 / 0.7);
  }

  .sm\:bg-gray-500\/80 {
    background-color: rgb(107 114 128 / 0.8);
  }

  .sm\:bg-gray-500\/90 {
    background-color: rgb(107 114 128 / 0.9);
  }

  .sm\:bg-gray-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-gray-600\/10 {
    background-color: rgb(75 85 99 / 0.1);
  }

  .sm\:bg-gray-600\/20 {
    background-color: rgb(75 85 99 / 0.2);
  }

  .sm\:bg-gray-600\/30 {
    background-color: rgb(75 85 99 / 0.3);
  }

  .sm\:bg-gray-600\/40 {
    background-color: rgb(75 85 99 / 0.4);
  }

  .sm\:bg-gray-600\/5 {
    background-color: rgb(75 85 99 / 0.05);
  }

  .sm\:bg-gray-600\/50 {
    background-color: rgb(75 85 99 / 0.5);
  }

  .sm\:bg-gray-600\/60 {
    background-color: rgb(75 85 99 / 0.6);
  }

  .sm\:bg-gray-600\/70 {
    background-color: rgb(75 85 99 / 0.7);
  }

  .sm\:bg-gray-600\/80 {
    background-color: rgb(75 85 99 / 0.8);
  }

  .sm\:bg-gray-600\/90 {
    background-color: rgb(75 85 99 / 0.9);
  }

  .sm\:bg-gray-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-gray-700\/10 {
    background-color: rgb(55 65 81 / 0.1);
  }

  .sm\:bg-gray-700\/20 {
    background-color: rgb(55 65 81 / 0.2);
  }

  .sm\:bg-gray-700\/30 {
    background-color: rgb(55 65 81 / 0.3);
  }

  .sm\:bg-gray-700\/40 {
    background-color: rgb(55 65 81 / 0.4);
  }

  .sm\:bg-gray-700\/5 {
    background-color: rgb(55 65 81 / 0.05);
  }

  .sm\:bg-gray-700\/50 {
    background-color: rgb(55 65 81 / 0.5);
  }

  .sm\:bg-gray-700\/60 {
    background-color: rgb(55 65 81 / 0.6);
  }

  .sm\:bg-gray-700\/70 {
    background-color: rgb(55 65 81 / 0.7);
  }

  .sm\:bg-gray-700\/80 {
    background-color: rgb(55 65 81 / 0.8);
  }

  .sm\:bg-gray-700\/90 {
    background-color: rgb(55 65 81 / 0.9);
  }

  .sm\:bg-gray-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-gray-800\/10 {
    background-color: rgb(31 41 55 / 0.1);
  }

  .sm\:bg-gray-800\/20 {
    background-color: rgb(31 41 55 / 0.2);
  }

  .sm\:bg-gray-800\/30 {
    background-color: rgb(31 41 55 / 0.3);
  }

  .sm\:bg-gray-800\/40 {
    background-color: rgb(31 41 55 / 0.4);
  }

  .sm\:bg-gray-800\/5 {
    background-color: rgb(31 41 55 / 0.05);
  }

  .sm\:bg-gray-800\/50 {
    background-color: rgb(31 41 55 / 0.5);
  }

  .sm\:bg-gray-800\/60 {
    background-color: rgb(31 41 55 / 0.6);
  }

  .sm\:bg-gray-800\/70 {
    background-color: rgb(31 41 55 / 0.7);
  }

  .sm\:bg-gray-800\/80 {
    background-color: rgb(31 41 55 / 0.8);
  }

  .sm\:bg-gray-800\/90 {
    background-color: rgb(31 41 55 / 0.9);
  }

  .sm\:bg-gray-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-gray-900\/10 {
    background-color: rgb(17 24 39 / 0.1);
  }

  .sm\:bg-gray-900\/20 {
    background-color: rgb(17 24 39 / 0.2);
  }

  .sm\:bg-gray-900\/30 {
    background-color: rgb(17 24 39 / 0.3);
  }

  .sm\:bg-gray-900\/40 {
    background-color: rgb(17 24 39 / 0.4);
  }

  .sm\:bg-gray-900\/5 {
    background-color: rgb(17 24 39 / 0.05);
  }

  .sm\:bg-gray-900\/50 {
    background-color: rgb(17 24 39 / 0.5);
  }

  .sm\:bg-gray-900\/60 {
    background-color: rgb(17 24 39 / 0.6);
  }

  .sm\:bg-gray-900\/70 {
    background-color: rgb(17 24 39 / 0.7);
  }

  .sm\:bg-gray-900\/80 {
    background-color: rgb(17 24 39 / 0.8);
  }

  .sm\:bg-gray-900\/90 {
    background-color: rgb(17 24 39 / 0.9);
  }

  .sm\:bg-gray-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(3 7 18 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-gray-950\/10 {
    background-color: rgb(3 7 18 / 0.1);
  }

  .sm\:bg-gray-950\/20 {
    background-color: rgb(3 7 18 / 0.2);
  }

  .sm\:bg-gray-950\/30 {
    background-color: rgb(3 7 18 / 0.3);
  }

  .sm\:bg-gray-950\/40 {
    background-color: rgb(3 7 18 / 0.4);
  }

  .sm\:bg-gray-950\/5 {
    background-color: rgb(3 7 18 / 0.05);
  }

  .sm\:bg-gray-950\/50 {
    background-color: rgb(3 7 18 / 0.5);
  }

  .sm\:bg-gray-950\/60 {
    background-color: rgb(3 7 18 / 0.6);
  }

  .sm\:bg-gray-950\/70 {
    background-color: rgb(3 7 18 / 0.7);
  }

  .sm\:bg-gray-950\/80 {
    background-color: rgb(3 7 18 / 0.8);
  }

  .sm\:bg-gray-950\/90 {
    background-color: rgb(3 7 18 / 0.9);
  }

  .sm\:bg-green-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-green-100\/10 {
    background-color: rgb(220 252 231 / 0.1);
  }

  .sm\:bg-green-100\/20 {
    background-color: rgb(220 252 231 / 0.2);
  }

  .sm\:bg-green-100\/30 {
    background-color: rgb(220 252 231 / 0.3);
  }

  .sm\:bg-green-100\/40 {
    background-color: rgb(220 252 231 / 0.4);
  }

  .sm\:bg-green-100\/5 {
    background-color: rgb(220 252 231 / 0.05);
  }

  .sm\:bg-green-100\/50 {
    background-color: rgb(220 252 231 / 0.5);
  }

  .sm\:bg-green-100\/60 {
    background-color: rgb(220 252 231 / 0.6);
  }

  .sm\:bg-green-100\/70 {
    background-color: rgb(220 252 231 / 0.7);
  }

  .sm\:bg-green-100\/80 {
    background-color: rgb(220 252 231 / 0.8);
  }

  .sm\:bg-green-100\/90 {
    background-color: rgb(220 252 231 / 0.9);
  }

  .sm\:bg-green-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(187 247 208 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-green-200\/10 {
    background-color: rgb(187 247 208 / 0.1);
  }

  .sm\:bg-green-200\/20 {
    background-color: rgb(187 247 208 / 0.2);
  }

  .sm\:bg-green-200\/30 {
    background-color: rgb(187 247 208 / 0.3);
  }

  .sm\:bg-green-200\/40 {
    background-color: rgb(187 247 208 / 0.4);
  }

  .sm\:bg-green-200\/5 {
    background-color: rgb(187 247 208 / 0.05);
  }

  .sm\:bg-green-200\/50 {
    background-color: rgb(187 247 208 / 0.5);
  }

  .sm\:bg-green-200\/60 {
    background-color: rgb(187 247 208 / 0.6);
  }

  .sm\:bg-green-200\/70 {
    background-color: rgb(187 247 208 / 0.7);
  }

  .sm\:bg-green-200\/80 {
    background-color: rgb(187 247 208 / 0.8);
  }

  .sm\:bg-green-200\/90 {
    background-color: rgb(187 247 208 / 0.9);
  }

  .sm\:bg-green-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(134 239 172 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-green-300\/10 {
    background-color: rgb(134 239 172 / 0.1);
  }

  .sm\:bg-green-300\/20 {
    background-color: rgb(134 239 172 / 0.2);
  }

  .sm\:bg-green-300\/30 {
    background-color: rgb(134 239 172 / 0.3);
  }

  .sm\:bg-green-300\/40 {
    background-color: rgb(134 239 172 / 0.4);
  }

  .sm\:bg-green-300\/5 {
    background-color: rgb(134 239 172 / 0.05);
  }

  .sm\:bg-green-300\/50 {
    background-color: rgb(134 239 172 / 0.5);
  }

  .sm\:bg-green-300\/60 {
    background-color: rgb(134 239 172 / 0.6);
  }

  .sm\:bg-green-300\/70 {
    background-color: rgb(134 239 172 / 0.7);
  }

  .sm\:bg-green-300\/80 {
    background-color: rgb(134 239 172 / 0.8);
  }

  .sm\:bg-green-300\/90 {
    background-color: rgb(134 239 172 / 0.9);
  }

  .sm\:bg-green-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(74 222 128 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-green-400\/10 {
    background-color: rgb(74 222 128 / 0.1);
  }

  .sm\:bg-green-400\/20 {
    background-color: rgb(74 222 128 / 0.2);
  }

  .sm\:bg-green-400\/30 {
    background-color: rgb(74 222 128 / 0.3);
  }

  .sm\:bg-green-400\/40 {
    background-color: rgb(74 222 128 / 0.4);
  }

  .sm\:bg-green-400\/5 {
    background-color: rgb(74 222 128 / 0.05);
  }

  .sm\:bg-green-400\/50 {
    background-color: rgb(74 222 128 / 0.5);
  }

  .sm\:bg-green-400\/60 {
    background-color: rgb(74 222 128 / 0.6);
  }

  .sm\:bg-green-400\/70 {
    background-color: rgb(74 222 128 / 0.7);
  }

  .sm\:bg-green-400\/80 {
    background-color: rgb(74 222 128 / 0.8);
  }

  .sm\:bg-green-400\/90 {
    background-color: rgb(74 222 128 / 0.9);
  }

  .sm\:bg-green-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-green-50\/10 {
    background-color: rgb(240 253 244 / 0.1);
  }

  .sm\:bg-green-50\/20 {
    background-color: rgb(240 253 244 / 0.2);
  }

  .sm\:bg-green-50\/30 {
    background-color: rgb(240 253 244 / 0.3);
  }

  .sm\:bg-green-50\/40 {
    background-color: rgb(240 253 244 / 0.4);
  }

  .sm\:bg-green-50\/5 {
    background-color: rgb(240 253 244 / 0.05);
  }

  .sm\:bg-green-50\/50 {
    background-color: rgb(240 253 244 / 0.5);
  }

  .sm\:bg-green-50\/60 {
    background-color: rgb(240 253 244 / 0.6);
  }

  .sm\:bg-green-50\/70 {
    background-color: rgb(240 253 244 / 0.7);
  }

  .sm\:bg-green-50\/80 {
    background-color: rgb(240 253 244 / 0.8);
  }

  .sm\:bg-green-50\/90 {
    background-color: rgb(240 253 244 / 0.9);
  }

  .sm\:bg-green-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-green-500\/10 {
    background-color: rgb(34 197 94 / 0.1);
  }

  .sm\:bg-green-500\/20 {
    background-color: rgb(34 197 94 / 0.2);
  }

  .sm\:bg-green-500\/30 {
    background-color: rgb(34 197 94 / 0.3);
  }

  .sm\:bg-green-500\/40 {
    background-color: rgb(34 197 94 / 0.4);
  }

  .sm\:bg-green-500\/5 {
    background-color: rgb(34 197 94 / 0.05);
  }

  .sm\:bg-green-500\/50 {
    background-color: rgb(34 197 94 / 0.5);
  }

  .sm\:bg-green-500\/60 {
    background-color: rgb(34 197 94 / 0.6);
  }

  .sm\:bg-green-500\/70 {
    background-color: rgb(34 197 94 / 0.7);
  }

  .sm\:bg-green-500\/80 {
    background-color: rgb(34 197 94 / 0.8);
  }

  .sm\:bg-green-500\/90 {
    background-color: rgb(34 197 94 / 0.9);
  }

  .sm\:bg-green-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-green-600\/10 {
    background-color: rgb(22 163 74 / 0.1);
  }

  .sm\:bg-green-600\/20 {
    background-color: rgb(22 163 74 / 0.2);
  }

  .sm\:bg-green-600\/30 {
    background-color: rgb(22 163 74 / 0.3);
  }

  .sm\:bg-green-600\/40 {
    background-color: rgb(22 163 74 / 0.4);
  }

  .sm\:bg-green-600\/5 {
    background-color: rgb(22 163 74 / 0.05);
  }

  .sm\:bg-green-600\/50 {
    background-color: rgb(22 163 74 / 0.5);
  }

  .sm\:bg-green-600\/60 {
    background-color: rgb(22 163 74 / 0.6);
  }

  .sm\:bg-green-600\/70 {
    background-color: rgb(22 163 74 / 0.7);
  }

  .sm\:bg-green-600\/80 {
    background-color: rgb(22 163 74 / 0.8);
  }

  .sm\:bg-green-600\/90 {
    background-color: rgb(22 163 74 / 0.9);
  }

  .sm\:bg-green-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(21 128 61 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-green-700\/10 {
    background-color: rgb(21 128 61 / 0.1);
  }

  .sm\:bg-green-700\/20 {
    background-color: rgb(21 128 61 / 0.2);
  }

  .sm\:bg-green-700\/30 {
    background-color: rgb(21 128 61 / 0.3);
  }

  .sm\:bg-green-700\/40 {
    background-color: rgb(21 128 61 / 0.4);
  }

  .sm\:bg-green-700\/5 {
    background-color: rgb(21 128 61 / 0.05);
  }

  .sm\:bg-green-700\/50 {
    background-color: rgb(21 128 61 / 0.5);
  }

  .sm\:bg-green-700\/60 {
    background-color: rgb(21 128 61 / 0.6);
  }

  .sm\:bg-green-700\/70 {
    background-color: rgb(21 128 61 / 0.7);
  }

  .sm\:bg-green-700\/80 {
    background-color: rgb(21 128 61 / 0.8);
  }

  .sm\:bg-green-700\/90 {
    background-color: rgb(21 128 61 / 0.9);
  }

  .sm\:bg-green-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(22 101 52 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-green-800\/10 {
    background-color: rgb(22 101 52 / 0.1);
  }

  .sm\:bg-green-800\/20 {
    background-color: rgb(22 101 52 / 0.2);
  }

  .sm\:bg-green-800\/30 {
    background-color: rgb(22 101 52 / 0.3);
  }

  .sm\:bg-green-800\/40 {
    background-color: rgb(22 101 52 / 0.4);
  }

  .sm\:bg-green-800\/5 {
    background-color: rgb(22 101 52 / 0.05);
  }

  .sm\:bg-green-800\/50 {
    background-color: rgb(22 101 52 / 0.5);
  }

  .sm\:bg-green-800\/60 {
    background-color: rgb(22 101 52 / 0.6);
  }

  .sm\:bg-green-800\/70 {
    background-color: rgb(22 101 52 / 0.7);
  }

  .sm\:bg-green-800\/80 {
    background-color: rgb(22 101 52 / 0.8);
  }

  .sm\:bg-green-800\/90 {
    background-color: rgb(22 101 52 / 0.9);
  }

  .sm\:bg-green-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(20 83 45 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-green-900\/10 {
    background-color: rgb(20 83 45 / 0.1);
  }

  .sm\:bg-green-900\/20 {
    background-color: rgb(20 83 45 / 0.2);
  }

  .sm\:bg-green-900\/30 {
    background-color: rgb(20 83 45 / 0.3);
  }

  .sm\:bg-green-900\/40 {
    background-color: rgb(20 83 45 / 0.4);
  }

  .sm\:bg-green-900\/5 {
    background-color: rgb(20 83 45 / 0.05);
  }

  .sm\:bg-green-900\/50 {
    background-color: rgb(20 83 45 / 0.5);
  }

  .sm\:bg-green-900\/60 {
    background-color: rgb(20 83 45 / 0.6);
  }

  .sm\:bg-green-900\/70 {
    background-color: rgb(20 83 45 / 0.7);
  }

  .sm\:bg-green-900\/80 {
    background-color: rgb(20 83 45 / 0.8);
  }

  .sm\:bg-green-900\/90 {
    background-color: rgb(20 83 45 / 0.9);
  }

  .sm\:bg-green-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(5 46 22 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-green-950\/10 {
    background-color: rgb(5 46 22 / 0.1);
  }

  .sm\:bg-green-950\/20 {
    background-color: rgb(5 46 22 / 0.2);
  }

  .sm\:bg-green-950\/30 {
    background-color: rgb(5 46 22 / 0.3);
  }

  .sm\:bg-green-950\/40 {
    background-color: rgb(5 46 22 / 0.4);
  }

  .sm\:bg-green-950\/5 {
    background-color: rgb(5 46 22 / 0.05);
  }

  .sm\:bg-green-950\/50 {
    background-color: rgb(5 46 22 / 0.5);
  }

  .sm\:bg-green-950\/60 {
    background-color: rgb(5 46 22 / 0.6);
  }

  .sm\:bg-green-950\/70 {
    background-color: rgb(5 46 22 / 0.7);
  }

  .sm\:bg-green-950\/80 {
    background-color: rgb(5 46 22 / 0.8);
  }

  .sm\:bg-green-950\/90 {
    background-color: rgb(5 46 22 / 0.9);
  }

  .sm\:bg-indigo-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(224 231 255 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-indigo-100\/10 {
    background-color: rgb(224 231 255 / 0.1);
  }

  .sm\:bg-indigo-100\/20 {
    background-color: rgb(224 231 255 / 0.2);
  }

  .sm\:bg-indigo-100\/30 {
    background-color: rgb(224 231 255 / 0.3);
  }

  .sm\:bg-indigo-100\/40 {
    background-color: rgb(224 231 255 / 0.4);
  }

  .sm\:bg-indigo-100\/5 {
    background-color: rgb(224 231 255 / 0.05);
  }

  .sm\:bg-indigo-100\/50 {
    background-color: rgb(224 231 255 / 0.5);
  }

  .sm\:bg-indigo-100\/60 {
    background-color: rgb(224 231 255 / 0.6);
  }

  .sm\:bg-indigo-100\/70 {
    background-color: rgb(224 231 255 / 0.7);
  }

  .sm\:bg-indigo-100\/80 {
    background-color: rgb(224 231 255 / 0.8);
  }

  .sm\:bg-indigo-100\/90 {
    background-color: rgb(224 231 255 / 0.9);
  }

  .sm\:bg-indigo-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(199 210 254 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-indigo-200\/10 {
    background-color: rgb(199 210 254 / 0.1);
  }

  .sm\:bg-indigo-200\/20 {
    background-color: rgb(199 210 254 / 0.2);
  }

  .sm\:bg-indigo-200\/30 {
    background-color: rgb(199 210 254 / 0.3);
  }

  .sm\:bg-indigo-200\/40 {
    background-color: rgb(199 210 254 / 0.4);
  }

  .sm\:bg-indigo-200\/5 {
    background-color: rgb(199 210 254 / 0.05);
  }

  .sm\:bg-indigo-200\/50 {
    background-color: rgb(199 210 254 / 0.5);
  }

  .sm\:bg-indigo-200\/60 {
    background-color: rgb(199 210 254 / 0.6);
  }

  .sm\:bg-indigo-200\/70 {
    background-color: rgb(199 210 254 / 0.7);
  }

  .sm\:bg-indigo-200\/80 {
    background-color: rgb(199 210 254 / 0.8);
  }

  .sm\:bg-indigo-200\/90 {
    background-color: rgb(199 210 254 / 0.9);
  }

  .sm\:bg-indigo-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(165 180 252 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-indigo-300\/10 {
    background-color: rgb(165 180 252 / 0.1);
  }

  .sm\:bg-indigo-300\/20 {
    background-color: rgb(165 180 252 / 0.2);
  }

  .sm\:bg-indigo-300\/30 {
    background-color: rgb(165 180 252 / 0.3);
  }

  .sm\:bg-indigo-300\/40 {
    background-color: rgb(165 180 252 / 0.4);
  }

  .sm\:bg-indigo-300\/5 {
    background-color: rgb(165 180 252 / 0.05);
  }

  .sm\:bg-indigo-300\/50 {
    background-color: rgb(165 180 252 / 0.5);
  }

  .sm\:bg-indigo-300\/60 {
    background-color: rgb(165 180 252 / 0.6);
  }

  .sm\:bg-indigo-300\/70 {
    background-color: rgb(165 180 252 / 0.7);
  }

  .sm\:bg-indigo-300\/80 {
    background-color: rgb(165 180 252 / 0.8);
  }

  .sm\:bg-indigo-300\/90 {
    background-color: rgb(165 180 252 / 0.9);
  }

  .sm\:bg-indigo-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(129 140 248 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-indigo-400\/10 {
    background-color: rgb(129 140 248 / 0.1);
  }

  .sm\:bg-indigo-400\/20 {
    background-color: rgb(129 140 248 / 0.2);
  }

  .sm\:bg-indigo-400\/30 {
    background-color: rgb(129 140 248 / 0.3);
  }

  .sm\:bg-indigo-400\/40 {
    background-color: rgb(129 140 248 / 0.4);
  }

  .sm\:bg-indigo-400\/5 {
    background-color: rgb(129 140 248 / 0.05);
  }

  .sm\:bg-indigo-400\/50 {
    background-color: rgb(129 140 248 / 0.5);
  }

  .sm\:bg-indigo-400\/60 {
    background-color: rgb(129 140 248 / 0.6);
  }

  .sm\:bg-indigo-400\/70 {
    background-color: rgb(129 140 248 / 0.7);
  }

  .sm\:bg-indigo-400\/80 {
    background-color: rgb(129 140 248 / 0.8);
  }

  .sm\:bg-indigo-400\/90 {
    background-color: rgb(129 140 248 / 0.9);
  }

  .sm\:bg-indigo-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(238 242 255 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-indigo-50\/10 {
    background-color: rgb(238 242 255 / 0.1);
  }

  .sm\:bg-indigo-50\/20 {
    background-color: rgb(238 242 255 / 0.2);
  }

  .sm\:bg-indigo-50\/30 {
    background-color: rgb(238 242 255 / 0.3);
  }

  .sm\:bg-indigo-50\/40 {
    background-color: rgb(238 242 255 / 0.4);
  }

  .sm\:bg-indigo-50\/5 {
    background-color: rgb(238 242 255 / 0.05);
  }

  .sm\:bg-indigo-50\/50 {
    background-color: rgb(238 242 255 / 0.5);
  }

  .sm\:bg-indigo-50\/60 {
    background-color: rgb(238 242 255 / 0.6);
  }

  .sm\:bg-indigo-50\/70 {
    background-color: rgb(238 242 255 / 0.7);
  }

  .sm\:bg-indigo-50\/80 {
    background-color: rgb(238 242 255 / 0.8);
  }

  .sm\:bg-indigo-50\/90 {
    background-color: rgb(238 242 255 / 0.9);
  }

  .sm\:bg-indigo-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(99 102 241 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-indigo-500\/10 {
    background-color: rgb(99 102 241 / 0.1);
  }

  .sm\:bg-indigo-500\/20 {
    background-color: rgb(99 102 241 / 0.2);
  }

  .sm\:bg-indigo-500\/30 {
    background-color: rgb(99 102 241 / 0.3);
  }

  .sm\:bg-indigo-500\/40 {
    background-color: rgb(99 102 241 / 0.4);
  }

  .sm\:bg-indigo-500\/5 {
    background-color: rgb(99 102 241 / 0.05);
  }

  .sm\:bg-indigo-500\/50 {
    background-color: rgb(99 102 241 / 0.5);
  }

  .sm\:bg-indigo-500\/60 {
    background-color: rgb(99 102 241 / 0.6);
  }

  .sm\:bg-indigo-500\/70 {
    background-color: rgb(99 102 241 / 0.7);
  }

  .sm\:bg-indigo-500\/80 {
    background-color: rgb(99 102 241 / 0.8);
  }

  .sm\:bg-indigo-500\/90 {
    background-color: rgb(99 102 241 / 0.9);
  }

  .sm\:bg-indigo-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(79 70 229 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-indigo-600\/10 {
    background-color: rgb(79 70 229 / 0.1);
  }

  .sm\:bg-indigo-600\/20 {
    background-color: rgb(79 70 229 / 0.2);
  }

  .sm\:bg-indigo-600\/30 {
    background-color: rgb(79 70 229 / 0.3);
  }

  .sm\:bg-indigo-600\/40 {
    background-color: rgb(79 70 229 / 0.4);
  }

  .sm\:bg-indigo-600\/5 {
    background-color: rgb(79 70 229 / 0.05);
  }

  .sm\:bg-indigo-600\/50 {
    background-color: rgb(79 70 229 / 0.5);
  }

  .sm\:bg-indigo-600\/60 {
    background-color: rgb(79 70 229 / 0.6);
  }

  .sm\:bg-indigo-600\/70 {
    background-color: rgb(79 70 229 / 0.7);
  }

  .sm\:bg-indigo-600\/80 {
    background-color: rgb(79 70 229 / 0.8);
  }

  .sm\:bg-indigo-600\/90 {
    background-color: rgb(79 70 229 / 0.9);
  }

  .sm\:bg-indigo-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(67 56 202 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-indigo-700\/10 {
    background-color: rgb(67 56 202 / 0.1);
  }

  .sm\:bg-indigo-700\/20 {
    background-color: rgb(67 56 202 / 0.2);
  }

  .sm\:bg-indigo-700\/30 {
    background-color: rgb(67 56 202 / 0.3);
  }

  .sm\:bg-indigo-700\/40 {
    background-color: rgb(67 56 202 / 0.4);
  }

  .sm\:bg-indigo-700\/5 {
    background-color: rgb(67 56 202 / 0.05);
  }

  .sm\:bg-indigo-700\/50 {
    background-color: rgb(67 56 202 / 0.5);
  }

  .sm\:bg-indigo-700\/60 {
    background-color: rgb(67 56 202 / 0.6);
  }

  .sm\:bg-indigo-700\/70 {
    background-color: rgb(67 56 202 / 0.7);
  }

  .sm\:bg-indigo-700\/80 {
    background-color: rgb(67 56 202 / 0.8);
  }

  .sm\:bg-indigo-700\/90 {
    background-color: rgb(67 56 202 / 0.9);
  }

  .sm\:bg-indigo-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(55 48 163 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-indigo-800\/10 {
    background-color: rgb(55 48 163 / 0.1);
  }

  .sm\:bg-indigo-800\/20 {
    background-color: rgb(55 48 163 / 0.2);
  }

  .sm\:bg-indigo-800\/30 {
    background-color: rgb(55 48 163 / 0.3);
  }

  .sm\:bg-indigo-800\/40 {
    background-color: rgb(55 48 163 / 0.4);
  }

  .sm\:bg-indigo-800\/5 {
    background-color: rgb(55 48 163 / 0.05);
  }

  .sm\:bg-indigo-800\/50 {
    background-color: rgb(55 48 163 / 0.5);
  }

  .sm\:bg-indigo-800\/60 {
    background-color: rgb(55 48 163 / 0.6);
  }

  .sm\:bg-indigo-800\/70 {
    background-color: rgb(55 48 163 / 0.7);
  }

  .sm\:bg-indigo-800\/80 {
    background-color: rgb(55 48 163 / 0.8);
  }

  .sm\:bg-indigo-800\/90 {
    background-color: rgb(55 48 163 / 0.9);
  }

  .sm\:bg-indigo-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(49 46 129 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-indigo-900\/10 {
    background-color: rgb(49 46 129 / 0.1);
  }

  .sm\:bg-indigo-900\/20 {
    background-color: rgb(49 46 129 / 0.2);
  }

  .sm\:bg-indigo-900\/30 {
    background-color: rgb(49 46 129 / 0.3);
  }

  .sm\:bg-indigo-900\/40 {
    background-color: rgb(49 46 129 / 0.4);
  }

  .sm\:bg-indigo-900\/5 {
    background-color: rgb(49 46 129 / 0.05);
  }

  .sm\:bg-indigo-900\/50 {
    background-color: rgb(49 46 129 / 0.5);
  }

  .sm\:bg-indigo-900\/60 {
    background-color: rgb(49 46 129 / 0.6);
  }

  .sm\:bg-indigo-900\/70 {
    background-color: rgb(49 46 129 / 0.7);
  }

  .sm\:bg-indigo-900\/80 {
    background-color: rgb(49 46 129 / 0.8);
  }

  .sm\:bg-indigo-900\/90 {
    background-color: rgb(49 46 129 / 0.9);
  }

  .sm\:bg-indigo-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(30 27 75 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-indigo-950\/10 {
    background-color: rgb(30 27 75 / 0.1);
  }

  .sm\:bg-indigo-950\/20 {
    background-color: rgb(30 27 75 / 0.2);
  }

  .sm\:bg-indigo-950\/30 {
    background-color: rgb(30 27 75 / 0.3);
  }

  .sm\:bg-indigo-950\/40 {
    background-color: rgb(30 27 75 / 0.4);
  }

  .sm\:bg-indigo-950\/5 {
    background-color: rgb(30 27 75 / 0.05);
  }

  .sm\:bg-indigo-950\/50 {
    background-color: rgb(30 27 75 / 0.5);
  }

  .sm\:bg-indigo-950\/60 {
    background-color: rgb(30 27 75 / 0.6);
  }

  .sm\:bg-indigo-950\/70 {
    background-color: rgb(30 27 75 / 0.7);
  }

  .sm\:bg-indigo-950\/80 {
    background-color: rgb(30 27 75 / 0.8);
  }

  .sm\:bg-indigo-950\/90 {
    background-color: rgb(30 27 75 / 0.9);
  }

  .sm\:bg-lime-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(236 252 203 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-lime-100\/10 {
    background-color: rgb(236 252 203 / 0.1);
  }

  .sm\:bg-lime-100\/20 {
    background-color: rgb(236 252 203 / 0.2);
  }

  .sm\:bg-lime-100\/30 {
    background-color: rgb(236 252 203 / 0.3);
  }

  .sm\:bg-lime-100\/40 {
    background-color: rgb(236 252 203 / 0.4);
  }

  .sm\:bg-lime-100\/5 {
    background-color: rgb(236 252 203 / 0.05);
  }

  .sm\:bg-lime-100\/50 {
    background-color: rgb(236 252 203 / 0.5);
  }

  .sm\:bg-lime-100\/60 {
    background-color: rgb(236 252 203 / 0.6);
  }

  .sm\:bg-lime-100\/70 {
    background-color: rgb(236 252 203 / 0.7);
  }

  .sm\:bg-lime-100\/80 {
    background-color: rgb(236 252 203 / 0.8);
  }

  .sm\:bg-lime-100\/90 {
    background-color: rgb(236 252 203 / 0.9);
  }

  .sm\:bg-lime-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(217 249 157 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-lime-200\/10 {
    background-color: rgb(217 249 157 / 0.1);
  }

  .sm\:bg-lime-200\/20 {
    background-color: rgb(217 249 157 / 0.2);
  }

  .sm\:bg-lime-200\/30 {
    background-color: rgb(217 249 157 / 0.3);
  }

  .sm\:bg-lime-200\/40 {
    background-color: rgb(217 249 157 / 0.4);
  }

  .sm\:bg-lime-200\/5 {
    background-color: rgb(217 249 157 / 0.05);
  }

  .sm\:bg-lime-200\/50 {
    background-color: rgb(217 249 157 / 0.5);
  }

  .sm\:bg-lime-200\/60 {
    background-color: rgb(217 249 157 / 0.6);
  }

  .sm\:bg-lime-200\/70 {
    background-color: rgb(217 249 157 / 0.7);
  }

  .sm\:bg-lime-200\/80 {
    background-color: rgb(217 249 157 / 0.8);
  }

  .sm\:bg-lime-200\/90 {
    background-color: rgb(217 249 157 / 0.9);
  }

  .sm\:bg-lime-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(190 242 100 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-lime-300\/10 {
    background-color: rgb(190 242 100 / 0.1);
  }

  .sm\:bg-lime-300\/20 {
    background-color: rgb(190 242 100 / 0.2);
  }

  .sm\:bg-lime-300\/30 {
    background-color: rgb(190 242 100 / 0.3);
  }

  .sm\:bg-lime-300\/40 {
    background-color: rgb(190 242 100 / 0.4);
  }

  .sm\:bg-lime-300\/5 {
    background-color: rgb(190 242 100 / 0.05);
  }

  .sm\:bg-lime-300\/50 {
    background-color: rgb(190 242 100 / 0.5);
  }

  .sm\:bg-lime-300\/60 {
    background-color: rgb(190 242 100 / 0.6);
  }

  .sm\:bg-lime-300\/70 {
    background-color: rgb(190 242 100 / 0.7);
  }

  .sm\:bg-lime-300\/80 {
    background-color: rgb(190 242 100 / 0.8);
  }

  .sm\:bg-lime-300\/90 {
    background-color: rgb(190 242 100 / 0.9);
  }

  .sm\:bg-lime-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(163 230 53 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-lime-400\/10 {
    background-color: rgb(163 230 53 / 0.1);
  }

  .sm\:bg-lime-400\/20 {
    background-color: rgb(163 230 53 / 0.2);
  }

  .sm\:bg-lime-400\/30 {
    background-color: rgb(163 230 53 / 0.3);
  }

  .sm\:bg-lime-400\/40 {
    background-color: rgb(163 230 53 / 0.4);
  }

  .sm\:bg-lime-400\/5 {
    background-color: rgb(163 230 53 / 0.05);
  }

  .sm\:bg-lime-400\/50 {
    background-color: rgb(163 230 53 / 0.5);
  }

  .sm\:bg-lime-400\/60 {
    background-color: rgb(163 230 53 / 0.6);
  }

  .sm\:bg-lime-400\/70 {
    background-color: rgb(163 230 53 / 0.7);
  }

  .sm\:bg-lime-400\/80 {
    background-color: rgb(163 230 53 / 0.8);
  }

  .sm\:bg-lime-400\/90 {
    background-color: rgb(163 230 53 / 0.9);
  }

  .sm\:bg-lime-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(247 254 231 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-lime-50\/10 {
    background-color: rgb(247 254 231 / 0.1);
  }

  .sm\:bg-lime-50\/20 {
    background-color: rgb(247 254 231 / 0.2);
  }

  .sm\:bg-lime-50\/30 {
    background-color: rgb(247 254 231 / 0.3);
  }

  .sm\:bg-lime-50\/40 {
    background-color: rgb(247 254 231 / 0.4);
  }

  .sm\:bg-lime-50\/5 {
    background-color: rgb(247 254 231 / 0.05);
  }

  .sm\:bg-lime-50\/50 {
    background-color: rgb(247 254 231 / 0.5);
  }

  .sm\:bg-lime-50\/60 {
    background-color: rgb(247 254 231 / 0.6);
  }

  .sm\:bg-lime-50\/70 {
    background-color: rgb(247 254 231 / 0.7);
  }

  .sm\:bg-lime-50\/80 {
    background-color: rgb(247 254 231 / 0.8);
  }

  .sm\:bg-lime-50\/90 {
    background-color: rgb(247 254 231 / 0.9);
  }

  .sm\:bg-lime-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(132 204 22 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-lime-500\/10 {
    background-color: rgb(132 204 22 / 0.1);
  }

  .sm\:bg-lime-500\/20 {
    background-color: rgb(132 204 22 / 0.2);
  }

  .sm\:bg-lime-500\/30 {
    background-color: rgb(132 204 22 / 0.3);
  }

  .sm\:bg-lime-500\/40 {
    background-color: rgb(132 204 22 / 0.4);
  }

  .sm\:bg-lime-500\/5 {
    background-color: rgb(132 204 22 / 0.05);
  }

  .sm\:bg-lime-500\/50 {
    background-color: rgb(132 204 22 / 0.5);
  }

  .sm\:bg-lime-500\/60 {
    background-color: rgb(132 204 22 / 0.6);
  }

  .sm\:bg-lime-500\/70 {
    background-color: rgb(132 204 22 / 0.7);
  }

  .sm\:bg-lime-500\/80 {
    background-color: rgb(132 204 22 / 0.8);
  }

  .sm\:bg-lime-500\/90 {
    background-color: rgb(132 204 22 / 0.9);
  }

  .sm\:bg-lime-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(101 163 13 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-lime-600\/10 {
    background-color: rgb(101 163 13 / 0.1);
  }

  .sm\:bg-lime-600\/20 {
    background-color: rgb(101 163 13 / 0.2);
  }

  .sm\:bg-lime-600\/30 {
    background-color: rgb(101 163 13 / 0.3);
  }

  .sm\:bg-lime-600\/40 {
    background-color: rgb(101 163 13 / 0.4);
  }

  .sm\:bg-lime-600\/5 {
    background-color: rgb(101 163 13 / 0.05);
  }

  .sm\:bg-lime-600\/50 {
    background-color: rgb(101 163 13 / 0.5);
  }

  .sm\:bg-lime-600\/60 {
    background-color: rgb(101 163 13 / 0.6);
  }

  .sm\:bg-lime-600\/70 {
    background-color: rgb(101 163 13 / 0.7);
  }

  .sm\:bg-lime-600\/80 {
    background-color: rgb(101 163 13 / 0.8);
  }

  .sm\:bg-lime-600\/90 {
    background-color: rgb(101 163 13 / 0.9);
  }

  .sm\:bg-lime-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(77 124 15 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-lime-700\/10 {
    background-color: rgb(77 124 15 / 0.1);
  }

  .sm\:bg-lime-700\/20 {
    background-color: rgb(77 124 15 / 0.2);
  }

  .sm\:bg-lime-700\/30 {
    background-color: rgb(77 124 15 / 0.3);
  }

  .sm\:bg-lime-700\/40 {
    background-color: rgb(77 124 15 / 0.4);
  }

  .sm\:bg-lime-700\/5 {
    background-color: rgb(77 124 15 / 0.05);
  }

  .sm\:bg-lime-700\/50 {
    background-color: rgb(77 124 15 / 0.5);
  }

  .sm\:bg-lime-700\/60 {
    background-color: rgb(77 124 15 / 0.6);
  }

  .sm\:bg-lime-700\/70 {
    background-color: rgb(77 124 15 / 0.7);
  }

  .sm\:bg-lime-700\/80 {
    background-color: rgb(77 124 15 / 0.8);
  }

  .sm\:bg-lime-700\/90 {
    background-color: rgb(77 124 15 / 0.9);
  }

  .sm\:bg-lime-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(63 98 18 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-lime-800\/10 {
    background-color: rgb(63 98 18 / 0.1);
  }

  .sm\:bg-lime-800\/20 {
    background-color: rgb(63 98 18 / 0.2);
  }

  .sm\:bg-lime-800\/30 {
    background-color: rgb(63 98 18 / 0.3);
  }

  .sm\:bg-lime-800\/40 {
    background-color: rgb(63 98 18 / 0.4);
  }

  .sm\:bg-lime-800\/5 {
    background-color: rgb(63 98 18 / 0.05);
  }

  .sm\:bg-lime-800\/50 {
    background-color: rgb(63 98 18 / 0.5);
  }

  .sm\:bg-lime-800\/60 {
    background-color: rgb(63 98 18 / 0.6);
  }

  .sm\:bg-lime-800\/70 {
    background-color: rgb(63 98 18 / 0.7);
  }

  .sm\:bg-lime-800\/80 {
    background-color: rgb(63 98 18 / 0.8);
  }

  .sm\:bg-lime-800\/90 {
    background-color: rgb(63 98 18 / 0.9);
  }

  .sm\:bg-lime-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(54 83 20 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-lime-900\/10 {
    background-color: rgb(54 83 20 / 0.1);
  }

  .sm\:bg-lime-900\/20 {
    background-color: rgb(54 83 20 / 0.2);
  }

  .sm\:bg-lime-900\/30 {
    background-color: rgb(54 83 20 / 0.3);
  }

  .sm\:bg-lime-900\/40 {
    background-color: rgb(54 83 20 / 0.4);
  }

  .sm\:bg-lime-900\/5 {
    background-color: rgb(54 83 20 / 0.05);
  }

  .sm\:bg-lime-900\/50 {
    background-color: rgb(54 83 20 / 0.5);
  }

  .sm\:bg-lime-900\/60 {
    background-color: rgb(54 83 20 / 0.6);
  }

  .sm\:bg-lime-900\/70 {
    background-color: rgb(54 83 20 / 0.7);
  }

  .sm\:bg-lime-900\/80 {
    background-color: rgb(54 83 20 / 0.8);
  }

  .sm\:bg-lime-900\/90 {
    background-color: rgb(54 83 20 / 0.9);
  }

  .sm\:bg-lime-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(26 46 5 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-lime-950\/10 {
    background-color: rgb(26 46 5 / 0.1);
  }

  .sm\:bg-lime-950\/20 {
    background-color: rgb(26 46 5 / 0.2);
  }

  .sm\:bg-lime-950\/30 {
    background-color: rgb(26 46 5 / 0.3);
  }

  .sm\:bg-lime-950\/40 {
    background-color: rgb(26 46 5 / 0.4);
  }

  .sm\:bg-lime-950\/5 {
    background-color: rgb(26 46 5 / 0.05);
  }

  .sm\:bg-lime-950\/50 {
    background-color: rgb(26 46 5 / 0.5);
  }

  .sm\:bg-lime-950\/60 {
    background-color: rgb(26 46 5 / 0.6);
  }

  .sm\:bg-lime-950\/70 {
    background-color: rgb(26 46 5 / 0.7);
  }

  .sm\:bg-lime-950\/80 {
    background-color: rgb(26 46 5 / 0.8);
  }

  .sm\:bg-lime-950\/90 {
    background-color: rgb(26 46 5 / 0.9);
  }

  .sm\:bg-neutral-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(245 245 245 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-neutral-100\/10 {
    background-color: rgb(245 245 245 / 0.1);
  }

  .sm\:bg-neutral-100\/20 {
    background-color: rgb(245 245 245 / 0.2);
  }

  .sm\:bg-neutral-100\/30 {
    background-color: rgb(245 245 245 / 0.3);
  }

  .sm\:bg-neutral-100\/40 {
    background-color: rgb(245 245 245 / 0.4);
  }

  .sm\:bg-neutral-100\/5 {
    background-color: rgb(245 245 245 / 0.05);
  }

  .sm\:bg-neutral-100\/50 {
    background-color: rgb(245 245 245 / 0.5);
  }

  .sm\:bg-neutral-100\/60 {
    background-color: rgb(245 245 245 / 0.6);
  }

  .sm\:bg-neutral-100\/70 {
    background-color: rgb(245 245 245 / 0.7);
  }

  .sm\:bg-neutral-100\/80 {
    background-color: rgb(245 245 245 / 0.8);
  }

  .sm\:bg-neutral-100\/90 {
    background-color: rgb(245 245 245 / 0.9);
  }

  .sm\:bg-neutral-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(229 229 229 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-neutral-200\/10 {
    background-color: rgb(229 229 229 / 0.1);
  }

  .sm\:bg-neutral-200\/20 {
    background-color: rgb(229 229 229 / 0.2);
  }

  .sm\:bg-neutral-200\/30 {
    background-color: rgb(229 229 229 / 0.3);
  }

  .sm\:bg-neutral-200\/40 {
    background-color: rgb(229 229 229 / 0.4);
  }

  .sm\:bg-neutral-200\/5 {
    background-color: rgb(229 229 229 / 0.05);
  }

  .sm\:bg-neutral-200\/50 {
    background-color: rgb(229 229 229 / 0.5);
  }

  .sm\:bg-neutral-200\/60 {
    background-color: rgb(229 229 229 / 0.6);
  }

  .sm\:bg-neutral-200\/70 {
    background-color: rgb(229 229 229 / 0.7);
  }

  .sm\:bg-neutral-200\/80 {
    background-color: rgb(229 229 229 / 0.8);
  }

  .sm\:bg-neutral-200\/90 {
    background-color: rgb(229 229 229 / 0.9);
  }

  .sm\:bg-neutral-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(212 212 212 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-neutral-300\/10 {
    background-color: rgb(212 212 212 / 0.1);
  }

  .sm\:bg-neutral-300\/20 {
    background-color: rgb(212 212 212 / 0.2);
  }

  .sm\:bg-neutral-300\/30 {
    background-color: rgb(212 212 212 / 0.3);
  }

  .sm\:bg-neutral-300\/40 {
    background-color: rgb(212 212 212 / 0.4);
  }

  .sm\:bg-neutral-300\/5 {
    background-color: rgb(212 212 212 / 0.05);
  }

  .sm\:bg-neutral-300\/50 {
    background-color: rgb(212 212 212 / 0.5);
  }

  .sm\:bg-neutral-300\/60 {
    background-color: rgb(212 212 212 / 0.6);
  }

  .sm\:bg-neutral-300\/70 {
    background-color: rgb(212 212 212 / 0.7);
  }

  .sm\:bg-neutral-300\/80 {
    background-color: rgb(212 212 212 / 0.8);
  }

  .sm\:bg-neutral-300\/90 {
    background-color: rgb(212 212 212 / 0.9);
  }

  .sm\:bg-neutral-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(163 163 163 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-neutral-400\/10 {
    background-color: rgb(163 163 163 / 0.1);
  }

  .sm\:bg-neutral-400\/20 {
    background-color: rgb(163 163 163 / 0.2);
  }

  .sm\:bg-neutral-400\/30 {
    background-color: rgb(163 163 163 / 0.3);
  }

  .sm\:bg-neutral-400\/40 {
    background-color: rgb(163 163 163 / 0.4);
  }

  .sm\:bg-neutral-400\/5 {
    background-color: rgb(163 163 163 / 0.05);
  }

  .sm\:bg-neutral-400\/50 {
    background-color: rgb(163 163 163 / 0.5);
  }

  .sm\:bg-neutral-400\/60 {
    background-color: rgb(163 163 163 / 0.6);
  }

  .sm\:bg-neutral-400\/70 {
    background-color: rgb(163 163 163 / 0.7);
  }

  .sm\:bg-neutral-400\/80 {
    background-color: rgb(163 163 163 / 0.8);
  }

  .sm\:bg-neutral-400\/90 {
    background-color: rgb(163 163 163 / 0.9);
  }

  .sm\:bg-neutral-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-neutral-50\/10 {
    background-color: rgb(250 250 250 / 0.1);
  }

  .sm\:bg-neutral-50\/20 {
    background-color: rgb(250 250 250 / 0.2);
  }

  .sm\:bg-neutral-50\/30 {
    background-color: rgb(250 250 250 / 0.3);
  }

  .sm\:bg-neutral-50\/40 {
    background-color: rgb(250 250 250 / 0.4);
  }

  .sm\:bg-neutral-50\/5 {
    background-color: rgb(250 250 250 / 0.05);
  }

  .sm\:bg-neutral-50\/50 {
    background-color: rgb(250 250 250 / 0.5);
  }

  .sm\:bg-neutral-50\/60 {
    background-color: rgb(250 250 250 / 0.6);
  }

  .sm\:bg-neutral-50\/70 {
    background-color: rgb(250 250 250 / 0.7);
  }

  .sm\:bg-neutral-50\/80 {
    background-color: rgb(250 250 250 / 0.8);
  }

  .sm\:bg-neutral-50\/90 {
    background-color: rgb(250 250 250 / 0.9);
  }

  .sm\:bg-neutral-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(115 115 115 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-neutral-500\/10 {
    background-color: rgb(115 115 115 / 0.1);
  }

  .sm\:bg-neutral-500\/20 {
    background-color: rgb(115 115 115 / 0.2);
  }

  .sm\:bg-neutral-500\/30 {
    background-color: rgb(115 115 115 / 0.3);
  }

  .sm\:bg-neutral-500\/40 {
    background-color: rgb(115 115 115 / 0.4);
  }

  .sm\:bg-neutral-500\/5 {
    background-color: rgb(115 115 115 / 0.05);
  }

  .sm\:bg-neutral-500\/50 {
    background-color: rgb(115 115 115 / 0.5);
  }

  .sm\:bg-neutral-500\/60 {
    background-color: rgb(115 115 115 / 0.6);
  }

  .sm\:bg-neutral-500\/70 {
    background-color: rgb(115 115 115 / 0.7);
  }

  .sm\:bg-neutral-500\/80 {
    background-color: rgb(115 115 115 / 0.8);
  }

  .sm\:bg-neutral-500\/90 {
    background-color: rgb(115 115 115 / 0.9);
  }

  .sm\:bg-neutral-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(82 82 82 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-neutral-600\/10 {
    background-color: rgb(82 82 82 / 0.1);
  }

  .sm\:bg-neutral-600\/20 {
    background-color: rgb(82 82 82 / 0.2);
  }

  .sm\:bg-neutral-600\/30 {
    background-color: rgb(82 82 82 / 0.3);
  }

  .sm\:bg-neutral-600\/40 {
    background-color: rgb(82 82 82 / 0.4);
  }

  .sm\:bg-neutral-600\/5 {
    background-color: rgb(82 82 82 / 0.05);
  }

  .sm\:bg-neutral-600\/50 {
    background-color: rgb(82 82 82 / 0.5);
  }

  .sm\:bg-neutral-600\/60 {
    background-color: rgb(82 82 82 / 0.6);
  }

  .sm\:bg-neutral-600\/70 {
    background-color: rgb(82 82 82 / 0.7);
  }

  .sm\:bg-neutral-600\/80 {
    background-color: rgb(82 82 82 / 0.8);
  }

  .sm\:bg-neutral-600\/90 {
    background-color: rgb(82 82 82 / 0.9);
  }

  .sm\:bg-neutral-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(64 64 64 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-neutral-700\/10 {
    background-color: rgb(64 64 64 / 0.1);
  }

  .sm\:bg-neutral-700\/20 {
    background-color: rgb(64 64 64 / 0.2);
  }

  .sm\:bg-neutral-700\/30 {
    background-color: rgb(64 64 64 / 0.3);
  }

  .sm\:bg-neutral-700\/40 {
    background-color: rgb(64 64 64 / 0.4);
  }

  .sm\:bg-neutral-700\/5 {
    background-color: rgb(64 64 64 / 0.05);
  }

  .sm\:bg-neutral-700\/50 {
    background-color: rgb(64 64 64 / 0.5);
  }

  .sm\:bg-neutral-700\/60 {
    background-color: rgb(64 64 64 / 0.6);
  }

  .sm\:bg-neutral-700\/70 {
    background-color: rgb(64 64 64 / 0.7);
  }

  .sm\:bg-neutral-700\/80 {
    background-color: rgb(64 64 64 / 0.8);
  }

  .sm\:bg-neutral-700\/90 {
    background-color: rgb(64 64 64 / 0.9);
  }

  .sm\:bg-neutral-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(38 38 38 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-neutral-800\/10 {
    background-color: rgb(38 38 38 / 0.1);
  }

  .sm\:bg-neutral-800\/20 {
    background-color: rgb(38 38 38 / 0.2);
  }

  .sm\:bg-neutral-800\/30 {
    background-color: rgb(38 38 38 / 0.3);
  }

  .sm\:bg-neutral-800\/40 {
    background-color: rgb(38 38 38 / 0.4);
  }

  .sm\:bg-neutral-800\/5 {
    background-color: rgb(38 38 38 / 0.05);
  }

  .sm\:bg-neutral-800\/50 {
    background-color: rgb(38 38 38 / 0.5);
  }

  .sm\:bg-neutral-800\/60 {
    background-color: rgb(38 38 38 / 0.6);
  }

  .sm\:bg-neutral-800\/70 {
    background-color: rgb(38 38 38 / 0.7);
  }

  .sm\:bg-neutral-800\/80 {
    background-color: rgb(38 38 38 / 0.8);
  }

  .sm\:bg-neutral-800\/90 {
    background-color: rgb(38 38 38 / 0.9);
  }

  .sm\:bg-neutral-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(23 23 23 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-neutral-900\/10 {
    background-color: rgb(23 23 23 / 0.1);
  }

  .sm\:bg-neutral-900\/20 {
    background-color: rgb(23 23 23 / 0.2);
  }

  .sm\:bg-neutral-900\/30 {
    background-color: rgb(23 23 23 / 0.3);
  }

  .sm\:bg-neutral-900\/40 {
    background-color: rgb(23 23 23 / 0.4);
  }

  .sm\:bg-neutral-900\/5 {
    background-color: rgb(23 23 23 / 0.05);
  }

  .sm\:bg-neutral-900\/50 {
    background-color: rgb(23 23 23 / 0.5);
  }

  .sm\:bg-neutral-900\/60 {
    background-color: rgb(23 23 23 / 0.6);
  }

  .sm\:bg-neutral-900\/70 {
    background-color: rgb(23 23 23 / 0.7);
  }

  .sm\:bg-neutral-900\/80 {
    background-color: rgb(23 23 23 / 0.8);
  }

  .sm\:bg-neutral-900\/90 {
    background-color: rgb(23 23 23 / 0.9);
  }

  .sm\:bg-neutral-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(10 10 10 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-neutral-950\/10 {
    background-color: rgb(10 10 10 / 0.1);
  }

  .sm\:bg-neutral-950\/20 {
    background-color: rgb(10 10 10 / 0.2);
  }

  .sm\:bg-neutral-950\/30 {
    background-color: rgb(10 10 10 / 0.3);
  }

  .sm\:bg-neutral-950\/40 {
    background-color: rgb(10 10 10 / 0.4);
  }

  .sm\:bg-neutral-950\/5 {
    background-color: rgb(10 10 10 / 0.05);
  }

  .sm\:bg-neutral-950\/50 {
    background-color: rgb(10 10 10 / 0.5);
  }

  .sm\:bg-neutral-950\/60 {
    background-color: rgb(10 10 10 / 0.6);
  }

  .sm\:bg-neutral-950\/70 {
    background-color: rgb(10 10 10 / 0.7);
  }

  .sm\:bg-neutral-950\/80 {
    background-color: rgb(10 10 10 / 0.8);
  }

  .sm\:bg-neutral-950\/90 {
    background-color: rgb(10 10 10 / 0.9);
  }

  .sm\:bg-orange-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 237 213 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-orange-100\/10 {
    background-color: rgb(255 237 213 / 0.1);
  }

  .sm\:bg-orange-100\/20 {
    background-color: rgb(255 237 213 / 0.2);
  }

  .sm\:bg-orange-100\/30 {
    background-color: rgb(255 237 213 / 0.3);
  }

  .sm\:bg-orange-100\/40 {
    background-color: rgb(255 237 213 / 0.4);
  }

  .sm\:bg-orange-100\/5 {
    background-color: rgb(255 237 213 / 0.05);
  }

  .sm\:bg-orange-100\/50 {
    background-color: rgb(255 237 213 / 0.5);
  }

  .sm\:bg-orange-100\/60 {
    background-color: rgb(255 237 213 / 0.6);
  }

  .sm\:bg-orange-100\/70 {
    background-color: rgb(255 237 213 / 0.7);
  }

  .sm\:bg-orange-100\/80 {
    background-color: rgb(255 237 213 / 0.8);
  }

  .sm\:bg-orange-100\/90 {
    background-color: rgb(255 237 213 / 0.9);
  }

  .sm\:bg-orange-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 215 170 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-orange-200\/10 {
    background-color: rgb(254 215 170 / 0.1);
  }

  .sm\:bg-orange-200\/20 {
    background-color: rgb(254 215 170 / 0.2);
  }

  .sm\:bg-orange-200\/30 {
    background-color: rgb(254 215 170 / 0.3);
  }

  .sm\:bg-orange-200\/40 {
    background-color: rgb(254 215 170 / 0.4);
  }

  .sm\:bg-orange-200\/5 {
    background-color: rgb(254 215 170 / 0.05);
  }

  .sm\:bg-orange-200\/50 {
    background-color: rgb(254 215 170 / 0.5);
  }

  .sm\:bg-orange-200\/60 {
    background-color: rgb(254 215 170 / 0.6);
  }

  .sm\:bg-orange-200\/70 {
    background-color: rgb(254 215 170 / 0.7);
  }

  .sm\:bg-orange-200\/80 {
    background-color: rgb(254 215 170 / 0.8);
  }

  .sm\:bg-orange-200\/90 {
    background-color: rgb(254 215 170 / 0.9);
  }

  .sm\:bg-orange-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(253 186 116 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-orange-300\/10 {
    background-color: rgb(253 186 116 / 0.1);
  }

  .sm\:bg-orange-300\/20 {
    background-color: rgb(253 186 116 / 0.2);
  }

  .sm\:bg-orange-300\/30 {
    background-color: rgb(253 186 116 / 0.3);
  }

  .sm\:bg-orange-300\/40 {
    background-color: rgb(253 186 116 / 0.4);
  }

  .sm\:bg-orange-300\/5 {
    background-color: rgb(253 186 116 / 0.05);
  }

  .sm\:bg-orange-300\/50 {
    background-color: rgb(253 186 116 / 0.5);
  }

  .sm\:bg-orange-300\/60 {
    background-color: rgb(253 186 116 / 0.6);
  }

  .sm\:bg-orange-300\/70 {
    background-color: rgb(253 186 116 / 0.7);
  }

  .sm\:bg-orange-300\/80 {
    background-color: rgb(253 186 116 / 0.8);
  }

  .sm\:bg-orange-300\/90 {
    background-color: rgb(253 186 116 / 0.9);
  }

  .sm\:bg-orange-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(251 146 60 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-orange-400\/10 {
    background-color: rgb(251 146 60 / 0.1);
  }

  .sm\:bg-orange-400\/20 {
    background-color: rgb(251 146 60 / 0.2);
  }

  .sm\:bg-orange-400\/30 {
    background-color: rgb(251 146 60 / 0.3);
  }

  .sm\:bg-orange-400\/40 {
    background-color: rgb(251 146 60 / 0.4);
  }

  .sm\:bg-orange-400\/5 {
    background-color: rgb(251 146 60 / 0.05);
  }

  .sm\:bg-orange-400\/50 {
    background-color: rgb(251 146 60 / 0.5);
  }

  .sm\:bg-orange-400\/60 {
    background-color: rgb(251 146 60 / 0.6);
  }

  .sm\:bg-orange-400\/70 {
    background-color: rgb(251 146 60 / 0.7);
  }

  .sm\:bg-orange-400\/80 {
    background-color: rgb(251 146 60 / 0.8);
  }

  .sm\:bg-orange-400\/90 {
    background-color: rgb(251 146 60 / 0.9);
  }

  .sm\:bg-orange-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 247 237 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-orange-50\/10 {
    background-color: rgb(255 247 237 / 0.1);
  }

  .sm\:bg-orange-50\/20 {
    background-color: rgb(255 247 237 / 0.2);
  }

  .sm\:bg-orange-50\/30 {
    background-color: rgb(255 247 237 / 0.3);
  }

  .sm\:bg-orange-50\/40 {
    background-color: rgb(255 247 237 / 0.4);
  }

  .sm\:bg-orange-50\/5 {
    background-color: rgb(255 247 237 / 0.05);
  }

  .sm\:bg-orange-50\/50 {
    background-color: rgb(255 247 237 / 0.5);
  }

  .sm\:bg-orange-50\/60 {
    background-color: rgb(255 247 237 / 0.6);
  }

  .sm\:bg-orange-50\/70 {
    background-color: rgb(255 247 237 / 0.7);
  }

  .sm\:bg-orange-50\/80 {
    background-color: rgb(255 247 237 / 0.8);
  }

  .sm\:bg-orange-50\/90 {
    background-color: rgb(255 247 237 / 0.9);
  }

  .sm\:bg-orange-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-orange-500\/10 {
    background-color: rgb(249 115 22 / 0.1);
  }

  .sm\:bg-orange-500\/20 {
    background-color: rgb(249 115 22 / 0.2);
  }

  .sm\:bg-orange-500\/30 {
    background-color: rgb(249 115 22 / 0.3);
  }

  .sm\:bg-orange-500\/40 {
    background-color: rgb(249 115 22 / 0.4);
  }

  .sm\:bg-orange-500\/5 {
    background-color: rgb(249 115 22 / 0.05);
  }

  .sm\:bg-orange-500\/50 {
    background-color: rgb(249 115 22 / 0.5);
  }

  .sm\:bg-orange-500\/60 {
    background-color: rgb(249 115 22 / 0.6);
  }

  .sm\:bg-orange-500\/70 {
    background-color: rgb(249 115 22 / 0.7);
  }

  .sm\:bg-orange-500\/80 {
    background-color: rgb(249 115 22 / 0.8);
  }

  .sm\:bg-orange-500\/90 {
    background-color: rgb(249 115 22 / 0.9);
  }

  .sm\:bg-orange-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(234 88 12 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-orange-600\/10 {
    background-color: rgb(234 88 12 / 0.1);
  }

  .sm\:bg-orange-600\/20 {
    background-color: rgb(234 88 12 / 0.2);
  }

  .sm\:bg-orange-600\/30 {
    background-color: rgb(234 88 12 / 0.3);
  }

  .sm\:bg-orange-600\/40 {
    background-color: rgb(234 88 12 / 0.4);
  }

  .sm\:bg-orange-600\/5 {
    background-color: rgb(234 88 12 / 0.05);
  }

  .sm\:bg-orange-600\/50 {
    background-color: rgb(234 88 12 / 0.5);
  }

  .sm\:bg-orange-600\/60 {
    background-color: rgb(234 88 12 / 0.6);
  }

  .sm\:bg-orange-600\/70 {
    background-color: rgb(234 88 12 / 0.7);
  }

  .sm\:bg-orange-600\/80 {
    background-color: rgb(234 88 12 / 0.8);
  }

  .sm\:bg-orange-600\/90 {
    background-color: rgb(234 88 12 / 0.9);
  }

  .sm\:bg-orange-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(194 65 12 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-orange-700\/10 {
    background-color: rgb(194 65 12 / 0.1);
  }

  .sm\:bg-orange-700\/20 {
    background-color: rgb(194 65 12 / 0.2);
  }

  .sm\:bg-orange-700\/30 {
    background-color: rgb(194 65 12 / 0.3);
  }

  .sm\:bg-orange-700\/40 {
    background-color: rgb(194 65 12 / 0.4);
  }

  .sm\:bg-orange-700\/5 {
    background-color: rgb(194 65 12 / 0.05);
  }

  .sm\:bg-orange-700\/50 {
    background-color: rgb(194 65 12 / 0.5);
  }

  .sm\:bg-orange-700\/60 {
    background-color: rgb(194 65 12 / 0.6);
  }

  .sm\:bg-orange-700\/70 {
    background-color: rgb(194 65 12 / 0.7);
  }

  .sm\:bg-orange-700\/80 {
    background-color: rgb(194 65 12 / 0.8);
  }

  .sm\:bg-orange-700\/90 {
    background-color: rgb(194 65 12 / 0.9);
  }

  .sm\:bg-orange-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(154 52 18 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-orange-800\/10 {
    background-color: rgb(154 52 18 / 0.1);
  }

  .sm\:bg-orange-800\/20 {
    background-color: rgb(154 52 18 / 0.2);
  }

  .sm\:bg-orange-800\/30 {
    background-color: rgb(154 52 18 / 0.3);
  }

  .sm\:bg-orange-800\/40 {
    background-color: rgb(154 52 18 / 0.4);
  }

  .sm\:bg-orange-800\/5 {
    background-color: rgb(154 52 18 / 0.05);
  }

  .sm\:bg-orange-800\/50 {
    background-color: rgb(154 52 18 / 0.5);
  }

  .sm\:bg-orange-800\/60 {
    background-color: rgb(154 52 18 / 0.6);
  }

  .sm\:bg-orange-800\/70 {
    background-color: rgb(154 52 18 / 0.7);
  }

  .sm\:bg-orange-800\/80 {
    background-color: rgb(154 52 18 / 0.8);
  }

  .sm\:bg-orange-800\/90 {
    background-color: rgb(154 52 18 / 0.9);
  }

  .sm\:bg-orange-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(124 45 18 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-orange-900\/10 {
    background-color: rgb(124 45 18 / 0.1);
  }

  .sm\:bg-orange-900\/20 {
    background-color: rgb(124 45 18 / 0.2);
  }

  .sm\:bg-orange-900\/30 {
    background-color: rgb(124 45 18 / 0.3);
  }

  .sm\:bg-orange-900\/40 {
    background-color: rgb(124 45 18 / 0.4);
  }

  .sm\:bg-orange-900\/5 {
    background-color: rgb(124 45 18 / 0.05);
  }

  .sm\:bg-orange-900\/50 {
    background-color: rgb(124 45 18 / 0.5);
  }

  .sm\:bg-orange-900\/60 {
    background-color: rgb(124 45 18 / 0.6);
  }

  .sm\:bg-orange-900\/70 {
    background-color: rgb(124 45 18 / 0.7);
  }

  .sm\:bg-orange-900\/80 {
    background-color: rgb(124 45 18 / 0.8);
  }

  .sm\:bg-orange-900\/90 {
    background-color: rgb(124 45 18 / 0.9);
  }

  .sm\:bg-orange-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(67 20 7 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-orange-950\/10 {
    background-color: rgb(67 20 7 / 0.1);
  }

  .sm\:bg-orange-950\/20 {
    background-color: rgb(67 20 7 / 0.2);
  }

  .sm\:bg-orange-950\/30 {
    background-color: rgb(67 20 7 / 0.3);
  }

  .sm\:bg-orange-950\/40 {
    background-color: rgb(67 20 7 / 0.4);
  }

  .sm\:bg-orange-950\/5 {
    background-color: rgb(67 20 7 / 0.05);
  }

  .sm\:bg-orange-950\/50 {
    background-color: rgb(67 20 7 / 0.5);
  }

  .sm\:bg-orange-950\/60 {
    background-color: rgb(67 20 7 / 0.6);
  }

  .sm\:bg-orange-950\/70 {
    background-color: rgb(67 20 7 / 0.7);
  }

  .sm\:bg-orange-950\/80 {
    background-color: rgb(67 20 7 / 0.8);
  }

  .sm\:bg-orange-950\/90 {
    background-color: rgb(67 20 7 / 0.9);
  }

  .sm\:bg-pink-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(252 231 243 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-pink-100\/10 {
    background-color: rgb(252 231 243 / 0.1);
  }

  .sm\:bg-pink-100\/20 {
    background-color: rgb(252 231 243 / 0.2);
  }

  .sm\:bg-pink-100\/30 {
    background-color: rgb(252 231 243 / 0.3);
  }

  .sm\:bg-pink-100\/40 {
    background-color: rgb(252 231 243 / 0.4);
  }

  .sm\:bg-pink-100\/5 {
    background-color: rgb(252 231 243 / 0.05);
  }

  .sm\:bg-pink-100\/50 {
    background-color: rgb(252 231 243 / 0.5);
  }

  .sm\:bg-pink-100\/60 {
    background-color: rgb(252 231 243 / 0.6);
  }

  .sm\:bg-pink-100\/70 {
    background-color: rgb(252 231 243 / 0.7);
  }

  .sm\:bg-pink-100\/80 {
    background-color: rgb(252 231 243 / 0.8);
  }

  .sm\:bg-pink-100\/90 {
    background-color: rgb(252 231 243 / 0.9);
  }

  .sm\:bg-pink-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(251 207 232 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-pink-200\/10 {
    background-color: rgb(251 207 232 / 0.1);
  }

  .sm\:bg-pink-200\/20 {
    background-color: rgb(251 207 232 / 0.2);
  }

  .sm\:bg-pink-200\/30 {
    background-color: rgb(251 207 232 / 0.3);
  }

  .sm\:bg-pink-200\/40 {
    background-color: rgb(251 207 232 / 0.4);
  }

  .sm\:bg-pink-200\/5 {
    background-color: rgb(251 207 232 / 0.05);
  }

  .sm\:bg-pink-200\/50 {
    background-color: rgb(251 207 232 / 0.5);
  }

  .sm\:bg-pink-200\/60 {
    background-color: rgb(251 207 232 / 0.6);
  }

  .sm\:bg-pink-200\/70 {
    background-color: rgb(251 207 232 / 0.7);
  }

  .sm\:bg-pink-200\/80 {
    background-color: rgb(251 207 232 / 0.8);
  }

  .sm\:bg-pink-200\/90 {
    background-color: rgb(251 207 232 / 0.9);
  }

  .sm\:bg-pink-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(249 168 212 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-pink-300\/10 {
    background-color: rgb(249 168 212 / 0.1);
  }

  .sm\:bg-pink-300\/20 {
    background-color: rgb(249 168 212 / 0.2);
  }

  .sm\:bg-pink-300\/30 {
    background-color: rgb(249 168 212 / 0.3);
  }

  .sm\:bg-pink-300\/40 {
    background-color: rgb(249 168 212 / 0.4);
  }

  .sm\:bg-pink-300\/5 {
    background-color: rgb(249 168 212 / 0.05);
  }

  .sm\:bg-pink-300\/50 {
    background-color: rgb(249 168 212 / 0.5);
  }

  .sm\:bg-pink-300\/60 {
    background-color: rgb(249 168 212 / 0.6);
  }

  .sm\:bg-pink-300\/70 {
    background-color: rgb(249 168 212 / 0.7);
  }

  .sm\:bg-pink-300\/80 {
    background-color: rgb(249 168 212 / 0.8);
  }

  .sm\:bg-pink-300\/90 {
    background-color: rgb(249 168 212 / 0.9);
  }

  .sm\:bg-pink-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(244 114 182 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-pink-400\/10 {
    background-color: rgb(244 114 182 / 0.1);
  }

  .sm\:bg-pink-400\/20 {
    background-color: rgb(244 114 182 / 0.2);
  }

  .sm\:bg-pink-400\/30 {
    background-color: rgb(244 114 182 / 0.3);
  }

  .sm\:bg-pink-400\/40 {
    background-color: rgb(244 114 182 / 0.4);
  }

  .sm\:bg-pink-400\/5 {
    background-color: rgb(244 114 182 / 0.05);
  }

  .sm\:bg-pink-400\/50 {
    background-color: rgb(244 114 182 / 0.5);
  }

  .sm\:bg-pink-400\/60 {
    background-color: rgb(244 114 182 / 0.6);
  }

  .sm\:bg-pink-400\/70 {
    background-color: rgb(244 114 182 / 0.7);
  }

  .sm\:bg-pink-400\/80 {
    background-color: rgb(244 114 182 / 0.8);
  }

  .sm\:bg-pink-400\/90 {
    background-color: rgb(244 114 182 / 0.9);
  }

  .sm\:bg-pink-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(253 242 248 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-pink-50\/10 {
    background-color: rgb(253 242 248 / 0.1);
  }

  .sm\:bg-pink-50\/20 {
    background-color: rgb(253 242 248 / 0.2);
  }

  .sm\:bg-pink-50\/30 {
    background-color: rgb(253 242 248 / 0.3);
  }

  .sm\:bg-pink-50\/40 {
    background-color: rgb(253 242 248 / 0.4);
  }

  .sm\:bg-pink-50\/5 {
    background-color: rgb(253 242 248 / 0.05);
  }

  .sm\:bg-pink-50\/50 {
    background-color: rgb(253 242 248 / 0.5);
  }

  .sm\:bg-pink-50\/60 {
    background-color: rgb(253 242 248 / 0.6);
  }

  .sm\:bg-pink-50\/70 {
    background-color: rgb(253 242 248 / 0.7);
  }

  .sm\:bg-pink-50\/80 {
    background-color: rgb(253 242 248 / 0.8);
  }

  .sm\:bg-pink-50\/90 {
    background-color: rgb(253 242 248 / 0.9);
  }

  .sm\:bg-pink-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(236 72 153 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-pink-500\/10 {
    background-color: rgb(236 72 153 / 0.1);
  }

  .sm\:bg-pink-500\/20 {
    background-color: rgb(236 72 153 / 0.2);
  }

  .sm\:bg-pink-500\/30 {
    background-color: rgb(236 72 153 / 0.3);
  }

  .sm\:bg-pink-500\/40 {
    background-color: rgb(236 72 153 / 0.4);
  }

  .sm\:bg-pink-500\/5 {
    background-color: rgb(236 72 153 / 0.05);
  }

  .sm\:bg-pink-500\/50 {
    background-color: rgb(236 72 153 / 0.5);
  }

  .sm\:bg-pink-500\/60 {
    background-color: rgb(236 72 153 / 0.6);
  }

  .sm\:bg-pink-500\/70 {
    background-color: rgb(236 72 153 / 0.7);
  }

  .sm\:bg-pink-500\/80 {
    background-color: rgb(236 72 153 / 0.8);
  }

  .sm\:bg-pink-500\/90 {
    background-color: rgb(236 72 153 / 0.9);
  }

  .sm\:bg-pink-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(219 39 119 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-pink-600\/10 {
    background-color: rgb(219 39 119 / 0.1);
  }

  .sm\:bg-pink-600\/20 {
    background-color: rgb(219 39 119 / 0.2);
  }

  .sm\:bg-pink-600\/30 {
    background-color: rgb(219 39 119 / 0.3);
  }

  .sm\:bg-pink-600\/40 {
    background-color: rgb(219 39 119 / 0.4);
  }

  .sm\:bg-pink-600\/5 {
    background-color: rgb(219 39 119 / 0.05);
  }

  .sm\:bg-pink-600\/50 {
    background-color: rgb(219 39 119 / 0.5);
  }

  .sm\:bg-pink-600\/60 {
    background-color: rgb(219 39 119 / 0.6);
  }

  .sm\:bg-pink-600\/70 {
    background-color: rgb(219 39 119 / 0.7);
  }

  .sm\:bg-pink-600\/80 {
    background-color: rgb(219 39 119 / 0.8);
  }

  .sm\:bg-pink-600\/90 {
    background-color: rgb(219 39 119 / 0.9);
  }

  .sm\:bg-pink-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(190 24 93 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-pink-700\/10 {
    background-color: rgb(190 24 93 / 0.1);
  }

  .sm\:bg-pink-700\/20 {
    background-color: rgb(190 24 93 / 0.2);
  }

  .sm\:bg-pink-700\/30 {
    background-color: rgb(190 24 93 / 0.3);
  }

  .sm\:bg-pink-700\/40 {
    background-color: rgb(190 24 93 / 0.4);
  }

  .sm\:bg-pink-700\/5 {
    background-color: rgb(190 24 93 / 0.05);
  }

  .sm\:bg-pink-700\/50 {
    background-color: rgb(190 24 93 / 0.5);
  }

  .sm\:bg-pink-700\/60 {
    background-color: rgb(190 24 93 / 0.6);
  }

  .sm\:bg-pink-700\/70 {
    background-color: rgb(190 24 93 / 0.7);
  }

  .sm\:bg-pink-700\/80 {
    background-color: rgb(190 24 93 / 0.8);
  }

  .sm\:bg-pink-700\/90 {
    background-color: rgb(190 24 93 / 0.9);
  }

  .sm\:bg-pink-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(157 23 77 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-pink-800\/10 {
    background-color: rgb(157 23 77 / 0.1);
  }

  .sm\:bg-pink-800\/20 {
    background-color: rgb(157 23 77 / 0.2);
  }

  .sm\:bg-pink-800\/30 {
    background-color: rgb(157 23 77 / 0.3);
  }

  .sm\:bg-pink-800\/40 {
    background-color: rgb(157 23 77 / 0.4);
  }

  .sm\:bg-pink-800\/5 {
    background-color: rgb(157 23 77 / 0.05);
  }

  .sm\:bg-pink-800\/50 {
    background-color: rgb(157 23 77 / 0.5);
  }

  .sm\:bg-pink-800\/60 {
    background-color: rgb(157 23 77 / 0.6);
  }

  .sm\:bg-pink-800\/70 {
    background-color: rgb(157 23 77 / 0.7);
  }

  .sm\:bg-pink-800\/80 {
    background-color: rgb(157 23 77 / 0.8);
  }

  .sm\:bg-pink-800\/90 {
    background-color: rgb(157 23 77 / 0.9);
  }

  .sm\:bg-pink-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(131 24 67 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-pink-900\/10 {
    background-color: rgb(131 24 67 / 0.1);
  }

  .sm\:bg-pink-900\/20 {
    background-color: rgb(131 24 67 / 0.2);
  }

  .sm\:bg-pink-900\/30 {
    background-color: rgb(131 24 67 / 0.3);
  }

  .sm\:bg-pink-900\/40 {
    background-color: rgb(131 24 67 / 0.4);
  }

  .sm\:bg-pink-900\/5 {
    background-color: rgb(131 24 67 / 0.05);
  }

  .sm\:bg-pink-900\/50 {
    background-color: rgb(131 24 67 / 0.5);
  }

  .sm\:bg-pink-900\/60 {
    background-color: rgb(131 24 67 / 0.6);
  }

  .sm\:bg-pink-900\/70 {
    background-color: rgb(131 24 67 / 0.7);
  }

  .sm\:bg-pink-900\/80 {
    background-color: rgb(131 24 67 / 0.8);
  }

  .sm\:bg-pink-900\/90 {
    background-color: rgb(131 24 67 / 0.9);
  }

  .sm\:bg-pink-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(80 7 36 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-pink-950\/10 {
    background-color: rgb(80 7 36 / 0.1);
  }

  .sm\:bg-pink-950\/20 {
    background-color: rgb(80 7 36 / 0.2);
  }

  .sm\:bg-pink-950\/30 {
    background-color: rgb(80 7 36 / 0.3);
  }

  .sm\:bg-pink-950\/40 {
    background-color: rgb(80 7 36 / 0.4);
  }

  .sm\:bg-pink-950\/5 {
    background-color: rgb(80 7 36 / 0.05);
  }

  .sm\:bg-pink-950\/50 {
    background-color: rgb(80 7 36 / 0.5);
  }

  .sm\:bg-pink-950\/60 {
    background-color: rgb(80 7 36 / 0.6);
  }

  .sm\:bg-pink-950\/70 {
    background-color: rgb(80 7 36 / 0.7);
  }

  .sm\:bg-pink-950\/80 {
    background-color: rgb(80 7 36 / 0.8);
  }

  .sm\:bg-pink-950\/90 {
    background-color: rgb(80 7 36 / 0.9);
  }

  .sm\:bg-purple-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(243 232 255 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-purple-100\/10 {
    background-color: rgb(243 232 255 / 0.1);
  }

  .sm\:bg-purple-100\/20 {
    background-color: rgb(243 232 255 / 0.2);
  }

  .sm\:bg-purple-100\/30 {
    background-color: rgb(243 232 255 / 0.3);
  }

  .sm\:bg-purple-100\/40 {
    background-color: rgb(243 232 255 / 0.4);
  }

  .sm\:bg-purple-100\/5 {
    background-color: rgb(243 232 255 / 0.05);
  }

  .sm\:bg-purple-100\/50 {
    background-color: rgb(243 232 255 / 0.5);
  }

  .sm\:bg-purple-100\/60 {
    background-color: rgb(243 232 255 / 0.6);
  }

  .sm\:bg-purple-100\/70 {
    background-color: rgb(243 232 255 / 0.7);
  }

  .sm\:bg-purple-100\/80 {
    background-color: rgb(243 232 255 / 0.8);
  }

  .sm\:bg-purple-100\/90 {
    background-color: rgb(243 232 255 / 0.9);
  }

  .sm\:bg-purple-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(233 213 255 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-purple-200\/10 {
    background-color: rgb(233 213 255 / 0.1);
  }

  .sm\:bg-purple-200\/20 {
    background-color: rgb(233 213 255 / 0.2);
  }

  .sm\:bg-purple-200\/30 {
    background-color: rgb(233 213 255 / 0.3);
  }

  .sm\:bg-purple-200\/40 {
    background-color: rgb(233 213 255 / 0.4);
  }

  .sm\:bg-purple-200\/5 {
    background-color: rgb(233 213 255 / 0.05);
  }

  .sm\:bg-purple-200\/50 {
    background-color: rgb(233 213 255 / 0.5);
  }

  .sm\:bg-purple-200\/60 {
    background-color: rgb(233 213 255 / 0.6);
  }

  .sm\:bg-purple-200\/70 {
    background-color: rgb(233 213 255 / 0.7);
  }

  .sm\:bg-purple-200\/80 {
    background-color: rgb(233 213 255 / 0.8);
  }

  .sm\:bg-purple-200\/90 {
    background-color: rgb(233 213 255 / 0.9);
  }

  .sm\:bg-purple-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(216 180 254 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-purple-300\/10 {
    background-color: rgb(216 180 254 / 0.1);
  }

  .sm\:bg-purple-300\/20 {
    background-color: rgb(216 180 254 / 0.2);
  }

  .sm\:bg-purple-300\/30 {
    background-color: rgb(216 180 254 / 0.3);
  }

  .sm\:bg-purple-300\/40 {
    background-color: rgb(216 180 254 / 0.4);
  }

  .sm\:bg-purple-300\/5 {
    background-color: rgb(216 180 254 / 0.05);
  }

  .sm\:bg-purple-300\/50 {
    background-color: rgb(216 180 254 / 0.5);
  }

  .sm\:bg-purple-300\/60 {
    background-color: rgb(216 180 254 / 0.6);
  }

  .sm\:bg-purple-300\/70 {
    background-color: rgb(216 180 254 / 0.7);
  }

  .sm\:bg-purple-300\/80 {
    background-color: rgb(216 180 254 / 0.8);
  }

  .sm\:bg-purple-300\/90 {
    background-color: rgb(216 180 254 / 0.9);
  }

  .sm\:bg-purple-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(192 132 252 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-purple-400\/10 {
    background-color: rgb(192 132 252 / 0.1);
  }

  .sm\:bg-purple-400\/20 {
    background-color: rgb(192 132 252 / 0.2);
  }

  .sm\:bg-purple-400\/30 {
    background-color: rgb(192 132 252 / 0.3);
  }

  .sm\:bg-purple-400\/40 {
    background-color: rgb(192 132 252 / 0.4);
  }

  .sm\:bg-purple-400\/5 {
    background-color: rgb(192 132 252 / 0.05);
  }

  .sm\:bg-purple-400\/50 {
    background-color: rgb(192 132 252 / 0.5);
  }

  .sm\:bg-purple-400\/60 {
    background-color: rgb(192 132 252 / 0.6);
  }

  .sm\:bg-purple-400\/70 {
    background-color: rgb(192 132 252 / 0.7);
  }

  .sm\:bg-purple-400\/80 {
    background-color: rgb(192 132 252 / 0.8);
  }

  .sm\:bg-purple-400\/90 {
    background-color: rgb(192 132 252 / 0.9);
  }

  .sm\:bg-purple-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 245 255 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-purple-50\/10 {
    background-color: rgb(250 245 255 / 0.1);
  }

  .sm\:bg-purple-50\/20 {
    background-color: rgb(250 245 255 / 0.2);
  }

  .sm\:bg-purple-50\/30 {
    background-color: rgb(250 245 255 / 0.3);
  }

  .sm\:bg-purple-50\/40 {
    background-color: rgb(250 245 255 / 0.4);
  }

  .sm\:bg-purple-50\/5 {
    background-color: rgb(250 245 255 / 0.05);
  }

  .sm\:bg-purple-50\/50 {
    background-color: rgb(250 245 255 / 0.5);
  }

  .sm\:bg-purple-50\/60 {
    background-color: rgb(250 245 255 / 0.6);
  }

  .sm\:bg-purple-50\/70 {
    background-color: rgb(250 245 255 / 0.7);
  }

  .sm\:bg-purple-50\/80 {
    background-color: rgb(250 245 255 / 0.8);
  }

  .sm\:bg-purple-50\/90 {
    background-color: rgb(250 245 255 / 0.9);
  }

  .sm\:bg-purple-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(168 85 247 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-purple-500\/10 {
    background-color: rgb(168 85 247 / 0.1);
  }

  .sm\:bg-purple-500\/20 {
    background-color: rgb(168 85 247 / 0.2);
  }

  .sm\:bg-purple-500\/30 {
    background-color: rgb(168 85 247 / 0.3);
  }

  .sm\:bg-purple-500\/40 {
    background-color: rgb(168 85 247 / 0.4);
  }

  .sm\:bg-purple-500\/5 {
    background-color: rgb(168 85 247 / 0.05);
  }

  .sm\:bg-purple-500\/50 {
    background-color: rgb(168 85 247 / 0.5);
  }

  .sm\:bg-purple-500\/60 {
    background-color: rgb(168 85 247 / 0.6);
  }

  .sm\:bg-purple-500\/70 {
    background-color: rgb(168 85 247 / 0.7);
  }

  .sm\:bg-purple-500\/80 {
    background-color: rgb(168 85 247 / 0.8);
  }

  .sm\:bg-purple-500\/90 {
    background-color: rgb(168 85 247 / 0.9);
  }

  .sm\:bg-purple-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(147 51 234 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-purple-600\/10 {
    background-color: rgb(147 51 234 / 0.1);
  }

  .sm\:bg-purple-600\/20 {
    background-color: rgb(147 51 234 / 0.2);
  }

  .sm\:bg-purple-600\/30 {
    background-color: rgb(147 51 234 / 0.3);
  }

  .sm\:bg-purple-600\/40 {
    background-color: rgb(147 51 234 / 0.4);
  }

  .sm\:bg-purple-600\/5 {
    background-color: rgb(147 51 234 / 0.05);
  }

  .sm\:bg-purple-600\/50 {
    background-color: rgb(147 51 234 / 0.5);
  }

  .sm\:bg-purple-600\/60 {
    background-color: rgb(147 51 234 / 0.6);
  }

  .sm\:bg-purple-600\/70 {
    background-color: rgb(147 51 234 / 0.7);
  }

  .sm\:bg-purple-600\/80 {
    background-color: rgb(147 51 234 / 0.8);
  }

  .sm\:bg-purple-600\/90 {
    background-color: rgb(147 51 234 / 0.9);
  }

  .sm\:bg-purple-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(126 34 206 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-purple-700\/10 {
    background-color: rgb(126 34 206 / 0.1);
  }

  .sm\:bg-purple-700\/20 {
    background-color: rgb(126 34 206 / 0.2);
  }

  .sm\:bg-purple-700\/30 {
    background-color: rgb(126 34 206 / 0.3);
  }

  .sm\:bg-purple-700\/40 {
    background-color: rgb(126 34 206 / 0.4);
  }

  .sm\:bg-purple-700\/5 {
    background-color: rgb(126 34 206 / 0.05);
  }

  .sm\:bg-purple-700\/50 {
    background-color: rgb(126 34 206 / 0.5);
  }

  .sm\:bg-purple-700\/60 {
    background-color: rgb(126 34 206 / 0.6);
  }

  .sm\:bg-purple-700\/70 {
    background-color: rgb(126 34 206 / 0.7);
  }

  .sm\:bg-purple-700\/80 {
    background-color: rgb(126 34 206 / 0.8);
  }

  .sm\:bg-purple-700\/90 {
    background-color: rgb(126 34 206 / 0.9);
  }

  .sm\:bg-purple-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(107 33 168 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-purple-800\/10 {
    background-color: rgb(107 33 168 / 0.1);
  }

  .sm\:bg-purple-800\/20 {
    background-color: rgb(107 33 168 / 0.2);
  }

  .sm\:bg-purple-800\/30 {
    background-color: rgb(107 33 168 / 0.3);
  }

  .sm\:bg-purple-800\/40 {
    background-color: rgb(107 33 168 / 0.4);
  }

  .sm\:bg-purple-800\/5 {
    background-color: rgb(107 33 168 / 0.05);
  }

  .sm\:bg-purple-800\/50 {
    background-color: rgb(107 33 168 / 0.5);
  }

  .sm\:bg-purple-800\/60 {
    background-color: rgb(107 33 168 / 0.6);
  }

  .sm\:bg-purple-800\/70 {
    background-color: rgb(107 33 168 / 0.7);
  }

  .sm\:bg-purple-800\/80 {
    background-color: rgb(107 33 168 / 0.8);
  }

  .sm\:bg-purple-800\/90 {
    background-color: rgb(107 33 168 / 0.9);
  }

  .sm\:bg-purple-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(88 28 135 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-purple-900\/10 {
    background-color: rgb(88 28 135 / 0.1);
  }

  .sm\:bg-purple-900\/20 {
    background-color: rgb(88 28 135 / 0.2);
  }

  .sm\:bg-purple-900\/30 {
    background-color: rgb(88 28 135 / 0.3);
  }

  .sm\:bg-purple-900\/40 {
    background-color: rgb(88 28 135 / 0.4);
  }

  .sm\:bg-purple-900\/5 {
    background-color: rgb(88 28 135 / 0.05);
  }

  .sm\:bg-purple-900\/50 {
    background-color: rgb(88 28 135 / 0.5);
  }

  .sm\:bg-purple-900\/60 {
    background-color: rgb(88 28 135 / 0.6);
  }

  .sm\:bg-purple-900\/70 {
    background-color: rgb(88 28 135 / 0.7);
  }

  .sm\:bg-purple-900\/80 {
    background-color: rgb(88 28 135 / 0.8);
  }

  .sm\:bg-purple-900\/90 {
    background-color: rgb(88 28 135 / 0.9);
  }

  .sm\:bg-purple-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(59 7 100 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-purple-950\/10 {
    background-color: rgb(59 7 100 / 0.1);
  }

  .sm\:bg-purple-950\/20 {
    background-color: rgb(59 7 100 / 0.2);
  }

  .sm\:bg-purple-950\/30 {
    background-color: rgb(59 7 100 / 0.3);
  }

  .sm\:bg-purple-950\/40 {
    background-color: rgb(59 7 100 / 0.4);
  }

  .sm\:bg-purple-950\/5 {
    background-color: rgb(59 7 100 / 0.05);
  }

  .sm\:bg-purple-950\/50 {
    background-color: rgb(59 7 100 / 0.5);
  }

  .sm\:bg-purple-950\/60 {
    background-color: rgb(59 7 100 / 0.6);
  }

  .sm\:bg-purple-950\/70 {
    background-color: rgb(59 7 100 / 0.7);
  }

  .sm\:bg-purple-950\/80 {
    background-color: rgb(59 7 100 / 0.8);
  }

  .sm\:bg-purple-950\/90 {
    background-color: rgb(59 7 100 / 0.9);
  }

  .sm\:bg-red-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-red-100\/10 {
    background-color: rgb(254 226 226 / 0.1);
  }

  .sm\:bg-red-100\/20 {
    background-color: rgb(254 226 226 / 0.2);
  }

  .sm\:bg-red-100\/30 {
    background-color: rgb(254 226 226 / 0.3);
  }

  .sm\:bg-red-100\/40 {
    background-color: rgb(254 226 226 / 0.4);
  }

  .sm\:bg-red-100\/5 {
    background-color: rgb(254 226 226 / 0.05);
  }

  .sm\:bg-red-100\/50 {
    background-color: rgb(254 226 226 / 0.5);
  }

  .sm\:bg-red-100\/60 {
    background-color: rgb(254 226 226 / 0.6);
  }

  .sm\:bg-red-100\/70 {
    background-color: rgb(254 226 226 / 0.7);
  }

  .sm\:bg-red-100\/80 {
    background-color: rgb(254 226 226 / 0.8);
  }

  .sm\:bg-red-100\/90 {
    background-color: rgb(254 226 226 / 0.9);
  }

  .sm\:bg-red-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 202 202 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-red-200\/10 {
    background-color: rgb(254 202 202 / 0.1);
  }

  .sm\:bg-red-200\/20 {
    background-color: rgb(254 202 202 / 0.2);
  }

  .sm\:bg-red-200\/30 {
    background-color: rgb(254 202 202 / 0.3);
  }

  .sm\:bg-red-200\/40 {
    background-color: rgb(254 202 202 / 0.4);
  }

  .sm\:bg-red-200\/5 {
    background-color: rgb(254 202 202 / 0.05);
  }

  .sm\:bg-red-200\/50 {
    background-color: rgb(254 202 202 / 0.5);
  }

  .sm\:bg-red-200\/60 {
    background-color: rgb(254 202 202 / 0.6);
  }

  .sm\:bg-red-200\/70 {
    background-color: rgb(254 202 202 / 0.7);
  }

  .sm\:bg-red-200\/80 {
    background-color: rgb(254 202 202 / 0.8);
  }

  .sm\:bg-red-200\/90 {
    background-color: rgb(254 202 202 / 0.9);
  }

  .sm\:bg-red-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(252 165 165 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-red-300\/10 {
    background-color: rgb(252 165 165 / 0.1);
  }

  .sm\:bg-red-300\/20 {
    background-color: rgb(252 165 165 / 0.2);
  }

  .sm\:bg-red-300\/30 {
    background-color: rgb(252 165 165 / 0.3);
  }

  .sm\:bg-red-300\/40 {
    background-color: rgb(252 165 165 / 0.4);
  }

  .sm\:bg-red-300\/5 {
    background-color: rgb(252 165 165 / 0.05);
  }

  .sm\:bg-red-300\/50 {
    background-color: rgb(252 165 165 / 0.5);
  }

  .sm\:bg-red-300\/60 {
    background-color: rgb(252 165 165 / 0.6);
  }

  .sm\:bg-red-300\/70 {
    background-color: rgb(252 165 165 / 0.7);
  }

  .sm\:bg-red-300\/80 {
    background-color: rgb(252 165 165 / 0.8);
  }

  .sm\:bg-red-300\/90 {
    background-color: rgb(252 165 165 / 0.9);
  }

  .sm\:bg-red-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(248 113 113 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-red-400\/10 {
    background-color: rgb(248 113 113 / 0.1);
  }

  .sm\:bg-red-400\/20 {
    background-color: rgb(248 113 113 / 0.2);
  }

  .sm\:bg-red-400\/30 {
    background-color: rgb(248 113 113 / 0.3);
  }

  .sm\:bg-red-400\/40 {
    background-color: rgb(248 113 113 / 0.4);
  }

  .sm\:bg-red-400\/5 {
    background-color: rgb(248 113 113 / 0.05);
  }

  .sm\:bg-red-400\/50 {
    background-color: rgb(248 113 113 / 0.5);
  }

  .sm\:bg-red-400\/60 {
    background-color: rgb(248 113 113 / 0.6);
  }

  .sm\:bg-red-400\/70 {
    background-color: rgb(248 113 113 / 0.7);
  }

  .sm\:bg-red-400\/80 {
    background-color: rgb(248 113 113 / 0.8);
  }

  .sm\:bg-red-400\/90 {
    background-color: rgb(248 113 113 / 0.9);
  }

  .sm\:bg-red-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-red-50\/10 {
    background-color: rgb(254 242 242 / 0.1);
  }

  .sm\:bg-red-50\/20 {
    background-color: rgb(254 242 242 / 0.2);
  }

  .sm\:bg-red-50\/30 {
    background-color: rgb(254 242 242 / 0.3);
  }

  .sm\:bg-red-50\/40 {
    background-color: rgb(254 242 242 / 0.4);
  }

  .sm\:bg-red-50\/5 {
    background-color: rgb(254 242 242 / 0.05);
  }

  .sm\:bg-red-50\/50 {
    background-color: rgb(254 242 242 / 0.5);
  }

  .sm\:bg-red-50\/60 {
    background-color: rgb(254 242 242 / 0.6);
  }

  .sm\:bg-red-50\/70 {
    background-color: rgb(254 242 242 / 0.7);
  }

  .sm\:bg-red-50\/80 {
    background-color: rgb(254 242 242 / 0.8);
  }

  .sm\:bg-red-50\/90 {
    background-color: rgb(254 242 242 / 0.9);
  }

  .sm\:bg-red-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-red-500\/10 {
    background-color: rgb(239 68 68 / 0.1);
  }

  .sm\:bg-red-500\/20 {
    background-color: rgb(239 68 68 / 0.2);
  }

  .sm\:bg-red-500\/30 {
    background-color: rgb(239 68 68 / 0.3);
  }

  .sm\:bg-red-500\/40 {
    background-color: rgb(239 68 68 / 0.4);
  }

  .sm\:bg-red-500\/5 {
    background-color: rgb(239 68 68 / 0.05);
  }

  .sm\:bg-red-500\/50 {
    background-color: rgb(239 68 68 / 0.5);
  }

  .sm\:bg-red-500\/60 {
    background-color: rgb(239 68 68 / 0.6);
  }

  .sm\:bg-red-500\/70 {
    background-color: rgb(239 68 68 / 0.7);
  }

  .sm\:bg-red-500\/80 {
    background-color: rgb(239 68 68 / 0.8);
  }

  .sm\:bg-red-500\/90 {
    background-color: rgb(239 68 68 / 0.9);
  }

  .sm\:bg-red-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-red-600\/10 {
    background-color: rgb(220 38 38 / 0.1);
  }

  .sm\:bg-red-600\/20 {
    background-color: rgb(220 38 38 / 0.2);
  }

  .sm\:bg-red-600\/30 {
    background-color: rgb(220 38 38 / 0.3);
  }

  .sm\:bg-red-600\/40 {
    background-color: rgb(220 38 38 / 0.4);
  }

  .sm\:bg-red-600\/5 {
    background-color: rgb(220 38 38 / 0.05);
  }

  .sm\:bg-red-600\/50 {
    background-color: rgb(220 38 38 / 0.5);
  }

  .sm\:bg-red-600\/60 {
    background-color: rgb(220 38 38 / 0.6);
  }

  .sm\:bg-red-600\/70 {
    background-color: rgb(220 38 38 / 0.7);
  }

  .sm\:bg-red-600\/80 {
    background-color: rgb(220 38 38 / 0.8);
  }

  .sm\:bg-red-600\/90 {
    background-color: rgb(220 38 38 / 0.9);
  }

  .sm\:bg-red-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-red-700\/10 {
    background-color: rgb(185 28 28 / 0.1);
  }

  .sm\:bg-red-700\/20 {
    background-color: rgb(185 28 28 / 0.2);
  }

  .sm\:bg-red-700\/30 {
    background-color: rgb(185 28 28 / 0.3);
  }

  .sm\:bg-red-700\/40 {
    background-color: rgb(185 28 28 / 0.4);
  }

  .sm\:bg-red-700\/5 {
    background-color: rgb(185 28 28 / 0.05);
  }

  .sm\:bg-red-700\/50 {
    background-color: rgb(185 28 28 / 0.5);
  }

  .sm\:bg-red-700\/60 {
    background-color: rgb(185 28 28 / 0.6);
  }

  .sm\:bg-red-700\/70 {
    background-color: rgb(185 28 28 / 0.7);
  }

  .sm\:bg-red-700\/80 {
    background-color: rgb(185 28 28 / 0.8);
  }

  .sm\:bg-red-700\/90 {
    background-color: rgb(185 28 28 / 0.9);
  }

  .sm\:bg-red-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(153 27 27 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-red-800\/10 {
    background-color: rgb(153 27 27 / 0.1);
  }

  .sm\:bg-red-800\/20 {
    background-color: rgb(153 27 27 / 0.2);
  }

  .sm\:bg-red-800\/30 {
    background-color: rgb(153 27 27 / 0.3);
  }

  .sm\:bg-red-800\/40 {
    background-color: rgb(153 27 27 / 0.4);
  }

  .sm\:bg-red-800\/5 {
    background-color: rgb(153 27 27 / 0.05);
  }

  .sm\:bg-red-800\/50 {
    background-color: rgb(153 27 27 / 0.5);
  }

  .sm\:bg-red-800\/60 {
    background-color: rgb(153 27 27 / 0.6);
  }

  .sm\:bg-red-800\/70 {
    background-color: rgb(153 27 27 / 0.7);
  }

  .sm\:bg-red-800\/80 {
    background-color: rgb(153 27 27 / 0.8);
  }

  .sm\:bg-red-800\/90 {
    background-color: rgb(153 27 27 / 0.9);
  }

  .sm\:bg-red-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(127 29 29 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-red-900\/10 {
    background-color: rgb(127 29 29 / 0.1);
  }

  .sm\:bg-red-900\/20 {
    background-color: rgb(127 29 29 / 0.2);
  }

  .sm\:bg-red-900\/30 {
    background-color: rgb(127 29 29 / 0.3);
  }

  .sm\:bg-red-900\/40 {
    background-color: rgb(127 29 29 / 0.4);
  }

  .sm\:bg-red-900\/5 {
    background-color: rgb(127 29 29 / 0.05);
  }

  .sm\:bg-red-900\/50 {
    background-color: rgb(127 29 29 / 0.5);
  }

  .sm\:bg-red-900\/60 {
    background-color: rgb(127 29 29 / 0.6);
  }

  .sm\:bg-red-900\/70 {
    background-color: rgb(127 29 29 / 0.7);
  }

  .sm\:bg-red-900\/80 {
    background-color: rgb(127 29 29 / 0.8);
  }

  .sm\:bg-red-900\/90 {
    background-color: rgb(127 29 29 / 0.9);
  }

  .sm\:bg-red-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(69 10 10 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-red-950\/10 {
    background-color: rgb(69 10 10 / 0.1);
  }

  .sm\:bg-red-950\/20 {
    background-color: rgb(69 10 10 / 0.2);
  }

  .sm\:bg-red-950\/30 {
    background-color: rgb(69 10 10 / 0.3);
  }

  .sm\:bg-red-950\/40 {
    background-color: rgb(69 10 10 / 0.4);
  }

  .sm\:bg-red-950\/5 {
    background-color: rgb(69 10 10 / 0.05);
  }

  .sm\:bg-red-950\/50 {
    background-color: rgb(69 10 10 / 0.5);
  }

  .sm\:bg-red-950\/60 {
    background-color: rgb(69 10 10 / 0.6);
  }

  .sm\:bg-red-950\/70 {
    background-color: rgb(69 10 10 / 0.7);
  }

  .sm\:bg-red-950\/80 {
    background-color: rgb(69 10 10 / 0.8);
  }

  .sm\:bg-red-950\/90 {
    background-color: rgb(69 10 10 / 0.9);
  }

  .sm\:bg-rose-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 228 230 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-rose-100\/10 {
    background-color: rgb(255 228 230 / 0.1);
  }

  .sm\:bg-rose-100\/20 {
    background-color: rgb(255 228 230 / 0.2);
  }

  .sm\:bg-rose-100\/30 {
    background-color: rgb(255 228 230 / 0.3);
  }

  .sm\:bg-rose-100\/40 {
    background-color: rgb(255 228 230 / 0.4);
  }

  .sm\:bg-rose-100\/5 {
    background-color: rgb(255 228 230 / 0.05);
  }

  .sm\:bg-rose-100\/50 {
    background-color: rgb(255 228 230 / 0.5);
  }

  .sm\:bg-rose-100\/60 {
    background-color: rgb(255 228 230 / 0.6);
  }

  .sm\:bg-rose-100\/70 {
    background-color: rgb(255 228 230 / 0.7);
  }

  .sm\:bg-rose-100\/80 {
    background-color: rgb(255 228 230 / 0.8);
  }

  .sm\:bg-rose-100\/90 {
    background-color: rgb(255 228 230 / 0.9);
  }

  .sm\:bg-rose-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 205 211 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-rose-200\/10 {
    background-color: rgb(254 205 211 / 0.1);
  }

  .sm\:bg-rose-200\/20 {
    background-color: rgb(254 205 211 / 0.2);
  }

  .sm\:bg-rose-200\/30 {
    background-color: rgb(254 205 211 / 0.3);
  }

  .sm\:bg-rose-200\/40 {
    background-color: rgb(254 205 211 / 0.4);
  }

  .sm\:bg-rose-200\/5 {
    background-color: rgb(254 205 211 / 0.05);
  }

  .sm\:bg-rose-200\/50 {
    background-color: rgb(254 205 211 / 0.5);
  }

  .sm\:bg-rose-200\/60 {
    background-color: rgb(254 205 211 / 0.6);
  }

  .sm\:bg-rose-200\/70 {
    background-color: rgb(254 205 211 / 0.7);
  }

  .sm\:bg-rose-200\/80 {
    background-color: rgb(254 205 211 / 0.8);
  }

  .sm\:bg-rose-200\/90 {
    background-color: rgb(254 205 211 / 0.9);
  }

  .sm\:bg-rose-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(253 164 175 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-rose-300\/10 {
    background-color: rgb(253 164 175 / 0.1);
  }

  .sm\:bg-rose-300\/20 {
    background-color: rgb(253 164 175 / 0.2);
  }

  .sm\:bg-rose-300\/30 {
    background-color: rgb(253 164 175 / 0.3);
  }

  .sm\:bg-rose-300\/40 {
    background-color: rgb(253 164 175 / 0.4);
  }

  .sm\:bg-rose-300\/5 {
    background-color: rgb(253 164 175 / 0.05);
  }

  .sm\:bg-rose-300\/50 {
    background-color: rgb(253 164 175 / 0.5);
  }

  .sm\:bg-rose-300\/60 {
    background-color: rgb(253 164 175 / 0.6);
  }

  .sm\:bg-rose-300\/70 {
    background-color: rgb(253 164 175 / 0.7);
  }

  .sm\:bg-rose-300\/80 {
    background-color: rgb(253 164 175 / 0.8);
  }

  .sm\:bg-rose-300\/90 {
    background-color: rgb(253 164 175 / 0.9);
  }

  .sm\:bg-rose-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(251 113 133 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-rose-400\/10 {
    background-color: rgb(251 113 133 / 0.1);
  }

  .sm\:bg-rose-400\/20 {
    background-color: rgb(251 113 133 / 0.2);
  }

  .sm\:bg-rose-400\/30 {
    background-color: rgb(251 113 133 / 0.3);
  }

  .sm\:bg-rose-400\/40 {
    background-color: rgb(251 113 133 / 0.4);
  }

  .sm\:bg-rose-400\/5 {
    background-color: rgb(251 113 133 / 0.05);
  }

  .sm\:bg-rose-400\/50 {
    background-color: rgb(251 113 133 / 0.5);
  }

  .sm\:bg-rose-400\/60 {
    background-color: rgb(251 113 133 / 0.6);
  }

  .sm\:bg-rose-400\/70 {
    background-color: rgb(251 113 133 / 0.7);
  }

  .sm\:bg-rose-400\/80 {
    background-color: rgb(251 113 133 / 0.8);
  }

  .sm\:bg-rose-400\/90 {
    background-color: rgb(251 113 133 / 0.9);
  }

  .sm\:bg-rose-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 241 242 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-rose-50\/10 {
    background-color: rgb(255 241 242 / 0.1);
  }

  .sm\:bg-rose-50\/20 {
    background-color: rgb(255 241 242 / 0.2);
  }

  .sm\:bg-rose-50\/30 {
    background-color: rgb(255 241 242 / 0.3);
  }

  .sm\:bg-rose-50\/40 {
    background-color: rgb(255 241 242 / 0.4);
  }

  .sm\:bg-rose-50\/5 {
    background-color: rgb(255 241 242 / 0.05);
  }

  .sm\:bg-rose-50\/50 {
    background-color: rgb(255 241 242 / 0.5);
  }

  .sm\:bg-rose-50\/60 {
    background-color: rgb(255 241 242 / 0.6);
  }

  .sm\:bg-rose-50\/70 {
    background-color: rgb(255 241 242 / 0.7);
  }

  .sm\:bg-rose-50\/80 {
    background-color: rgb(255 241 242 / 0.8);
  }

  .sm\:bg-rose-50\/90 {
    background-color: rgb(255 241 242 / 0.9);
  }

  .sm\:bg-rose-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(244 63 94 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-rose-500\/10 {
    background-color: rgb(244 63 94 / 0.1);
  }

  .sm\:bg-rose-500\/20 {
    background-color: rgb(244 63 94 / 0.2);
  }

  .sm\:bg-rose-500\/30 {
    background-color: rgb(244 63 94 / 0.3);
  }

  .sm\:bg-rose-500\/40 {
    background-color: rgb(244 63 94 / 0.4);
  }

  .sm\:bg-rose-500\/5 {
    background-color: rgb(244 63 94 / 0.05);
  }

  .sm\:bg-rose-500\/50 {
    background-color: rgb(244 63 94 / 0.5);
  }

  .sm\:bg-rose-500\/60 {
    background-color: rgb(244 63 94 / 0.6);
  }

  .sm\:bg-rose-500\/70 {
    background-color: rgb(244 63 94 / 0.7);
  }

  .sm\:bg-rose-500\/80 {
    background-color: rgb(244 63 94 / 0.8);
  }

  .sm\:bg-rose-500\/90 {
    background-color: rgb(244 63 94 / 0.9);
  }

  .sm\:bg-rose-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(225 29 72 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-rose-600\/10 {
    background-color: rgb(225 29 72 / 0.1);
  }

  .sm\:bg-rose-600\/20 {
    background-color: rgb(225 29 72 / 0.2);
  }

  .sm\:bg-rose-600\/30 {
    background-color: rgb(225 29 72 / 0.3);
  }

  .sm\:bg-rose-600\/40 {
    background-color: rgb(225 29 72 / 0.4);
  }

  .sm\:bg-rose-600\/5 {
    background-color: rgb(225 29 72 / 0.05);
  }

  .sm\:bg-rose-600\/50 {
    background-color: rgb(225 29 72 / 0.5);
  }

  .sm\:bg-rose-600\/60 {
    background-color: rgb(225 29 72 / 0.6);
  }

  .sm\:bg-rose-600\/70 {
    background-color: rgb(225 29 72 / 0.7);
  }

  .sm\:bg-rose-600\/80 {
    background-color: rgb(225 29 72 / 0.8);
  }

  .sm\:bg-rose-600\/90 {
    background-color: rgb(225 29 72 / 0.9);
  }

  .sm\:bg-rose-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(190 18 60 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-rose-700\/10 {
    background-color: rgb(190 18 60 / 0.1);
  }

  .sm\:bg-rose-700\/20 {
    background-color: rgb(190 18 60 / 0.2);
  }

  .sm\:bg-rose-700\/30 {
    background-color: rgb(190 18 60 / 0.3);
  }

  .sm\:bg-rose-700\/40 {
    background-color: rgb(190 18 60 / 0.4);
  }

  .sm\:bg-rose-700\/5 {
    background-color: rgb(190 18 60 / 0.05);
  }

  .sm\:bg-rose-700\/50 {
    background-color: rgb(190 18 60 / 0.5);
  }

  .sm\:bg-rose-700\/60 {
    background-color: rgb(190 18 60 / 0.6);
  }

  .sm\:bg-rose-700\/70 {
    background-color: rgb(190 18 60 / 0.7);
  }

  .sm\:bg-rose-700\/80 {
    background-color: rgb(190 18 60 / 0.8);
  }

  .sm\:bg-rose-700\/90 {
    background-color: rgb(190 18 60 / 0.9);
  }

  .sm\:bg-rose-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(159 18 57 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-rose-800\/10 {
    background-color: rgb(159 18 57 / 0.1);
  }

  .sm\:bg-rose-800\/20 {
    background-color: rgb(159 18 57 / 0.2);
  }

  .sm\:bg-rose-800\/30 {
    background-color: rgb(159 18 57 / 0.3);
  }

  .sm\:bg-rose-800\/40 {
    background-color: rgb(159 18 57 / 0.4);
  }

  .sm\:bg-rose-800\/5 {
    background-color: rgb(159 18 57 / 0.05);
  }

  .sm\:bg-rose-800\/50 {
    background-color: rgb(159 18 57 / 0.5);
  }

  .sm\:bg-rose-800\/60 {
    background-color: rgb(159 18 57 / 0.6);
  }

  .sm\:bg-rose-800\/70 {
    background-color: rgb(159 18 57 / 0.7);
  }

  .sm\:bg-rose-800\/80 {
    background-color: rgb(159 18 57 / 0.8);
  }

  .sm\:bg-rose-800\/90 {
    background-color: rgb(159 18 57 / 0.9);
  }

  .sm\:bg-rose-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(136 19 55 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-rose-900\/10 {
    background-color: rgb(136 19 55 / 0.1);
  }

  .sm\:bg-rose-900\/20 {
    background-color: rgb(136 19 55 / 0.2);
  }

  .sm\:bg-rose-900\/30 {
    background-color: rgb(136 19 55 / 0.3);
  }

  .sm\:bg-rose-900\/40 {
    background-color: rgb(136 19 55 / 0.4);
  }

  .sm\:bg-rose-900\/5 {
    background-color: rgb(136 19 55 / 0.05);
  }

  .sm\:bg-rose-900\/50 {
    background-color: rgb(136 19 55 / 0.5);
  }

  .sm\:bg-rose-900\/60 {
    background-color: rgb(136 19 55 / 0.6);
  }

  .sm\:bg-rose-900\/70 {
    background-color: rgb(136 19 55 / 0.7);
  }

  .sm\:bg-rose-900\/80 {
    background-color: rgb(136 19 55 / 0.8);
  }

  .sm\:bg-rose-900\/90 {
    background-color: rgb(136 19 55 / 0.9);
  }

  .sm\:bg-rose-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(76 5 25 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-rose-950\/10 {
    background-color: rgb(76 5 25 / 0.1);
  }

  .sm\:bg-rose-950\/20 {
    background-color: rgb(76 5 25 / 0.2);
  }

  .sm\:bg-rose-950\/30 {
    background-color: rgb(76 5 25 / 0.3);
  }

  .sm\:bg-rose-950\/40 {
    background-color: rgb(76 5 25 / 0.4);
  }

  .sm\:bg-rose-950\/5 {
    background-color: rgb(76 5 25 / 0.05);
  }

  .sm\:bg-rose-950\/50 {
    background-color: rgb(76 5 25 / 0.5);
  }

  .sm\:bg-rose-950\/60 {
    background-color: rgb(76 5 25 / 0.6);
  }

  .sm\:bg-rose-950\/70 {
    background-color: rgb(76 5 25 / 0.7);
  }

  .sm\:bg-rose-950\/80 {
    background-color: rgb(76 5 25 / 0.8);
  }

  .sm\:bg-rose-950\/90 {
    background-color: rgb(76 5 25 / 0.9);
  }

  .sm\:bg-sky-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(224 242 254 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-sky-100\/10 {
    background-color: rgb(224 242 254 / 0.1);
  }

  .sm\:bg-sky-100\/20 {
    background-color: rgb(224 242 254 / 0.2);
  }

  .sm\:bg-sky-100\/30 {
    background-color: rgb(224 242 254 / 0.3);
  }

  .sm\:bg-sky-100\/40 {
    background-color: rgb(224 242 254 / 0.4);
  }

  .sm\:bg-sky-100\/5 {
    background-color: rgb(224 242 254 / 0.05);
  }

  .sm\:bg-sky-100\/50 {
    background-color: rgb(224 242 254 / 0.5);
  }

  .sm\:bg-sky-100\/60 {
    background-color: rgb(224 242 254 / 0.6);
  }

  .sm\:bg-sky-100\/70 {
    background-color: rgb(224 242 254 / 0.7);
  }

  .sm\:bg-sky-100\/80 {
    background-color: rgb(224 242 254 / 0.8);
  }

  .sm\:bg-sky-100\/90 {
    background-color: rgb(224 242 254 / 0.9);
  }

  .sm\:bg-sky-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(186 230 253 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-sky-200\/10 {
    background-color: rgb(186 230 253 / 0.1);
  }

  .sm\:bg-sky-200\/20 {
    background-color: rgb(186 230 253 / 0.2);
  }

  .sm\:bg-sky-200\/30 {
    background-color: rgb(186 230 253 / 0.3);
  }

  .sm\:bg-sky-200\/40 {
    background-color: rgb(186 230 253 / 0.4);
  }

  .sm\:bg-sky-200\/5 {
    background-color: rgb(186 230 253 / 0.05);
  }

  .sm\:bg-sky-200\/50 {
    background-color: rgb(186 230 253 / 0.5);
  }

  .sm\:bg-sky-200\/60 {
    background-color: rgb(186 230 253 / 0.6);
  }

  .sm\:bg-sky-200\/70 {
    background-color: rgb(186 230 253 / 0.7);
  }

  .sm\:bg-sky-200\/80 {
    background-color: rgb(186 230 253 / 0.8);
  }

  .sm\:bg-sky-200\/90 {
    background-color: rgb(186 230 253 / 0.9);
  }

  .sm\:bg-sky-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(125 211 252 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-sky-300\/10 {
    background-color: rgb(125 211 252 / 0.1);
  }

  .sm\:bg-sky-300\/20 {
    background-color: rgb(125 211 252 / 0.2);
  }

  .sm\:bg-sky-300\/30 {
    background-color: rgb(125 211 252 / 0.3);
  }

  .sm\:bg-sky-300\/40 {
    background-color: rgb(125 211 252 / 0.4);
  }

  .sm\:bg-sky-300\/5 {
    background-color: rgb(125 211 252 / 0.05);
  }

  .sm\:bg-sky-300\/50 {
    background-color: rgb(125 211 252 / 0.5);
  }

  .sm\:bg-sky-300\/60 {
    background-color: rgb(125 211 252 / 0.6);
  }

  .sm\:bg-sky-300\/70 {
    background-color: rgb(125 211 252 / 0.7);
  }

  .sm\:bg-sky-300\/80 {
    background-color: rgb(125 211 252 / 0.8);
  }

  .sm\:bg-sky-300\/90 {
    background-color: rgb(125 211 252 / 0.9);
  }

  .sm\:bg-sky-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(56 189 248 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-sky-400\/10 {
    background-color: rgb(56 189 248 / 0.1);
  }

  .sm\:bg-sky-400\/20 {
    background-color: rgb(56 189 248 / 0.2);
  }

  .sm\:bg-sky-400\/30 {
    background-color: rgb(56 189 248 / 0.3);
  }

  .sm\:bg-sky-400\/40 {
    background-color: rgb(56 189 248 / 0.4);
  }

  .sm\:bg-sky-400\/5 {
    background-color: rgb(56 189 248 / 0.05);
  }

  .sm\:bg-sky-400\/50 {
    background-color: rgb(56 189 248 / 0.5);
  }

  .sm\:bg-sky-400\/60 {
    background-color: rgb(56 189 248 / 0.6);
  }

  .sm\:bg-sky-400\/70 {
    background-color: rgb(56 189 248 / 0.7);
  }

  .sm\:bg-sky-400\/80 {
    background-color: rgb(56 189 248 / 0.8);
  }

  .sm\:bg-sky-400\/90 {
    background-color: rgb(56 189 248 / 0.9);
  }

  .sm\:bg-sky-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(240 249 255 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-sky-50\/10 {
    background-color: rgb(240 249 255 / 0.1);
  }

  .sm\:bg-sky-50\/20 {
    background-color: rgb(240 249 255 / 0.2);
  }

  .sm\:bg-sky-50\/30 {
    background-color: rgb(240 249 255 / 0.3);
  }

  .sm\:bg-sky-50\/40 {
    background-color: rgb(240 249 255 / 0.4);
  }

  .sm\:bg-sky-50\/5 {
    background-color: rgb(240 249 255 / 0.05);
  }

  .sm\:bg-sky-50\/50 {
    background-color: rgb(240 249 255 / 0.5);
  }

  .sm\:bg-sky-50\/60 {
    background-color: rgb(240 249 255 / 0.6);
  }

  .sm\:bg-sky-50\/70 {
    background-color: rgb(240 249 255 / 0.7);
  }

  .sm\:bg-sky-50\/80 {
    background-color: rgb(240 249 255 / 0.8);
  }

  .sm\:bg-sky-50\/90 {
    background-color: rgb(240 249 255 / 0.9);
  }

  .sm\:bg-sky-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(14 165 233 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-sky-500\/10 {
    background-color: rgb(14 165 233 / 0.1);
  }

  .sm\:bg-sky-500\/20 {
    background-color: rgb(14 165 233 / 0.2);
  }

  .sm\:bg-sky-500\/30 {
    background-color: rgb(14 165 233 / 0.3);
  }

  .sm\:bg-sky-500\/40 {
    background-color: rgb(14 165 233 / 0.4);
  }

  .sm\:bg-sky-500\/5 {
    background-color: rgb(14 165 233 / 0.05);
  }

  .sm\:bg-sky-500\/50 {
    background-color: rgb(14 165 233 / 0.5);
  }

  .sm\:bg-sky-500\/60 {
    background-color: rgb(14 165 233 / 0.6);
  }

  .sm\:bg-sky-500\/70 {
    background-color: rgb(14 165 233 / 0.7);
  }

  .sm\:bg-sky-500\/80 {
    background-color: rgb(14 165 233 / 0.8);
  }

  .sm\:bg-sky-500\/90 {
    background-color: rgb(14 165 233 / 0.9);
  }

  .sm\:bg-sky-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(2 132 199 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-sky-600\/10 {
    background-color: rgb(2 132 199 / 0.1);
  }

  .sm\:bg-sky-600\/20 {
    background-color: rgb(2 132 199 / 0.2);
  }

  .sm\:bg-sky-600\/30 {
    background-color: rgb(2 132 199 / 0.3);
  }

  .sm\:bg-sky-600\/40 {
    background-color: rgb(2 132 199 / 0.4);
  }

  .sm\:bg-sky-600\/5 {
    background-color: rgb(2 132 199 / 0.05);
  }

  .sm\:bg-sky-600\/50 {
    background-color: rgb(2 132 199 / 0.5);
  }

  .sm\:bg-sky-600\/60 {
    background-color: rgb(2 132 199 / 0.6);
  }

  .sm\:bg-sky-600\/70 {
    background-color: rgb(2 132 199 / 0.7);
  }

  .sm\:bg-sky-600\/80 {
    background-color: rgb(2 132 199 / 0.8);
  }

  .sm\:bg-sky-600\/90 {
    background-color: rgb(2 132 199 / 0.9);
  }

  .sm\:bg-sky-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(3 105 161 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-sky-700\/10 {
    background-color: rgb(3 105 161 / 0.1);
  }

  .sm\:bg-sky-700\/20 {
    background-color: rgb(3 105 161 / 0.2);
  }

  .sm\:bg-sky-700\/30 {
    background-color: rgb(3 105 161 / 0.3);
  }

  .sm\:bg-sky-700\/40 {
    background-color: rgb(3 105 161 / 0.4);
  }

  .sm\:bg-sky-700\/5 {
    background-color: rgb(3 105 161 / 0.05);
  }

  .sm\:bg-sky-700\/50 {
    background-color: rgb(3 105 161 / 0.5);
  }

  .sm\:bg-sky-700\/60 {
    background-color: rgb(3 105 161 / 0.6);
  }

  .sm\:bg-sky-700\/70 {
    background-color: rgb(3 105 161 / 0.7);
  }

  .sm\:bg-sky-700\/80 {
    background-color: rgb(3 105 161 / 0.8);
  }

  .sm\:bg-sky-700\/90 {
    background-color: rgb(3 105 161 / 0.9);
  }

  .sm\:bg-sky-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(7 89 133 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-sky-800\/10 {
    background-color: rgb(7 89 133 / 0.1);
  }

  .sm\:bg-sky-800\/20 {
    background-color: rgb(7 89 133 / 0.2);
  }

  .sm\:bg-sky-800\/30 {
    background-color: rgb(7 89 133 / 0.3);
  }

  .sm\:bg-sky-800\/40 {
    background-color: rgb(7 89 133 / 0.4);
  }

  .sm\:bg-sky-800\/5 {
    background-color: rgb(7 89 133 / 0.05);
  }

  .sm\:bg-sky-800\/50 {
    background-color: rgb(7 89 133 / 0.5);
  }

  .sm\:bg-sky-800\/60 {
    background-color: rgb(7 89 133 / 0.6);
  }

  .sm\:bg-sky-800\/70 {
    background-color: rgb(7 89 133 / 0.7);
  }

  .sm\:bg-sky-800\/80 {
    background-color: rgb(7 89 133 / 0.8);
  }

  .sm\:bg-sky-800\/90 {
    background-color: rgb(7 89 133 / 0.9);
  }

  .sm\:bg-sky-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(12 74 110 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-sky-900\/10 {
    background-color: rgb(12 74 110 / 0.1);
  }

  .sm\:bg-sky-900\/20 {
    background-color: rgb(12 74 110 / 0.2);
  }

  .sm\:bg-sky-900\/30 {
    background-color: rgb(12 74 110 / 0.3);
  }

  .sm\:bg-sky-900\/40 {
    background-color: rgb(12 74 110 / 0.4);
  }

  .sm\:bg-sky-900\/5 {
    background-color: rgb(12 74 110 / 0.05);
  }

  .sm\:bg-sky-900\/50 {
    background-color: rgb(12 74 110 / 0.5);
  }

  .sm\:bg-sky-900\/60 {
    background-color: rgb(12 74 110 / 0.6);
  }

  .sm\:bg-sky-900\/70 {
    background-color: rgb(12 74 110 / 0.7);
  }

  .sm\:bg-sky-900\/80 {
    background-color: rgb(12 74 110 / 0.8);
  }

  .sm\:bg-sky-900\/90 {
    background-color: rgb(12 74 110 / 0.9);
  }

  .sm\:bg-sky-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(8 47 73 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-sky-950\/10 {
    background-color: rgb(8 47 73 / 0.1);
  }

  .sm\:bg-sky-950\/20 {
    background-color: rgb(8 47 73 / 0.2);
  }

  .sm\:bg-sky-950\/30 {
    background-color: rgb(8 47 73 / 0.3);
  }

  .sm\:bg-sky-950\/40 {
    background-color: rgb(8 47 73 / 0.4);
  }

  .sm\:bg-sky-950\/5 {
    background-color: rgb(8 47 73 / 0.05);
  }

  .sm\:bg-sky-950\/50 {
    background-color: rgb(8 47 73 / 0.5);
  }

  .sm\:bg-sky-950\/60 {
    background-color: rgb(8 47 73 / 0.6);
  }

  .sm\:bg-sky-950\/70 {
    background-color: rgb(8 47 73 / 0.7);
  }

  .sm\:bg-sky-950\/80 {
    background-color: rgb(8 47 73 / 0.8);
  }

  .sm\:bg-sky-950\/90 {
    background-color: rgb(8 47 73 / 0.9);
  }

  .sm\:bg-slate-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-slate-100\/10 {
    background-color: rgb(241 245 249 / 0.1);
  }

  .sm\:bg-slate-100\/20 {
    background-color: rgb(241 245 249 / 0.2);
  }

  .sm\:bg-slate-100\/30 {
    background-color: rgb(241 245 249 / 0.3);
  }

  .sm\:bg-slate-100\/40 {
    background-color: rgb(241 245 249 / 0.4);
  }

  .sm\:bg-slate-100\/5 {
    background-color: rgb(241 245 249 / 0.05);
  }

  .sm\:bg-slate-100\/50 {
    background-color: rgb(241 245 249 / 0.5);
  }

  .sm\:bg-slate-100\/60 {
    background-color: rgb(241 245 249 / 0.6);
  }

  .sm\:bg-slate-100\/70 {
    background-color: rgb(241 245 249 / 0.7);
  }

  .sm\:bg-slate-100\/80 {
    background-color: rgb(241 245 249 / 0.8);
  }

  .sm\:bg-slate-100\/90 {
    background-color: rgb(241 245 249 / 0.9);
  }

  .sm\:bg-slate-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(226 232 240 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-slate-200\/10 {
    background-color: rgb(226 232 240 / 0.1);
  }

  .sm\:bg-slate-200\/20 {
    background-color: rgb(226 232 240 / 0.2);
  }

  .sm\:bg-slate-200\/30 {
    background-color: rgb(226 232 240 / 0.3);
  }

  .sm\:bg-slate-200\/40 {
    background-color: rgb(226 232 240 / 0.4);
  }

  .sm\:bg-slate-200\/5 {
    background-color: rgb(226 232 240 / 0.05);
  }

  .sm\:bg-slate-200\/50 {
    background-color: rgb(226 232 240 / 0.5);
  }

  .sm\:bg-slate-200\/60 {
    background-color: rgb(226 232 240 / 0.6);
  }

  .sm\:bg-slate-200\/70 {
    background-color: rgb(226 232 240 / 0.7);
  }

  .sm\:bg-slate-200\/80 {
    background-color: rgb(226 232 240 / 0.8);
  }

  .sm\:bg-slate-200\/90 {
    background-color: rgb(226 232 240 / 0.9);
  }

  .sm\:bg-slate-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(203 213 225 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-slate-300\/10 {
    background-color: rgb(203 213 225 / 0.1);
  }

  .sm\:bg-slate-300\/20 {
    background-color: rgb(203 213 225 / 0.2);
  }

  .sm\:bg-slate-300\/30 {
    background-color: rgb(203 213 225 / 0.3);
  }

  .sm\:bg-slate-300\/40 {
    background-color: rgb(203 213 225 / 0.4);
  }

  .sm\:bg-slate-300\/5 {
    background-color: rgb(203 213 225 / 0.05);
  }

  .sm\:bg-slate-300\/50 {
    background-color: rgb(203 213 225 / 0.5);
  }

  .sm\:bg-slate-300\/60 {
    background-color: rgb(203 213 225 / 0.6);
  }

  .sm\:bg-slate-300\/70 {
    background-color: rgb(203 213 225 / 0.7);
  }

  .sm\:bg-slate-300\/80 {
    background-color: rgb(203 213 225 / 0.8);
  }

  .sm\:bg-slate-300\/90 {
    background-color: rgb(203 213 225 / 0.9);
  }

  .sm\:bg-slate-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(148 163 184 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-slate-400\/10 {
    background-color: rgb(148 163 184 / 0.1);
  }

  .sm\:bg-slate-400\/20 {
    background-color: rgb(148 163 184 / 0.2);
  }

  .sm\:bg-slate-400\/30 {
    background-color: rgb(148 163 184 / 0.3);
  }

  .sm\:bg-slate-400\/40 {
    background-color: rgb(148 163 184 / 0.4);
  }

  .sm\:bg-slate-400\/5 {
    background-color: rgb(148 163 184 / 0.05);
  }

  .sm\:bg-slate-400\/50 {
    background-color: rgb(148 163 184 / 0.5);
  }

  .sm\:bg-slate-400\/60 {
    background-color: rgb(148 163 184 / 0.6);
  }

  .sm\:bg-slate-400\/70 {
    background-color: rgb(148 163 184 / 0.7);
  }

  .sm\:bg-slate-400\/80 {
    background-color: rgb(148 163 184 / 0.8);
  }

  .sm\:bg-slate-400\/90 {
    background-color: rgb(148 163 184 / 0.9);
  }

  .sm\:bg-slate-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-slate-50\/10 {
    background-color: rgb(248 250 252 / 0.1);
  }

  .sm\:bg-slate-50\/20 {
    background-color: rgb(248 250 252 / 0.2);
  }

  .sm\:bg-slate-50\/30 {
    background-color: rgb(248 250 252 / 0.3);
  }

  .sm\:bg-slate-50\/40 {
    background-color: rgb(248 250 252 / 0.4);
  }

  .sm\:bg-slate-50\/5 {
    background-color: rgb(248 250 252 / 0.05);
  }

  .sm\:bg-slate-50\/50 {
    background-color: rgb(248 250 252 / 0.5);
  }

  .sm\:bg-slate-50\/60 {
    background-color: rgb(248 250 252 / 0.6);
  }

  .sm\:bg-slate-50\/70 {
    background-color: rgb(248 250 252 / 0.7);
  }

  .sm\:bg-slate-50\/80 {
    background-color: rgb(248 250 252 / 0.8);
  }

  .sm\:bg-slate-50\/90 {
    background-color: rgb(248 250 252 / 0.9);
  }

  .sm\:bg-slate-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(100 116 139 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-slate-500\/10 {
    background-color: rgb(100 116 139 / 0.1);
  }

  .sm\:bg-slate-500\/20 {
    background-color: rgb(100 116 139 / 0.2);
  }

  .sm\:bg-slate-500\/30 {
    background-color: rgb(100 116 139 / 0.3);
  }

  .sm\:bg-slate-500\/40 {
    background-color: rgb(100 116 139 / 0.4);
  }

  .sm\:bg-slate-500\/5 {
    background-color: rgb(100 116 139 / 0.05);
  }

  .sm\:bg-slate-500\/50 {
    background-color: rgb(100 116 139 / 0.5);
  }

  .sm\:bg-slate-500\/60 {
    background-color: rgb(100 116 139 / 0.6);
  }

  .sm\:bg-slate-500\/70 {
    background-color: rgb(100 116 139 / 0.7);
  }

  .sm\:bg-slate-500\/80 {
    background-color: rgb(100 116 139 / 0.8);
  }

  .sm\:bg-slate-500\/90 {
    background-color: rgb(100 116 139 / 0.9);
  }

  .sm\:bg-slate-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(71 85 105 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-slate-600\/10 {
    background-color: rgb(71 85 105 / 0.1);
  }

  .sm\:bg-slate-600\/20 {
    background-color: rgb(71 85 105 / 0.2);
  }

  .sm\:bg-slate-600\/30 {
    background-color: rgb(71 85 105 / 0.3);
  }

  .sm\:bg-slate-600\/40 {
    background-color: rgb(71 85 105 / 0.4);
  }

  .sm\:bg-slate-600\/5 {
    background-color: rgb(71 85 105 / 0.05);
  }

  .sm\:bg-slate-600\/50 {
    background-color: rgb(71 85 105 / 0.5);
  }

  .sm\:bg-slate-600\/60 {
    background-color: rgb(71 85 105 / 0.6);
  }

  .sm\:bg-slate-600\/70 {
    background-color: rgb(71 85 105 / 0.7);
  }

  .sm\:bg-slate-600\/80 {
    background-color: rgb(71 85 105 / 0.8);
  }

  .sm\:bg-slate-600\/90 {
    background-color: rgb(71 85 105 / 0.9);
  }

  .sm\:bg-slate-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(51 65 85 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-slate-700\/10 {
    background-color: rgb(51 65 85 / 0.1);
  }

  .sm\:bg-slate-700\/20 {
    background-color: rgb(51 65 85 / 0.2);
  }

  .sm\:bg-slate-700\/30 {
    background-color: rgb(51 65 85 / 0.3);
  }

  .sm\:bg-slate-700\/40 {
    background-color: rgb(51 65 85 / 0.4);
  }

  .sm\:bg-slate-700\/5 {
    background-color: rgb(51 65 85 / 0.05);
  }

  .sm\:bg-slate-700\/50 {
    background-color: rgb(51 65 85 / 0.5);
  }

  .sm\:bg-slate-700\/60 {
    background-color: rgb(51 65 85 / 0.6);
  }

  .sm\:bg-slate-700\/70 {
    background-color: rgb(51 65 85 / 0.7);
  }

  .sm\:bg-slate-700\/80 {
    background-color: rgb(51 65 85 / 0.8);
  }

  .sm\:bg-slate-700\/90 {
    background-color: rgb(51 65 85 / 0.9);
  }

  .sm\:bg-slate-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(30 41 59 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-slate-800\/10 {
    background-color: rgb(30 41 59 / 0.1);
  }

  .sm\:bg-slate-800\/20 {
    background-color: rgb(30 41 59 / 0.2);
  }

  .sm\:bg-slate-800\/30 {
    background-color: rgb(30 41 59 / 0.3);
  }

  .sm\:bg-slate-800\/40 {
    background-color: rgb(30 41 59 / 0.4);
  }

  .sm\:bg-slate-800\/5 {
    background-color: rgb(30 41 59 / 0.05);
  }

  .sm\:bg-slate-800\/50 {
    background-color: rgb(30 41 59 / 0.5);
  }

  .sm\:bg-slate-800\/60 {
    background-color: rgb(30 41 59 / 0.6);
  }

  .sm\:bg-slate-800\/70 {
    background-color: rgb(30 41 59 / 0.7);
  }

  .sm\:bg-slate-800\/80 {
    background-color: rgb(30 41 59 / 0.8);
  }

  .sm\:bg-slate-800\/90 {
    background-color: rgb(30 41 59 / 0.9);
  }

  .sm\:bg-slate-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(15 23 42 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-slate-900\/10 {
    background-color: rgb(15 23 42 / 0.1);
  }

  .sm\:bg-slate-900\/20 {
    background-color: rgb(15 23 42 / 0.2);
  }

  .sm\:bg-slate-900\/30 {
    background-color: rgb(15 23 42 / 0.3);
  }

  .sm\:bg-slate-900\/40 {
    background-color: rgb(15 23 42 / 0.4);
  }

  .sm\:bg-slate-900\/5 {
    background-color: rgb(15 23 42 / 0.05);
  }

  .sm\:bg-slate-900\/50 {
    background-color: rgb(15 23 42 / 0.5);
  }

  .sm\:bg-slate-900\/60 {
    background-color: rgb(15 23 42 / 0.6);
  }

  .sm\:bg-slate-900\/70 {
    background-color: rgb(15 23 42 / 0.7);
  }

  .sm\:bg-slate-900\/80 {
    background-color: rgb(15 23 42 / 0.8);
  }

  .sm\:bg-slate-900\/90 {
    background-color: rgb(15 23 42 / 0.9);
  }

  .sm\:bg-slate-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(2 6 23 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-slate-950\/10 {
    background-color: rgb(2 6 23 / 0.1);
  }

  .sm\:bg-slate-950\/20 {
    background-color: rgb(2 6 23 / 0.2);
  }

  .sm\:bg-slate-950\/30 {
    background-color: rgb(2 6 23 / 0.3);
  }

  .sm\:bg-slate-950\/40 {
    background-color: rgb(2 6 23 / 0.4);
  }

  .sm\:bg-slate-950\/5 {
    background-color: rgb(2 6 23 / 0.05);
  }

  .sm\:bg-slate-950\/50 {
    background-color: rgb(2 6 23 / 0.5);
  }

  .sm\:bg-slate-950\/60 {
    background-color: rgb(2 6 23 / 0.6);
  }

  .sm\:bg-slate-950\/70 {
    background-color: rgb(2 6 23 / 0.7);
  }

  .sm\:bg-slate-950\/80 {
    background-color: rgb(2 6 23 / 0.8);
  }

  .sm\:bg-slate-950\/90 {
    background-color: rgb(2 6 23 / 0.9);
  }

  .sm\:bg-stone-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(245 245 244 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-stone-100\/10 {
    background-color: rgb(245 245 244 / 0.1);
  }

  .sm\:bg-stone-100\/20 {
    background-color: rgb(245 245 244 / 0.2);
  }

  .sm\:bg-stone-100\/30 {
    background-color: rgb(245 245 244 / 0.3);
  }

  .sm\:bg-stone-100\/40 {
    background-color: rgb(245 245 244 / 0.4);
  }

  .sm\:bg-stone-100\/5 {
    background-color: rgb(245 245 244 / 0.05);
  }

  .sm\:bg-stone-100\/50 {
    background-color: rgb(245 245 244 / 0.5);
  }

  .sm\:bg-stone-100\/60 {
    background-color: rgb(245 245 244 / 0.6);
  }

  .sm\:bg-stone-100\/70 {
    background-color: rgb(245 245 244 / 0.7);
  }

  .sm\:bg-stone-100\/80 {
    background-color: rgb(245 245 244 / 0.8);
  }

  .sm\:bg-stone-100\/90 {
    background-color: rgb(245 245 244 / 0.9);
  }

  .sm\:bg-stone-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(231 229 228 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-stone-200\/10 {
    background-color: rgb(231 229 228 / 0.1);
  }

  .sm\:bg-stone-200\/20 {
    background-color: rgb(231 229 228 / 0.2);
  }

  .sm\:bg-stone-200\/30 {
    background-color: rgb(231 229 228 / 0.3);
  }

  .sm\:bg-stone-200\/40 {
    background-color: rgb(231 229 228 / 0.4);
  }

  .sm\:bg-stone-200\/5 {
    background-color: rgb(231 229 228 / 0.05);
  }

  .sm\:bg-stone-200\/50 {
    background-color: rgb(231 229 228 / 0.5);
  }

  .sm\:bg-stone-200\/60 {
    background-color: rgb(231 229 228 / 0.6);
  }

  .sm\:bg-stone-200\/70 {
    background-color: rgb(231 229 228 / 0.7);
  }

  .sm\:bg-stone-200\/80 {
    background-color: rgb(231 229 228 / 0.8);
  }

  .sm\:bg-stone-200\/90 {
    background-color: rgb(231 229 228 / 0.9);
  }

  .sm\:bg-stone-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(214 211 209 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-stone-300\/10 {
    background-color: rgb(214 211 209 / 0.1);
  }

  .sm\:bg-stone-300\/20 {
    background-color: rgb(214 211 209 / 0.2);
  }

  .sm\:bg-stone-300\/30 {
    background-color: rgb(214 211 209 / 0.3);
  }

  .sm\:bg-stone-300\/40 {
    background-color: rgb(214 211 209 / 0.4);
  }

  .sm\:bg-stone-300\/5 {
    background-color: rgb(214 211 209 / 0.05);
  }

  .sm\:bg-stone-300\/50 {
    background-color: rgb(214 211 209 / 0.5);
  }

  .sm\:bg-stone-300\/60 {
    background-color: rgb(214 211 209 / 0.6);
  }

  .sm\:bg-stone-300\/70 {
    background-color: rgb(214 211 209 / 0.7);
  }

  .sm\:bg-stone-300\/80 {
    background-color: rgb(214 211 209 / 0.8);
  }

  .sm\:bg-stone-300\/90 {
    background-color: rgb(214 211 209 / 0.9);
  }

  .sm\:bg-stone-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(168 162 158 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-stone-400\/10 {
    background-color: rgb(168 162 158 / 0.1);
  }

  .sm\:bg-stone-400\/20 {
    background-color: rgb(168 162 158 / 0.2);
  }

  .sm\:bg-stone-400\/30 {
    background-color: rgb(168 162 158 / 0.3);
  }

  .sm\:bg-stone-400\/40 {
    background-color: rgb(168 162 158 / 0.4);
  }

  .sm\:bg-stone-400\/5 {
    background-color: rgb(168 162 158 / 0.05);
  }

  .sm\:bg-stone-400\/50 {
    background-color: rgb(168 162 158 / 0.5);
  }

  .sm\:bg-stone-400\/60 {
    background-color: rgb(168 162 158 / 0.6);
  }

  .sm\:bg-stone-400\/70 {
    background-color: rgb(168 162 158 / 0.7);
  }

  .sm\:bg-stone-400\/80 {
    background-color: rgb(168 162 158 / 0.8);
  }

  .sm\:bg-stone-400\/90 {
    background-color: rgb(168 162 158 / 0.9);
  }

  .sm\:bg-stone-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 250 249 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-stone-50\/10 {
    background-color: rgb(250 250 249 / 0.1);
  }

  .sm\:bg-stone-50\/20 {
    background-color: rgb(250 250 249 / 0.2);
  }

  .sm\:bg-stone-50\/30 {
    background-color: rgb(250 250 249 / 0.3);
  }

  .sm\:bg-stone-50\/40 {
    background-color: rgb(250 250 249 / 0.4);
  }

  .sm\:bg-stone-50\/5 {
    background-color: rgb(250 250 249 / 0.05);
  }

  .sm\:bg-stone-50\/50 {
    background-color: rgb(250 250 249 / 0.5);
  }

  .sm\:bg-stone-50\/60 {
    background-color: rgb(250 250 249 / 0.6);
  }

  .sm\:bg-stone-50\/70 {
    background-color: rgb(250 250 249 / 0.7);
  }

  .sm\:bg-stone-50\/80 {
    background-color: rgb(250 250 249 / 0.8);
  }

  .sm\:bg-stone-50\/90 {
    background-color: rgb(250 250 249 / 0.9);
  }

  .sm\:bg-stone-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(120 113 108 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-stone-500\/10 {
    background-color: rgb(120 113 108 / 0.1);
  }

  .sm\:bg-stone-500\/20 {
    background-color: rgb(120 113 108 / 0.2);
  }

  .sm\:bg-stone-500\/30 {
    background-color: rgb(120 113 108 / 0.3);
  }

  .sm\:bg-stone-500\/40 {
    background-color: rgb(120 113 108 / 0.4);
  }

  .sm\:bg-stone-500\/5 {
    background-color: rgb(120 113 108 / 0.05);
  }

  .sm\:bg-stone-500\/50 {
    background-color: rgb(120 113 108 / 0.5);
  }

  .sm\:bg-stone-500\/60 {
    background-color: rgb(120 113 108 / 0.6);
  }

  .sm\:bg-stone-500\/70 {
    background-color: rgb(120 113 108 / 0.7);
  }

  .sm\:bg-stone-500\/80 {
    background-color: rgb(120 113 108 / 0.8);
  }

  .sm\:bg-stone-500\/90 {
    background-color: rgb(120 113 108 / 0.9);
  }

  .sm\:bg-stone-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(87 83 78 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-stone-600\/10 {
    background-color: rgb(87 83 78 / 0.1);
  }

  .sm\:bg-stone-600\/20 {
    background-color: rgb(87 83 78 / 0.2);
  }

  .sm\:bg-stone-600\/30 {
    background-color: rgb(87 83 78 / 0.3);
  }

  .sm\:bg-stone-600\/40 {
    background-color: rgb(87 83 78 / 0.4);
  }

  .sm\:bg-stone-600\/5 {
    background-color: rgb(87 83 78 / 0.05);
  }

  .sm\:bg-stone-600\/50 {
    background-color: rgb(87 83 78 / 0.5);
  }

  .sm\:bg-stone-600\/60 {
    background-color: rgb(87 83 78 / 0.6);
  }

  .sm\:bg-stone-600\/70 {
    background-color: rgb(87 83 78 / 0.7);
  }

  .sm\:bg-stone-600\/80 {
    background-color: rgb(87 83 78 / 0.8);
  }

  .sm\:bg-stone-600\/90 {
    background-color: rgb(87 83 78 / 0.9);
  }

  .sm\:bg-stone-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(68 64 60 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-stone-700\/10 {
    background-color: rgb(68 64 60 / 0.1);
  }

  .sm\:bg-stone-700\/20 {
    background-color: rgb(68 64 60 / 0.2);
  }

  .sm\:bg-stone-700\/30 {
    background-color: rgb(68 64 60 / 0.3);
  }

  .sm\:bg-stone-700\/40 {
    background-color: rgb(68 64 60 / 0.4);
  }

  .sm\:bg-stone-700\/5 {
    background-color: rgb(68 64 60 / 0.05);
  }

  .sm\:bg-stone-700\/50 {
    background-color: rgb(68 64 60 / 0.5);
  }

  .sm\:bg-stone-700\/60 {
    background-color: rgb(68 64 60 / 0.6);
  }

  .sm\:bg-stone-700\/70 {
    background-color: rgb(68 64 60 / 0.7);
  }

  .sm\:bg-stone-700\/80 {
    background-color: rgb(68 64 60 / 0.8);
  }

  .sm\:bg-stone-700\/90 {
    background-color: rgb(68 64 60 / 0.9);
  }

  .sm\:bg-stone-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(41 37 36 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-stone-800\/10 {
    background-color: rgb(41 37 36 / 0.1);
  }

  .sm\:bg-stone-800\/20 {
    background-color: rgb(41 37 36 / 0.2);
  }

  .sm\:bg-stone-800\/30 {
    background-color: rgb(41 37 36 / 0.3);
  }

  .sm\:bg-stone-800\/40 {
    background-color: rgb(41 37 36 / 0.4);
  }

  .sm\:bg-stone-800\/5 {
    background-color: rgb(41 37 36 / 0.05);
  }

  .sm\:bg-stone-800\/50 {
    background-color: rgb(41 37 36 / 0.5);
  }

  .sm\:bg-stone-800\/60 {
    background-color: rgb(41 37 36 / 0.6);
  }

  .sm\:bg-stone-800\/70 {
    background-color: rgb(41 37 36 / 0.7);
  }

  .sm\:bg-stone-800\/80 {
    background-color: rgb(41 37 36 / 0.8);
  }

  .sm\:bg-stone-800\/90 {
    background-color: rgb(41 37 36 / 0.9);
  }

  .sm\:bg-stone-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(28 25 23 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-stone-900\/10 {
    background-color: rgb(28 25 23 / 0.1);
  }

  .sm\:bg-stone-900\/20 {
    background-color: rgb(28 25 23 / 0.2);
  }

  .sm\:bg-stone-900\/30 {
    background-color: rgb(28 25 23 / 0.3);
  }

  .sm\:bg-stone-900\/40 {
    background-color: rgb(28 25 23 / 0.4);
  }

  .sm\:bg-stone-900\/5 {
    background-color: rgb(28 25 23 / 0.05);
  }

  .sm\:bg-stone-900\/50 {
    background-color: rgb(28 25 23 / 0.5);
  }

  .sm\:bg-stone-900\/60 {
    background-color: rgb(28 25 23 / 0.6);
  }

  .sm\:bg-stone-900\/70 {
    background-color: rgb(28 25 23 / 0.7);
  }

  .sm\:bg-stone-900\/80 {
    background-color: rgb(28 25 23 / 0.8);
  }

  .sm\:bg-stone-900\/90 {
    background-color: rgb(28 25 23 / 0.9);
  }

  .sm\:bg-stone-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(12 10 9 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-stone-950\/10 {
    background-color: rgb(12 10 9 / 0.1);
  }

  .sm\:bg-stone-950\/20 {
    background-color: rgb(12 10 9 / 0.2);
  }

  .sm\:bg-stone-950\/30 {
    background-color: rgb(12 10 9 / 0.3);
  }

  .sm\:bg-stone-950\/40 {
    background-color: rgb(12 10 9 / 0.4);
  }

  .sm\:bg-stone-950\/5 {
    background-color: rgb(12 10 9 / 0.05);
  }

  .sm\:bg-stone-950\/50 {
    background-color: rgb(12 10 9 / 0.5);
  }

  .sm\:bg-stone-950\/60 {
    background-color: rgb(12 10 9 / 0.6);
  }

  .sm\:bg-stone-950\/70 {
    background-color: rgb(12 10 9 / 0.7);
  }

  .sm\:bg-stone-950\/80 {
    background-color: rgb(12 10 9 / 0.8);
  }

  .sm\:bg-stone-950\/90 {
    background-color: rgb(12 10 9 / 0.9);
  }

  .sm\:bg-teal-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(204 251 241 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-teal-100\/10 {
    background-color: rgb(204 251 241 / 0.1);
  }

  .sm\:bg-teal-100\/20 {
    background-color: rgb(204 251 241 / 0.2);
  }

  .sm\:bg-teal-100\/30 {
    background-color: rgb(204 251 241 / 0.3);
  }

  .sm\:bg-teal-100\/40 {
    background-color: rgb(204 251 241 / 0.4);
  }

  .sm\:bg-teal-100\/5 {
    background-color: rgb(204 251 241 / 0.05);
  }

  .sm\:bg-teal-100\/50 {
    background-color: rgb(204 251 241 / 0.5);
  }

  .sm\:bg-teal-100\/60 {
    background-color: rgb(204 251 241 / 0.6);
  }

  .sm\:bg-teal-100\/70 {
    background-color: rgb(204 251 241 / 0.7);
  }

  .sm\:bg-teal-100\/80 {
    background-color: rgb(204 251 241 / 0.8);
  }

  .sm\:bg-teal-100\/90 {
    background-color: rgb(204 251 241 / 0.9);
  }

  .sm\:bg-teal-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(153 246 228 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-teal-200\/10 {
    background-color: rgb(153 246 228 / 0.1);
  }

  .sm\:bg-teal-200\/20 {
    background-color: rgb(153 246 228 / 0.2);
  }

  .sm\:bg-teal-200\/30 {
    background-color: rgb(153 246 228 / 0.3);
  }

  .sm\:bg-teal-200\/40 {
    background-color: rgb(153 246 228 / 0.4);
  }

  .sm\:bg-teal-200\/5 {
    background-color: rgb(153 246 228 / 0.05);
  }

  .sm\:bg-teal-200\/50 {
    background-color: rgb(153 246 228 / 0.5);
  }

  .sm\:bg-teal-200\/60 {
    background-color: rgb(153 246 228 / 0.6);
  }

  .sm\:bg-teal-200\/70 {
    background-color: rgb(153 246 228 / 0.7);
  }

  .sm\:bg-teal-200\/80 {
    background-color: rgb(153 246 228 / 0.8);
  }

  .sm\:bg-teal-200\/90 {
    background-color: rgb(153 246 228 / 0.9);
  }

  .sm\:bg-teal-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(94 234 212 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-teal-300\/10 {
    background-color: rgb(94 234 212 / 0.1);
  }

  .sm\:bg-teal-300\/20 {
    background-color: rgb(94 234 212 / 0.2);
  }

  .sm\:bg-teal-300\/30 {
    background-color: rgb(94 234 212 / 0.3);
  }

  .sm\:bg-teal-300\/40 {
    background-color: rgb(94 234 212 / 0.4);
  }

  .sm\:bg-teal-300\/5 {
    background-color: rgb(94 234 212 / 0.05);
  }

  .sm\:bg-teal-300\/50 {
    background-color: rgb(94 234 212 / 0.5);
  }

  .sm\:bg-teal-300\/60 {
    background-color: rgb(94 234 212 / 0.6);
  }

  .sm\:bg-teal-300\/70 {
    background-color: rgb(94 234 212 / 0.7);
  }

  .sm\:bg-teal-300\/80 {
    background-color: rgb(94 234 212 / 0.8);
  }

  .sm\:bg-teal-300\/90 {
    background-color: rgb(94 234 212 / 0.9);
  }

  .sm\:bg-teal-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(45 212 191 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-teal-400\/10 {
    background-color: rgb(45 212 191 / 0.1);
  }

  .sm\:bg-teal-400\/20 {
    background-color: rgb(45 212 191 / 0.2);
  }

  .sm\:bg-teal-400\/30 {
    background-color: rgb(45 212 191 / 0.3);
  }

  .sm\:bg-teal-400\/40 {
    background-color: rgb(45 212 191 / 0.4);
  }

  .sm\:bg-teal-400\/5 {
    background-color: rgb(45 212 191 / 0.05);
  }

  .sm\:bg-teal-400\/50 {
    background-color: rgb(45 212 191 / 0.5);
  }

  .sm\:bg-teal-400\/60 {
    background-color: rgb(45 212 191 / 0.6);
  }

  .sm\:bg-teal-400\/70 {
    background-color: rgb(45 212 191 / 0.7);
  }

  .sm\:bg-teal-400\/80 {
    background-color: rgb(45 212 191 / 0.8);
  }

  .sm\:bg-teal-400\/90 {
    background-color: rgb(45 212 191 / 0.9);
  }

  .sm\:bg-teal-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(240 253 250 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-teal-50\/10 {
    background-color: rgb(240 253 250 / 0.1);
  }

  .sm\:bg-teal-50\/20 {
    background-color: rgb(240 253 250 / 0.2);
  }

  .sm\:bg-teal-50\/30 {
    background-color: rgb(240 253 250 / 0.3);
  }

  .sm\:bg-teal-50\/40 {
    background-color: rgb(240 253 250 / 0.4);
  }

  .sm\:bg-teal-50\/5 {
    background-color: rgb(240 253 250 / 0.05);
  }

  .sm\:bg-teal-50\/50 {
    background-color: rgb(240 253 250 / 0.5);
  }

  .sm\:bg-teal-50\/60 {
    background-color: rgb(240 253 250 / 0.6);
  }

  .sm\:bg-teal-50\/70 {
    background-color: rgb(240 253 250 / 0.7);
  }

  .sm\:bg-teal-50\/80 {
    background-color: rgb(240 253 250 / 0.8);
  }

  .sm\:bg-teal-50\/90 {
    background-color: rgb(240 253 250 / 0.9);
  }

  .sm\:bg-teal-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(20 184 166 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-teal-500\/10 {
    background-color: rgb(20 184 166 / 0.1);
  }

  .sm\:bg-teal-500\/20 {
    background-color: rgb(20 184 166 / 0.2);
  }

  .sm\:bg-teal-500\/30 {
    background-color: rgb(20 184 166 / 0.3);
  }

  .sm\:bg-teal-500\/40 {
    background-color: rgb(20 184 166 / 0.4);
  }

  .sm\:bg-teal-500\/5 {
    background-color: rgb(20 184 166 / 0.05);
  }

  .sm\:bg-teal-500\/50 {
    background-color: rgb(20 184 166 / 0.5);
  }

  .sm\:bg-teal-500\/60 {
    background-color: rgb(20 184 166 / 0.6);
  }

  .sm\:bg-teal-500\/70 {
    background-color: rgb(20 184 166 / 0.7);
  }

  .sm\:bg-teal-500\/80 {
    background-color: rgb(20 184 166 / 0.8);
  }

  .sm\:bg-teal-500\/90 {
    background-color: rgb(20 184 166 / 0.9);
  }

  .sm\:bg-teal-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(13 148 136 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-teal-600\/10 {
    background-color: rgb(13 148 136 / 0.1);
  }

  .sm\:bg-teal-600\/20 {
    background-color: rgb(13 148 136 / 0.2);
  }

  .sm\:bg-teal-600\/30 {
    background-color: rgb(13 148 136 / 0.3);
  }

  .sm\:bg-teal-600\/40 {
    background-color: rgb(13 148 136 / 0.4);
  }

  .sm\:bg-teal-600\/5 {
    background-color: rgb(13 148 136 / 0.05);
  }

  .sm\:bg-teal-600\/50 {
    background-color: rgb(13 148 136 / 0.5);
  }

  .sm\:bg-teal-600\/60 {
    background-color: rgb(13 148 136 / 0.6);
  }

  .sm\:bg-teal-600\/70 {
    background-color: rgb(13 148 136 / 0.7);
  }

  .sm\:bg-teal-600\/80 {
    background-color: rgb(13 148 136 / 0.8);
  }

  .sm\:bg-teal-600\/90 {
    background-color: rgb(13 148 136 / 0.9);
  }

  .sm\:bg-teal-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(15 118 110 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-teal-700\/10 {
    background-color: rgb(15 118 110 / 0.1);
  }

  .sm\:bg-teal-700\/20 {
    background-color: rgb(15 118 110 / 0.2);
  }

  .sm\:bg-teal-700\/30 {
    background-color: rgb(15 118 110 / 0.3);
  }

  .sm\:bg-teal-700\/40 {
    background-color: rgb(15 118 110 / 0.4);
  }

  .sm\:bg-teal-700\/5 {
    background-color: rgb(15 118 110 / 0.05);
  }

  .sm\:bg-teal-700\/50 {
    background-color: rgb(15 118 110 / 0.5);
  }

  .sm\:bg-teal-700\/60 {
    background-color: rgb(15 118 110 / 0.6);
  }

  .sm\:bg-teal-700\/70 {
    background-color: rgb(15 118 110 / 0.7);
  }

  .sm\:bg-teal-700\/80 {
    background-color: rgb(15 118 110 / 0.8);
  }

  .sm\:bg-teal-700\/90 {
    background-color: rgb(15 118 110 / 0.9);
  }

  .sm\:bg-teal-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(17 94 89 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-teal-800\/10 {
    background-color: rgb(17 94 89 / 0.1);
  }

  .sm\:bg-teal-800\/20 {
    background-color: rgb(17 94 89 / 0.2);
  }

  .sm\:bg-teal-800\/30 {
    background-color: rgb(17 94 89 / 0.3);
  }

  .sm\:bg-teal-800\/40 {
    background-color: rgb(17 94 89 / 0.4);
  }

  .sm\:bg-teal-800\/5 {
    background-color: rgb(17 94 89 / 0.05);
  }

  .sm\:bg-teal-800\/50 {
    background-color: rgb(17 94 89 / 0.5);
  }

  .sm\:bg-teal-800\/60 {
    background-color: rgb(17 94 89 / 0.6);
  }

  .sm\:bg-teal-800\/70 {
    background-color: rgb(17 94 89 / 0.7);
  }

  .sm\:bg-teal-800\/80 {
    background-color: rgb(17 94 89 / 0.8);
  }

  .sm\:bg-teal-800\/90 {
    background-color: rgb(17 94 89 / 0.9);
  }

  .sm\:bg-teal-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(19 78 74 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-teal-900\/10 {
    background-color: rgb(19 78 74 / 0.1);
  }

  .sm\:bg-teal-900\/20 {
    background-color: rgb(19 78 74 / 0.2);
  }

  .sm\:bg-teal-900\/30 {
    background-color: rgb(19 78 74 / 0.3);
  }

  .sm\:bg-teal-900\/40 {
    background-color: rgb(19 78 74 / 0.4);
  }

  .sm\:bg-teal-900\/5 {
    background-color: rgb(19 78 74 / 0.05);
  }

  .sm\:bg-teal-900\/50 {
    background-color: rgb(19 78 74 / 0.5);
  }

  .sm\:bg-teal-900\/60 {
    background-color: rgb(19 78 74 / 0.6);
  }

  .sm\:bg-teal-900\/70 {
    background-color: rgb(19 78 74 / 0.7);
  }

  .sm\:bg-teal-900\/80 {
    background-color: rgb(19 78 74 / 0.8);
  }

  .sm\:bg-teal-900\/90 {
    background-color: rgb(19 78 74 / 0.9);
  }

  .sm\:bg-teal-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(4 47 46 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-teal-950\/10 {
    background-color: rgb(4 47 46 / 0.1);
  }

  .sm\:bg-teal-950\/20 {
    background-color: rgb(4 47 46 / 0.2);
  }

  .sm\:bg-teal-950\/30 {
    background-color: rgb(4 47 46 / 0.3);
  }

  .sm\:bg-teal-950\/40 {
    background-color: rgb(4 47 46 / 0.4);
  }

  .sm\:bg-teal-950\/5 {
    background-color: rgb(4 47 46 / 0.05);
  }

  .sm\:bg-teal-950\/50 {
    background-color: rgb(4 47 46 / 0.5);
  }

  .sm\:bg-teal-950\/60 {
    background-color: rgb(4 47 46 / 0.6);
  }

  .sm\:bg-teal-950\/70 {
    background-color: rgb(4 47 46 / 0.7);
  }

  .sm\:bg-teal-950\/80 {
    background-color: rgb(4 47 46 / 0.8);
  }

  .sm\:bg-teal-950\/90 {
    background-color: rgb(4 47 46 / 0.9);
  }

  .sm\:bg-violet-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(237 233 254 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-violet-100\/10 {
    background-color: rgb(237 233 254 / 0.1);
  }

  .sm\:bg-violet-100\/20 {
    background-color: rgb(237 233 254 / 0.2);
  }

  .sm\:bg-violet-100\/30 {
    background-color: rgb(237 233 254 / 0.3);
  }

  .sm\:bg-violet-100\/40 {
    background-color: rgb(237 233 254 / 0.4);
  }

  .sm\:bg-violet-100\/5 {
    background-color: rgb(237 233 254 / 0.05);
  }

  .sm\:bg-violet-100\/50 {
    background-color: rgb(237 233 254 / 0.5);
  }

  .sm\:bg-violet-100\/60 {
    background-color: rgb(237 233 254 / 0.6);
  }

  .sm\:bg-violet-100\/70 {
    background-color: rgb(237 233 254 / 0.7);
  }

  .sm\:bg-violet-100\/80 {
    background-color: rgb(237 233 254 / 0.8);
  }

  .sm\:bg-violet-100\/90 {
    background-color: rgb(237 233 254 / 0.9);
  }

  .sm\:bg-violet-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(221 214 254 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-violet-200\/10 {
    background-color: rgb(221 214 254 / 0.1);
  }

  .sm\:bg-violet-200\/20 {
    background-color: rgb(221 214 254 / 0.2);
  }

  .sm\:bg-violet-200\/30 {
    background-color: rgb(221 214 254 / 0.3);
  }

  .sm\:bg-violet-200\/40 {
    background-color: rgb(221 214 254 / 0.4);
  }

  .sm\:bg-violet-200\/5 {
    background-color: rgb(221 214 254 / 0.05);
  }

  .sm\:bg-violet-200\/50 {
    background-color: rgb(221 214 254 / 0.5);
  }

  .sm\:bg-violet-200\/60 {
    background-color: rgb(221 214 254 / 0.6);
  }

  .sm\:bg-violet-200\/70 {
    background-color: rgb(221 214 254 / 0.7);
  }

  .sm\:bg-violet-200\/80 {
    background-color: rgb(221 214 254 / 0.8);
  }

  .sm\:bg-violet-200\/90 {
    background-color: rgb(221 214 254 / 0.9);
  }

  .sm\:bg-violet-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(196 181 253 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-violet-300\/10 {
    background-color: rgb(196 181 253 / 0.1);
  }

  .sm\:bg-violet-300\/20 {
    background-color: rgb(196 181 253 / 0.2);
  }

  .sm\:bg-violet-300\/30 {
    background-color: rgb(196 181 253 / 0.3);
  }

  .sm\:bg-violet-300\/40 {
    background-color: rgb(196 181 253 / 0.4);
  }

  .sm\:bg-violet-300\/5 {
    background-color: rgb(196 181 253 / 0.05);
  }

  .sm\:bg-violet-300\/50 {
    background-color: rgb(196 181 253 / 0.5);
  }

  .sm\:bg-violet-300\/60 {
    background-color: rgb(196 181 253 / 0.6);
  }

  .sm\:bg-violet-300\/70 {
    background-color: rgb(196 181 253 / 0.7);
  }

  .sm\:bg-violet-300\/80 {
    background-color: rgb(196 181 253 / 0.8);
  }

  .sm\:bg-violet-300\/90 {
    background-color: rgb(196 181 253 / 0.9);
  }

  .sm\:bg-violet-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(167 139 250 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-violet-400\/10 {
    background-color: rgb(167 139 250 / 0.1);
  }

  .sm\:bg-violet-400\/20 {
    background-color: rgb(167 139 250 / 0.2);
  }

  .sm\:bg-violet-400\/30 {
    background-color: rgb(167 139 250 / 0.3);
  }

  .sm\:bg-violet-400\/40 {
    background-color: rgb(167 139 250 / 0.4);
  }

  .sm\:bg-violet-400\/5 {
    background-color: rgb(167 139 250 / 0.05);
  }

  .sm\:bg-violet-400\/50 {
    background-color: rgb(167 139 250 / 0.5);
  }

  .sm\:bg-violet-400\/60 {
    background-color: rgb(167 139 250 / 0.6);
  }

  .sm\:bg-violet-400\/70 {
    background-color: rgb(167 139 250 / 0.7);
  }

  .sm\:bg-violet-400\/80 {
    background-color: rgb(167 139 250 / 0.8);
  }

  .sm\:bg-violet-400\/90 {
    background-color: rgb(167 139 250 / 0.9);
  }

  .sm\:bg-violet-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(245 243 255 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-violet-50\/10 {
    background-color: rgb(245 243 255 / 0.1);
  }

  .sm\:bg-violet-50\/20 {
    background-color: rgb(245 243 255 / 0.2);
  }

  .sm\:bg-violet-50\/30 {
    background-color: rgb(245 243 255 / 0.3);
  }

  .sm\:bg-violet-50\/40 {
    background-color: rgb(245 243 255 / 0.4);
  }

  .sm\:bg-violet-50\/5 {
    background-color: rgb(245 243 255 / 0.05);
  }

  .sm\:bg-violet-50\/50 {
    background-color: rgb(245 243 255 / 0.5);
  }

  .sm\:bg-violet-50\/60 {
    background-color: rgb(245 243 255 / 0.6);
  }

  .sm\:bg-violet-50\/70 {
    background-color: rgb(245 243 255 / 0.7);
  }

  .sm\:bg-violet-50\/80 {
    background-color: rgb(245 243 255 / 0.8);
  }

  .sm\:bg-violet-50\/90 {
    background-color: rgb(245 243 255 / 0.9);
  }

  .sm\:bg-violet-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(139 92 246 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-violet-500\/10 {
    background-color: rgb(139 92 246 / 0.1);
  }

  .sm\:bg-violet-500\/20 {
    background-color: rgb(139 92 246 / 0.2);
  }

  .sm\:bg-violet-500\/30 {
    background-color: rgb(139 92 246 / 0.3);
  }

  .sm\:bg-violet-500\/40 {
    background-color: rgb(139 92 246 / 0.4);
  }

  .sm\:bg-violet-500\/5 {
    background-color: rgb(139 92 246 / 0.05);
  }

  .sm\:bg-violet-500\/50 {
    background-color: rgb(139 92 246 / 0.5);
  }

  .sm\:bg-violet-500\/60 {
    background-color: rgb(139 92 246 / 0.6);
  }

  .sm\:bg-violet-500\/70 {
    background-color: rgb(139 92 246 / 0.7);
  }

  .sm\:bg-violet-500\/80 {
    background-color: rgb(139 92 246 / 0.8);
  }

  .sm\:bg-violet-500\/90 {
    background-color: rgb(139 92 246 / 0.9);
  }

  .sm\:bg-violet-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(124 58 237 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-violet-600\/10 {
    background-color: rgb(124 58 237 / 0.1);
  }

  .sm\:bg-violet-600\/20 {
    background-color: rgb(124 58 237 / 0.2);
  }

  .sm\:bg-violet-600\/30 {
    background-color: rgb(124 58 237 / 0.3);
  }

  .sm\:bg-violet-600\/40 {
    background-color: rgb(124 58 237 / 0.4);
  }

  .sm\:bg-violet-600\/5 {
    background-color: rgb(124 58 237 / 0.05);
  }

  .sm\:bg-violet-600\/50 {
    background-color: rgb(124 58 237 / 0.5);
  }

  .sm\:bg-violet-600\/60 {
    background-color: rgb(124 58 237 / 0.6);
  }

  .sm\:bg-violet-600\/70 {
    background-color: rgb(124 58 237 / 0.7);
  }

  .sm\:bg-violet-600\/80 {
    background-color: rgb(124 58 237 / 0.8);
  }

  .sm\:bg-violet-600\/90 {
    background-color: rgb(124 58 237 / 0.9);
  }

  .sm\:bg-violet-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(109 40 217 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-violet-700\/10 {
    background-color: rgb(109 40 217 / 0.1);
  }

  .sm\:bg-violet-700\/20 {
    background-color: rgb(109 40 217 / 0.2);
  }

  .sm\:bg-violet-700\/30 {
    background-color: rgb(109 40 217 / 0.3);
  }

  .sm\:bg-violet-700\/40 {
    background-color: rgb(109 40 217 / 0.4);
  }

  .sm\:bg-violet-700\/5 {
    background-color: rgb(109 40 217 / 0.05);
  }

  .sm\:bg-violet-700\/50 {
    background-color: rgb(109 40 217 / 0.5);
  }

  .sm\:bg-violet-700\/60 {
    background-color: rgb(109 40 217 / 0.6);
  }

  .sm\:bg-violet-700\/70 {
    background-color: rgb(109 40 217 / 0.7);
  }

  .sm\:bg-violet-700\/80 {
    background-color: rgb(109 40 217 / 0.8);
  }

  .sm\:bg-violet-700\/90 {
    background-color: rgb(109 40 217 / 0.9);
  }

  .sm\:bg-violet-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(91 33 182 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-violet-800\/10 {
    background-color: rgb(91 33 182 / 0.1);
  }

  .sm\:bg-violet-800\/20 {
    background-color: rgb(91 33 182 / 0.2);
  }

  .sm\:bg-violet-800\/30 {
    background-color: rgb(91 33 182 / 0.3);
  }

  .sm\:bg-violet-800\/40 {
    background-color: rgb(91 33 182 / 0.4);
  }

  .sm\:bg-violet-800\/5 {
    background-color: rgb(91 33 182 / 0.05);
  }

  .sm\:bg-violet-800\/50 {
    background-color: rgb(91 33 182 / 0.5);
  }

  .sm\:bg-violet-800\/60 {
    background-color: rgb(91 33 182 / 0.6);
  }

  .sm\:bg-violet-800\/70 {
    background-color: rgb(91 33 182 / 0.7);
  }

  .sm\:bg-violet-800\/80 {
    background-color: rgb(91 33 182 / 0.8);
  }

  .sm\:bg-violet-800\/90 {
    background-color: rgb(91 33 182 / 0.9);
  }

  .sm\:bg-violet-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(76 29 149 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-violet-900\/10 {
    background-color: rgb(76 29 149 / 0.1);
  }

  .sm\:bg-violet-900\/20 {
    background-color: rgb(76 29 149 / 0.2);
  }

  .sm\:bg-violet-900\/30 {
    background-color: rgb(76 29 149 / 0.3);
  }

  .sm\:bg-violet-900\/40 {
    background-color: rgb(76 29 149 / 0.4);
  }

  .sm\:bg-violet-900\/5 {
    background-color: rgb(76 29 149 / 0.05);
  }

  .sm\:bg-violet-900\/50 {
    background-color: rgb(76 29 149 / 0.5);
  }

  .sm\:bg-violet-900\/60 {
    background-color: rgb(76 29 149 / 0.6);
  }

  .sm\:bg-violet-900\/70 {
    background-color: rgb(76 29 149 / 0.7);
  }

  .sm\:bg-violet-900\/80 {
    background-color: rgb(76 29 149 / 0.8);
  }

  .sm\:bg-violet-900\/90 {
    background-color: rgb(76 29 149 / 0.9);
  }

  .sm\:bg-violet-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(46 16 101 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-violet-950\/10 {
    background-color: rgb(46 16 101 / 0.1);
  }

  .sm\:bg-violet-950\/20 {
    background-color: rgb(46 16 101 / 0.2);
  }

  .sm\:bg-violet-950\/30 {
    background-color: rgb(46 16 101 / 0.3);
  }

  .sm\:bg-violet-950\/40 {
    background-color: rgb(46 16 101 / 0.4);
  }

  .sm\:bg-violet-950\/5 {
    background-color: rgb(46 16 101 / 0.05);
  }

  .sm\:bg-violet-950\/50 {
    background-color: rgb(46 16 101 / 0.5);
  }

  .sm\:bg-violet-950\/60 {
    background-color: rgb(46 16 101 / 0.6);
  }

  .sm\:bg-violet-950\/70 {
    background-color: rgb(46 16 101 / 0.7);
  }

  .sm\:bg-violet-950\/80 {
    background-color: rgb(46 16 101 / 0.8);
  }

  .sm\:bg-violet-950\/90 {
    background-color: rgb(46 16 101 / 0.9);
  }

  .sm\:bg-yellow-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-yellow-100\/10 {
    background-color: rgb(254 249 195 / 0.1);
  }

  .sm\:bg-yellow-100\/20 {
    background-color: rgb(254 249 195 / 0.2);
  }

  .sm\:bg-yellow-100\/30 {
    background-color: rgb(254 249 195 / 0.3);
  }

  .sm\:bg-yellow-100\/40 {
    background-color: rgb(254 249 195 / 0.4);
  }

  .sm\:bg-yellow-100\/5 {
    background-color: rgb(254 249 195 / 0.05);
  }

  .sm\:bg-yellow-100\/50 {
    background-color: rgb(254 249 195 / 0.5);
  }

  .sm\:bg-yellow-100\/60 {
    background-color: rgb(254 249 195 / 0.6);
  }

  .sm\:bg-yellow-100\/70 {
    background-color: rgb(254 249 195 / 0.7);
  }

  .sm\:bg-yellow-100\/80 {
    background-color: rgb(254 249 195 / 0.8);
  }

  .sm\:bg-yellow-100\/90 {
    background-color: rgb(254 249 195 / 0.9);
  }

  .sm\:bg-yellow-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 240 138 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-yellow-200\/10 {
    background-color: rgb(254 240 138 / 0.1);
  }

  .sm\:bg-yellow-200\/20 {
    background-color: rgb(254 240 138 / 0.2);
  }

  .sm\:bg-yellow-200\/30 {
    background-color: rgb(254 240 138 / 0.3);
  }

  .sm\:bg-yellow-200\/40 {
    background-color: rgb(254 240 138 / 0.4);
  }

  .sm\:bg-yellow-200\/5 {
    background-color: rgb(254 240 138 / 0.05);
  }

  .sm\:bg-yellow-200\/50 {
    background-color: rgb(254 240 138 / 0.5);
  }

  .sm\:bg-yellow-200\/60 {
    background-color: rgb(254 240 138 / 0.6);
  }

  .sm\:bg-yellow-200\/70 {
    background-color: rgb(254 240 138 / 0.7);
  }

  .sm\:bg-yellow-200\/80 {
    background-color: rgb(254 240 138 / 0.8);
  }

  .sm\:bg-yellow-200\/90 {
    background-color: rgb(254 240 138 / 0.9);
  }

  .sm\:bg-yellow-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(253 224 71 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-yellow-300\/10 {
    background-color: rgb(253 224 71 / 0.1);
  }

  .sm\:bg-yellow-300\/20 {
    background-color: rgb(253 224 71 / 0.2);
  }

  .sm\:bg-yellow-300\/30 {
    background-color: rgb(253 224 71 / 0.3);
  }

  .sm\:bg-yellow-300\/40 {
    background-color: rgb(253 224 71 / 0.4);
  }

  .sm\:bg-yellow-300\/5 {
    background-color: rgb(253 224 71 / 0.05);
  }

  .sm\:bg-yellow-300\/50 {
    background-color: rgb(253 224 71 / 0.5);
  }

  .sm\:bg-yellow-300\/60 {
    background-color: rgb(253 224 71 / 0.6);
  }

  .sm\:bg-yellow-300\/70 {
    background-color: rgb(253 224 71 / 0.7);
  }

  .sm\:bg-yellow-300\/80 {
    background-color: rgb(253 224 71 / 0.8);
  }

  .sm\:bg-yellow-300\/90 {
    background-color: rgb(253 224 71 / 0.9);
  }

  .sm\:bg-yellow-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 204 21 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-yellow-400\/10 {
    background-color: rgb(250 204 21 / 0.1);
  }

  .sm\:bg-yellow-400\/20 {
    background-color: rgb(250 204 21 / 0.2);
  }

  .sm\:bg-yellow-400\/30 {
    background-color: rgb(250 204 21 / 0.3);
  }

  .sm\:bg-yellow-400\/40 {
    background-color: rgb(250 204 21 / 0.4);
  }

  .sm\:bg-yellow-400\/5 {
    background-color: rgb(250 204 21 / 0.05);
  }

  .sm\:bg-yellow-400\/50 {
    background-color: rgb(250 204 21 / 0.5);
  }

  .sm\:bg-yellow-400\/60 {
    background-color: rgb(250 204 21 / 0.6);
  }

  .sm\:bg-yellow-400\/70 {
    background-color: rgb(250 204 21 / 0.7);
  }

  .sm\:bg-yellow-400\/80 {
    background-color: rgb(250 204 21 / 0.8);
  }

  .sm\:bg-yellow-400\/90 {
    background-color: rgb(250 204 21 / 0.9);
  }

  .sm\:bg-yellow-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-yellow-50\/10 {
    background-color: rgb(254 252 232 / 0.1);
  }

  .sm\:bg-yellow-50\/20 {
    background-color: rgb(254 252 232 / 0.2);
  }

  .sm\:bg-yellow-50\/30 {
    background-color: rgb(254 252 232 / 0.3);
  }

  .sm\:bg-yellow-50\/40 {
    background-color: rgb(254 252 232 / 0.4);
  }

  .sm\:bg-yellow-50\/5 {
    background-color: rgb(254 252 232 / 0.05);
  }

  .sm\:bg-yellow-50\/50 {
    background-color: rgb(254 252 232 / 0.5);
  }

  .sm\:bg-yellow-50\/60 {
    background-color: rgb(254 252 232 / 0.6);
  }

  .sm\:bg-yellow-50\/70 {
    background-color: rgb(254 252 232 / 0.7);
  }

  .sm\:bg-yellow-50\/80 {
    background-color: rgb(254 252 232 / 0.8);
  }

  .sm\:bg-yellow-50\/90 {
    background-color: rgb(254 252 232 / 0.9);
  }

  .sm\:bg-yellow-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(234 179 8 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-yellow-500\/10 {
    background-color: rgb(234 179 8 / 0.1);
  }

  .sm\:bg-yellow-500\/20 {
    background-color: rgb(234 179 8 / 0.2);
  }

  .sm\:bg-yellow-500\/30 {
    background-color: rgb(234 179 8 / 0.3);
  }

  .sm\:bg-yellow-500\/40 {
    background-color: rgb(234 179 8 / 0.4);
  }

  .sm\:bg-yellow-500\/5 {
    background-color: rgb(234 179 8 / 0.05);
  }

  .sm\:bg-yellow-500\/50 {
    background-color: rgb(234 179 8 / 0.5);
  }

  .sm\:bg-yellow-500\/60 {
    background-color: rgb(234 179 8 / 0.6);
  }

  .sm\:bg-yellow-500\/70 {
    background-color: rgb(234 179 8 / 0.7);
  }

  .sm\:bg-yellow-500\/80 {
    background-color: rgb(234 179 8 / 0.8);
  }

  .sm\:bg-yellow-500\/90 {
    background-color: rgb(234 179 8 / 0.9);
  }

  .sm\:bg-yellow-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(202 138 4 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-yellow-600\/10 {
    background-color: rgb(202 138 4 / 0.1);
  }

  .sm\:bg-yellow-600\/20 {
    background-color: rgb(202 138 4 / 0.2);
  }

  .sm\:bg-yellow-600\/30 {
    background-color: rgb(202 138 4 / 0.3);
  }

  .sm\:bg-yellow-600\/40 {
    background-color: rgb(202 138 4 / 0.4);
  }

  .sm\:bg-yellow-600\/5 {
    background-color: rgb(202 138 4 / 0.05);
  }

  .sm\:bg-yellow-600\/50 {
    background-color: rgb(202 138 4 / 0.5);
  }

  .sm\:bg-yellow-600\/60 {
    background-color: rgb(202 138 4 / 0.6);
  }

  .sm\:bg-yellow-600\/70 {
    background-color: rgb(202 138 4 / 0.7);
  }

  .sm\:bg-yellow-600\/80 {
    background-color: rgb(202 138 4 / 0.8);
  }

  .sm\:bg-yellow-600\/90 {
    background-color: rgb(202 138 4 / 0.9);
  }

  .sm\:bg-yellow-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(161 98 7 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-yellow-700\/10 {
    background-color: rgb(161 98 7 / 0.1);
  }

  .sm\:bg-yellow-700\/20 {
    background-color: rgb(161 98 7 / 0.2);
  }

  .sm\:bg-yellow-700\/30 {
    background-color: rgb(161 98 7 / 0.3);
  }

  .sm\:bg-yellow-700\/40 {
    background-color: rgb(161 98 7 / 0.4);
  }

  .sm\:bg-yellow-700\/5 {
    background-color: rgb(161 98 7 / 0.05);
  }

  .sm\:bg-yellow-700\/50 {
    background-color: rgb(161 98 7 / 0.5);
  }

  .sm\:bg-yellow-700\/60 {
    background-color: rgb(161 98 7 / 0.6);
  }

  .sm\:bg-yellow-700\/70 {
    background-color: rgb(161 98 7 / 0.7);
  }

  .sm\:bg-yellow-700\/80 {
    background-color: rgb(161 98 7 / 0.8);
  }

  .sm\:bg-yellow-700\/90 {
    background-color: rgb(161 98 7 / 0.9);
  }

  .sm\:bg-yellow-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(133 77 14 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-yellow-800\/10 {
    background-color: rgb(133 77 14 / 0.1);
  }

  .sm\:bg-yellow-800\/20 {
    background-color: rgb(133 77 14 / 0.2);
  }

  .sm\:bg-yellow-800\/30 {
    background-color: rgb(133 77 14 / 0.3);
  }

  .sm\:bg-yellow-800\/40 {
    background-color: rgb(133 77 14 / 0.4);
  }

  .sm\:bg-yellow-800\/5 {
    background-color: rgb(133 77 14 / 0.05);
  }

  .sm\:bg-yellow-800\/50 {
    background-color: rgb(133 77 14 / 0.5);
  }

  .sm\:bg-yellow-800\/60 {
    background-color: rgb(133 77 14 / 0.6);
  }

  .sm\:bg-yellow-800\/70 {
    background-color: rgb(133 77 14 / 0.7);
  }

  .sm\:bg-yellow-800\/80 {
    background-color: rgb(133 77 14 / 0.8);
  }

  .sm\:bg-yellow-800\/90 {
    background-color: rgb(133 77 14 / 0.9);
  }

  .sm\:bg-yellow-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(113 63 18 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-yellow-900\/10 {
    background-color: rgb(113 63 18 / 0.1);
  }

  .sm\:bg-yellow-900\/20 {
    background-color: rgb(113 63 18 / 0.2);
  }

  .sm\:bg-yellow-900\/30 {
    background-color: rgb(113 63 18 / 0.3);
  }

  .sm\:bg-yellow-900\/40 {
    background-color: rgb(113 63 18 / 0.4);
  }

  .sm\:bg-yellow-900\/5 {
    background-color: rgb(113 63 18 / 0.05);
  }

  .sm\:bg-yellow-900\/50 {
    background-color: rgb(113 63 18 / 0.5);
  }

  .sm\:bg-yellow-900\/60 {
    background-color: rgb(113 63 18 / 0.6);
  }

  .sm\:bg-yellow-900\/70 {
    background-color: rgb(113 63 18 / 0.7);
  }

  .sm\:bg-yellow-900\/80 {
    background-color: rgb(113 63 18 / 0.8);
  }

  .sm\:bg-yellow-900\/90 {
    background-color: rgb(113 63 18 / 0.9);
  }

  .sm\:bg-yellow-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(66 32 6 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-yellow-950\/10 {
    background-color: rgb(66 32 6 / 0.1);
  }

  .sm\:bg-yellow-950\/20 {
    background-color: rgb(66 32 6 / 0.2);
  }

  .sm\:bg-yellow-950\/30 {
    background-color: rgb(66 32 6 / 0.3);
  }

  .sm\:bg-yellow-950\/40 {
    background-color: rgb(66 32 6 / 0.4);
  }

  .sm\:bg-yellow-950\/5 {
    background-color: rgb(66 32 6 / 0.05);
  }

  .sm\:bg-yellow-950\/50 {
    background-color: rgb(66 32 6 / 0.5);
  }

  .sm\:bg-yellow-950\/60 {
    background-color: rgb(66 32 6 / 0.6);
  }

  .sm\:bg-yellow-950\/70 {
    background-color: rgb(66 32 6 / 0.7);
  }

  .sm\:bg-yellow-950\/80 {
    background-color: rgb(66 32 6 / 0.8);
  }

  .sm\:bg-yellow-950\/90 {
    background-color: rgb(66 32 6 / 0.9);
  }

  .sm\:bg-zinc-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(244 244 245 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-zinc-100\/10 {
    background-color: rgb(244 244 245 / 0.1);
  }

  .sm\:bg-zinc-100\/20 {
    background-color: rgb(244 244 245 / 0.2);
  }

  .sm\:bg-zinc-100\/30 {
    background-color: rgb(244 244 245 / 0.3);
  }

  .sm\:bg-zinc-100\/40 {
    background-color: rgb(244 244 245 / 0.4);
  }

  .sm\:bg-zinc-100\/5 {
    background-color: rgb(244 244 245 / 0.05);
  }

  .sm\:bg-zinc-100\/50 {
    background-color: rgb(244 244 245 / 0.5);
  }

  .sm\:bg-zinc-100\/60 {
    background-color: rgb(244 244 245 / 0.6);
  }

  .sm\:bg-zinc-100\/70 {
    background-color: rgb(244 244 245 / 0.7);
  }

  .sm\:bg-zinc-100\/80 {
    background-color: rgb(244 244 245 / 0.8);
  }

  .sm\:bg-zinc-100\/90 {
    background-color: rgb(244 244 245 / 0.9);
  }

  .sm\:bg-zinc-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(228 228 231 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-zinc-200\/10 {
    background-color: rgb(228 228 231 / 0.1);
  }

  .sm\:bg-zinc-200\/20 {
    background-color: rgb(228 228 231 / 0.2);
  }

  .sm\:bg-zinc-200\/30 {
    background-color: rgb(228 228 231 / 0.3);
  }

  .sm\:bg-zinc-200\/40 {
    background-color: rgb(228 228 231 / 0.4);
  }

  .sm\:bg-zinc-200\/5 {
    background-color: rgb(228 228 231 / 0.05);
  }

  .sm\:bg-zinc-200\/50 {
    background-color: rgb(228 228 231 / 0.5);
  }

  .sm\:bg-zinc-200\/60 {
    background-color: rgb(228 228 231 / 0.6);
  }

  .sm\:bg-zinc-200\/70 {
    background-color: rgb(228 228 231 / 0.7);
  }

  .sm\:bg-zinc-200\/80 {
    background-color: rgb(228 228 231 / 0.8);
  }

  .sm\:bg-zinc-200\/90 {
    background-color: rgb(228 228 231 / 0.9);
  }

  .sm\:bg-zinc-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(212 212 216 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-zinc-300\/10 {
    background-color: rgb(212 212 216 / 0.1);
  }

  .sm\:bg-zinc-300\/20 {
    background-color: rgb(212 212 216 / 0.2);
  }

  .sm\:bg-zinc-300\/30 {
    background-color: rgb(212 212 216 / 0.3);
  }

  .sm\:bg-zinc-300\/40 {
    background-color: rgb(212 212 216 / 0.4);
  }

  .sm\:bg-zinc-300\/5 {
    background-color: rgb(212 212 216 / 0.05);
  }

  .sm\:bg-zinc-300\/50 {
    background-color: rgb(212 212 216 / 0.5);
  }

  .sm\:bg-zinc-300\/60 {
    background-color: rgb(212 212 216 / 0.6);
  }

  .sm\:bg-zinc-300\/70 {
    background-color: rgb(212 212 216 / 0.7);
  }

  .sm\:bg-zinc-300\/80 {
    background-color: rgb(212 212 216 / 0.8);
  }

  .sm\:bg-zinc-300\/90 {
    background-color: rgb(212 212 216 / 0.9);
  }

  .sm\:bg-zinc-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(161 161 170 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-zinc-400\/10 {
    background-color: rgb(161 161 170 / 0.1);
  }

  .sm\:bg-zinc-400\/20 {
    background-color: rgb(161 161 170 / 0.2);
  }

  .sm\:bg-zinc-400\/30 {
    background-color: rgb(161 161 170 / 0.3);
  }

  .sm\:bg-zinc-400\/40 {
    background-color: rgb(161 161 170 / 0.4);
  }

  .sm\:bg-zinc-400\/5 {
    background-color: rgb(161 161 170 / 0.05);
  }

  .sm\:bg-zinc-400\/50 {
    background-color: rgb(161 161 170 / 0.5);
  }

  .sm\:bg-zinc-400\/60 {
    background-color: rgb(161 161 170 / 0.6);
  }

  .sm\:bg-zinc-400\/70 {
    background-color: rgb(161 161 170 / 0.7);
  }

  .sm\:bg-zinc-400\/80 {
    background-color: rgb(161 161 170 / 0.8);
  }

  .sm\:bg-zinc-400\/90 {
    background-color: rgb(161 161 170 / 0.9);
  }

  .sm\:bg-zinc-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-zinc-50\/10 {
    background-color: rgb(250 250 250 / 0.1);
  }

  .sm\:bg-zinc-50\/20 {
    background-color: rgb(250 250 250 / 0.2);
  }

  .sm\:bg-zinc-50\/30 {
    background-color: rgb(250 250 250 / 0.3);
  }

  .sm\:bg-zinc-50\/40 {
    background-color: rgb(250 250 250 / 0.4);
  }

  .sm\:bg-zinc-50\/5 {
    background-color: rgb(250 250 250 / 0.05);
  }

  .sm\:bg-zinc-50\/50 {
    background-color: rgb(250 250 250 / 0.5);
  }

  .sm\:bg-zinc-50\/60 {
    background-color: rgb(250 250 250 / 0.6);
  }

  .sm\:bg-zinc-50\/70 {
    background-color: rgb(250 250 250 / 0.7);
  }

  .sm\:bg-zinc-50\/80 {
    background-color: rgb(250 250 250 / 0.8);
  }

  .sm\:bg-zinc-50\/90 {
    background-color: rgb(250 250 250 / 0.9);
  }

  .sm\:bg-zinc-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(113 113 122 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-zinc-500\/10 {
    background-color: rgb(113 113 122 / 0.1);
  }

  .sm\:bg-zinc-500\/20 {
    background-color: rgb(113 113 122 / 0.2);
  }

  .sm\:bg-zinc-500\/30 {
    background-color: rgb(113 113 122 / 0.3);
  }

  .sm\:bg-zinc-500\/40 {
    background-color: rgb(113 113 122 / 0.4);
  }

  .sm\:bg-zinc-500\/5 {
    background-color: rgb(113 113 122 / 0.05);
  }

  .sm\:bg-zinc-500\/50 {
    background-color: rgb(113 113 122 / 0.5);
  }

  .sm\:bg-zinc-500\/60 {
    background-color: rgb(113 113 122 / 0.6);
  }

  .sm\:bg-zinc-500\/70 {
    background-color: rgb(113 113 122 / 0.7);
  }

  .sm\:bg-zinc-500\/80 {
    background-color: rgb(113 113 122 / 0.8);
  }

  .sm\:bg-zinc-500\/90 {
    background-color: rgb(113 113 122 / 0.9);
  }

  .sm\:bg-zinc-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(82 82 91 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-zinc-600\/10 {
    background-color: rgb(82 82 91 / 0.1);
  }

  .sm\:bg-zinc-600\/20 {
    background-color: rgb(82 82 91 / 0.2);
  }

  .sm\:bg-zinc-600\/30 {
    background-color: rgb(82 82 91 / 0.3);
  }

  .sm\:bg-zinc-600\/40 {
    background-color: rgb(82 82 91 / 0.4);
  }

  .sm\:bg-zinc-600\/5 {
    background-color: rgb(82 82 91 / 0.05);
  }

  .sm\:bg-zinc-600\/50 {
    background-color: rgb(82 82 91 / 0.5);
  }

  .sm\:bg-zinc-600\/60 {
    background-color: rgb(82 82 91 / 0.6);
  }

  .sm\:bg-zinc-600\/70 {
    background-color: rgb(82 82 91 / 0.7);
  }

  .sm\:bg-zinc-600\/80 {
    background-color: rgb(82 82 91 / 0.8);
  }

  .sm\:bg-zinc-600\/90 {
    background-color: rgb(82 82 91 / 0.9);
  }

  .sm\:bg-zinc-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(63 63 70 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-zinc-700\/10 {
    background-color: rgb(63 63 70 / 0.1);
  }

  .sm\:bg-zinc-700\/20 {
    background-color: rgb(63 63 70 / 0.2);
  }

  .sm\:bg-zinc-700\/30 {
    background-color: rgb(63 63 70 / 0.3);
  }

  .sm\:bg-zinc-700\/40 {
    background-color: rgb(63 63 70 / 0.4);
  }

  .sm\:bg-zinc-700\/5 {
    background-color: rgb(63 63 70 / 0.05);
  }

  .sm\:bg-zinc-700\/50 {
    background-color: rgb(63 63 70 / 0.5);
  }

  .sm\:bg-zinc-700\/60 {
    background-color: rgb(63 63 70 / 0.6);
  }

  .sm\:bg-zinc-700\/70 {
    background-color: rgb(63 63 70 / 0.7);
  }

  .sm\:bg-zinc-700\/80 {
    background-color: rgb(63 63 70 / 0.8);
  }

  .sm\:bg-zinc-700\/90 {
    background-color: rgb(63 63 70 / 0.9);
  }

  .sm\:bg-zinc-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(39 39 42 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-zinc-800\/10 {
    background-color: rgb(39 39 42 / 0.1);
  }

  .sm\:bg-zinc-800\/20 {
    background-color: rgb(39 39 42 / 0.2);
  }

  .sm\:bg-zinc-800\/30 {
    background-color: rgb(39 39 42 / 0.3);
  }

  .sm\:bg-zinc-800\/40 {
    background-color: rgb(39 39 42 / 0.4);
  }

  .sm\:bg-zinc-800\/5 {
    background-color: rgb(39 39 42 / 0.05);
  }

  .sm\:bg-zinc-800\/50 {
    background-color: rgb(39 39 42 / 0.5);
  }

  .sm\:bg-zinc-800\/60 {
    background-color: rgb(39 39 42 / 0.6);
  }

  .sm\:bg-zinc-800\/70 {
    background-color: rgb(39 39 42 / 0.7);
  }

  .sm\:bg-zinc-800\/80 {
    background-color: rgb(39 39 42 / 0.8);
  }

  .sm\:bg-zinc-800\/90 {
    background-color: rgb(39 39 42 / 0.9);
  }

  .sm\:bg-zinc-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(24 24 27 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-zinc-900\/10 {
    background-color: rgb(24 24 27 / 0.1);
  }

  .sm\:bg-zinc-900\/20 {
    background-color: rgb(24 24 27 / 0.2);
  }

  .sm\:bg-zinc-900\/30 {
    background-color: rgb(24 24 27 / 0.3);
  }

  .sm\:bg-zinc-900\/40 {
    background-color: rgb(24 24 27 / 0.4);
  }

  .sm\:bg-zinc-900\/5 {
    background-color: rgb(24 24 27 / 0.05);
  }

  .sm\:bg-zinc-900\/50 {
    background-color: rgb(24 24 27 / 0.5);
  }

  .sm\:bg-zinc-900\/60 {
    background-color: rgb(24 24 27 / 0.6);
  }

  .sm\:bg-zinc-900\/70 {
    background-color: rgb(24 24 27 / 0.7);
  }

  .sm\:bg-zinc-900\/80 {
    background-color: rgb(24 24 27 / 0.8);
  }

  .sm\:bg-zinc-900\/90 {
    background-color: rgb(24 24 27 / 0.9);
  }

  .sm\:bg-zinc-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(9 9 11 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-zinc-950\/10 {
    background-color: rgb(9 9 11 / 0.1);
  }

  .sm\:bg-zinc-950\/20 {
    background-color: rgb(9 9 11 / 0.2);
  }

  .sm\:bg-zinc-950\/30 {
    background-color: rgb(9 9 11 / 0.3);
  }

  .sm\:bg-zinc-950\/40 {
    background-color: rgb(9 9 11 / 0.4);
  }

  .sm\:bg-zinc-950\/5 {
    background-color: rgb(9 9 11 / 0.05);
  }

  .sm\:bg-zinc-950\/50 {
    background-color: rgb(9 9 11 / 0.5);
  }

  .sm\:bg-zinc-950\/60 {
    background-color: rgb(9 9 11 / 0.6);
  }

  .sm\:bg-zinc-950\/70 {
    background-color: rgb(9 9 11 / 0.7);
  }

  .sm\:bg-zinc-950\/80 {
    background-color: rgb(9 9 11 / 0.8);
  }

  .sm\:bg-zinc-950\/90 {
    background-color: rgb(9 9 11 / 0.9);
  }

  .sm\:p-0 {
    padding: 0px;
  }

  .sm\:p-1 {
    padding: 0.25rem;
  }

  .sm\:p-10 {
    padding: 2.5rem;
  }

  .sm\:p-11 {
    padding: 2.75rem;
  }

  .sm\:p-12 {
    padding: 3rem;
  }

  .sm\:p-14 {
    padding: 3.5rem;
  }

  .sm\:p-16 {
    padding: 4rem;
  }

  .sm\:p-2 {
    padding: 0.5rem;
  }

  .sm\:p-20 {
    padding: 5rem;
  }

  .sm\:p-24 {
    padding: 6rem;
  }

  .sm\:p-28 {
    padding: 7rem;
  }

  .sm\:p-3 {
    padding: 0.75rem;
  }

  .sm\:p-32 {
    padding: 8rem;
  }

  .sm\:p-36 {
    padding: 9rem;
  }

  .sm\:p-4 {
    padding: 1rem;
  }

  .sm\:p-40 {
    padding: 10rem;
  }

  .sm\:p-44 {
    padding: 11rem;
  }

  .sm\:p-48 {
    padding: 12rem;
  }

  .sm\:p-5 {
    padding: 1.25rem;
  }

  .sm\:p-52 {
    padding: 13rem;
  }

  .sm\:p-56 {
    padding: 14rem;
  }

  .sm\:p-6 {
    padding: 1.5rem;
  }

  .sm\:p-60 {
    padding: 15rem;
  }

  .sm\:p-64 {
    padding: 16rem;
  }

  .sm\:p-7 {
    padding: 1.75rem;
  }

  .sm\:p-72 {
    padding: 18rem;
  }

  .sm\:p-8 {
    padding: 2rem;
  }

  .sm\:p-80 {
    padding: 20rem;
  }

  .sm\:p-9 {
    padding: 2.25rem;
  }

  .sm\:p-96 {
    padding: 24rem;
  }

  .sm\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .sm\:px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .sm\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .sm\:px-11 {
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }

  .sm\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .sm\:px-14 {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .sm\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .sm\:px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .sm\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .sm\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .sm\:px-28 {
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .sm\:px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .sm\:px-32 {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .sm\:px-36 {
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .sm\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .sm\:px-40 {
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .sm\:px-44 {
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .sm\:px-48 {
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .sm\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .sm\:px-52 {
    padding-left: 13rem;
    padding-right: 13rem;
  }

  .sm\:px-56 {
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:px-60 {
    padding-left: 15rem;
    padding-right: 15rem;
  }

  .sm\:px-64 {
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .sm\:px-7 {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .sm\:px-72 {
    padding-left: 18rem;
    padding-right: 18rem;
  }

  .sm\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .sm\:px-80 {
    padding-left: 20rem;
    padding-right: 20rem;
  }

  .sm\:px-9 {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .sm\:px-96 {
    padding-left: 24rem;
    padding-right: 24rem;
  }

  .sm\:py-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .sm\:py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .sm\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .sm\:py-11 {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .sm\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .sm\:py-14 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .sm\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .sm\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .sm\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .sm\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .sm\:py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .sm\:py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .sm\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .sm\:py-36 {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .sm\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .sm\:py-40 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .sm\:py-44 {
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .sm\:py-48 {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .sm\:py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .sm\:py-52 {
    padding-top: 13rem;
    padding-bottom: 13rem;
  }

  .sm\:py-56 {
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .sm\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .sm\:py-60 {
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .sm\:py-64 {
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .sm\:py-7 {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .sm\:py-72 {
    padding-top: 18rem;
    padding-bottom: 18rem;
  }

  .sm\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .sm\:py-80 {
    padding-top: 20rem;
    padding-bottom: 20rem;
  }

  .sm\:py-9 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .sm\:py-96 {
    padding-top: 24rem;
    padding-bottom: 24rem;
  }

  .sm\:pb-0 {
    padding-bottom: 0px;
  }

  .sm\:pb-1 {
    padding-bottom: 0.25rem;
  }

  .sm\:pb-10 {
    padding-bottom: 2.5rem;
  }

  .sm\:pb-11 {
    padding-bottom: 2.75rem;
  }

  .sm\:pb-12 {
    padding-bottom: 3rem;
  }

  .sm\:pb-14 {
    padding-bottom: 3.5rem;
  }

  .sm\:pb-16 {
    padding-bottom: 4rem;
  }

  .sm\:pb-2 {
    padding-bottom: 0.5rem;
  }

  .sm\:pb-20 {
    padding-bottom: 5rem;
  }

  .sm\:pb-24 {
    padding-bottom: 6rem;
  }

  .sm\:pb-28 {
    padding-bottom: 7rem;
  }

  .sm\:pb-3 {
    padding-bottom: 0.75rem;
  }

  .sm\:pb-32 {
    padding-bottom: 8rem;
  }

  .sm\:pb-36 {
    padding-bottom: 9rem;
  }

  .sm\:pb-4 {
    padding-bottom: 1rem;
  }

  .sm\:pb-40 {
    padding-bottom: 10rem;
  }

  .sm\:pb-44 {
    padding-bottom: 11rem;
  }

  .sm\:pb-48 {
    padding-bottom: 12rem;
  }

  .sm\:pb-5 {
    padding-bottom: 1.25rem;
  }

  .sm\:pb-52 {
    padding-bottom: 13rem;
  }

  .sm\:pb-56 {
    padding-bottom: 14rem;
  }

  .sm\:pb-6 {
    padding-bottom: 1.5rem;
  }

  .sm\:pb-60 {
    padding-bottom: 15rem;
  }

  .sm\:pb-64 {
    padding-bottom: 16rem;
  }

  .sm\:pb-7 {
    padding-bottom: 1.75rem;
  }

  .sm\:pb-72 {
    padding-bottom: 18rem;
  }

  .sm\:pb-8 {
    padding-bottom: 2rem;
  }

  .sm\:pb-80 {
    padding-bottom: 20rem;
  }

  .sm\:pb-9 {
    padding-bottom: 2.25rem;
  }

  .sm\:pb-96 {
    padding-bottom: 24rem;
  }

  .sm\:pl-0 {
    padding-left: 0px;
  }

  .sm\:pl-1 {
    padding-left: 0.25rem;
  }

  .sm\:pl-10 {
    padding-left: 2.5rem;
  }

  .sm\:pl-11 {
    padding-left: 2.75rem;
  }

  .sm\:pl-12 {
    padding-left: 3rem;
  }

  .sm\:pl-14 {
    padding-left: 3.5rem;
  }

  .sm\:pl-16 {
    padding-left: 4rem;
  }

  .sm\:pl-2 {
    padding-left: 0.5rem;
  }

  .sm\:pl-20 {
    padding-left: 5rem;
  }

  .sm\:pl-24 {
    padding-left: 6rem;
  }

  .sm\:pl-28 {
    padding-left: 7rem;
  }

  .sm\:pl-3 {
    padding-left: 0.75rem;
  }

  .sm\:pl-32 {
    padding-left: 8rem;
  }

  .sm\:pl-36 {
    padding-left: 9rem;
  }

  .sm\:pl-4 {
    padding-left: 1rem;
  }

  .sm\:pl-40 {
    padding-left: 10rem;
  }

  .sm\:pl-44 {
    padding-left: 11rem;
  }

  .sm\:pl-48 {
    padding-left: 12rem;
  }

  .sm\:pl-5 {
    padding-left: 1.25rem;
  }

  .sm\:pl-52 {
    padding-left: 13rem;
  }

  .sm\:pl-56 {
    padding-left: 14rem;
  }

  .sm\:pl-6 {
    padding-left: 1.5rem;
  }

  .sm\:pl-60 {
    padding-left: 15rem;
  }

  .sm\:pl-64 {
    padding-left: 16rem;
  }

  .sm\:pl-7 {
    padding-left: 1.75rem;
  }

  .sm\:pl-72 {
    padding-left: 18rem;
  }

  .sm\:pl-8 {
    padding-left: 2rem;
  }

  .sm\:pl-80 {
    padding-left: 20rem;
  }

  .sm\:pl-9 {
    padding-left: 2.25rem;
  }

  .sm\:pl-96 {
    padding-left: 24rem;
  }

  .sm\:pr-0 {
    padding-right: 0px;
  }

  .sm\:pr-1 {
    padding-right: 0.25rem;
  }

  .sm\:pr-10 {
    padding-right: 2.5rem;
  }

  .sm\:pr-11 {
    padding-right: 2.75rem;
  }

  .sm\:pr-12 {
    padding-right: 3rem;
  }

  .sm\:pr-14 {
    padding-right: 3.5rem;
  }

  .sm\:pr-16 {
    padding-right: 4rem;
  }

  .sm\:pr-2 {
    padding-right: 0.5rem;
  }

  .sm\:pr-20 {
    padding-right: 5rem;
  }

  .sm\:pr-24 {
    padding-right: 6rem;
  }

  .sm\:pr-28 {
    padding-right: 7rem;
  }

  .sm\:pr-3 {
    padding-right: 0.75rem;
  }

  .sm\:pr-32 {
    padding-right: 8rem;
  }

  .sm\:pr-36 {
    padding-right: 9rem;
  }

  .sm\:pr-4 {
    padding-right: 1rem;
  }

  .sm\:pr-40 {
    padding-right: 10rem;
  }

  .sm\:pr-44 {
    padding-right: 11rem;
  }

  .sm\:pr-48 {
    padding-right: 12rem;
  }

  .sm\:pr-5 {
    padding-right: 1.25rem;
  }

  .sm\:pr-52 {
    padding-right: 13rem;
  }

  .sm\:pr-56 {
    padding-right: 14rem;
  }

  .sm\:pr-6 {
    padding-right: 1.5rem;
  }

  .sm\:pr-60 {
    padding-right: 15rem;
  }

  .sm\:pr-64 {
    padding-right: 16rem;
  }

  .sm\:pr-7 {
    padding-right: 1.75rem;
  }

  .sm\:pr-72 {
    padding-right: 18rem;
  }

  .sm\:pr-8 {
    padding-right: 2rem;
  }

  .sm\:pr-80 {
    padding-right: 20rem;
  }

  .sm\:pr-9 {
    padding-right: 2.25rem;
  }

  .sm\:pr-96 {
    padding-right: 24rem;
  }

  .sm\:pt-0 {
    padding-top: 0px;
  }

  .sm\:pt-1 {
    padding-top: 0.25rem;
  }

  .sm\:pt-10 {
    padding-top: 2.5rem;
  }

  .sm\:pt-11 {
    padding-top: 2.75rem;
  }

  .sm\:pt-12 {
    padding-top: 3rem;
  }

  .sm\:pt-14 {
    padding-top: 3.5rem;
  }

  .sm\:pt-16 {
    padding-top: 4rem;
  }

  .sm\:pt-2 {
    padding-top: 0.5rem;
  }

  .sm\:pt-20 {
    padding-top: 5rem;
  }

  .sm\:pt-24 {
    padding-top: 6rem;
  }

  .sm\:pt-28 {
    padding-top: 7rem;
  }

  .sm\:pt-3 {
    padding-top: 0.75rem;
  }

  .sm\:pt-32 {
    padding-top: 8rem;
  }

  .sm\:pt-36 {
    padding-top: 9rem;
  }

  .sm\:pt-4 {
    padding-top: 1rem;
  }

  .sm\:pt-40 {
    padding-top: 10rem;
  }

  .sm\:pt-44 {
    padding-top: 11rem;
  }

  .sm\:pt-48 {
    padding-top: 12rem;
  }

  .sm\:pt-5 {
    padding-top: 1.25rem;
  }

  .sm\:pt-52 {
    padding-top: 13rem;
  }

  .sm\:pt-56 {
    padding-top: 14rem;
  }

  .sm\:pt-6 {
    padding-top: 1.5rem;
  }

  .sm\:pt-60 {
    padding-top: 15rem;
  }

  .sm\:pt-64 {
    padding-top: 16rem;
  }

  .sm\:pt-7 {
    padding-top: 1.75rem;
  }

  .sm\:pt-72 {
    padding-top: 18rem;
  }

  .sm\:pt-8 {
    padding-top: 2rem;
  }

  .sm\:pt-80 {
    padding-top: 20rem;
  }

  .sm\:pt-9 {
    padding-top: 2.25rem;
  }

  .sm\:pt-96 {
    padding-top: 24rem;
  }

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

  .sm\:font-arial {
    font-family: Arial, Helvetica, sans-serif;
  }

  .sm\:font-assistant {
    font-family: Assistant, sans-serif;
  }

  .sm\:font-dancingscript {
    font-family: Dancing Script, cursive;
  }

  .sm\:font-firacode {
    font-family: Fira Code, monospace;
  }

  .sm\:font-frankRuhlLibre {
    font-family: Frank Ruhl Libre, serif;
  }

  .sm\:font-jetbrains {
    font-family: JetBrains Mono, monospace;
  }

  .sm\:font-lato {
    font-family: Lato, sans-serif;
  }

  .sm\:font-lobster {
    font-family: Lobster, cursive;
  }

  .sm\:font-lobsterTwo {
    font-family: Lobster Two, cursive;
  }

  .sm\:font-lora {
    font-family: Lora, serif;
  }

  .sm\:font-montserrat {
    font-family: Montserrat, sans-serif;
  }

  .sm\:font-opensans {
    font-family: Open Sans, sans-serif;
  }

  .sm\:font-oswald {
    font-family: Oswald, sans-serif;
  }

  .sm\:font-pacifico {
    font-family: Pacifico, cursive;
  }

  .sm\:font-poppins {
    font-family: Poppins, sans-serif;
  }

  .sm\:font-raleway {
    font-family: Raleway, sans-serif;
  }

  .sm\:font-roboto {
    font-family: Roboto, sans-serif;
  }

  .sm\:text-4xl {
    font-size: 2.25rem;
  }

  .sm\:text-lg {
    font-size: 1.125rem;
  }

  .sm\:text-sm {
    font-size: .875rem;
  }

  .sm\:text-amber-100 {
    --tw-text-opacity: 1;
    color: rgb(254 243 199 / var(--tw-text-opacity, 1));
  }

  .sm\:text-amber-200 {
    --tw-text-opacity: 1;
    color: rgb(253 230 138 / var(--tw-text-opacity, 1));
  }

  .sm\:text-amber-300 {
    --tw-text-opacity: 1;
    color: rgb(252 211 77 / var(--tw-text-opacity, 1));
  }

  .sm\:text-amber-400 {
    --tw-text-opacity: 1;
    color: rgb(251 191 36 / var(--tw-text-opacity, 1));
  }

  .sm\:text-amber-50 {
    --tw-text-opacity: 1;
    color: rgb(255 251 235 / var(--tw-text-opacity, 1));
  }

  .sm\:text-amber-500 {
    --tw-text-opacity: 1;
    color: rgb(245 158 11 / var(--tw-text-opacity, 1));
  }

  .sm\:text-amber-600 {
    --tw-text-opacity: 1;
    color: rgb(217 119 6 / var(--tw-text-opacity, 1));
  }

  .sm\:text-amber-700 {
    --tw-text-opacity: 1;
    color: rgb(180 83 9 / var(--tw-text-opacity, 1));
  }

  .sm\:text-amber-800 {
    --tw-text-opacity: 1;
    color: rgb(146 64 14 / var(--tw-text-opacity, 1));
  }

  .sm\:text-amber-900 {
    --tw-text-opacity: 1;
    color: rgb(120 53 15 / var(--tw-text-opacity, 1));
  }

  .sm\:text-amber-950 {
    --tw-text-opacity: 1;
    color: rgb(69 26 3 / var(--tw-text-opacity, 1));
  }

  .sm\:text-blue-100 {
    --tw-text-opacity: 1;
    color: rgb(219 234 254 / var(--tw-text-opacity, 1));
  }

  .sm\:text-blue-200 {
    --tw-text-opacity: 1;
    color: rgb(191 219 254 / var(--tw-text-opacity, 1));
  }

  .sm\:text-blue-300 {
    --tw-text-opacity: 1;
    color: rgb(147 197 253 / var(--tw-text-opacity, 1));
  }

  .sm\:text-blue-400 {
    --tw-text-opacity: 1;
    color: rgb(96 165 250 / var(--tw-text-opacity, 1));
  }

  .sm\:text-blue-50 {
    --tw-text-opacity: 1;
    color: rgb(239 246 255 / var(--tw-text-opacity, 1));
  }

  .sm\:text-blue-500 {
    --tw-text-opacity: 1;
    color: rgb(59 130 246 / var(--tw-text-opacity, 1));
  }

  .sm\:text-blue-600 {
    --tw-text-opacity: 1;
    color: rgb(37 99 235 / var(--tw-text-opacity, 1));
  }

  .sm\:text-blue-700 {
    --tw-text-opacity: 1;
    color: rgb(29 78 216 / var(--tw-text-opacity, 1));
  }

  .sm\:text-blue-800 {
    --tw-text-opacity: 1;
    color: rgb(30 64 175 / var(--tw-text-opacity, 1));
  }

  .sm\:text-blue-900 {
    --tw-text-opacity: 1;
    color: rgb(30 58 138 / var(--tw-text-opacity, 1));
  }

  .sm\:text-blue-950 {
    --tw-text-opacity: 1;
    color: rgb(23 37 84 / var(--tw-text-opacity, 1));
  }

  .sm\:text-cyan-100 {
    --tw-text-opacity: 1;
    color: rgb(207 250 254 / var(--tw-text-opacity, 1));
  }

  .sm\:text-cyan-200 {
    --tw-text-opacity: 1;
    color: rgb(165 243 252 / var(--tw-text-opacity, 1));
  }

  .sm\:text-cyan-300 {
    --tw-text-opacity: 1;
    color: rgb(103 232 249 / var(--tw-text-opacity, 1));
  }

  .sm\:text-cyan-400 {
    --tw-text-opacity: 1;
    color: rgb(34 211 238 / var(--tw-text-opacity, 1));
  }

  .sm\:text-cyan-50 {
    --tw-text-opacity: 1;
    color: rgb(236 254 255 / var(--tw-text-opacity, 1));
  }

  .sm\:text-cyan-500 {
    --tw-text-opacity: 1;
    color: rgb(6 182 212 / var(--tw-text-opacity, 1));
  }

  .sm\:text-cyan-600 {
    --tw-text-opacity: 1;
    color: rgb(8 145 178 / var(--tw-text-opacity, 1));
  }

  .sm\:text-cyan-700 {
    --tw-text-opacity: 1;
    color: rgb(14 116 144 / var(--tw-text-opacity, 1));
  }

  .sm\:text-cyan-800 {
    --tw-text-opacity: 1;
    color: rgb(21 94 117 / var(--tw-text-opacity, 1));
  }

  .sm\:text-cyan-900 {
    --tw-text-opacity: 1;
    color: rgb(22 78 99 / var(--tw-text-opacity, 1));
  }

  .sm\:text-cyan-950 {
    --tw-text-opacity: 1;
    color: rgb(8 51 68 / var(--tw-text-opacity, 1));
  }

  .sm\:text-emerald-100 {
    --tw-text-opacity: 1;
    color: rgb(209 250 229 / var(--tw-text-opacity, 1));
  }

  .sm\:text-emerald-200 {
    --tw-text-opacity: 1;
    color: rgb(167 243 208 / var(--tw-text-opacity, 1));
  }

  .sm\:text-emerald-300 {
    --tw-text-opacity: 1;
    color: rgb(110 231 183 / var(--tw-text-opacity, 1));
  }

  .sm\:text-emerald-400 {
    --tw-text-opacity: 1;
    color: rgb(52 211 153 / var(--tw-text-opacity, 1));
  }

  .sm\:text-emerald-50 {
    --tw-text-opacity: 1;
    color: rgb(236 253 245 / var(--tw-text-opacity, 1));
  }

  .sm\:text-emerald-500 {
    --tw-text-opacity: 1;
    color: rgb(16 185 129 / var(--tw-text-opacity, 1));
  }

  .sm\:text-emerald-600 {
    --tw-text-opacity: 1;
    color: rgb(5 150 105 / var(--tw-text-opacity, 1));
  }

  .sm\:text-emerald-700 {
    --tw-text-opacity: 1;
    color: rgb(4 120 87 / var(--tw-text-opacity, 1));
  }

  .sm\:text-emerald-800 {
    --tw-text-opacity: 1;
    color: rgb(6 95 70 / var(--tw-text-opacity, 1));
  }

  .sm\:text-emerald-900 {
    --tw-text-opacity: 1;
    color: rgb(6 78 59 / var(--tw-text-opacity, 1));
  }

  .sm\:text-emerald-950 {
    --tw-text-opacity: 1;
    color: rgb(2 44 34 / var(--tw-text-opacity, 1));
  }

  .sm\:text-fuchsia-100 {
    --tw-text-opacity: 1;
    color: rgb(250 232 255 / var(--tw-text-opacity, 1));
  }

  .sm\:text-fuchsia-200 {
    --tw-text-opacity: 1;
    color: rgb(245 208 254 / var(--tw-text-opacity, 1));
  }

  .sm\:text-fuchsia-300 {
    --tw-text-opacity: 1;
    color: rgb(240 171 252 / var(--tw-text-opacity, 1));
  }

  .sm\:text-fuchsia-400 {
    --tw-text-opacity: 1;
    color: rgb(232 121 249 / var(--tw-text-opacity, 1));
  }

  .sm\:text-fuchsia-50 {
    --tw-text-opacity: 1;
    color: rgb(253 244 255 / var(--tw-text-opacity, 1));
  }

  .sm\:text-fuchsia-500 {
    --tw-text-opacity: 1;
    color: rgb(217 70 239 / var(--tw-text-opacity, 1));
  }

  .sm\:text-fuchsia-600 {
    --tw-text-opacity: 1;
    color: rgb(192 38 211 / var(--tw-text-opacity, 1));
  }

  .sm\:text-fuchsia-700 {
    --tw-text-opacity: 1;
    color: rgb(162 28 175 / var(--tw-text-opacity, 1));
  }

  .sm\:text-fuchsia-800 {
    --tw-text-opacity: 1;
    color: rgb(134 25 143 / var(--tw-text-opacity, 1));
  }

  .sm\:text-fuchsia-900 {
    --tw-text-opacity: 1;
    color: rgb(112 26 117 / var(--tw-text-opacity, 1));
  }

  .sm\:text-fuchsia-950 {
    --tw-text-opacity: 1;
    color: rgb(74 4 78 / var(--tw-text-opacity, 1));
  }

  .sm\:text-gray-100 {
    --tw-text-opacity: 1;
    color: rgb(243 244 246 / var(--tw-text-opacity, 1));
  }

  .sm\:text-gray-200 {
    --tw-text-opacity: 1;
    color: rgb(229 231 235 / var(--tw-text-opacity, 1));
  }

  .sm\:text-gray-300 {
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity, 1));
  }

  .sm\:text-gray-400 {
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
  }

  .sm\:text-gray-50 {
    --tw-text-opacity: 1;
    color: rgb(249 250 251 / var(--tw-text-opacity, 1));
  }

  .sm\:text-gray-500 {
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }

  .sm\:text-gray-600 {
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }

  .sm\:text-gray-700 {
    --tw-text-opacity: 1;
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
  }

  .sm\:text-gray-800 {
    --tw-text-opacity: 1;
    color: rgb(31 41 55 / var(--tw-text-opacity, 1));
  }

  .sm\:text-gray-900 {
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }

  .sm\:text-gray-950 {
    --tw-text-opacity: 1;
    color: rgb(3 7 18 / var(--tw-text-opacity, 1));
  }

  .sm\:text-green-100 {
    --tw-text-opacity: 1;
    color: rgb(220 252 231 / var(--tw-text-opacity, 1));
  }

  .sm\:text-green-200 {
    --tw-text-opacity: 1;
    color: rgb(187 247 208 / var(--tw-text-opacity, 1));
  }

  .sm\:text-green-300 {
    --tw-text-opacity: 1;
    color: rgb(134 239 172 / var(--tw-text-opacity, 1));
  }

  .sm\:text-green-400 {
    --tw-text-opacity: 1;
    color: rgb(74 222 128 / var(--tw-text-opacity, 1));
  }

  .sm\:text-green-50 {
    --tw-text-opacity: 1;
    color: rgb(240 253 244 / var(--tw-text-opacity, 1));
  }

  .sm\:text-green-500 {
    --tw-text-opacity: 1;
    color: rgb(34 197 94 / var(--tw-text-opacity, 1));
  }

  .sm\:text-green-600 {
    --tw-text-opacity: 1;
    color: rgb(22 163 74 / var(--tw-text-opacity, 1));
  }

  .sm\:text-green-700 {
    --tw-text-opacity: 1;
    color: rgb(21 128 61 / var(--tw-text-opacity, 1));
  }

  .sm\:text-green-800 {
    --tw-text-opacity: 1;
    color: rgb(22 101 52 / var(--tw-text-opacity, 1));
  }

  .sm\:text-green-900 {
    --tw-text-opacity: 1;
    color: rgb(20 83 45 / var(--tw-text-opacity, 1));
  }

  .sm\:text-green-950 {
    --tw-text-opacity: 1;
    color: rgb(5 46 22 / var(--tw-text-opacity, 1));
  }

  .sm\:text-indigo-100 {
    --tw-text-opacity: 1;
    color: rgb(224 231 255 / var(--tw-text-opacity, 1));
  }

  .sm\:text-indigo-200 {
    --tw-text-opacity: 1;
    color: rgb(199 210 254 / var(--tw-text-opacity, 1));
  }

  .sm\:text-indigo-300 {
    --tw-text-opacity: 1;
    color: rgb(165 180 252 / var(--tw-text-opacity, 1));
  }

  .sm\:text-indigo-400 {
    --tw-text-opacity: 1;
    color: rgb(129 140 248 / var(--tw-text-opacity, 1));
  }

  .sm\:text-indigo-50 {
    --tw-text-opacity: 1;
    color: rgb(238 242 255 / var(--tw-text-opacity, 1));
  }

  .sm\:text-indigo-500 {
    --tw-text-opacity: 1;
    color: rgb(99 102 241 / var(--tw-text-opacity, 1));
  }

  .sm\:text-indigo-600 {
    --tw-text-opacity: 1;
    color: rgb(79 70 229 / var(--tw-text-opacity, 1));
  }

  .sm\:text-indigo-700 {
    --tw-text-opacity: 1;
    color: rgb(67 56 202 / var(--tw-text-opacity, 1));
  }

  .sm\:text-indigo-800 {
    --tw-text-opacity: 1;
    color: rgb(55 48 163 / var(--tw-text-opacity, 1));
  }

  .sm\:text-indigo-900 {
    --tw-text-opacity: 1;
    color: rgb(49 46 129 / var(--tw-text-opacity, 1));
  }

  .sm\:text-indigo-950 {
    --tw-text-opacity: 1;
    color: rgb(30 27 75 / var(--tw-text-opacity, 1));
  }

  .sm\:text-lime-100 {
    --tw-text-opacity: 1;
    color: rgb(236 252 203 / var(--tw-text-opacity, 1));
  }

  .sm\:text-lime-200 {
    --tw-text-opacity: 1;
    color: rgb(217 249 157 / var(--tw-text-opacity, 1));
  }

  .sm\:text-lime-300 {
    --tw-text-opacity: 1;
    color: rgb(190 242 100 / var(--tw-text-opacity, 1));
  }

  .sm\:text-lime-400 {
    --tw-text-opacity: 1;
    color: rgb(163 230 53 / var(--tw-text-opacity, 1));
  }

  .sm\:text-lime-50 {
    --tw-text-opacity: 1;
    color: rgb(247 254 231 / var(--tw-text-opacity, 1));
  }

  .sm\:text-lime-500 {
    --tw-text-opacity: 1;
    color: rgb(132 204 22 / var(--tw-text-opacity, 1));
  }

  .sm\:text-lime-600 {
    --tw-text-opacity: 1;
    color: rgb(101 163 13 / var(--tw-text-opacity, 1));
  }

  .sm\:text-lime-700 {
    --tw-text-opacity: 1;
    color: rgb(77 124 15 / var(--tw-text-opacity, 1));
  }

  .sm\:text-lime-800 {
    --tw-text-opacity: 1;
    color: rgb(63 98 18 / var(--tw-text-opacity, 1));
  }

  .sm\:text-lime-900 {
    --tw-text-opacity: 1;
    color: rgb(54 83 20 / var(--tw-text-opacity, 1));
  }

  .sm\:text-lime-950 {
    --tw-text-opacity: 1;
    color: rgb(26 46 5 / var(--tw-text-opacity, 1));
  }

  .sm\:text-neutral-100 {
    --tw-text-opacity: 1;
    color: rgb(245 245 245 / var(--tw-text-opacity, 1));
  }

  .sm\:text-neutral-200 {
    --tw-text-opacity: 1;
    color: rgb(229 229 229 / var(--tw-text-opacity, 1));
  }

  .sm\:text-neutral-300 {
    --tw-text-opacity: 1;
    color: rgb(212 212 212 / var(--tw-text-opacity, 1));
  }

  .sm\:text-neutral-400 {
    --tw-text-opacity: 1;
    color: rgb(163 163 163 / var(--tw-text-opacity, 1));
  }

  .sm\:text-neutral-50 {
    --tw-text-opacity: 1;
    color: rgb(250 250 250 / var(--tw-text-opacity, 1));
  }

  .sm\:text-neutral-500 {
    --tw-text-opacity: 1;
    color: rgb(115 115 115 / var(--tw-text-opacity, 1));
  }

  .sm\:text-neutral-600 {
    --tw-text-opacity: 1;
    color: rgb(82 82 82 / var(--tw-text-opacity, 1));
  }

  .sm\:text-neutral-700 {
    --tw-text-opacity: 1;
    color: rgb(64 64 64 / var(--tw-text-opacity, 1));
  }

  .sm\:text-neutral-800 {
    --tw-text-opacity: 1;
    color: rgb(38 38 38 / var(--tw-text-opacity, 1));
  }

  .sm\:text-neutral-900 {
    --tw-text-opacity: 1;
    color: rgb(23 23 23 / var(--tw-text-opacity, 1));
  }

  .sm\:text-neutral-950 {
    --tw-text-opacity: 1;
    color: rgb(10 10 10 / var(--tw-text-opacity, 1));
  }

  .sm\:text-orange-100 {
    --tw-text-opacity: 1;
    color: rgb(255 237 213 / var(--tw-text-opacity, 1));
  }

  .sm\:text-orange-200 {
    --tw-text-opacity: 1;
    color: rgb(254 215 170 / var(--tw-text-opacity, 1));
  }

  .sm\:text-orange-300 {
    --tw-text-opacity: 1;
    color: rgb(253 186 116 / var(--tw-text-opacity, 1));
  }

  .sm\:text-orange-400 {
    --tw-text-opacity: 1;
    color: rgb(251 146 60 / var(--tw-text-opacity, 1));
  }

  .sm\:text-orange-50 {
    --tw-text-opacity: 1;
    color: rgb(255 247 237 / var(--tw-text-opacity, 1));
  }

  .sm\:text-orange-500 {
    --tw-text-opacity: 1;
    color: rgb(249 115 22 / var(--tw-text-opacity, 1));
  }

  .sm\:text-orange-600 {
    --tw-text-opacity: 1;
    color: rgb(234 88 12 / var(--tw-text-opacity, 1));
  }

  .sm\:text-orange-700 {
    --tw-text-opacity: 1;
    color: rgb(194 65 12 / var(--tw-text-opacity, 1));
  }

  .sm\:text-orange-800 {
    --tw-text-opacity: 1;
    color: rgb(154 52 18 / var(--tw-text-opacity, 1));
  }

  .sm\:text-orange-900 {
    --tw-text-opacity: 1;
    color: rgb(124 45 18 / var(--tw-text-opacity, 1));
  }

  .sm\:text-orange-950 {
    --tw-text-opacity: 1;
    color: rgb(67 20 7 / var(--tw-text-opacity, 1));
  }

  .sm\:text-pink-100 {
    --tw-text-opacity: 1;
    color: rgb(252 231 243 / var(--tw-text-opacity, 1));
  }

  .sm\:text-pink-200 {
    --tw-text-opacity: 1;
    color: rgb(251 207 232 / var(--tw-text-opacity, 1));
  }

  .sm\:text-pink-300 {
    --tw-text-opacity: 1;
    color: rgb(249 168 212 / var(--tw-text-opacity, 1));
  }

  .sm\:text-pink-400 {
    --tw-text-opacity: 1;
    color: rgb(244 114 182 / var(--tw-text-opacity, 1));
  }

  .sm\:text-pink-50 {
    --tw-text-opacity: 1;
    color: rgb(253 242 248 / var(--tw-text-opacity, 1));
  }

  .sm\:text-pink-500 {
    --tw-text-opacity: 1;
    color: rgb(236 72 153 / var(--tw-text-opacity, 1));
  }

  .sm\:text-pink-600 {
    --tw-text-opacity: 1;
    color: rgb(219 39 119 / var(--tw-text-opacity, 1));
  }

  .sm\:text-pink-700 {
    --tw-text-opacity: 1;
    color: rgb(190 24 93 / var(--tw-text-opacity, 1));
  }

  .sm\:text-pink-800 {
    --tw-text-opacity: 1;
    color: rgb(157 23 77 / var(--tw-text-opacity, 1));
  }

  .sm\:text-pink-900 {
    --tw-text-opacity: 1;
    color: rgb(131 24 67 / var(--tw-text-opacity, 1));
  }

  .sm\:text-pink-950 {
    --tw-text-opacity: 1;
    color: rgb(80 7 36 / var(--tw-text-opacity, 1));
  }

  .sm\:text-purple-100 {
    --tw-text-opacity: 1;
    color: rgb(243 232 255 / var(--tw-text-opacity, 1));
  }

  .sm\:text-purple-200 {
    --tw-text-opacity: 1;
    color: rgb(233 213 255 / var(--tw-text-opacity, 1));
  }

  .sm\:text-purple-300 {
    --tw-text-opacity: 1;
    color: rgb(216 180 254 / var(--tw-text-opacity, 1));
  }

  .sm\:text-purple-400 {
    --tw-text-opacity: 1;
    color: rgb(192 132 252 / var(--tw-text-opacity, 1));
  }

  .sm\:text-purple-50 {
    --tw-text-opacity: 1;
    color: rgb(250 245 255 / var(--tw-text-opacity, 1));
  }

  .sm\:text-purple-500 {
    --tw-text-opacity: 1;
    color: rgb(168 85 247 / var(--tw-text-opacity, 1));
  }

  .sm\:text-purple-600 {
    --tw-text-opacity: 1;
    color: rgb(147 51 234 / var(--tw-text-opacity, 1));
  }

  .sm\:text-purple-700 {
    --tw-text-opacity: 1;
    color: rgb(126 34 206 / var(--tw-text-opacity, 1));
  }

  .sm\:text-purple-800 {
    --tw-text-opacity: 1;
    color: rgb(107 33 168 / var(--tw-text-opacity, 1));
  }

  .sm\:text-purple-900 {
    --tw-text-opacity: 1;
    color: rgb(88 28 135 / var(--tw-text-opacity, 1));
  }

  .sm\:text-purple-950 {
    --tw-text-opacity: 1;
    color: rgb(59 7 100 / var(--tw-text-opacity, 1));
  }

  .sm\:text-red-100 {
    --tw-text-opacity: 1;
    color: rgb(254 226 226 / var(--tw-text-opacity, 1));
  }

  .sm\:text-red-200 {
    --tw-text-opacity: 1;
    color: rgb(254 202 202 / var(--tw-text-opacity, 1));
  }

  .sm\:text-red-300 {
    --tw-text-opacity: 1;
    color: rgb(252 165 165 / var(--tw-text-opacity, 1));
  }

  .sm\:text-red-400 {
    --tw-text-opacity: 1;
    color: rgb(248 113 113 / var(--tw-text-opacity, 1));
  }

  .sm\:text-red-50 {
    --tw-text-opacity: 1;
    color: rgb(254 242 242 / var(--tw-text-opacity, 1));
  }

  .sm\:text-red-500 {
    --tw-text-opacity: 1;
    color: rgb(239 68 68 / var(--tw-text-opacity, 1));
  }

  .sm\:text-red-600 {
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity, 1));
  }

  .sm\:text-red-700 {
    --tw-text-opacity: 1;
    color: rgb(185 28 28 / var(--tw-text-opacity, 1));
  }

  .sm\:text-red-800 {
    --tw-text-opacity: 1;
    color: rgb(153 27 27 / var(--tw-text-opacity, 1));
  }

  .sm\:text-red-900 {
    --tw-text-opacity: 1;
    color: rgb(127 29 29 / var(--tw-text-opacity, 1));
  }

  .sm\:text-red-950 {
    --tw-text-opacity: 1;
    color: rgb(69 10 10 / var(--tw-text-opacity, 1));
  }

  .sm\:text-rose-100 {
    --tw-text-opacity: 1;
    color: rgb(255 228 230 / var(--tw-text-opacity, 1));
  }

  .sm\:text-rose-200 {
    --tw-text-opacity: 1;
    color: rgb(254 205 211 / var(--tw-text-opacity, 1));
  }

  .sm\:text-rose-300 {
    --tw-text-opacity: 1;
    color: rgb(253 164 175 / var(--tw-text-opacity, 1));
  }

  .sm\:text-rose-400 {
    --tw-text-opacity: 1;
    color: rgb(251 113 133 / var(--tw-text-opacity, 1));
  }

  .sm\:text-rose-50 {
    --tw-text-opacity: 1;
    color: rgb(255 241 242 / var(--tw-text-opacity, 1));
  }

  .sm\:text-rose-500 {
    --tw-text-opacity: 1;
    color: rgb(244 63 94 / var(--tw-text-opacity, 1));
  }

  .sm\:text-rose-600 {
    --tw-text-opacity: 1;
    color: rgb(225 29 72 / var(--tw-text-opacity, 1));
  }

  .sm\:text-rose-700 {
    --tw-text-opacity: 1;
    color: rgb(190 18 60 / var(--tw-text-opacity, 1));
  }

  .sm\:text-rose-800 {
    --tw-text-opacity: 1;
    color: rgb(159 18 57 / var(--tw-text-opacity, 1));
  }

  .sm\:text-rose-900 {
    --tw-text-opacity: 1;
    color: rgb(136 19 55 / var(--tw-text-opacity, 1));
  }

  .sm\:text-rose-950 {
    --tw-text-opacity: 1;
    color: rgb(76 5 25 / var(--tw-text-opacity, 1));
  }

  .sm\:text-sky-100 {
    --tw-text-opacity: 1;
    color: rgb(224 242 254 / var(--tw-text-opacity, 1));
  }

  .sm\:text-sky-200 {
    --tw-text-opacity: 1;
    color: rgb(186 230 253 / var(--tw-text-opacity, 1));
  }

  .sm\:text-sky-300 {
    --tw-text-opacity: 1;
    color: rgb(125 211 252 / var(--tw-text-opacity, 1));
  }

  .sm\:text-sky-400 {
    --tw-text-opacity: 1;
    color: rgb(56 189 248 / var(--tw-text-opacity, 1));
  }

  .sm\:text-sky-50 {
    --tw-text-opacity: 1;
    color: rgb(240 249 255 / var(--tw-text-opacity, 1));
  }

  .sm\:text-sky-500 {
    --tw-text-opacity: 1;
    color: rgb(14 165 233 / var(--tw-text-opacity, 1));
  }

  .sm\:text-sky-600 {
    --tw-text-opacity: 1;
    color: rgb(2 132 199 / var(--tw-text-opacity, 1));
  }

  .sm\:text-sky-700 {
    --tw-text-opacity: 1;
    color: rgb(3 105 161 / var(--tw-text-opacity, 1));
  }

  .sm\:text-sky-800 {
    --tw-text-opacity: 1;
    color: rgb(7 89 133 / var(--tw-text-opacity, 1));
  }

  .sm\:text-sky-900 {
    --tw-text-opacity: 1;
    color: rgb(12 74 110 / var(--tw-text-opacity, 1));
  }

  .sm\:text-sky-950 {
    --tw-text-opacity: 1;
    color: rgb(8 47 73 / var(--tw-text-opacity, 1));
  }

  .sm\:text-slate-100 {
    --tw-text-opacity: 1;
    color: rgb(241 245 249 / var(--tw-text-opacity, 1));
  }

  .sm\:text-slate-200 {
    --tw-text-opacity: 1;
    color: rgb(226 232 240 / var(--tw-text-opacity, 1));
  }

  .sm\:text-slate-300 {
    --tw-text-opacity: 1;
    color: rgb(203 213 225 / var(--tw-text-opacity, 1));
  }

  .sm\:text-slate-400 {
    --tw-text-opacity: 1;
    color: rgb(148 163 184 / var(--tw-text-opacity, 1));
  }

  .sm\:text-slate-50 {
    --tw-text-opacity: 1;
    color: rgb(248 250 252 / var(--tw-text-opacity, 1));
  }

  .sm\:text-slate-500 {
    --tw-text-opacity: 1;
    color: rgb(100 116 139 / var(--tw-text-opacity, 1));
  }

  .sm\:text-slate-600 {
    --tw-text-opacity: 1;
    color: rgb(71 85 105 / var(--tw-text-opacity, 1));
  }

  .sm\:text-slate-700 {
    --tw-text-opacity: 1;
    color: rgb(51 65 85 / var(--tw-text-opacity, 1));
  }

  .sm\:text-slate-800 {
    --tw-text-opacity: 1;
    color: rgb(30 41 59 / var(--tw-text-opacity, 1));
  }

  .sm\:text-slate-900 {
    --tw-text-opacity: 1;
    color: rgb(15 23 42 / var(--tw-text-opacity, 1));
  }

  .sm\:text-slate-950 {
    --tw-text-opacity: 1;
    color: rgb(2 6 23 / var(--tw-text-opacity, 1));
  }

  .sm\:text-stone-100 {
    --tw-text-opacity: 1;
    color: rgb(245 245 244 / var(--tw-text-opacity, 1));
  }

  .sm\:text-stone-200 {
    --tw-text-opacity: 1;
    color: rgb(231 229 228 / var(--tw-text-opacity, 1));
  }

  .sm\:text-stone-300 {
    --tw-text-opacity: 1;
    color: rgb(214 211 209 / var(--tw-text-opacity, 1));
  }

  .sm\:text-stone-400 {
    --tw-text-opacity: 1;
    color: rgb(168 162 158 / var(--tw-text-opacity, 1));
  }

  .sm\:text-stone-50 {
    --tw-text-opacity: 1;
    color: rgb(250 250 249 / var(--tw-text-opacity, 1));
  }

  .sm\:text-stone-500 {
    --tw-text-opacity: 1;
    color: rgb(120 113 108 / var(--tw-text-opacity, 1));
  }

  .sm\:text-stone-600 {
    --tw-text-opacity: 1;
    color: rgb(87 83 78 / var(--tw-text-opacity, 1));
  }

  .sm\:text-stone-700 {
    --tw-text-opacity: 1;
    color: rgb(68 64 60 / var(--tw-text-opacity, 1));
  }

  .sm\:text-stone-800 {
    --tw-text-opacity: 1;
    color: rgb(41 37 36 / var(--tw-text-opacity, 1));
  }

  .sm\:text-stone-900 {
    --tw-text-opacity: 1;
    color: rgb(28 25 23 / var(--tw-text-opacity, 1));
  }

  .sm\:text-stone-950 {
    --tw-text-opacity: 1;
    color: rgb(12 10 9 / var(--tw-text-opacity, 1));
  }

  .sm\:text-teal-100 {
    --tw-text-opacity: 1;
    color: rgb(204 251 241 / var(--tw-text-opacity, 1));
  }

  .sm\:text-teal-200 {
    --tw-text-opacity: 1;
    color: rgb(153 246 228 / var(--tw-text-opacity, 1));
  }

  .sm\:text-teal-300 {
    --tw-text-opacity: 1;
    color: rgb(94 234 212 / var(--tw-text-opacity, 1));
  }

  .sm\:text-teal-400 {
    --tw-text-opacity: 1;
    color: rgb(45 212 191 / var(--tw-text-opacity, 1));
  }

  .sm\:text-teal-50 {
    --tw-text-opacity: 1;
    color: rgb(240 253 250 / var(--tw-text-opacity, 1));
  }

  .sm\:text-teal-500 {
    --tw-text-opacity: 1;
    color: rgb(20 184 166 / var(--tw-text-opacity, 1));
  }

  .sm\:text-teal-600 {
    --tw-text-opacity: 1;
    color: rgb(13 148 136 / var(--tw-text-opacity, 1));
  }

  .sm\:text-teal-700 {
    --tw-text-opacity: 1;
    color: rgb(15 118 110 / var(--tw-text-opacity, 1));
  }

  .sm\:text-teal-800 {
    --tw-text-opacity: 1;
    color: rgb(17 94 89 / var(--tw-text-opacity, 1));
  }

  .sm\:text-teal-900 {
    --tw-text-opacity: 1;
    color: rgb(19 78 74 / var(--tw-text-opacity, 1));
  }

  .sm\:text-teal-950 {
    --tw-text-opacity: 1;
    color: rgb(4 47 46 / var(--tw-text-opacity, 1));
  }

  .sm\:text-violet-100 {
    --tw-text-opacity: 1;
    color: rgb(237 233 254 / var(--tw-text-opacity, 1));
  }

  .sm\:text-violet-200 {
    --tw-text-opacity: 1;
    color: rgb(221 214 254 / var(--tw-text-opacity, 1));
  }

  .sm\:text-violet-300 {
    --tw-text-opacity: 1;
    color: rgb(196 181 253 / var(--tw-text-opacity, 1));
  }

  .sm\:text-violet-400 {
    --tw-text-opacity: 1;
    color: rgb(167 139 250 / var(--tw-text-opacity, 1));
  }

  .sm\:text-violet-50 {
    --tw-text-opacity: 1;
    color: rgb(245 243 255 / var(--tw-text-opacity, 1));
  }

  .sm\:text-violet-500 {
    --tw-text-opacity: 1;
    color: rgb(139 92 246 / var(--tw-text-opacity, 1));
  }

  .sm\:text-violet-600 {
    --tw-text-opacity: 1;
    color: rgb(124 58 237 / var(--tw-text-opacity, 1));
  }

  .sm\:text-violet-700 {
    --tw-text-opacity: 1;
    color: rgb(109 40 217 / var(--tw-text-opacity, 1));
  }

  .sm\:text-violet-800 {
    --tw-text-opacity: 1;
    color: rgb(91 33 182 / var(--tw-text-opacity, 1));
  }

  .sm\:text-violet-900 {
    --tw-text-opacity: 1;
    color: rgb(76 29 149 / var(--tw-text-opacity, 1));
  }

  .sm\:text-violet-950 {
    --tw-text-opacity: 1;
    color: rgb(46 16 101 / var(--tw-text-opacity, 1));
  }

  .sm\:text-yellow-100 {
    --tw-text-opacity: 1;
    color: rgb(254 249 195 / var(--tw-text-opacity, 1));
  }

  .sm\:text-yellow-200 {
    --tw-text-opacity: 1;
    color: rgb(254 240 138 / var(--tw-text-opacity, 1));
  }

  .sm\:text-yellow-300 {
    --tw-text-opacity: 1;
    color: rgb(253 224 71 / var(--tw-text-opacity, 1));
  }

  .sm\:text-yellow-400 {
    --tw-text-opacity: 1;
    color: rgb(250 204 21 / var(--tw-text-opacity, 1));
  }

  .sm\:text-yellow-50 {
    --tw-text-opacity: 1;
    color: rgb(254 252 232 / var(--tw-text-opacity, 1));
  }

  .sm\:text-yellow-500 {
    --tw-text-opacity: 1;
    color: rgb(234 179 8 / var(--tw-text-opacity, 1));
  }

  .sm\:text-yellow-600 {
    --tw-text-opacity: 1;
    color: rgb(202 138 4 / var(--tw-text-opacity, 1));
  }

  .sm\:text-yellow-700 {
    --tw-text-opacity: 1;
    color: rgb(161 98 7 / var(--tw-text-opacity, 1));
  }

  .sm\:text-yellow-800 {
    --tw-text-opacity: 1;
    color: rgb(133 77 14 / var(--tw-text-opacity, 1));
  }

  .sm\:text-yellow-900 {
    --tw-text-opacity: 1;
    color: rgb(113 63 18 / var(--tw-text-opacity, 1));
  }

  .sm\:text-yellow-950 {
    --tw-text-opacity: 1;
    color: rgb(66 32 6 / var(--tw-text-opacity, 1));
  }

  .sm\:text-zinc-100 {
    --tw-text-opacity: 1;
    color: rgb(244 244 245 / var(--tw-text-opacity, 1));
  }

  .sm\:text-zinc-200 {
    --tw-text-opacity: 1;
    color: rgb(228 228 231 / var(--tw-text-opacity, 1));
  }

  .sm\:text-zinc-300 {
    --tw-text-opacity: 1;
    color: rgb(212 212 216 / var(--tw-text-opacity, 1));
  }

  .sm\:text-zinc-400 {
    --tw-text-opacity: 1;
    color: rgb(161 161 170 / var(--tw-text-opacity, 1));
  }

  .sm\:text-zinc-50 {
    --tw-text-opacity: 1;
    color: rgb(250 250 250 / var(--tw-text-opacity, 1));
  }

  .sm\:text-zinc-500 {
    --tw-text-opacity: 1;
    color: rgb(113 113 122 / var(--tw-text-opacity, 1));
  }

  .sm\:text-zinc-600 {
    --tw-text-opacity: 1;
    color: rgb(82 82 91 / var(--tw-text-opacity, 1));
  }

  .sm\:text-zinc-700 {
    --tw-text-opacity: 1;
    color: rgb(63 63 70 / var(--tw-text-opacity, 1));
  }

  .sm\:text-zinc-800 {
    --tw-text-opacity: 1;
    color: rgb(39 39 42 / var(--tw-text-opacity, 1));
  }

  .sm\:text-zinc-900 {
    --tw-text-opacity: 1;
    color: rgb(24 24 27 / var(--tw-text-opacity, 1));
  }

  .sm\:text-zinc-950 {
    --tw-text-opacity: 1;
    color: rgb(9 9 11 / var(--tw-text-opacity, 1));
  }

  .sm\:shadow-lg {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .sm\:shadow-md {
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .sm\:shadow-sm {
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .sm\:shadow-amber-100 {
    --tw-shadow-color: #fef3c7;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-100\/10 {
    --tw-shadow-color: rgb(254 243 199 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-100\/20 {
    --tw-shadow-color: rgb(254 243 199 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-100\/30 {
    --tw-shadow-color: rgb(254 243 199 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-100\/40 {
    --tw-shadow-color: rgb(254 243 199 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-100\/5 {
    --tw-shadow-color: rgb(254 243 199 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-100\/50 {
    --tw-shadow-color: rgb(254 243 199 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-100\/60 {
    --tw-shadow-color: rgb(254 243 199 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-100\/70 {
    --tw-shadow-color: rgb(254 243 199 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-100\/80 {
    --tw-shadow-color: rgb(254 243 199 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-100\/90 {
    --tw-shadow-color: rgb(254 243 199 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-200 {
    --tw-shadow-color: #fde68a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-200\/10 {
    --tw-shadow-color: rgb(253 230 138 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-200\/20 {
    --tw-shadow-color: rgb(253 230 138 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-200\/30 {
    --tw-shadow-color: rgb(253 230 138 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-200\/40 {
    --tw-shadow-color: rgb(253 230 138 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-200\/5 {
    --tw-shadow-color: rgb(253 230 138 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-200\/50 {
    --tw-shadow-color: rgb(253 230 138 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-200\/60 {
    --tw-shadow-color: rgb(253 230 138 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-200\/70 {
    --tw-shadow-color: rgb(253 230 138 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-200\/80 {
    --tw-shadow-color: rgb(253 230 138 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-200\/90 {
    --tw-shadow-color: rgb(253 230 138 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-300 {
    --tw-shadow-color: #fcd34d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-300\/10 {
    --tw-shadow-color: rgb(252 211 77 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-300\/20 {
    --tw-shadow-color: rgb(252 211 77 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-300\/30 {
    --tw-shadow-color: rgb(252 211 77 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-300\/40 {
    --tw-shadow-color: rgb(252 211 77 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-300\/5 {
    --tw-shadow-color: rgb(252 211 77 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-300\/50 {
    --tw-shadow-color: rgb(252 211 77 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-300\/60 {
    --tw-shadow-color: rgb(252 211 77 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-300\/70 {
    --tw-shadow-color: rgb(252 211 77 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-300\/80 {
    --tw-shadow-color: rgb(252 211 77 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-300\/90 {
    --tw-shadow-color: rgb(252 211 77 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-400 {
    --tw-shadow-color: #fbbf24;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-400\/10 {
    --tw-shadow-color: rgb(251 191 36 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-400\/20 {
    --tw-shadow-color: rgb(251 191 36 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-400\/30 {
    --tw-shadow-color: rgb(251 191 36 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-400\/40 {
    --tw-shadow-color: rgb(251 191 36 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-400\/5 {
    --tw-shadow-color: rgb(251 191 36 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-400\/50 {
    --tw-shadow-color: rgb(251 191 36 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-400\/60 {
    --tw-shadow-color: rgb(251 191 36 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-400\/70 {
    --tw-shadow-color: rgb(251 191 36 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-400\/80 {
    --tw-shadow-color: rgb(251 191 36 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-400\/90 {
    --tw-shadow-color: rgb(251 191 36 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-50 {
    --tw-shadow-color: #fffbeb;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-50\/10 {
    --tw-shadow-color: rgb(255 251 235 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-50\/20 {
    --tw-shadow-color: rgb(255 251 235 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-50\/30 {
    --tw-shadow-color: rgb(255 251 235 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-50\/40 {
    --tw-shadow-color: rgb(255 251 235 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-50\/5 {
    --tw-shadow-color: rgb(255 251 235 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-50\/50 {
    --tw-shadow-color: rgb(255 251 235 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-50\/60 {
    --tw-shadow-color: rgb(255 251 235 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-50\/70 {
    --tw-shadow-color: rgb(255 251 235 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-50\/80 {
    --tw-shadow-color: rgb(255 251 235 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-50\/90 {
    --tw-shadow-color: rgb(255 251 235 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-500 {
    --tw-shadow-color: #f59e0b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-500\/10 {
    --tw-shadow-color: rgb(245 158 11 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-500\/20 {
    --tw-shadow-color: rgb(245 158 11 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-500\/30 {
    --tw-shadow-color: rgb(245 158 11 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-500\/40 {
    --tw-shadow-color: rgb(245 158 11 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-500\/5 {
    --tw-shadow-color: rgb(245 158 11 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-500\/50 {
    --tw-shadow-color: rgb(245 158 11 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-500\/60 {
    --tw-shadow-color: rgb(245 158 11 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-500\/70 {
    --tw-shadow-color: rgb(245 158 11 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-500\/80 {
    --tw-shadow-color: rgb(245 158 11 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-500\/90 {
    --tw-shadow-color: rgb(245 158 11 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-600 {
    --tw-shadow-color: #d97706;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-600\/10 {
    --tw-shadow-color: rgb(217 119 6 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-600\/20 {
    --tw-shadow-color: rgb(217 119 6 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-600\/30 {
    --tw-shadow-color: rgb(217 119 6 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-600\/40 {
    --tw-shadow-color: rgb(217 119 6 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-600\/5 {
    --tw-shadow-color: rgb(217 119 6 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-600\/50 {
    --tw-shadow-color: rgb(217 119 6 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-600\/60 {
    --tw-shadow-color: rgb(217 119 6 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-600\/70 {
    --tw-shadow-color: rgb(217 119 6 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-600\/80 {
    --tw-shadow-color: rgb(217 119 6 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-600\/90 {
    --tw-shadow-color: rgb(217 119 6 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-700 {
    --tw-shadow-color: #b45309;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-700\/10 {
    --tw-shadow-color: rgb(180 83 9 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-700\/20 {
    --tw-shadow-color: rgb(180 83 9 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-700\/30 {
    --tw-shadow-color: rgb(180 83 9 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-700\/40 {
    --tw-shadow-color: rgb(180 83 9 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-700\/5 {
    --tw-shadow-color: rgb(180 83 9 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-700\/50 {
    --tw-shadow-color: rgb(180 83 9 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-700\/60 {
    --tw-shadow-color: rgb(180 83 9 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-700\/70 {
    --tw-shadow-color: rgb(180 83 9 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-700\/80 {
    --tw-shadow-color: rgb(180 83 9 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-700\/90 {
    --tw-shadow-color: rgb(180 83 9 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-800 {
    --tw-shadow-color: #92400e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-800\/10 {
    --tw-shadow-color: rgb(146 64 14 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-800\/20 {
    --tw-shadow-color: rgb(146 64 14 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-800\/30 {
    --tw-shadow-color: rgb(146 64 14 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-800\/40 {
    --tw-shadow-color: rgb(146 64 14 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-800\/5 {
    --tw-shadow-color: rgb(146 64 14 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-800\/50 {
    --tw-shadow-color: rgb(146 64 14 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-800\/60 {
    --tw-shadow-color: rgb(146 64 14 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-800\/70 {
    --tw-shadow-color: rgb(146 64 14 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-800\/80 {
    --tw-shadow-color: rgb(146 64 14 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-800\/90 {
    --tw-shadow-color: rgb(146 64 14 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-900 {
    --tw-shadow-color: #78350f;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-900\/10 {
    --tw-shadow-color: rgb(120 53 15 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-900\/20 {
    --tw-shadow-color: rgb(120 53 15 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-900\/30 {
    --tw-shadow-color: rgb(120 53 15 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-900\/40 {
    --tw-shadow-color: rgb(120 53 15 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-900\/5 {
    --tw-shadow-color: rgb(120 53 15 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-900\/50 {
    --tw-shadow-color: rgb(120 53 15 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-900\/60 {
    --tw-shadow-color: rgb(120 53 15 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-900\/70 {
    --tw-shadow-color: rgb(120 53 15 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-900\/80 {
    --tw-shadow-color: rgb(120 53 15 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-900\/90 {
    --tw-shadow-color: rgb(120 53 15 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-950 {
    --tw-shadow-color: #451a03;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-950\/10 {
    --tw-shadow-color: rgb(69 26 3 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-950\/20 {
    --tw-shadow-color: rgb(69 26 3 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-950\/30 {
    --tw-shadow-color: rgb(69 26 3 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-950\/40 {
    --tw-shadow-color: rgb(69 26 3 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-950\/5 {
    --tw-shadow-color: rgb(69 26 3 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-950\/50 {
    --tw-shadow-color: rgb(69 26 3 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-950\/60 {
    --tw-shadow-color: rgb(69 26 3 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-950\/70 {
    --tw-shadow-color: rgb(69 26 3 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-950\/80 {
    --tw-shadow-color: rgb(69 26 3 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-amber-950\/90 {
    --tw-shadow-color: rgb(69 26 3 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-100 {
    --tw-shadow-color: #dbeafe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-100\/10 {
    --tw-shadow-color: rgb(219 234 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-100\/20 {
    --tw-shadow-color: rgb(219 234 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-100\/30 {
    --tw-shadow-color: rgb(219 234 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-100\/40 {
    --tw-shadow-color: rgb(219 234 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-100\/5 {
    --tw-shadow-color: rgb(219 234 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-100\/50 {
    --tw-shadow-color: rgb(219 234 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-100\/60 {
    --tw-shadow-color: rgb(219 234 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-100\/70 {
    --tw-shadow-color: rgb(219 234 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-100\/80 {
    --tw-shadow-color: rgb(219 234 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-100\/90 {
    --tw-shadow-color: rgb(219 234 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-200 {
    --tw-shadow-color: #bfdbfe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-200\/10 {
    --tw-shadow-color: rgb(191 219 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-200\/20 {
    --tw-shadow-color: rgb(191 219 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-200\/30 {
    --tw-shadow-color: rgb(191 219 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-200\/40 {
    --tw-shadow-color: rgb(191 219 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-200\/5 {
    --tw-shadow-color: rgb(191 219 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-200\/50 {
    --tw-shadow-color: rgb(191 219 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-200\/60 {
    --tw-shadow-color: rgb(191 219 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-200\/70 {
    --tw-shadow-color: rgb(191 219 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-200\/80 {
    --tw-shadow-color: rgb(191 219 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-200\/90 {
    --tw-shadow-color: rgb(191 219 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-300 {
    --tw-shadow-color: #93c5fd;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-300\/10 {
    --tw-shadow-color: rgb(147 197 253 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-300\/20 {
    --tw-shadow-color: rgb(147 197 253 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-300\/30 {
    --tw-shadow-color: rgb(147 197 253 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-300\/40 {
    --tw-shadow-color: rgb(147 197 253 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-300\/5 {
    --tw-shadow-color: rgb(147 197 253 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-300\/50 {
    --tw-shadow-color: rgb(147 197 253 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-300\/60 {
    --tw-shadow-color: rgb(147 197 253 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-300\/70 {
    --tw-shadow-color: rgb(147 197 253 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-300\/80 {
    --tw-shadow-color: rgb(147 197 253 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-300\/90 {
    --tw-shadow-color: rgb(147 197 253 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-400 {
    --tw-shadow-color: #60a5fa;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-400\/10 {
    --tw-shadow-color: rgb(96 165 250 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-400\/20 {
    --tw-shadow-color: rgb(96 165 250 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-400\/30 {
    --tw-shadow-color: rgb(96 165 250 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-400\/40 {
    --tw-shadow-color: rgb(96 165 250 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-400\/5 {
    --tw-shadow-color: rgb(96 165 250 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-400\/50 {
    --tw-shadow-color: rgb(96 165 250 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-400\/60 {
    --tw-shadow-color: rgb(96 165 250 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-400\/70 {
    --tw-shadow-color: rgb(96 165 250 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-400\/80 {
    --tw-shadow-color: rgb(96 165 250 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-400\/90 {
    --tw-shadow-color: rgb(96 165 250 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-50 {
    --tw-shadow-color: #eff6ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-50\/10 {
    --tw-shadow-color: rgb(239 246 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-50\/20 {
    --tw-shadow-color: rgb(239 246 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-50\/30 {
    --tw-shadow-color: rgb(239 246 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-50\/40 {
    --tw-shadow-color: rgb(239 246 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-50\/5 {
    --tw-shadow-color: rgb(239 246 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-50\/50 {
    --tw-shadow-color: rgb(239 246 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-50\/60 {
    --tw-shadow-color: rgb(239 246 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-50\/70 {
    --tw-shadow-color: rgb(239 246 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-50\/80 {
    --tw-shadow-color: rgb(239 246 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-50\/90 {
    --tw-shadow-color: rgb(239 246 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-500 {
    --tw-shadow-color: #3b82f6;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-500\/10 {
    --tw-shadow-color: rgb(59 130 246 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-500\/20 {
    --tw-shadow-color: rgb(59 130 246 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-500\/30 {
    --tw-shadow-color: rgb(59 130 246 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-500\/40 {
    --tw-shadow-color: rgb(59 130 246 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-500\/5 {
    --tw-shadow-color: rgb(59 130 246 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-500\/50 {
    --tw-shadow-color: rgb(59 130 246 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-500\/60 {
    --tw-shadow-color: rgb(59 130 246 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-500\/70 {
    --tw-shadow-color: rgb(59 130 246 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-500\/80 {
    --tw-shadow-color: rgb(59 130 246 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-500\/90 {
    --tw-shadow-color: rgb(59 130 246 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-600 {
    --tw-shadow-color: #2563eb;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-600\/10 {
    --tw-shadow-color: rgb(37 99 235 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-600\/20 {
    --tw-shadow-color: rgb(37 99 235 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-600\/30 {
    --tw-shadow-color: rgb(37 99 235 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-600\/40 {
    --tw-shadow-color: rgb(37 99 235 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-600\/5 {
    --tw-shadow-color: rgb(37 99 235 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-600\/50 {
    --tw-shadow-color: rgb(37 99 235 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-600\/60 {
    --tw-shadow-color: rgb(37 99 235 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-600\/70 {
    --tw-shadow-color: rgb(37 99 235 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-600\/80 {
    --tw-shadow-color: rgb(37 99 235 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-600\/90 {
    --tw-shadow-color: rgb(37 99 235 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-700 {
    --tw-shadow-color: #1d4ed8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-700\/10 {
    --tw-shadow-color: rgb(29 78 216 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-700\/20 {
    --tw-shadow-color: rgb(29 78 216 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-700\/30 {
    --tw-shadow-color: rgb(29 78 216 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-700\/40 {
    --tw-shadow-color: rgb(29 78 216 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-700\/5 {
    --tw-shadow-color: rgb(29 78 216 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-700\/50 {
    --tw-shadow-color: rgb(29 78 216 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-700\/60 {
    --tw-shadow-color: rgb(29 78 216 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-700\/70 {
    --tw-shadow-color: rgb(29 78 216 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-700\/80 {
    --tw-shadow-color: rgb(29 78 216 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-700\/90 {
    --tw-shadow-color: rgb(29 78 216 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-800 {
    --tw-shadow-color: #1e40af;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-800\/10 {
    --tw-shadow-color: rgb(30 64 175 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-800\/20 {
    --tw-shadow-color: rgb(30 64 175 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-800\/30 {
    --tw-shadow-color: rgb(30 64 175 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-800\/40 {
    --tw-shadow-color: rgb(30 64 175 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-800\/5 {
    --tw-shadow-color: rgb(30 64 175 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-800\/50 {
    --tw-shadow-color: rgb(30 64 175 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-800\/60 {
    --tw-shadow-color: rgb(30 64 175 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-800\/70 {
    --tw-shadow-color: rgb(30 64 175 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-800\/80 {
    --tw-shadow-color: rgb(30 64 175 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-800\/90 {
    --tw-shadow-color: rgb(30 64 175 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-900 {
    --tw-shadow-color: #1e3a8a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-900\/10 {
    --tw-shadow-color: rgb(30 58 138 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-900\/20 {
    --tw-shadow-color: rgb(30 58 138 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-900\/30 {
    --tw-shadow-color: rgb(30 58 138 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-900\/40 {
    --tw-shadow-color: rgb(30 58 138 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-900\/5 {
    --tw-shadow-color: rgb(30 58 138 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-900\/50 {
    --tw-shadow-color: rgb(30 58 138 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-900\/60 {
    --tw-shadow-color: rgb(30 58 138 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-900\/70 {
    --tw-shadow-color: rgb(30 58 138 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-900\/80 {
    --tw-shadow-color: rgb(30 58 138 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-900\/90 {
    --tw-shadow-color: rgb(30 58 138 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-950 {
    --tw-shadow-color: #172554;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-950\/10 {
    --tw-shadow-color: rgb(23 37 84 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-950\/20 {
    --tw-shadow-color: rgb(23 37 84 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-950\/30 {
    --tw-shadow-color: rgb(23 37 84 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-950\/40 {
    --tw-shadow-color: rgb(23 37 84 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-950\/5 {
    --tw-shadow-color: rgb(23 37 84 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-950\/50 {
    --tw-shadow-color: rgb(23 37 84 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-950\/60 {
    --tw-shadow-color: rgb(23 37 84 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-950\/70 {
    --tw-shadow-color: rgb(23 37 84 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-950\/80 {
    --tw-shadow-color: rgb(23 37 84 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-blue-950\/90 {
    --tw-shadow-color: rgb(23 37 84 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-100 {
    --tw-shadow-color: #cffafe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-100\/10 {
    --tw-shadow-color: rgb(207 250 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-100\/20 {
    --tw-shadow-color: rgb(207 250 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-100\/30 {
    --tw-shadow-color: rgb(207 250 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-100\/40 {
    --tw-shadow-color: rgb(207 250 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-100\/5 {
    --tw-shadow-color: rgb(207 250 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-100\/50 {
    --tw-shadow-color: rgb(207 250 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-100\/60 {
    --tw-shadow-color: rgb(207 250 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-100\/70 {
    --tw-shadow-color: rgb(207 250 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-100\/80 {
    --tw-shadow-color: rgb(207 250 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-100\/90 {
    --tw-shadow-color: rgb(207 250 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-200 {
    --tw-shadow-color: #a5f3fc;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-200\/10 {
    --tw-shadow-color: rgb(165 243 252 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-200\/20 {
    --tw-shadow-color: rgb(165 243 252 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-200\/30 {
    --tw-shadow-color: rgb(165 243 252 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-200\/40 {
    --tw-shadow-color: rgb(165 243 252 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-200\/5 {
    --tw-shadow-color: rgb(165 243 252 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-200\/50 {
    --tw-shadow-color: rgb(165 243 252 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-200\/60 {
    --tw-shadow-color: rgb(165 243 252 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-200\/70 {
    --tw-shadow-color: rgb(165 243 252 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-200\/80 {
    --tw-shadow-color: rgb(165 243 252 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-200\/90 {
    --tw-shadow-color: rgb(165 243 252 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-300 {
    --tw-shadow-color: #67e8f9;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-300\/10 {
    --tw-shadow-color: rgb(103 232 249 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-300\/20 {
    --tw-shadow-color: rgb(103 232 249 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-300\/30 {
    --tw-shadow-color: rgb(103 232 249 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-300\/40 {
    --tw-shadow-color: rgb(103 232 249 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-300\/5 {
    --tw-shadow-color: rgb(103 232 249 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-300\/50 {
    --tw-shadow-color: rgb(103 232 249 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-300\/60 {
    --tw-shadow-color: rgb(103 232 249 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-300\/70 {
    --tw-shadow-color: rgb(103 232 249 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-300\/80 {
    --tw-shadow-color: rgb(103 232 249 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-300\/90 {
    --tw-shadow-color: rgb(103 232 249 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-400 {
    --tw-shadow-color: #22d3ee;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-400\/10 {
    --tw-shadow-color: rgb(34 211 238 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-400\/20 {
    --tw-shadow-color: rgb(34 211 238 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-400\/30 {
    --tw-shadow-color: rgb(34 211 238 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-400\/40 {
    --tw-shadow-color: rgb(34 211 238 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-400\/5 {
    --tw-shadow-color: rgb(34 211 238 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-400\/50 {
    --tw-shadow-color: rgb(34 211 238 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-400\/60 {
    --tw-shadow-color: rgb(34 211 238 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-400\/70 {
    --tw-shadow-color: rgb(34 211 238 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-400\/80 {
    --tw-shadow-color: rgb(34 211 238 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-400\/90 {
    --tw-shadow-color: rgb(34 211 238 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-50 {
    --tw-shadow-color: #ecfeff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-50\/10 {
    --tw-shadow-color: rgb(236 254 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-50\/20 {
    --tw-shadow-color: rgb(236 254 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-50\/30 {
    --tw-shadow-color: rgb(236 254 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-50\/40 {
    --tw-shadow-color: rgb(236 254 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-50\/5 {
    --tw-shadow-color: rgb(236 254 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-50\/50 {
    --tw-shadow-color: rgb(236 254 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-50\/60 {
    --tw-shadow-color: rgb(236 254 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-50\/70 {
    --tw-shadow-color: rgb(236 254 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-50\/80 {
    --tw-shadow-color: rgb(236 254 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-50\/90 {
    --tw-shadow-color: rgb(236 254 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-500 {
    --tw-shadow-color: #06b6d4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-500\/10 {
    --tw-shadow-color: rgb(6 182 212 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-500\/20 {
    --tw-shadow-color: rgb(6 182 212 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-500\/30 {
    --tw-shadow-color: rgb(6 182 212 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-500\/40 {
    --tw-shadow-color: rgb(6 182 212 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-500\/5 {
    --tw-shadow-color: rgb(6 182 212 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-500\/50 {
    --tw-shadow-color: rgb(6 182 212 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-500\/60 {
    --tw-shadow-color: rgb(6 182 212 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-500\/70 {
    --tw-shadow-color: rgb(6 182 212 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-500\/80 {
    --tw-shadow-color: rgb(6 182 212 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-500\/90 {
    --tw-shadow-color: rgb(6 182 212 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-600 {
    --tw-shadow-color: #0891b2;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-600\/10 {
    --tw-shadow-color: rgb(8 145 178 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-600\/20 {
    --tw-shadow-color: rgb(8 145 178 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-600\/30 {
    --tw-shadow-color: rgb(8 145 178 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-600\/40 {
    --tw-shadow-color: rgb(8 145 178 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-600\/5 {
    --tw-shadow-color: rgb(8 145 178 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-600\/50 {
    --tw-shadow-color: rgb(8 145 178 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-600\/60 {
    --tw-shadow-color: rgb(8 145 178 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-600\/70 {
    --tw-shadow-color: rgb(8 145 178 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-600\/80 {
    --tw-shadow-color: rgb(8 145 178 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-600\/90 {
    --tw-shadow-color: rgb(8 145 178 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-700 {
    --tw-shadow-color: #0e7490;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-700\/10 {
    --tw-shadow-color: rgb(14 116 144 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-700\/20 {
    --tw-shadow-color: rgb(14 116 144 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-700\/30 {
    --tw-shadow-color: rgb(14 116 144 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-700\/40 {
    --tw-shadow-color: rgb(14 116 144 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-700\/5 {
    --tw-shadow-color: rgb(14 116 144 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-700\/50 {
    --tw-shadow-color: rgb(14 116 144 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-700\/60 {
    --tw-shadow-color: rgb(14 116 144 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-700\/70 {
    --tw-shadow-color: rgb(14 116 144 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-700\/80 {
    --tw-shadow-color: rgb(14 116 144 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-700\/90 {
    --tw-shadow-color: rgb(14 116 144 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-800 {
    --tw-shadow-color: #155e75;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-800\/10 {
    --tw-shadow-color: rgb(21 94 117 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-800\/20 {
    --tw-shadow-color: rgb(21 94 117 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-800\/30 {
    --tw-shadow-color: rgb(21 94 117 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-800\/40 {
    --tw-shadow-color: rgb(21 94 117 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-800\/5 {
    --tw-shadow-color: rgb(21 94 117 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-800\/50 {
    --tw-shadow-color: rgb(21 94 117 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-800\/60 {
    --tw-shadow-color: rgb(21 94 117 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-800\/70 {
    --tw-shadow-color: rgb(21 94 117 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-800\/80 {
    --tw-shadow-color: rgb(21 94 117 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-800\/90 {
    --tw-shadow-color: rgb(21 94 117 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-900 {
    --tw-shadow-color: #164e63;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-900\/10 {
    --tw-shadow-color: rgb(22 78 99 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-900\/20 {
    --tw-shadow-color: rgb(22 78 99 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-900\/30 {
    --tw-shadow-color: rgb(22 78 99 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-900\/40 {
    --tw-shadow-color: rgb(22 78 99 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-900\/5 {
    --tw-shadow-color: rgb(22 78 99 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-900\/50 {
    --tw-shadow-color: rgb(22 78 99 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-900\/60 {
    --tw-shadow-color: rgb(22 78 99 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-900\/70 {
    --tw-shadow-color: rgb(22 78 99 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-900\/80 {
    --tw-shadow-color: rgb(22 78 99 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-900\/90 {
    --tw-shadow-color: rgb(22 78 99 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-950 {
    --tw-shadow-color: #083344;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-950\/10 {
    --tw-shadow-color: rgb(8 51 68 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-950\/20 {
    --tw-shadow-color: rgb(8 51 68 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-950\/30 {
    --tw-shadow-color: rgb(8 51 68 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-950\/40 {
    --tw-shadow-color: rgb(8 51 68 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-950\/5 {
    --tw-shadow-color: rgb(8 51 68 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-950\/50 {
    --tw-shadow-color: rgb(8 51 68 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-950\/60 {
    --tw-shadow-color: rgb(8 51 68 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-950\/70 {
    --tw-shadow-color: rgb(8 51 68 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-950\/80 {
    --tw-shadow-color: rgb(8 51 68 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-cyan-950\/90 {
    --tw-shadow-color: rgb(8 51 68 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-100 {
    --tw-shadow-color: #d1fae5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-100\/10 {
    --tw-shadow-color: rgb(209 250 229 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-100\/20 {
    --tw-shadow-color: rgb(209 250 229 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-100\/30 {
    --tw-shadow-color: rgb(209 250 229 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-100\/40 {
    --tw-shadow-color: rgb(209 250 229 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-100\/5 {
    --tw-shadow-color: rgb(209 250 229 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-100\/50 {
    --tw-shadow-color: rgb(209 250 229 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-100\/60 {
    --tw-shadow-color: rgb(209 250 229 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-100\/70 {
    --tw-shadow-color: rgb(209 250 229 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-100\/80 {
    --tw-shadow-color: rgb(209 250 229 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-100\/90 {
    --tw-shadow-color: rgb(209 250 229 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-200 {
    --tw-shadow-color: #a7f3d0;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-200\/10 {
    --tw-shadow-color: rgb(167 243 208 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-200\/20 {
    --tw-shadow-color: rgb(167 243 208 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-200\/30 {
    --tw-shadow-color: rgb(167 243 208 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-200\/40 {
    --tw-shadow-color: rgb(167 243 208 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-200\/5 {
    --tw-shadow-color: rgb(167 243 208 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-200\/50 {
    --tw-shadow-color: rgb(167 243 208 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-200\/60 {
    --tw-shadow-color: rgb(167 243 208 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-200\/70 {
    --tw-shadow-color: rgb(167 243 208 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-200\/80 {
    --tw-shadow-color: rgb(167 243 208 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-200\/90 {
    --tw-shadow-color: rgb(167 243 208 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-300 {
    --tw-shadow-color: #6ee7b7;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-300\/10 {
    --tw-shadow-color: rgb(110 231 183 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-300\/20 {
    --tw-shadow-color: rgb(110 231 183 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-300\/30 {
    --tw-shadow-color: rgb(110 231 183 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-300\/40 {
    --tw-shadow-color: rgb(110 231 183 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-300\/5 {
    --tw-shadow-color: rgb(110 231 183 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-300\/50 {
    --tw-shadow-color: rgb(110 231 183 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-300\/60 {
    --tw-shadow-color: rgb(110 231 183 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-300\/70 {
    --tw-shadow-color: rgb(110 231 183 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-300\/80 {
    --tw-shadow-color: rgb(110 231 183 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-300\/90 {
    --tw-shadow-color: rgb(110 231 183 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-400 {
    --tw-shadow-color: #34d399;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-400\/10 {
    --tw-shadow-color: rgb(52 211 153 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-400\/20 {
    --tw-shadow-color: rgb(52 211 153 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-400\/30 {
    --tw-shadow-color: rgb(52 211 153 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-400\/40 {
    --tw-shadow-color: rgb(52 211 153 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-400\/5 {
    --tw-shadow-color: rgb(52 211 153 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-400\/50 {
    --tw-shadow-color: rgb(52 211 153 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-400\/60 {
    --tw-shadow-color: rgb(52 211 153 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-400\/70 {
    --tw-shadow-color: rgb(52 211 153 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-400\/80 {
    --tw-shadow-color: rgb(52 211 153 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-400\/90 {
    --tw-shadow-color: rgb(52 211 153 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-50 {
    --tw-shadow-color: #ecfdf5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-50\/10 {
    --tw-shadow-color: rgb(236 253 245 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-50\/20 {
    --tw-shadow-color: rgb(236 253 245 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-50\/30 {
    --tw-shadow-color: rgb(236 253 245 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-50\/40 {
    --tw-shadow-color: rgb(236 253 245 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-50\/5 {
    --tw-shadow-color: rgb(236 253 245 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-50\/50 {
    --tw-shadow-color: rgb(236 253 245 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-50\/60 {
    --tw-shadow-color: rgb(236 253 245 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-50\/70 {
    --tw-shadow-color: rgb(236 253 245 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-50\/80 {
    --tw-shadow-color: rgb(236 253 245 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-50\/90 {
    --tw-shadow-color: rgb(236 253 245 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-500 {
    --tw-shadow-color: #10b981;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-500\/10 {
    --tw-shadow-color: rgb(16 185 129 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-500\/20 {
    --tw-shadow-color: rgb(16 185 129 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-500\/30 {
    --tw-shadow-color: rgb(16 185 129 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-500\/40 {
    --tw-shadow-color: rgb(16 185 129 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-500\/5 {
    --tw-shadow-color: rgb(16 185 129 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-500\/50 {
    --tw-shadow-color: rgb(16 185 129 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-500\/60 {
    --tw-shadow-color: rgb(16 185 129 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-500\/70 {
    --tw-shadow-color: rgb(16 185 129 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-500\/80 {
    --tw-shadow-color: rgb(16 185 129 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-500\/90 {
    --tw-shadow-color: rgb(16 185 129 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-600 {
    --tw-shadow-color: #059669;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-600\/10 {
    --tw-shadow-color: rgb(5 150 105 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-600\/20 {
    --tw-shadow-color: rgb(5 150 105 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-600\/30 {
    --tw-shadow-color: rgb(5 150 105 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-600\/40 {
    --tw-shadow-color: rgb(5 150 105 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-600\/5 {
    --tw-shadow-color: rgb(5 150 105 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-600\/50 {
    --tw-shadow-color: rgb(5 150 105 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-600\/60 {
    --tw-shadow-color: rgb(5 150 105 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-600\/70 {
    --tw-shadow-color: rgb(5 150 105 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-600\/80 {
    --tw-shadow-color: rgb(5 150 105 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-600\/90 {
    --tw-shadow-color: rgb(5 150 105 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-700 {
    --tw-shadow-color: #047857;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-700\/10 {
    --tw-shadow-color: rgb(4 120 87 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-700\/20 {
    --tw-shadow-color: rgb(4 120 87 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-700\/30 {
    --tw-shadow-color: rgb(4 120 87 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-700\/40 {
    --tw-shadow-color: rgb(4 120 87 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-700\/5 {
    --tw-shadow-color: rgb(4 120 87 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-700\/50 {
    --tw-shadow-color: rgb(4 120 87 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-700\/60 {
    --tw-shadow-color: rgb(4 120 87 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-700\/70 {
    --tw-shadow-color: rgb(4 120 87 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-700\/80 {
    --tw-shadow-color: rgb(4 120 87 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-700\/90 {
    --tw-shadow-color: rgb(4 120 87 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-800 {
    --tw-shadow-color: #065f46;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-800\/10 {
    --tw-shadow-color: rgb(6 95 70 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-800\/20 {
    --tw-shadow-color: rgb(6 95 70 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-800\/30 {
    --tw-shadow-color: rgb(6 95 70 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-800\/40 {
    --tw-shadow-color: rgb(6 95 70 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-800\/5 {
    --tw-shadow-color: rgb(6 95 70 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-800\/50 {
    --tw-shadow-color: rgb(6 95 70 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-800\/60 {
    --tw-shadow-color: rgb(6 95 70 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-800\/70 {
    --tw-shadow-color: rgb(6 95 70 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-800\/80 {
    --tw-shadow-color: rgb(6 95 70 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-800\/90 {
    --tw-shadow-color: rgb(6 95 70 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-900 {
    --tw-shadow-color: #064e3b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-900\/10 {
    --tw-shadow-color: rgb(6 78 59 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-900\/20 {
    --tw-shadow-color: rgb(6 78 59 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-900\/30 {
    --tw-shadow-color: rgb(6 78 59 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-900\/40 {
    --tw-shadow-color: rgb(6 78 59 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-900\/5 {
    --tw-shadow-color: rgb(6 78 59 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-900\/50 {
    --tw-shadow-color: rgb(6 78 59 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-900\/60 {
    --tw-shadow-color: rgb(6 78 59 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-900\/70 {
    --tw-shadow-color: rgb(6 78 59 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-900\/80 {
    --tw-shadow-color: rgb(6 78 59 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-900\/90 {
    --tw-shadow-color: rgb(6 78 59 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-950 {
    --tw-shadow-color: #022c22;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-950\/10 {
    --tw-shadow-color: rgb(2 44 34 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-950\/20 {
    --tw-shadow-color: rgb(2 44 34 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-950\/30 {
    --tw-shadow-color: rgb(2 44 34 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-950\/40 {
    --tw-shadow-color: rgb(2 44 34 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-950\/5 {
    --tw-shadow-color: rgb(2 44 34 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-950\/50 {
    --tw-shadow-color: rgb(2 44 34 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-950\/60 {
    --tw-shadow-color: rgb(2 44 34 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-950\/70 {
    --tw-shadow-color: rgb(2 44 34 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-950\/80 {
    --tw-shadow-color: rgb(2 44 34 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-emerald-950\/90 {
    --tw-shadow-color: rgb(2 44 34 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-100 {
    --tw-shadow-color: #fae8ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-100\/10 {
    --tw-shadow-color: rgb(250 232 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-100\/20 {
    --tw-shadow-color: rgb(250 232 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-100\/30 {
    --tw-shadow-color: rgb(250 232 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-100\/40 {
    --tw-shadow-color: rgb(250 232 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-100\/5 {
    --tw-shadow-color: rgb(250 232 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-100\/50 {
    --tw-shadow-color: rgb(250 232 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-100\/60 {
    --tw-shadow-color: rgb(250 232 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-100\/70 {
    --tw-shadow-color: rgb(250 232 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-100\/80 {
    --tw-shadow-color: rgb(250 232 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-100\/90 {
    --tw-shadow-color: rgb(250 232 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-200 {
    --tw-shadow-color: #f5d0fe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-200\/10 {
    --tw-shadow-color: rgb(245 208 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-200\/20 {
    --tw-shadow-color: rgb(245 208 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-200\/30 {
    --tw-shadow-color: rgb(245 208 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-200\/40 {
    --tw-shadow-color: rgb(245 208 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-200\/5 {
    --tw-shadow-color: rgb(245 208 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-200\/50 {
    --tw-shadow-color: rgb(245 208 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-200\/60 {
    --tw-shadow-color: rgb(245 208 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-200\/70 {
    --tw-shadow-color: rgb(245 208 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-200\/80 {
    --tw-shadow-color: rgb(245 208 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-200\/90 {
    --tw-shadow-color: rgb(245 208 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-300 {
    --tw-shadow-color: #f0abfc;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-300\/10 {
    --tw-shadow-color: rgb(240 171 252 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-300\/20 {
    --tw-shadow-color: rgb(240 171 252 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-300\/30 {
    --tw-shadow-color: rgb(240 171 252 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-300\/40 {
    --tw-shadow-color: rgb(240 171 252 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-300\/5 {
    --tw-shadow-color: rgb(240 171 252 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-300\/50 {
    --tw-shadow-color: rgb(240 171 252 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-300\/60 {
    --tw-shadow-color: rgb(240 171 252 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-300\/70 {
    --tw-shadow-color: rgb(240 171 252 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-300\/80 {
    --tw-shadow-color: rgb(240 171 252 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-300\/90 {
    --tw-shadow-color: rgb(240 171 252 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-400 {
    --tw-shadow-color: #e879f9;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-400\/10 {
    --tw-shadow-color: rgb(232 121 249 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-400\/20 {
    --tw-shadow-color: rgb(232 121 249 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-400\/30 {
    --tw-shadow-color: rgb(232 121 249 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-400\/40 {
    --tw-shadow-color: rgb(232 121 249 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-400\/5 {
    --tw-shadow-color: rgb(232 121 249 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-400\/50 {
    --tw-shadow-color: rgb(232 121 249 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-400\/60 {
    --tw-shadow-color: rgb(232 121 249 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-400\/70 {
    --tw-shadow-color: rgb(232 121 249 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-400\/80 {
    --tw-shadow-color: rgb(232 121 249 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-400\/90 {
    --tw-shadow-color: rgb(232 121 249 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-50 {
    --tw-shadow-color: #fdf4ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-50\/10 {
    --tw-shadow-color: rgb(253 244 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-50\/20 {
    --tw-shadow-color: rgb(253 244 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-50\/30 {
    --tw-shadow-color: rgb(253 244 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-50\/40 {
    --tw-shadow-color: rgb(253 244 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-50\/5 {
    --tw-shadow-color: rgb(253 244 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-50\/50 {
    --tw-shadow-color: rgb(253 244 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-50\/60 {
    --tw-shadow-color: rgb(253 244 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-50\/70 {
    --tw-shadow-color: rgb(253 244 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-50\/80 {
    --tw-shadow-color: rgb(253 244 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-50\/90 {
    --tw-shadow-color: rgb(253 244 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-500 {
    --tw-shadow-color: #d946ef;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-500\/10 {
    --tw-shadow-color: rgb(217 70 239 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-500\/20 {
    --tw-shadow-color: rgb(217 70 239 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-500\/30 {
    --tw-shadow-color: rgb(217 70 239 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-500\/40 {
    --tw-shadow-color: rgb(217 70 239 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-500\/5 {
    --tw-shadow-color: rgb(217 70 239 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-500\/50 {
    --tw-shadow-color: rgb(217 70 239 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-500\/60 {
    --tw-shadow-color: rgb(217 70 239 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-500\/70 {
    --tw-shadow-color: rgb(217 70 239 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-500\/80 {
    --tw-shadow-color: rgb(217 70 239 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-500\/90 {
    --tw-shadow-color: rgb(217 70 239 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-600 {
    --tw-shadow-color: #c026d3;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-600\/10 {
    --tw-shadow-color: rgb(192 38 211 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-600\/20 {
    --tw-shadow-color: rgb(192 38 211 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-600\/30 {
    --tw-shadow-color: rgb(192 38 211 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-600\/40 {
    --tw-shadow-color: rgb(192 38 211 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-600\/5 {
    --tw-shadow-color: rgb(192 38 211 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-600\/50 {
    --tw-shadow-color: rgb(192 38 211 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-600\/60 {
    --tw-shadow-color: rgb(192 38 211 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-600\/70 {
    --tw-shadow-color: rgb(192 38 211 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-600\/80 {
    --tw-shadow-color: rgb(192 38 211 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-600\/90 {
    --tw-shadow-color: rgb(192 38 211 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-700 {
    --tw-shadow-color: #a21caf;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-700\/10 {
    --tw-shadow-color: rgb(162 28 175 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-700\/20 {
    --tw-shadow-color: rgb(162 28 175 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-700\/30 {
    --tw-shadow-color: rgb(162 28 175 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-700\/40 {
    --tw-shadow-color: rgb(162 28 175 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-700\/5 {
    --tw-shadow-color: rgb(162 28 175 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-700\/50 {
    --tw-shadow-color: rgb(162 28 175 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-700\/60 {
    --tw-shadow-color: rgb(162 28 175 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-700\/70 {
    --tw-shadow-color: rgb(162 28 175 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-700\/80 {
    --tw-shadow-color: rgb(162 28 175 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-700\/90 {
    --tw-shadow-color: rgb(162 28 175 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-800 {
    --tw-shadow-color: #86198f;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-800\/10 {
    --tw-shadow-color: rgb(134 25 143 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-800\/20 {
    --tw-shadow-color: rgb(134 25 143 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-800\/30 {
    --tw-shadow-color: rgb(134 25 143 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-800\/40 {
    --tw-shadow-color: rgb(134 25 143 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-800\/5 {
    --tw-shadow-color: rgb(134 25 143 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-800\/50 {
    --tw-shadow-color: rgb(134 25 143 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-800\/60 {
    --tw-shadow-color: rgb(134 25 143 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-800\/70 {
    --tw-shadow-color: rgb(134 25 143 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-800\/80 {
    --tw-shadow-color: rgb(134 25 143 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-800\/90 {
    --tw-shadow-color: rgb(134 25 143 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-900 {
    --tw-shadow-color: #701a75;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-900\/10 {
    --tw-shadow-color: rgb(112 26 117 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-900\/20 {
    --tw-shadow-color: rgb(112 26 117 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-900\/30 {
    --tw-shadow-color: rgb(112 26 117 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-900\/40 {
    --tw-shadow-color: rgb(112 26 117 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-900\/5 {
    --tw-shadow-color: rgb(112 26 117 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-900\/50 {
    --tw-shadow-color: rgb(112 26 117 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-900\/60 {
    --tw-shadow-color: rgb(112 26 117 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-900\/70 {
    --tw-shadow-color: rgb(112 26 117 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-900\/80 {
    --tw-shadow-color: rgb(112 26 117 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-900\/90 {
    --tw-shadow-color: rgb(112 26 117 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-950 {
    --tw-shadow-color: #4a044e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-950\/10 {
    --tw-shadow-color: rgb(74 4 78 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-950\/20 {
    --tw-shadow-color: rgb(74 4 78 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-950\/30 {
    --tw-shadow-color: rgb(74 4 78 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-950\/40 {
    --tw-shadow-color: rgb(74 4 78 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-950\/5 {
    --tw-shadow-color: rgb(74 4 78 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-950\/50 {
    --tw-shadow-color: rgb(74 4 78 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-950\/60 {
    --tw-shadow-color: rgb(74 4 78 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-950\/70 {
    --tw-shadow-color: rgb(74 4 78 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-950\/80 {
    --tw-shadow-color: rgb(74 4 78 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-fuchsia-950\/90 {
    --tw-shadow-color: rgb(74 4 78 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-100 {
    --tw-shadow-color: #f3f4f6;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-100\/10 {
    --tw-shadow-color: rgb(243 244 246 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-100\/20 {
    --tw-shadow-color: rgb(243 244 246 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-100\/30 {
    --tw-shadow-color: rgb(243 244 246 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-100\/40 {
    --tw-shadow-color: rgb(243 244 246 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-100\/5 {
    --tw-shadow-color: rgb(243 244 246 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-100\/50 {
    --tw-shadow-color: rgb(243 244 246 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-100\/60 {
    --tw-shadow-color: rgb(243 244 246 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-100\/70 {
    --tw-shadow-color: rgb(243 244 246 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-100\/80 {
    --tw-shadow-color: rgb(243 244 246 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-100\/90 {
    --tw-shadow-color: rgb(243 244 246 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-200 {
    --tw-shadow-color: #e5e7eb;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-200\/10 {
    --tw-shadow-color: rgb(229 231 235 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-200\/20 {
    --tw-shadow-color: rgb(229 231 235 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-200\/30 {
    --tw-shadow-color: rgb(229 231 235 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-200\/40 {
    --tw-shadow-color: rgb(229 231 235 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-200\/5 {
    --tw-shadow-color: rgb(229 231 235 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-200\/50 {
    --tw-shadow-color: rgb(229 231 235 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-200\/60 {
    --tw-shadow-color: rgb(229 231 235 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-200\/70 {
    --tw-shadow-color: rgb(229 231 235 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-200\/80 {
    --tw-shadow-color: rgb(229 231 235 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-200\/90 {
    --tw-shadow-color: rgb(229 231 235 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-300 {
    --tw-shadow-color: #d1d5db;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-300\/10 {
    --tw-shadow-color: rgb(209 213 219 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-300\/20 {
    --tw-shadow-color: rgb(209 213 219 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-300\/30 {
    --tw-shadow-color: rgb(209 213 219 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-300\/40 {
    --tw-shadow-color: rgb(209 213 219 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-300\/5 {
    --tw-shadow-color: rgb(209 213 219 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-300\/50 {
    --tw-shadow-color: rgb(209 213 219 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-300\/60 {
    --tw-shadow-color: rgb(209 213 219 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-300\/70 {
    --tw-shadow-color: rgb(209 213 219 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-300\/80 {
    --tw-shadow-color: rgb(209 213 219 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-300\/90 {
    --tw-shadow-color: rgb(209 213 219 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-400 {
    --tw-shadow-color: #9ca3af;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-400\/10 {
    --tw-shadow-color: rgb(156 163 175 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-400\/20 {
    --tw-shadow-color: rgb(156 163 175 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-400\/30 {
    --tw-shadow-color: rgb(156 163 175 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-400\/40 {
    --tw-shadow-color: rgb(156 163 175 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-400\/5 {
    --tw-shadow-color: rgb(156 163 175 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-400\/50 {
    --tw-shadow-color: rgb(156 163 175 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-400\/60 {
    --tw-shadow-color: rgb(156 163 175 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-400\/70 {
    --tw-shadow-color: rgb(156 163 175 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-400\/80 {
    --tw-shadow-color: rgb(156 163 175 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-400\/90 {
    --tw-shadow-color: rgb(156 163 175 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-50 {
    --tw-shadow-color: #f9fafb;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-50\/10 {
    --tw-shadow-color: rgb(249 250 251 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-50\/20 {
    --tw-shadow-color: rgb(249 250 251 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-50\/30 {
    --tw-shadow-color: rgb(249 250 251 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-50\/40 {
    --tw-shadow-color: rgb(249 250 251 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-50\/5 {
    --tw-shadow-color: rgb(249 250 251 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-50\/50 {
    --tw-shadow-color: rgb(249 250 251 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-50\/60 {
    --tw-shadow-color: rgb(249 250 251 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-50\/70 {
    --tw-shadow-color: rgb(249 250 251 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-50\/80 {
    --tw-shadow-color: rgb(249 250 251 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-50\/90 {
    --tw-shadow-color: rgb(249 250 251 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-500 {
    --tw-shadow-color: #6b7280;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-500\/10 {
    --tw-shadow-color: rgb(107 114 128 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-500\/20 {
    --tw-shadow-color: rgb(107 114 128 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-500\/30 {
    --tw-shadow-color: rgb(107 114 128 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-500\/40 {
    --tw-shadow-color: rgb(107 114 128 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-500\/5 {
    --tw-shadow-color: rgb(107 114 128 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-500\/50 {
    --tw-shadow-color: rgb(107 114 128 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-500\/60 {
    --tw-shadow-color: rgb(107 114 128 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-500\/70 {
    --tw-shadow-color: rgb(107 114 128 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-500\/80 {
    --tw-shadow-color: rgb(107 114 128 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-500\/90 {
    --tw-shadow-color: rgb(107 114 128 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-600 {
    --tw-shadow-color: #4b5563;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-600\/10 {
    --tw-shadow-color: rgb(75 85 99 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-600\/20 {
    --tw-shadow-color: rgb(75 85 99 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-600\/30 {
    --tw-shadow-color: rgb(75 85 99 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-600\/40 {
    --tw-shadow-color: rgb(75 85 99 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-600\/5 {
    --tw-shadow-color: rgb(75 85 99 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-600\/50 {
    --tw-shadow-color: rgb(75 85 99 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-600\/60 {
    --tw-shadow-color: rgb(75 85 99 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-600\/70 {
    --tw-shadow-color: rgb(75 85 99 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-600\/80 {
    --tw-shadow-color: rgb(75 85 99 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-600\/90 {
    --tw-shadow-color: rgb(75 85 99 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-700 {
    --tw-shadow-color: #374151;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-700\/10 {
    --tw-shadow-color: rgb(55 65 81 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-700\/20 {
    --tw-shadow-color: rgb(55 65 81 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-700\/30 {
    --tw-shadow-color: rgb(55 65 81 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-700\/40 {
    --tw-shadow-color: rgb(55 65 81 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-700\/5 {
    --tw-shadow-color: rgb(55 65 81 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-700\/50 {
    --tw-shadow-color: rgb(55 65 81 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-700\/60 {
    --tw-shadow-color: rgb(55 65 81 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-700\/70 {
    --tw-shadow-color: rgb(55 65 81 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-700\/80 {
    --tw-shadow-color: rgb(55 65 81 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-700\/90 {
    --tw-shadow-color: rgb(55 65 81 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-800 {
    --tw-shadow-color: #1f2937;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-800\/10 {
    --tw-shadow-color: rgb(31 41 55 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-800\/20 {
    --tw-shadow-color: rgb(31 41 55 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-800\/30 {
    --tw-shadow-color: rgb(31 41 55 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-800\/40 {
    --tw-shadow-color: rgb(31 41 55 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-800\/5 {
    --tw-shadow-color: rgb(31 41 55 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-800\/50 {
    --tw-shadow-color: rgb(31 41 55 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-800\/60 {
    --tw-shadow-color: rgb(31 41 55 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-800\/70 {
    --tw-shadow-color: rgb(31 41 55 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-800\/80 {
    --tw-shadow-color: rgb(31 41 55 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-800\/90 {
    --tw-shadow-color: rgb(31 41 55 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-900 {
    --tw-shadow-color: #111827;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-900\/10 {
    --tw-shadow-color: rgb(17 24 39 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-900\/20 {
    --tw-shadow-color: rgb(17 24 39 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-900\/30 {
    --tw-shadow-color: rgb(17 24 39 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-900\/40 {
    --tw-shadow-color: rgb(17 24 39 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-900\/5 {
    --tw-shadow-color: rgb(17 24 39 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-900\/50 {
    --tw-shadow-color: rgb(17 24 39 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-900\/60 {
    --tw-shadow-color: rgb(17 24 39 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-900\/70 {
    --tw-shadow-color: rgb(17 24 39 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-900\/80 {
    --tw-shadow-color: rgb(17 24 39 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-900\/90 {
    --tw-shadow-color: rgb(17 24 39 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-950 {
    --tw-shadow-color: #030712;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-950\/10 {
    --tw-shadow-color: rgb(3 7 18 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-950\/20 {
    --tw-shadow-color: rgb(3 7 18 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-950\/30 {
    --tw-shadow-color: rgb(3 7 18 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-950\/40 {
    --tw-shadow-color: rgb(3 7 18 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-950\/5 {
    --tw-shadow-color: rgb(3 7 18 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-950\/50 {
    --tw-shadow-color: rgb(3 7 18 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-950\/60 {
    --tw-shadow-color: rgb(3 7 18 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-950\/70 {
    --tw-shadow-color: rgb(3 7 18 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-950\/80 {
    --tw-shadow-color: rgb(3 7 18 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-gray-950\/90 {
    --tw-shadow-color: rgb(3 7 18 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-100 {
    --tw-shadow-color: #dcfce7;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-100\/10 {
    --tw-shadow-color: rgb(220 252 231 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-100\/20 {
    --tw-shadow-color: rgb(220 252 231 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-100\/30 {
    --tw-shadow-color: rgb(220 252 231 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-100\/40 {
    --tw-shadow-color: rgb(220 252 231 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-100\/5 {
    --tw-shadow-color: rgb(220 252 231 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-100\/50 {
    --tw-shadow-color: rgb(220 252 231 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-100\/60 {
    --tw-shadow-color: rgb(220 252 231 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-100\/70 {
    --tw-shadow-color: rgb(220 252 231 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-100\/80 {
    --tw-shadow-color: rgb(220 252 231 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-100\/90 {
    --tw-shadow-color: rgb(220 252 231 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-200 {
    --tw-shadow-color: #bbf7d0;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-200\/10 {
    --tw-shadow-color: rgb(187 247 208 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-200\/20 {
    --tw-shadow-color: rgb(187 247 208 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-200\/30 {
    --tw-shadow-color: rgb(187 247 208 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-200\/40 {
    --tw-shadow-color: rgb(187 247 208 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-200\/5 {
    --tw-shadow-color: rgb(187 247 208 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-200\/50 {
    --tw-shadow-color: rgb(187 247 208 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-200\/60 {
    --tw-shadow-color: rgb(187 247 208 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-200\/70 {
    --tw-shadow-color: rgb(187 247 208 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-200\/80 {
    --tw-shadow-color: rgb(187 247 208 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-200\/90 {
    --tw-shadow-color: rgb(187 247 208 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-300 {
    --tw-shadow-color: #86efac;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-300\/10 {
    --tw-shadow-color: rgb(134 239 172 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-300\/20 {
    --tw-shadow-color: rgb(134 239 172 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-300\/30 {
    --tw-shadow-color: rgb(134 239 172 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-300\/40 {
    --tw-shadow-color: rgb(134 239 172 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-300\/5 {
    --tw-shadow-color: rgb(134 239 172 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-300\/50 {
    --tw-shadow-color: rgb(134 239 172 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-300\/60 {
    --tw-shadow-color: rgb(134 239 172 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-300\/70 {
    --tw-shadow-color: rgb(134 239 172 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-300\/80 {
    --tw-shadow-color: rgb(134 239 172 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-300\/90 {
    --tw-shadow-color: rgb(134 239 172 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-400 {
    --tw-shadow-color: #4ade80;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-400\/10 {
    --tw-shadow-color: rgb(74 222 128 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-400\/20 {
    --tw-shadow-color: rgb(74 222 128 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-400\/30 {
    --tw-shadow-color: rgb(74 222 128 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-400\/40 {
    --tw-shadow-color: rgb(74 222 128 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-400\/5 {
    --tw-shadow-color: rgb(74 222 128 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-400\/50 {
    --tw-shadow-color: rgb(74 222 128 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-400\/60 {
    --tw-shadow-color: rgb(74 222 128 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-400\/70 {
    --tw-shadow-color: rgb(74 222 128 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-400\/80 {
    --tw-shadow-color: rgb(74 222 128 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-400\/90 {
    --tw-shadow-color: rgb(74 222 128 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-50 {
    --tw-shadow-color: #f0fdf4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-50\/10 {
    --tw-shadow-color: rgb(240 253 244 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-50\/20 {
    --tw-shadow-color: rgb(240 253 244 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-50\/30 {
    --tw-shadow-color: rgb(240 253 244 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-50\/40 {
    --tw-shadow-color: rgb(240 253 244 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-50\/5 {
    --tw-shadow-color: rgb(240 253 244 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-50\/50 {
    --tw-shadow-color: rgb(240 253 244 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-50\/60 {
    --tw-shadow-color: rgb(240 253 244 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-50\/70 {
    --tw-shadow-color: rgb(240 253 244 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-50\/80 {
    --tw-shadow-color: rgb(240 253 244 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-50\/90 {
    --tw-shadow-color: rgb(240 253 244 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-500 {
    --tw-shadow-color: #22c55e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-500\/10 {
    --tw-shadow-color: rgb(34 197 94 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-500\/20 {
    --tw-shadow-color: rgb(34 197 94 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-500\/30 {
    --tw-shadow-color: rgb(34 197 94 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-500\/40 {
    --tw-shadow-color: rgb(34 197 94 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-500\/5 {
    --tw-shadow-color: rgb(34 197 94 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-500\/50 {
    --tw-shadow-color: rgb(34 197 94 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-500\/60 {
    --tw-shadow-color: rgb(34 197 94 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-500\/70 {
    --tw-shadow-color: rgb(34 197 94 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-500\/80 {
    --tw-shadow-color: rgb(34 197 94 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-500\/90 {
    --tw-shadow-color: rgb(34 197 94 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-600 {
    --tw-shadow-color: #16a34a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-600\/10 {
    --tw-shadow-color: rgb(22 163 74 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-600\/20 {
    --tw-shadow-color: rgb(22 163 74 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-600\/30 {
    --tw-shadow-color: rgb(22 163 74 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-600\/40 {
    --tw-shadow-color: rgb(22 163 74 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-600\/5 {
    --tw-shadow-color: rgb(22 163 74 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-600\/50 {
    --tw-shadow-color: rgb(22 163 74 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-600\/60 {
    --tw-shadow-color: rgb(22 163 74 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-600\/70 {
    --tw-shadow-color: rgb(22 163 74 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-600\/80 {
    --tw-shadow-color: rgb(22 163 74 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-600\/90 {
    --tw-shadow-color: rgb(22 163 74 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-700 {
    --tw-shadow-color: #15803d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-700\/10 {
    --tw-shadow-color: rgb(21 128 61 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-700\/20 {
    --tw-shadow-color: rgb(21 128 61 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-700\/30 {
    --tw-shadow-color: rgb(21 128 61 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-700\/40 {
    --tw-shadow-color: rgb(21 128 61 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-700\/5 {
    --tw-shadow-color: rgb(21 128 61 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-700\/50 {
    --tw-shadow-color: rgb(21 128 61 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-700\/60 {
    --tw-shadow-color: rgb(21 128 61 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-700\/70 {
    --tw-shadow-color: rgb(21 128 61 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-700\/80 {
    --tw-shadow-color: rgb(21 128 61 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-700\/90 {
    --tw-shadow-color: rgb(21 128 61 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-800 {
    --tw-shadow-color: #166534;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-800\/10 {
    --tw-shadow-color: rgb(22 101 52 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-800\/20 {
    --tw-shadow-color: rgb(22 101 52 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-800\/30 {
    --tw-shadow-color: rgb(22 101 52 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-800\/40 {
    --tw-shadow-color: rgb(22 101 52 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-800\/5 {
    --tw-shadow-color: rgb(22 101 52 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-800\/50 {
    --tw-shadow-color: rgb(22 101 52 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-800\/60 {
    --tw-shadow-color: rgb(22 101 52 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-800\/70 {
    --tw-shadow-color: rgb(22 101 52 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-800\/80 {
    --tw-shadow-color: rgb(22 101 52 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-800\/90 {
    --tw-shadow-color: rgb(22 101 52 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-900 {
    --tw-shadow-color: #14532d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-900\/10 {
    --tw-shadow-color: rgb(20 83 45 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-900\/20 {
    --tw-shadow-color: rgb(20 83 45 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-900\/30 {
    --tw-shadow-color: rgb(20 83 45 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-900\/40 {
    --tw-shadow-color: rgb(20 83 45 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-900\/5 {
    --tw-shadow-color: rgb(20 83 45 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-900\/50 {
    --tw-shadow-color: rgb(20 83 45 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-900\/60 {
    --tw-shadow-color: rgb(20 83 45 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-900\/70 {
    --tw-shadow-color: rgb(20 83 45 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-900\/80 {
    --tw-shadow-color: rgb(20 83 45 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-900\/90 {
    --tw-shadow-color: rgb(20 83 45 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-950 {
    --tw-shadow-color: #052e16;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-950\/10 {
    --tw-shadow-color: rgb(5 46 22 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-950\/20 {
    --tw-shadow-color: rgb(5 46 22 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-950\/30 {
    --tw-shadow-color: rgb(5 46 22 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-950\/40 {
    --tw-shadow-color: rgb(5 46 22 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-950\/5 {
    --tw-shadow-color: rgb(5 46 22 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-950\/50 {
    --tw-shadow-color: rgb(5 46 22 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-950\/60 {
    --tw-shadow-color: rgb(5 46 22 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-950\/70 {
    --tw-shadow-color: rgb(5 46 22 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-950\/80 {
    --tw-shadow-color: rgb(5 46 22 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-green-950\/90 {
    --tw-shadow-color: rgb(5 46 22 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-100 {
    --tw-shadow-color: #e0e7ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-100\/10 {
    --tw-shadow-color: rgb(224 231 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-100\/20 {
    --tw-shadow-color: rgb(224 231 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-100\/30 {
    --tw-shadow-color: rgb(224 231 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-100\/40 {
    --tw-shadow-color: rgb(224 231 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-100\/5 {
    --tw-shadow-color: rgb(224 231 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-100\/50 {
    --tw-shadow-color: rgb(224 231 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-100\/60 {
    --tw-shadow-color: rgb(224 231 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-100\/70 {
    --tw-shadow-color: rgb(224 231 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-100\/80 {
    --tw-shadow-color: rgb(224 231 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-100\/90 {
    --tw-shadow-color: rgb(224 231 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-200 {
    --tw-shadow-color: #c7d2fe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-200\/10 {
    --tw-shadow-color: rgb(199 210 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-200\/20 {
    --tw-shadow-color: rgb(199 210 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-200\/30 {
    --tw-shadow-color: rgb(199 210 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-200\/40 {
    --tw-shadow-color: rgb(199 210 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-200\/5 {
    --tw-shadow-color: rgb(199 210 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-200\/50 {
    --tw-shadow-color: rgb(199 210 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-200\/60 {
    --tw-shadow-color: rgb(199 210 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-200\/70 {
    --tw-shadow-color: rgb(199 210 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-200\/80 {
    --tw-shadow-color: rgb(199 210 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-200\/90 {
    --tw-shadow-color: rgb(199 210 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-300 {
    --tw-shadow-color: #a5b4fc;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-300\/10 {
    --tw-shadow-color: rgb(165 180 252 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-300\/20 {
    --tw-shadow-color: rgb(165 180 252 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-300\/30 {
    --tw-shadow-color: rgb(165 180 252 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-300\/40 {
    --tw-shadow-color: rgb(165 180 252 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-300\/5 {
    --tw-shadow-color: rgb(165 180 252 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-300\/50 {
    --tw-shadow-color: rgb(165 180 252 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-300\/60 {
    --tw-shadow-color: rgb(165 180 252 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-300\/70 {
    --tw-shadow-color: rgb(165 180 252 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-300\/80 {
    --tw-shadow-color: rgb(165 180 252 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-300\/90 {
    --tw-shadow-color: rgb(165 180 252 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-400 {
    --tw-shadow-color: #818cf8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-400\/10 {
    --tw-shadow-color: rgb(129 140 248 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-400\/20 {
    --tw-shadow-color: rgb(129 140 248 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-400\/30 {
    --tw-shadow-color: rgb(129 140 248 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-400\/40 {
    --tw-shadow-color: rgb(129 140 248 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-400\/5 {
    --tw-shadow-color: rgb(129 140 248 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-400\/50 {
    --tw-shadow-color: rgb(129 140 248 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-400\/60 {
    --tw-shadow-color: rgb(129 140 248 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-400\/70 {
    --tw-shadow-color: rgb(129 140 248 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-400\/80 {
    --tw-shadow-color: rgb(129 140 248 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-400\/90 {
    --tw-shadow-color: rgb(129 140 248 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-50 {
    --tw-shadow-color: #eef2ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-50\/10 {
    --tw-shadow-color: rgb(238 242 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-50\/20 {
    --tw-shadow-color: rgb(238 242 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-50\/30 {
    --tw-shadow-color: rgb(238 242 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-50\/40 {
    --tw-shadow-color: rgb(238 242 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-50\/5 {
    --tw-shadow-color: rgb(238 242 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-50\/50 {
    --tw-shadow-color: rgb(238 242 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-50\/60 {
    --tw-shadow-color: rgb(238 242 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-50\/70 {
    --tw-shadow-color: rgb(238 242 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-50\/80 {
    --tw-shadow-color: rgb(238 242 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-50\/90 {
    --tw-shadow-color: rgb(238 242 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-500 {
    --tw-shadow-color: #6366f1;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-500\/10 {
    --tw-shadow-color: rgb(99 102 241 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-500\/20 {
    --tw-shadow-color: rgb(99 102 241 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-500\/30 {
    --tw-shadow-color: rgb(99 102 241 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-500\/40 {
    --tw-shadow-color: rgb(99 102 241 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-500\/5 {
    --tw-shadow-color: rgb(99 102 241 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-500\/50 {
    --tw-shadow-color: rgb(99 102 241 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-500\/60 {
    --tw-shadow-color: rgb(99 102 241 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-500\/70 {
    --tw-shadow-color: rgb(99 102 241 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-500\/80 {
    --tw-shadow-color: rgb(99 102 241 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-500\/90 {
    --tw-shadow-color: rgb(99 102 241 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-600 {
    --tw-shadow-color: #4f46e5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-600\/10 {
    --tw-shadow-color: rgb(79 70 229 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-600\/20 {
    --tw-shadow-color: rgb(79 70 229 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-600\/30 {
    --tw-shadow-color: rgb(79 70 229 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-600\/40 {
    --tw-shadow-color: rgb(79 70 229 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-600\/5 {
    --tw-shadow-color: rgb(79 70 229 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-600\/50 {
    --tw-shadow-color: rgb(79 70 229 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-600\/60 {
    --tw-shadow-color: rgb(79 70 229 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-600\/70 {
    --tw-shadow-color: rgb(79 70 229 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-600\/80 {
    --tw-shadow-color: rgb(79 70 229 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-600\/90 {
    --tw-shadow-color: rgb(79 70 229 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-700 {
    --tw-shadow-color: #4338ca;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-700\/10 {
    --tw-shadow-color: rgb(67 56 202 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-700\/20 {
    --tw-shadow-color: rgb(67 56 202 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-700\/30 {
    --tw-shadow-color: rgb(67 56 202 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-700\/40 {
    --tw-shadow-color: rgb(67 56 202 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-700\/5 {
    --tw-shadow-color: rgb(67 56 202 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-700\/50 {
    --tw-shadow-color: rgb(67 56 202 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-700\/60 {
    --tw-shadow-color: rgb(67 56 202 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-700\/70 {
    --tw-shadow-color: rgb(67 56 202 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-700\/80 {
    --tw-shadow-color: rgb(67 56 202 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-700\/90 {
    --tw-shadow-color: rgb(67 56 202 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-800 {
    --tw-shadow-color: #3730a3;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-800\/10 {
    --tw-shadow-color: rgb(55 48 163 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-800\/20 {
    --tw-shadow-color: rgb(55 48 163 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-800\/30 {
    --tw-shadow-color: rgb(55 48 163 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-800\/40 {
    --tw-shadow-color: rgb(55 48 163 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-800\/5 {
    --tw-shadow-color: rgb(55 48 163 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-800\/50 {
    --tw-shadow-color: rgb(55 48 163 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-800\/60 {
    --tw-shadow-color: rgb(55 48 163 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-800\/70 {
    --tw-shadow-color: rgb(55 48 163 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-800\/80 {
    --tw-shadow-color: rgb(55 48 163 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-800\/90 {
    --tw-shadow-color: rgb(55 48 163 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-900 {
    --tw-shadow-color: #312e81;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-900\/10 {
    --tw-shadow-color: rgb(49 46 129 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-900\/20 {
    --tw-shadow-color: rgb(49 46 129 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-900\/30 {
    --tw-shadow-color: rgb(49 46 129 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-900\/40 {
    --tw-shadow-color: rgb(49 46 129 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-900\/5 {
    --tw-shadow-color: rgb(49 46 129 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-900\/50 {
    --tw-shadow-color: rgb(49 46 129 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-900\/60 {
    --tw-shadow-color: rgb(49 46 129 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-900\/70 {
    --tw-shadow-color: rgb(49 46 129 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-900\/80 {
    --tw-shadow-color: rgb(49 46 129 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-900\/90 {
    --tw-shadow-color: rgb(49 46 129 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-950 {
    --tw-shadow-color: #1e1b4b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-950\/10 {
    --tw-shadow-color: rgb(30 27 75 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-950\/20 {
    --tw-shadow-color: rgb(30 27 75 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-950\/30 {
    --tw-shadow-color: rgb(30 27 75 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-950\/40 {
    --tw-shadow-color: rgb(30 27 75 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-950\/5 {
    --tw-shadow-color: rgb(30 27 75 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-950\/50 {
    --tw-shadow-color: rgb(30 27 75 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-950\/60 {
    --tw-shadow-color: rgb(30 27 75 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-950\/70 {
    --tw-shadow-color: rgb(30 27 75 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-950\/80 {
    --tw-shadow-color: rgb(30 27 75 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-indigo-950\/90 {
    --tw-shadow-color: rgb(30 27 75 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-100 {
    --tw-shadow-color: #ecfccb;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-100\/10 {
    --tw-shadow-color: rgb(236 252 203 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-100\/20 {
    --tw-shadow-color: rgb(236 252 203 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-100\/30 {
    --tw-shadow-color: rgb(236 252 203 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-100\/40 {
    --tw-shadow-color: rgb(236 252 203 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-100\/5 {
    --tw-shadow-color: rgb(236 252 203 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-100\/50 {
    --tw-shadow-color: rgb(236 252 203 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-100\/60 {
    --tw-shadow-color: rgb(236 252 203 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-100\/70 {
    --tw-shadow-color: rgb(236 252 203 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-100\/80 {
    --tw-shadow-color: rgb(236 252 203 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-100\/90 {
    --tw-shadow-color: rgb(236 252 203 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-200 {
    --tw-shadow-color: #d9f99d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-200\/10 {
    --tw-shadow-color: rgb(217 249 157 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-200\/20 {
    --tw-shadow-color: rgb(217 249 157 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-200\/30 {
    --tw-shadow-color: rgb(217 249 157 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-200\/40 {
    --tw-shadow-color: rgb(217 249 157 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-200\/5 {
    --tw-shadow-color: rgb(217 249 157 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-200\/50 {
    --tw-shadow-color: rgb(217 249 157 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-200\/60 {
    --tw-shadow-color: rgb(217 249 157 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-200\/70 {
    --tw-shadow-color: rgb(217 249 157 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-200\/80 {
    --tw-shadow-color: rgb(217 249 157 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-200\/90 {
    --tw-shadow-color: rgb(217 249 157 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-300 {
    --tw-shadow-color: #bef264;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-300\/10 {
    --tw-shadow-color: rgb(190 242 100 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-300\/20 {
    --tw-shadow-color: rgb(190 242 100 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-300\/30 {
    --tw-shadow-color: rgb(190 242 100 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-300\/40 {
    --tw-shadow-color: rgb(190 242 100 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-300\/5 {
    --tw-shadow-color: rgb(190 242 100 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-300\/50 {
    --tw-shadow-color: rgb(190 242 100 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-300\/60 {
    --tw-shadow-color: rgb(190 242 100 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-300\/70 {
    --tw-shadow-color: rgb(190 242 100 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-300\/80 {
    --tw-shadow-color: rgb(190 242 100 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-300\/90 {
    --tw-shadow-color: rgb(190 242 100 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-400 {
    --tw-shadow-color: #a3e635;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-400\/10 {
    --tw-shadow-color: rgb(163 230 53 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-400\/20 {
    --tw-shadow-color: rgb(163 230 53 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-400\/30 {
    --tw-shadow-color: rgb(163 230 53 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-400\/40 {
    --tw-shadow-color: rgb(163 230 53 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-400\/5 {
    --tw-shadow-color: rgb(163 230 53 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-400\/50 {
    --tw-shadow-color: rgb(163 230 53 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-400\/60 {
    --tw-shadow-color: rgb(163 230 53 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-400\/70 {
    --tw-shadow-color: rgb(163 230 53 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-400\/80 {
    --tw-shadow-color: rgb(163 230 53 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-400\/90 {
    --tw-shadow-color: rgb(163 230 53 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-50 {
    --tw-shadow-color: #f7fee7;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-50\/10 {
    --tw-shadow-color: rgb(247 254 231 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-50\/20 {
    --tw-shadow-color: rgb(247 254 231 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-50\/30 {
    --tw-shadow-color: rgb(247 254 231 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-50\/40 {
    --tw-shadow-color: rgb(247 254 231 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-50\/5 {
    --tw-shadow-color: rgb(247 254 231 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-50\/50 {
    --tw-shadow-color: rgb(247 254 231 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-50\/60 {
    --tw-shadow-color: rgb(247 254 231 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-50\/70 {
    --tw-shadow-color: rgb(247 254 231 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-50\/80 {
    --tw-shadow-color: rgb(247 254 231 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-50\/90 {
    --tw-shadow-color: rgb(247 254 231 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-500 {
    --tw-shadow-color: #84cc16;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-500\/10 {
    --tw-shadow-color: rgb(132 204 22 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-500\/20 {
    --tw-shadow-color: rgb(132 204 22 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-500\/30 {
    --tw-shadow-color: rgb(132 204 22 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-500\/40 {
    --tw-shadow-color: rgb(132 204 22 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-500\/5 {
    --tw-shadow-color: rgb(132 204 22 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-500\/50 {
    --tw-shadow-color: rgb(132 204 22 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-500\/60 {
    --tw-shadow-color: rgb(132 204 22 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-500\/70 {
    --tw-shadow-color: rgb(132 204 22 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-500\/80 {
    --tw-shadow-color: rgb(132 204 22 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-500\/90 {
    --tw-shadow-color: rgb(132 204 22 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-600 {
    --tw-shadow-color: #65a30d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-600\/10 {
    --tw-shadow-color: rgb(101 163 13 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-600\/20 {
    --tw-shadow-color: rgb(101 163 13 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-600\/30 {
    --tw-shadow-color: rgb(101 163 13 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-600\/40 {
    --tw-shadow-color: rgb(101 163 13 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-600\/5 {
    --tw-shadow-color: rgb(101 163 13 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-600\/50 {
    --tw-shadow-color: rgb(101 163 13 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-600\/60 {
    --tw-shadow-color: rgb(101 163 13 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-600\/70 {
    --tw-shadow-color: rgb(101 163 13 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-600\/80 {
    --tw-shadow-color: rgb(101 163 13 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-600\/90 {
    --tw-shadow-color: rgb(101 163 13 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-700 {
    --tw-shadow-color: #4d7c0f;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-700\/10 {
    --tw-shadow-color: rgb(77 124 15 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-700\/20 {
    --tw-shadow-color: rgb(77 124 15 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-700\/30 {
    --tw-shadow-color: rgb(77 124 15 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-700\/40 {
    --tw-shadow-color: rgb(77 124 15 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-700\/5 {
    --tw-shadow-color: rgb(77 124 15 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-700\/50 {
    --tw-shadow-color: rgb(77 124 15 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-700\/60 {
    --tw-shadow-color: rgb(77 124 15 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-700\/70 {
    --tw-shadow-color: rgb(77 124 15 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-700\/80 {
    --tw-shadow-color: rgb(77 124 15 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-700\/90 {
    --tw-shadow-color: rgb(77 124 15 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-800 {
    --tw-shadow-color: #3f6212;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-800\/10 {
    --tw-shadow-color: rgb(63 98 18 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-800\/20 {
    --tw-shadow-color: rgb(63 98 18 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-800\/30 {
    --tw-shadow-color: rgb(63 98 18 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-800\/40 {
    --tw-shadow-color: rgb(63 98 18 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-800\/5 {
    --tw-shadow-color: rgb(63 98 18 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-800\/50 {
    --tw-shadow-color: rgb(63 98 18 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-800\/60 {
    --tw-shadow-color: rgb(63 98 18 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-800\/70 {
    --tw-shadow-color: rgb(63 98 18 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-800\/80 {
    --tw-shadow-color: rgb(63 98 18 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-800\/90 {
    --tw-shadow-color: rgb(63 98 18 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-900 {
    --tw-shadow-color: #365314;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-900\/10 {
    --tw-shadow-color: rgb(54 83 20 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-900\/20 {
    --tw-shadow-color: rgb(54 83 20 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-900\/30 {
    --tw-shadow-color: rgb(54 83 20 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-900\/40 {
    --tw-shadow-color: rgb(54 83 20 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-900\/5 {
    --tw-shadow-color: rgb(54 83 20 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-900\/50 {
    --tw-shadow-color: rgb(54 83 20 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-900\/60 {
    --tw-shadow-color: rgb(54 83 20 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-900\/70 {
    --tw-shadow-color: rgb(54 83 20 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-900\/80 {
    --tw-shadow-color: rgb(54 83 20 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-900\/90 {
    --tw-shadow-color: rgb(54 83 20 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-950 {
    --tw-shadow-color: #1a2e05;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-950\/10 {
    --tw-shadow-color: rgb(26 46 5 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-950\/20 {
    --tw-shadow-color: rgb(26 46 5 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-950\/30 {
    --tw-shadow-color: rgb(26 46 5 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-950\/40 {
    --tw-shadow-color: rgb(26 46 5 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-950\/5 {
    --tw-shadow-color: rgb(26 46 5 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-950\/50 {
    --tw-shadow-color: rgb(26 46 5 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-950\/60 {
    --tw-shadow-color: rgb(26 46 5 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-950\/70 {
    --tw-shadow-color: rgb(26 46 5 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-950\/80 {
    --tw-shadow-color: rgb(26 46 5 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-lime-950\/90 {
    --tw-shadow-color: rgb(26 46 5 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-100 {
    --tw-shadow-color: #f5f5f5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-100\/10 {
    --tw-shadow-color: rgb(245 245 245 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-100\/20 {
    --tw-shadow-color: rgb(245 245 245 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-100\/30 {
    --tw-shadow-color: rgb(245 245 245 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-100\/40 {
    --tw-shadow-color: rgb(245 245 245 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-100\/5 {
    --tw-shadow-color: rgb(245 245 245 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-100\/50 {
    --tw-shadow-color: rgb(245 245 245 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-100\/60 {
    --tw-shadow-color: rgb(245 245 245 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-100\/70 {
    --tw-shadow-color: rgb(245 245 245 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-100\/80 {
    --tw-shadow-color: rgb(245 245 245 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-100\/90 {
    --tw-shadow-color: rgb(245 245 245 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-200 {
    --tw-shadow-color: #e5e5e5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-200\/10 {
    --tw-shadow-color: rgb(229 229 229 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-200\/20 {
    --tw-shadow-color: rgb(229 229 229 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-200\/30 {
    --tw-shadow-color: rgb(229 229 229 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-200\/40 {
    --tw-shadow-color: rgb(229 229 229 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-200\/5 {
    --tw-shadow-color: rgb(229 229 229 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-200\/50 {
    --tw-shadow-color: rgb(229 229 229 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-200\/60 {
    --tw-shadow-color: rgb(229 229 229 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-200\/70 {
    --tw-shadow-color: rgb(229 229 229 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-200\/80 {
    --tw-shadow-color: rgb(229 229 229 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-200\/90 {
    --tw-shadow-color: rgb(229 229 229 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-300 {
    --tw-shadow-color: #d4d4d4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-300\/10 {
    --tw-shadow-color: rgb(212 212 212 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-300\/20 {
    --tw-shadow-color: rgb(212 212 212 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-300\/30 {
    --tw-shadow-color: rgb(212 212 212 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-300\/40 {
    --tw-shadow-color: rgb(212 212 212 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-300\/5 {
    --tw-shadow-color: rgb(212 212 212 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-300\/50 {
    --tw-shadow-color: rgb(212 212 212 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-300\/60 {
    --tw-shadow-color: rgb(212 212 212 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-300\/70 {
    --tw-shadow-color: rgb(212 212 212 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-300\/80 {
    --tw-shadow-color: rgb(212 212 212 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-300\/90 {
    --tw-shadow-color: rgb(212 212 212 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-400 {
    --tw-shadow-color: #a3a3a3;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-400\/10 {
    --tw-shadow-color: rgb(163 163 163 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-400\/20 {
    --tw-shadow-color: rgb(163 163 163 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-400\/30 {
    --tw-shadow-color: rgb(163 163 163 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-400\/40 {
    --tw-shadow-color: rgb(163 163 163 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-400\/5 {
    --tw-shadow-color: rgb(163 163 163 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-400\/50 {
    --tw-shadow-color: rgb(163 163 163 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-400\/60 {
    --tw-shadow-color: rgb(163 163 163 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-400\/70 {
    --tw-shadow-color: rgb(163 163 163 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-400\/80 {
    --tw-shadow-color: rgb(163 163 163 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-400\/90 {
    --tw-shadow-color: rgb(163 163 163 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-50 {
    --tw-shadow-color: #fafafa;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-50\/10 {
    --tw-shadow-color: rgb(250 250 250 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-50\/20 {
    --tw-shadow-color: rgb(250 250 250 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-50\/30 {
    --tw-shadow-color: rgb(250 250 250 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-50\/40 {
    --tw-shadow-color: rgb(250 250 250 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-50\/5 {
    --tw-shadow-color: rgb(250 250 250 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-50\/50 {
    --tw-shadow-color: rgb(250 250 250 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-50\/60 {
    --tw-shadow-color: rgb(250 250 250 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-50\/70 {
    --tw-shadow-color: rgb(250 250 250 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-50\/80 {
    --tw-shadow-color: rgb(250 250 250 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-50\/90 {
    --tw-shadow-color: rgb(250 250 250 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-500 {
    --tw-shadow-color: #737373;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-500\/10 {
    --tw-shadow-color: rgb(115 115 115 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-500\/20 {
    --tw-shadow-color: rgb(115 115 115 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-500\/30 {
    --tw-shadow-color: rgb(115 115 115 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-500\/40 {
    --tw-shadow-color: rgb(115 115 115 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-500\/5 {
    --tw-shadow-color: rgb(115 115 115 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-500\/50 {
    --tw-shadow-color: rgb(115 115 115 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-500\/60 {
    --tw-shadow-color: rgb(115 115 115 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-500\/70 {
    --tw-shadow-color: rgb(115 115 115 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-500\/80 {
    --tw-shadow-color: rgb(115 115 115 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-500\/90 {
    --tw-shadow-color: rgb(115 115 115 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-600 {
    --tw-shadow-color: #525252;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-600\/10 {
    --tw-shadow-color: rgb(82 82 82 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-600\/20 {
    --tw-shadow-color: rgb(82 82 82 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-600\/30 {
    --tw-shadow-color: rgb(82 82 82 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-600\/40 {
    --tw-shadow-color: rgb(82 82 82 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-600\/5 {
    --tw-shadow-color: rgb(82 82 82 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-600\/50 {
    --tw-shadow-color: rgb(82 82 82 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-600\/60 {
    --tw-shadow-color: rgb(82 82 82 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-600\/70 {
    --tw-shadow-color: rgb(82 82 82 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-600\/80 {
    --tw-shadow-color: rgb(82 82 82 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-600\/90 {
    --tw-shadow-color: rgb(82 82 82 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-700 {
    --tw-shadow-color: #404040;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-700\/10 {
    --tw-shadow-color: rgb(64 64 64 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-700\/20 {
    --tw-shadow-color: rgb(64 64 64 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-700\/30 {
    --tw-shadow-color: rgb(64 64 64 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-700\/40 {
    --tw-shadow-color: rgb(64 64 64 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-700\/5 {
    --tw-shadow-color: rgb(64 64 64 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-700\/50 {
    --tw-shadow-color: rgb(64 64 64 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-700\/60 {
    --tw-shadow-color: rgb(64 64 64 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-700\/70 {
    --tw-shadow-color: rgb(64 64 64 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-700\/80 {
    --tw-shadow-color: rgb(64 64 64 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-700\/90 {
    --tw-shadow-color: rgb(64 64 64 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-800 {
    --tw-shadow-color: #262626;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-800\/10 {
    --tw-shadow-color: rgb(38 38 38 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-800\/20 {
    --tw-shadow-color: rgb(38 38 38 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-800\/30 {
    --tw-shadow-color: rgb(38 38 38 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-800\/40 {
    --tw-shadow-color: rgb(38 38 38 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-800\/5 {
    --tw-shadow-color: rgb(38 38 38 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-800\/50 {
    --tw-shadow-color: rgb(38 38 38 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-800\/60 {
    --tw-shadow-color: rgb(38 38 38 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-800\/70 {
    --tw-shadow-color: rgb(38 38 38 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-800\/80 {
    --tw-shadow-color: rgb(38 38 38 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-800\/90 {
    --tw-shadow-color: rgb(38 38 38 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-900 {
    --tw-shadow-color: #171717;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-900\/10 {
    --tw-shadow-color: rgb(23 23 23 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-900\/20 {
    --tw-shadow-color: rgb(23 23 23 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-900\/30 {
    --tw-shadow-color: rgb(23 23 23 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-900\/40 {
    --tw-shadow-color: rgb(23 23 23 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-900\/5 {
    --tw-shadow-color: rgb(23 23 23 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-900\/50 {
    --tw-shadow-color: rgb(23 23 23 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-900\/60 {
    --tw-shadow-color: rgb(23 23 23 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-900\/70 {
    --tw-shadow-color: rgb(23 23 23 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-900\/80 {
    --tw-shadow-color: rgb(23 23 23 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-900\/90 {
    --tw-shadow-color: rgb(23 23 23 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-950 {
    --tw-shadow-color: #0a0a0a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-950\/10 {
    --tw-shadow-color: rgb(10 10 10 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-950\/20 {
    --tw-shadow-color: rgb(10 10 10 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-950\/30 {
    --tw-shadow-color: rgb(10 10 10 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-950\/40 {
    --tw-shadow-color: rgb(10 10 10 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-950\/5 {
    --tw-shadow-color: rgb(10 10 10 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-950\/50 {
    --tw-shadow-color: rgb(10 10 10 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-950\/60 {
    --tw-shadow-color: rgb(10 10 10 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-950\/70 {
    --tw-shadow-color: rgb(10 10 10 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-950\/80 {
    --tw-shadow-color: rgb(10 10 10 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-neutral-950\/90 {
    --tw-shadow-color: rgb(10 10 10 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-100 {
    --tw-shadow-color: #ffedd5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-100\/10 {
    --tw-shadow-color: rgb(255 237 213 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-100\/20 {
    --tw-shadow-color: rgb(255 237 213 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-100\/30 {
    --tw-shadow-color: rgb(255 237 213 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-100\/40 {
    --tw-shadow-color: rgb(255 237 213 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-100\/5 {
    --tw-shadow-color: rgb(255 237 213 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-100\/50 {
    --tw-shadow-color: rgb(255 237 213 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-100\/60 {
    --tw-shadow-color: rgb(255 237 213 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-100\/70 {
    --tw-shadow-color: rgb(255 237 213 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-100\/80 {
    --tw-shadow-color: rgb(255 237 213 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-100\/90 {
    --tw-shadow-color: rgb(255 237 213 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-200 {
    --tw-shadow-color: #fed7aa;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-200\/10 {
    --tw-shadow-color: rgb(254 215 170 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-200\/20 {
    --tw-shadow-color: rgb(254 215 170 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-200\/30 {
    --tw-shadow-color: rgb(254 215 170 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-200\/40 {
    --tw-shadow-color: rgb(254 215 170 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-200\/5 {
    --tw-shadow-color: rgb(254 215 170 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-200\/50 {
    --tw-shadow-color: rgb(254 215 170 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-200\/60 {
    --tw-shadow-color: rgb(254 215 170 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-200\/70 {
    --tw-shadow-color: rgb(254 215 170 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-200\/80 {
    --tw-shadow-color: rgb(254 215 170 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-200\/90 {
    --tw-shadow-color: rgb(254 215 170 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-300 {
    --tw-shadow-color: #fdba74;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-300\/10 {
    --tw-shadow-color: rgb(253 186 116 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-300\/20 {
    --tw-shadow-color: rgb(253 186 116 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-300\/30 {
    --tw-shadow-color: rgb(253 186 116 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-300\/40 {
    --tw-shadow-color: rgb(253 186 116 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-300\/5 {
    --tw-shadow-color: rgb(253 186 116 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-300\/50 {
    --tw-shadow-color: rgb(253 186 116 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-300\/60 {
    --tw-shadow-color: rgb(253 186 116 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-300\/70 {
    --tw-shadow-color: rgb(253 186 116 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-300\/80 {
    --tw-shadow-color: rgb(253 186 116 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-300\/90 {
    --tw-shadow-color: rgb(253 186 116 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-400 {
    --tw-shadow-color: #fb923c;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-400\/10 {
    --tw-shadow-color: rgb(251 146 60 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-400\/20 {
    --tw-shadow-color: rgb(251 146 60 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-400\/30 {
    --tw-shadow-color: rgb(251 146 60 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-400\/40 {
    --tw-shadow-color: rgb(251 146 60 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-400\/5 {
    --tw-shadow-color: rgb(251 146 60 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-400\/50 {
    --tw-shadow-color: rgb(251 146 60 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-400\/60 {
    --tw-shadow-color: rgb(251 146 60 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-400\/70 {
    --tw-shadow-color: rgb(251 146 60 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-400\/80 {
    --tw-shadow-color: rgb(251 146 60 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-400\/90 {
    --tw-shadow-color: rgb(251 146 60 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-50 {
    --tw-shadow-color: #fff7ed;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-50\/10 {
    --tw-shadow-color: rgb(255 247 237 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-50\/20 {
    --tw-shadow-color: rgb(255 247 237 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-50\/30 {
    --tw-shadow-color: rgb(255 247 237 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-50\/40 {
    --tw-shadow-color: rgb(255 247 237 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-50\/5 {
    --tw-shadow-color: rgb(255 247 237 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-50\/50 {
    --tw-shadow-color: rgb(255 247 237 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-50\/60 {
    --tw-shadow-color: rgb(255 247 237 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-50\/70 {
    --tw-shadow-color: rgb(255 247 237 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-50\/80 {
    --tw-shadow-color: rgb(255 247 237 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-50\/90 {
    --tw-shadow-color: rgb(255 247 237 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-500 {
    --tw-shadow-color: #f97316;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-500\/10 {
    --tw-shadow-color: rgb(249 115 22 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-500\/20 {
    --tw-shadow-color: rgb(249 115 22 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-500\/30 {
    --tw-shadow-color: rgb(249 115 22 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-500\/40 {
    --tw-shadow-color: rgb(249 115 22 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-500\/5 {
    --tw-shadow-color: rgb(249 115 22 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-500\/50 {
    --tw-shadow-color: rgb(249 115 22 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-500\/60 {
    --tw-shadow-color: rgb(249 115 22 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-500\/70 {
    --tw-shadow-color: rgb(249 115 22 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-500\/80 {
    --tw-shadow-color: rgb(249 115 22 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-500\/90 {
    --tw-shadow-color: rgb(249 115 22 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-600 {
    --tw-shadow-color: #ea580c;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-600\/10 {
    --tw-shadow-color: rgb(234 88 12 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-600\/20 {
    --tw-shadow-color: rgb(234 88 12 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-600\/30 {
    --tw-shadow-color: rgb(234 88 12 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-600\/40 {
    --tw-shadow-color: rgb(234 88 12 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-600\/5 {
    --tw-shadow-color: rgb(234 88 12 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-600\/50 {
    --tw-shadow-color: rgb(234 88 12 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-600\/60 {
    --tw-shadow-color: rgb(234 88 12 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-600\/70 {
    --tw-shadow-color: rgb(234 88 12 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-600\/80 {
    --tw-shadow-color: rgb(234 88 12 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-600\/90 {
    --tw-shadow-color: rgb(234 88 12 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-700 {
    --tw-shadow-color: #c2410c;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-700\/10 {
    --tw-shadow-color: rgb(194 65 12 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-700\/20 {
    --tw-shadow-color: rgb(194 65 12 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-700\/30 {
    --tw-shadow-color: rgb(194 65 12 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-700\/40 {
    --tw-shadow-color: rgb(194 65 12 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-700\/5 {
    --tw-shadow-color: rgb(194 65 12 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-700\/50 {
    --tw-shadow-color: rgb(194 65 12 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-700\/60 {
    --tw-shadow-color: rgb(194 65 12 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-700\/70 {
    --tw-shadow-color: rgb(194 65 12 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-700\/80 {
    --tw-shadow-color: rgb(194 65 12 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-700\/90 {
    --tw-shadow-color: rgb(194 65 12 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-800 {
    --tw-shadow-color: #9a3412;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-800\/10 {
    --tw-shadow-color: rgb(154 52 18 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-800\/20 {
    --tw-shadow-color: rgb(154 52 18 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-800\/30 {
    --tw-shadow-color: rgb(154 52 18 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-800\/40 {
    --tw-shadow-color: rgb(154 52 18 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-800\/5 {
    --tw-shadow-color: rgb(154 52 18 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-800\/50 {
    --tw-shadow-color: rgb(154 52 18 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-800\/60 {
    --tw-shadow-color: rgb(154 52 18 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-800\/70 {
    --tw-shadow-color: rgb(154 52 18 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-800\/80 {
    --tw-shadow-color: rgb(154 52 18 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-800\/90 {
    --tw-shadow-color: rgb(154 52 18 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-900 {
    --tw-shadow-color: #7c2d12;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-900\/10 {
    --tw-shadow-color: rgb(124 45 18 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-900\/20 {
    --tw-shadow-color: rgb(124 45 18 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-900\/30 {
    --tw-shadow-color: rgb(124 45 18 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-900\/40 {
    --tw-shadow-color: rgb(124 45 18 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-900\/5 {
    --tw-shadow-color: rgb(124 45 18 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-900\/50 {
    --tw-shadow-color: rgb(124 45 18 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-900\/60 {
    --tw-shadow-color: rgb(124 45 18 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-900\/70 {
    --tw-shadow-color: rgb(124 45 18 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-900\/80 {
    --tw-shadow-color: rgb(124 45 18 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-900\/90 {
    --tw-shadow-color: rgb(124 45 18 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-950 {
    --tw-shadow-color: #431407;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-950\/10 {
    --tw-shadow-color: rgb(67 20 7 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-950\/20 {
    --tw-shadow-color: rgb(67 20 7 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-950\/30 {
    --tw-shadow-color: rgb(67 20 7 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-950\/40 {
    --tw-shadow-color: rgb(67 20 7 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-950\/5 {
    --tw-shadow-color: rgb(67 20 7 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-950\/50 {
    --tw-shadow-color: rgb(67 20 7 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-950\/60 {
    --tw-shadow-color: rgb(67 20 7 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-950\/70 {
    --tw-shadow-color: rgb(67 20 7 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-950\/80 {
    --tw-shadow-color: rgb(67 20 7 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-orange-950\/90 {
    --tw-shadow-color: rgb(67 20 7 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-100 {
    --tw-shadow-color: #fce7f3;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-100\/10 {
    --tw-shadow-color: rgb(252 231 243 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-100\/20 {
    --tw-shadow-color: rgb(252 231 243 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-100\/30 {
    --tw-shadow-color: rgb(252 231 243 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-100\/40 {
    --tw-shadow-color: rgb(252 231 243 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-100\/5 {
    --tw-shadow-color: rgb(252 231 243 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-100\/50 {
    --tw-shadow-color: rgb(252 231 243 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-100\/60 {
    --tw-shadow-color: rgb(252 231 243 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-100\/70 {
    --tw-shadow-color: rgb(252 231 243 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-100\/80 {
    --tw-shadow-color: rgb(252 231 243 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-100\/90 {
    --tw-shadow-color: rgb(252 231 243 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-200 {
    --tw-shadow-color: #fbcfe8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-200\/10 {
    --tw-shadow-color: rgb(251 207 232 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-200\/20 {
    --tw-shadow-color: rgb(251 207 232 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-200\/30 {
    --tw-shadow-color: rgb(251 207 232 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-200\/40 {
    --tw-shadow-color: rgb(251 207 232 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-200\/5 {
    --tw-shadow-color: rgb(251 207 232 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-200\/50 {
    --tw-shadow-color: rgb(251 207 232 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-200\/60 {
    --tw-shadow-color: rgb(251 207 232 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-200\/70 {
    --tw-shadow-color: rgb(251 207 232 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-200\/80 {
    --tw-shadow-color: rgb(251 207 232 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-200\/90 {
    --tw-shadow-color: rgb(251 207 232 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-300 {
    --tw-shadow-color: #f9a8d4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-300\/10 {
    --tw-shadow-color: rgb(249 168 212 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-300\/20 {
    --tw-shadow-color: rgb(249 168 212 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-300\/30 {
    --tw-shadow-color: rgb(249 168 212 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-300\/40 {
    --tw-shadow-color: rgb(249 168 212 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-300\/5 {
    --tw-shadow-color: rgb(249 168 212 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-300\/50 {
    --tw-shadow-color: rgb(249 168 212 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-300\/60 {
    --tw-shadow-color: rgb(249 168 212 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-300\/70 {
    --tw-shadow-color: rgb(249 168 212 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-300\/80 {
    --tw-shadow-color: rgb(249 168 212 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-300\/90 {
    --tw-shadow-color: rgb(249 168 212 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-400 {
    --tw-shadow-color: #f472b6;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-400\/10 {
    --tw-shadow-color: rgb(244 114 182 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-400\/20 {
    --tw-shadow-color: rgb(244 114 182 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-400\/30 {
    --tw-shadow-color: rgb(244 114 182 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-400\/40 {
    --tw-shadow-color: rgb(244 114 182 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-400\/5 {
    --tw-shadow-color: rgb(244 114 182 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-400\/50 {
    --tw-shadow-color: rgb(244 114 182 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-400\/60 {
    --tw-shadow-color: rgb(244 114 182 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-400\/70 {
    --tw-shadow-color: rgb(244 114 182 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-400\/80 {
    --tw-shadow-color: rgb(244 114 182 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-400\/90 {
    --tw-shadow-color: rgb(244 114 182 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-50 {
    --tw-shadow-color: #fdf2f8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-50\/10 {
    --tw-shadow-color: rgb(253 242 248 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-50\/20 {
    --tw-shadow-color: rgb(253 242 248 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-50\/30 {
    --tw-shadow-color: rgb(253 242 248 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-50\/40 {
    --tw-shadow-color: rgb(253 242 248 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-50\/5 {
    --tw-shadow-color: rgb(253 242 248 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-50\/50 {
    --tw-shadow-color: rgb(253 242 248 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-50\/60 {
    --tw-shadow-color: rgb(253 242 248 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-50\/70 {
    --tw-shadow-color: rgb(253 242 248 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-50\/80 {
    --tw-shadow-color: rgb(253 242 248 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-50\/90 {
    --tw-shadow-color: rgb(253 242 248 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-500 {
    --tw-shadow-color: #ec4899;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-500\/10 {
    --tw-shadow-color: rgb(236 72 153 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-500\/20 {
    --tw-shadow-color: rgb(236 72 153 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-500\/30 {
    --tw-shadow-color: rgb(236 72 153 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-500\/40 {
    --tw-shadow-color: rgb(236 72 153 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-500\/5 {
    --tw-shadow-color: rgb(236 72 153 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-500\/50 {
    --tw-shadow-color: rgb(236 72 153 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-500\/60 {
    --tw-shadow-color: rgb(236 72 153 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-500\/70 {
    --tw-shadow-color: rgb(236 72 153 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-500\/80 {
    --tw-shadow-color: rgb(236 72 153 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-500\/90 {
    --tw-shadow-color: rgb(236 72 153 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-600 {
    --tw-shadow-color: #db2777;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-600\/10 {
    --tw-shadow-color: rgb(219 39 119 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-600\/20 {
    --tw-shadow-color: rgb(219 39 119 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-600\/30 {
    --tw-shadow-color: rgb(219 39 119 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-600\/40 {
    --tw-shadow-color: rgb(219 39 119 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-600\/5 {
    --tw-shadow-color: rgb(219 39 119 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-600\/50 {
    --tw-shadow-color: rgb(219 39 119 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-600\/60 {
    --tw-shadow-color: rgb(219 39 119 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-600\/70 {
    --tw-shadow-color: rgb(219 39 119 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-600\/80 {
    --tw-shadow-color: rgb(219 39 119 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-600\/90 {
    --tw-shadow-color: rgb(219 39 119 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-700 {
    --tw-shadow-color: #be185d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-700\/10 {
    --tw-shadow-color: rgb(190 24 93 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-700\/20 {
    --tw-shadow-color: rgb(190 24 93 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-700\/30 {
    --tw-shadow-color: rgb(190 24 93 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-700\/40 {
    --tw-shadow-color: rgb(190 24 93 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-700\/5 {
    --tw-shadow-color: rgb(190 24 93 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-700\/50 {
    --tw-shadow-color: rgb(190 24 93 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-700\/60 {
    --tw-shadow-color: rgb(190 24 93 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-700\/70 {
    --tw-shadow-color: rgb(190 24 93 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-700\/80 {
    --tw-shadow-color: rgb(190 24 93 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-700\/90 {
    --tw-shadow-color: rgb(190 24 93 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-800 {
    --tw-shadow-color: #9d174d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-800\/10 {
    --tw-shadow-color: rgb(157 23 77 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-800\/20 {
    --tw-shadow-color: rgb(157 23 77 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-800\/30 {
    --tw-shadow-color: rgb(157 23 77 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-800\/40 {
    --tw-shadow-color: rgb(157 23 77 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-800\/5 {
    --tw-shadow-color: rgb(157 23 77 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-800\/50 {
    --tw-shadow-color: rgb(157 23 77 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-800\/60 {
    --tw-shadow-color: rgb(157 23 77 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-800\/70 {
    --tw-shadow-color: rgb(157 23 77 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-800\/80 {
    --tw-shadow-color: rgb(157 23 77 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-800\/90 {
    --tw-shadow-color: rgb(157 23 77 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-900 {
    --tw-shadow-color: #831843;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-900\/10 {
    --tw-shadow-color: rgb(131 24 67 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-900\/20 {
    --tw-shadow-color: rgb(131 24 67 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-900\/30 {
    --tw-shadow-color: rgb(131 24 67 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-900\/40 {
    --tw-shadow-color: rgb(131 24 67 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-900\/5 {
    --tw-shadow-color: rgb(131 24 67 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-900\/50 {
    --tw-shadow-color: rgb(131 24 67 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-900\/60 {
    --tw-shadow-color: rgb(131 24 67 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-900\/70 {
    --tw-shadow-color: rgb(131 24 67 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-900\/80 {
    --tw-shadow-color: rgb(131 24 67 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-900\/90 {
    --tw-shadow-color: rgb(131 24 67 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-950 {
    --tw-shadow-color: #500724;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-950\/10 {
    --tw-shadow-color: rgb(80 7 36 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-950\/20 {
    --tw-shadow-color: rgb(80 7 36 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-950\/30 {
    --tw-shadow-color: rgb(80 7 36 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-950\/40 {
    --tw-shadow-color: rgb(80 7 36 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-950\/5 {
    --tw-shadow-color: rgb(80 7 36 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-950\/50 {
    --tw-shadow-color: rgb(80 7 36 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-950\/60 {
    --tw-shadow-color: rgb(80 7 36 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-950\/70 {
    --tw-shadow-color: rgb(80 7 36 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-950\/80 {
    --tw-shadow-color: rgb(80 7 36 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-pink-950\/90 {
    --tw-shadow-color: rgb(80 7 36 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-100 {
    --tw-shadow-color: #f3e8ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-100\/10 {
    --tw-shadow-color: rgb(243 232 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-100\/20 {
    --tw-shadow-color: rgb(243 232 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-100\/30 {
    --tw-shadow-color: rgb(243 232 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-100\/40 {
    --tw-shadow-color: rgb(243 232 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-100\/5 {
    --tw-shadow-color: rgb(243 232 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-100\/50 {
    --tw-shadow-color: rgb(243 232 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-100\/60 {
    --tw-shadow-color: rgb(243 232 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-100\/70 {
    --tw-shadow-color: rgb(243 232 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-100\/80 {
    --tw-shadow-color: rgb(243 232 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-100\/90 {
    --tw-shadow-color: rgb(243 232 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-200 {
    --tw-shadow-color: #e9d5ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-200\/10 {
    --tw-shadow-color: rgb(233 213 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-200\/20 {
    --tw-shadow-color: rgb(233 213 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-200\/30 {
    --tw-shadow-color: rgb(233 213 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-200\/40 {
    --tw-shadow-color: rgb(233 213 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-200\/5 {
    --tw-shadow-color: rgb(233 213 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-200\/50 {
    --tw-shadow-color: rgb(233 213 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-200\/60 {
    --tw-shadow-color: rgb(233 213 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-200\/70 {
    --tw-shadow-color: rgb(233 213 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-200\/80 {
    --tw-shadow-color: rgb(233 213 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-200\/90 {
    --tw-shadow-color: rgb(233 213 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-300 {
    --tw-shadow-color: #d8b4fe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-300\/10 {
    --tw-shadow-color: rgb(216 180 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-300\/20 {
    --tw-shadow-color: rgb(216 180 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-300\/30 {
    --tw-shadow-color: rgb(216 180 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-300\/40 {
    --tw-shadow-color: rgb(216 180 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-300\/5 {
    --tw-shadow-color: rgb(216 180 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-300\/50 {
    --tw-shadow-color: rgb(216 180 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-300\/60 {
    --tw-shadow-color: rgb(216 180 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-300\/70 {
    --tw-shadow-color: rgb(216 180 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-300\/80 {
    --tw-shadow-color: rgb(216 180 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-300\/90 {
    --tw-shadow-color: rgb(216 180 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-400 {
    --tw-shadow-color: #c084fc;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-400\/10 {
    --tw-shadow-color: rgb(192 132 252 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-400\/20 {
    --tw-shadow-color: rgb(192 132 252 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-400\/30 {
    --tw-shadow-color: rgb(192 132 252 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-400\/40 {
    --tw-shadow-color: rgb(192 132 252 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-400\/5 {
    --tw-shadow-color: rgb(192 132 252 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-400\/50 {
    --tw-shadow-color: rgb(192 132 252 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-400\/60 {
    --tw-shadow-color: rgb(192 132 252 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-400\/70 {
    --tw-shadow-color: rgb(192 132 252 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-400\/80 {
    --tw-shadow-color: rgb(192 132 252 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-400\/90 {
    --tw-shadow-color: rgb(192 132 252 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-50 {
    --tw-shadow-color: #faf5ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-50\/10 {
    --tw-shadow-color: rgb(250 245 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-50\/20 {
    --tw-shadow-color: rgb(250 245 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-50\/30 {
    --tw-shadow-color: rgb(250 245 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-50\/40 {
    --tw-shadow-color: rgb(250 245 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-50\/5 {
    --tw-shadow-color: rgb(250 245 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-50\/50 {
    --tw-shadow-color: rgb(250 245 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-50\/60 {
    --tw-shadow-color: rgb(250 245 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-50\/70 {
    --tw-shadow-color: rgb(250 245 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-50\/80 {
    --tw-shadow-color: rgb(250 245 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-50\/90 {
    --tw-shadow-color: rgb(250 245 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-500 {
    --tw-shadow-color: #a855f7;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-500\/10 {
    --tw-shadow-color: rgb(168 85 247 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-500\/20 {
    --tw-shadow-color: rgb(168 85 247 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-500\/30 {
    --tw-shadow-color: rgb(168 85 247 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-500\/40 {
    --tw-shadow-color: rgb(168 85 247 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-500\/5 {
    --tw-shadow-color: rgb(168 85 247 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-500\/50 {
    --tw-shadow-color: rgb(168 85 247 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-500\/60 {
    --tw-shadow-color: rgb(168 85 247 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-500\/70 {
    --tw-shadow-color: rgb(168 85 247 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-500\/80 {
    --tw-shadow-color: rgb(168 85 247 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-500\/90 {
    --tw-shadow-color: rgb(168 85 247 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-600 {
    --tw-shadow-color: #9333ea;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-600\/10 {
    --tw-shadow-color: rgb(147 51 234 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-600\/20 {
    --tw-shadow-color: rgb(147 51 234 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-600\/30 {
    --tw-shadow-color: rgb(147 51 234 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-600\/40 {
    --tw-shadow-color: rgb(147 51 234 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-600\/5 {
    --tw-shadow-color: rgb(147 51 234 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-600\/50 {
    --tw-shadow-color: rgb(147 51 234 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-600\/60 {
    --tw-shadow-color: rgb(147 51 234 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-600\/70 {
    --tw-shadow-color: rgb(147 51 234 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-600\/80 {
    --tw-shadow-color: rgb(147 51 234 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-600\/90 {
    --tw-shadow-color: rgb(147 51 234 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-700 {
    --tw-shadow-color: #7e22ce;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-700\/10 {
    --tw-shadow-color: rgb(126 34 206 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-700\/20 {
    --tw-shadow-color: rgb(126 34 206 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-700\/30 {
    --tw-shadow-color: rgb(126 34 206 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-700\/40 {
    --tw-shadow-color: rgb(126 34 206 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-700\/5 {
    --tw-shadow-color: rgb(126 34 206 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-700\/50 {
    --tw-shadow-color: rgb(126 34 206 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-700\/60 {
    --tw-shadow-color: rgb(126 34 206 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-700\/70 {
    --tw-shadow-color: rgb(126 34 206 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-700\/80 {
    --tw-shadow-color: rgb(126 34 206 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-700\/90 {
    --tw-shadow-color: rgb(126 34 206 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-800 {
    --tw-shadow-color: #6b21a8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-800\/10 {
    --tw-shadow-color: rgb(107 33 168 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-800\/20 {
    --tw-shadow-color: rgb(107 33 168 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-800\/30 {
    --tw-shadow-color: rgb(107 33 168 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-800\/40 {
    --tw-shadow-color: rgb(107 33 168 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-800\/5 {
    --tw-shadow-color: rgb(107 33 168 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-800\/50 {
    --tw-shadow-color: rgb(107 33 168 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-800\/60 {
    --tw-shadow-color: rgb(107 33 168 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-800\/70 {
    --tw-shadow-color: rgb(107 33 168 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-800\/80 {
    --tw-shadow-color: rgb(107 33 168 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-800\/90 {
    --tw-shadow-color: rgb(107 33 168 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-900 {
    --tw-shadow-color: #581c87;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-900\/10 {
    --tw-shadow-color: rgb(88 28 135 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-900\/20 {
    --tw-shadow-color: rgb(88 28 135 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-900\/30 {
    --tw-shadow-color: rgb(88 28 135 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-900\/40 {
    --tw-shadow-color: rgb(88 28 135 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-900\/5 {
    --tw-shadow-color: rgb(88 28 135 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-900\/50 {
    --tw-shadow-color: rgb(88 28 135 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-900\/60 {
    --tw-shadow-color: rgb(88 28 135 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-900\/70 {
    --tw-shadow-color: rgb(88 28 135 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-900\/80 {
    --tw-shadow-color: rgb(88 28 135 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-900\/90 {
    --tw-shadow-color: rgb(88 28 135 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-950 {
    --tw-shadow-color: #3b0764;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-950\/10 {
    --tw-shadow-color: rgb(59 7 100 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-950\/20 {
    --tw-shadow-color: rgb(59 7 100 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-950\/30 {
    --tw-shadow-color: rgb(59 7 100 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-950\/40 {
    --tw-shadow-color: rgb(59 7 100 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-950\/5 {
    --tw-shadow-color: rgb(59 7 100 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-950\/50 {
    --tw-shadow-color: rgb(59 7 100 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-950\/60 {
    --tw-shadow-color: rgb(59 7 100 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-950\/70 {
    --tw-shadow-color: rgb(59 7 100 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-950\/80 {
    --tw-shadow-color: rgb(59 7 100 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-purple-950\/90 {
    --tw-shadow-color: rgb(59 7 100 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-100 {
    --tw-shadow-color: #fee2e2;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-100\/10 {
    --tw-shadow-color: rgb(254 226 226 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-100\/20 {
    --tw-shadow-color: rgb(254 226 226 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-100\/30 {
    --tw-shadow-color: rgb(254 226 226 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-100\/40 {
    --tw-shadow-color: rgb(254 226 226 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-100\/5 {
    --tw-shadow-color: rgb(254 226 226 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-100\/50 {
    --tw-shadow-color: rgb(254 226 226 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-100\/60 {
    --tw-shadow-color: rgb(254 226 226 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-100\/70 {
    --tw-shadow-color: rgb(254 226 226 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-100\/80 {
    --tw-shadow-color: rgb(254 226 226 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-100\/90 {
    --tw-shadow-color: rgb(254 226 226 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-200 {
    --tw-shadow-color: #fecaca;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-200\/10 {
    --tw-shadow-color: rgb(254 202 202 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-200\/20 {
    --tw-shadow-color: rgb(254 202 202 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-200\/30 {
    --tw-shadow-color: rgb(254 202 202 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-200\/40 {
    --tw-shadow-color: rgb(254 202 202 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-200\/5 {
    --tw-shadow-color: rgb(254 202 202 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-200\/50 {
    --tw-shadow-color: rgb(254 202 202 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-200\/60 {
    --tw-shadow-color: rgb(254 202 202 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-200\/70 {
    --tw-shadow-color: rgb(254 202 202 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-200\/80 {
    --tw-shadow-color: rgb(254 202 202 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-200\/90 {
    --tw-shadow-color: rgb(254 202 202 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-300 {
    --tw-shadow-color: #fca5a5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-300\/10 {
    --tw-shadow-color: rgb(252 165 165 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-300\/20 {
    --tw-shadow-color: rgb(252 165 165 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-300\/30 {
    --tw-shadow-color: rgb(252 165 165 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-300\/40 {
    --tw-shadow-color: rgb(252 165 165 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-300\/5 {
    --tw-shadow-color: rgb(252 165 165 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-300\/50 {
    --tw-shadow-color: rgb(252 165 165 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-300\/60 {
    --tw-shadow-color: rgb(252 165 165 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-300\/70 {
    --tw-shadow-color: rgb(252 165 165 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-300\/80 {
    --tw-shadow-color: rgb(252 165 165 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-300\/90 {
    --tw-shadow-color: rgb(252 165 165 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-400 {
    --tw-shadow-color: #f87171;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-400\/10 {
    --tw-shadow-color: rgb(248 113 113 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-400\/20 {
    --tw-shadow-color: rgb(248 113 113 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-400\/30 {
    --tw-shadow-color: rgb(248 113 113 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-400\/40 {
    --tw-shadow-color: rgb(248 113 113 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-400\/5 {
    --tw-shadow-color: rgb(248 113 113 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-400\/50 {
    --tw-shadow-color: rgb(248 113 113 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-400\/60 {
    --tw-shadow-color: rgb(248 113 113 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-400\/70 {
    --tw-shadow-color: rgb(248 113 113 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-400\/80 {
    --tw-shadow-color: rgb(248 113 113 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-400\/90 {
    --tw-shadow-color: rgb(248 113 113 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-50 {
    --tw-shadow-color: #fef2f2;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-50\/10 {
    --tw-shadow-color: rgb(254 242 242 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-50\/20 {
    --tw-shadow-color: rgb(254 242 242 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-50\/30 {
    --tw-shadow-color: rgb(254 242 242 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-50\/40 {
    --tw-shadow-color: rgb(254 242 242 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-50\/5 {
    --tw-shadow-color: rgb(254 242 242 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-50\/50 {
    --tw-shadow-color: rgb(254 242 242 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-50\/60 {
    --tw-shadow-color: rgb(254 242 242 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-50\/70 {
    --tw-shadow-color: rgb(254 242 242 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-50\/80 {
    --tw-shadow-color: rgb(254 242 242 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-50\/90 {
    --tw-shadow-color: rgb(254 242 242 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-500 {
    --tw-shadow-color: #ef4444;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-500\/10 {
    --tw-shadow-color: rgb(239 68 68 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-500\/20 {
    --tw-shadow-color: rgb(239 68 68 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-500\/30 {
    --tw-shadow-color: rgb(239 68 68 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-500\/40 {
    --tw-shadow-color: rgb(239 68 68 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-500\/5 {
    --tw-shadow-color: rgb(239 68 68 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-500\/50 {
    --tw-shadow-color: rgb(239 68 68 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-500\/60 {
    --tw-shadow-color: rgb(239 68 68 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-500\/70 {
    --tw-shadow-color: rgb(239 68 68 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-500\/80 {
    --tw-shadow-color: rgb(239 68 68 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-500\/90 {
    --tw-shadow-color: rgb(239 68 68 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-600 {
    --tw-shadow-color: #dc2626;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-600\/10 {
    --tw-shadow-color: rgb(220 38 38 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-600\/20 {
    --tw-shadow-color: rgb(220 38 38 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-600\/30 {
    --tw-shadow-color: rgb(220 38 38 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-600\/40 {
    --tw-shadow-color: rgb(220 38 38 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-600\/5 {
    --tw-shadow-color: rgb(220 38 38 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-600\/50 {
    --tw-shadow-color: rgb(220 38 38 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-600\/60 {
    --tw-shadow-color: rgb(220 38 38 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-600\/70 {
    --tw-shadow-color: rgb(220 38 38 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-600\/80 {
    --tw-shadow-color: rgb(220 38 38 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-600\/90 {
    --tw-shadow-color: rgb(220 38 38 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-700 {
    --tw-shadow-color: #b91c1c;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-700\/10 {
    --tw-shadow-color: rgb(185 28 28 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-700\/20 {
    --tw-shadow-color: rgb(185 28 28 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-700\/30 {
    --tw-shadow-color: rgb(185 28 28 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-700\/40 {
    --tw-shadow-color: rgb(185 28 28 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-700\/5 {
    --tw-shadow-color: rgb(185 28 28 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-700\/50 {
    --tw-shadow-color: rgb(185 28 28 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-700\/60 {
    --tw-shadow-color: rgb(185 28 28 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-700\/70 {
    --tw-shadow-color: rgb(185 28 28 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-700\/80 {
    --tw-shadow-color: rgb(185 28 28 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-700\/90 {
    --tw-shadow-color: rgb(185 28 28 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-800 {
    --tw-shadow-color: #991b1b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-800\/10 {
    --tw-shadow-color: rgb(153 27 27 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-800\/20 {
    --tw-shadow-color: rgb(153 27 27 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-800\/30 {
    --tw-shadow-color: rgb(153 27 27 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-800\/40 {
    --tw-shadow-color: rgb(153 27 27 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-800\/5 {
    --tw-shadow-color: rgb(153 27 27 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-800\/50 {
    --tw-shadow-color: rgb(153 27 27 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-800\/60 {
    --tw-shadow-color: rgb(153 27 27 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-800\/70 {
    --tw-shadow-color: rgb(153 27 27 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-800\/80 {
    --tw-shadow-color: rgb(153 27 27 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-800\/90 {
    --tw-shadow-color: rgb(153 27 27 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-900 {
    --tw-shadow-color: #7f1d1d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-900\/10 {
    --tw-shadow-color: rgb(127 29 29 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-900\/20 {
    --tw-shadow-color: rgb(127 29 29 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-900\/30 {
    --tw-shadow-color: rgb(127 29 29 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-900\/40 {
    --tw-shadow-color: rgb(127 29 29 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-900\/5 {
    --tw-shadow-color: rgb(127 29 29 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-900\/50 {
    --tw-shadow-color: rgb(127 29 29 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-900\/60 {
    --tw-shadow-color: rgb(127 29 29 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-900\/70 {
    --tw-shadow-color: rgb(127 29 29 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-900\/80 {
    --tw-shadow-color: rgb(127 29 29 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-900\/90 {
    --tw-shadow-color: rgb(127 29 29 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-950 {
    --tw-shadow-color: #450a0a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-950\/10 {
    --tw-shadow-color: rgb(69 10 10 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-950\/20 {
    --tw-shadow-color: rgb(69 10 10 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-950\/30 {
    --tw-shadow-color: rgb(69 10 10 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-950\/40 {
    --tw-shadow-color: rgb(69 10 10 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-950\/5 {
    --tw-shadow-color: rgb(69 10 10 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-950\/50 {
    --tw-shadow-color: rgb(69 10 10 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-950\/60 {
    --tw-shadow-color: rgb(69 10 10 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-950\/70 {
    --tw-shadow-color: rgb(69 10 10 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-950\/80 {
    --tw-shadow-color: rgb(69 10 10 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-red-950\/90 {
    --tw-shadow-color: rgb(69 10 10 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-100 {
    --tw-shadow-color: #ffe4e6;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-100\/10 {
    --tw-shadow-color: rgb(255 228 230 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-100\/20 {
    --tw-shadow-color: rgb(255 228 230 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-100\/30 {
    --tw-shadow-color: rgb(255 228 230 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-100\/40 {
    --tw-shadow-color: rgb(255 228 230 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-100\/5 {
    --tw-shadow-color: rgb(255 228 230 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-100\/50 {
    --tw-shadow-color: rgb(255 228 230 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-100\/60 {
    --tw-shadow-color: rgb(255 228 230 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-100\/70 {
    --tw-shadow-color: rgb(255 228 230 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-100\/80 {
    --tw-shadow-color: rgb(255 228 230 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-100\/90 {
    --tw-shadow-color: rgb(255 228 230 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-200 {
    --tw-shadow-color: #fecdd3;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-200\/10 {
    --tw-shadow-color: rgb(254 205 211 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-200\/20 {
    --tw-shadow-color: rgb(254 205 211 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-200\/30 {
    --tw-shadow-color: rgb(254 205 211 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-200\/40 {
    --tw-shadow-color: rgb(254 205 211 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-200\/5 {
    --tw-shadow-color: rgb(254 205 211 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-200\/50 {
    --tw-shadow-color: rgb(254 205 211 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-200\/60 {
    --tw-shadow-color: rgb(254 205 211 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-200\/70 {
    --tw-shadow-color: rgb(254 205 211 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-200\/80 {
    --tw-shadow-color: rgb(254 205 211 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-200\/90 {
    --tw-shadow-color: rgb(254 205 211 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-300 {
    --tw-shadow-color: #fda4af;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-300\/10 {
    --tw-shadow-color: rgb(253 164 175 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-300\/20 {
    --tw-shadow-color: rgb(253 164 175 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-300\/30 {
    --tw-shadow-color: rgb(253 164 175 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-300\/40 {
    --tw-shadow-color: rgb(253 164 175 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-300\/5 {
    --tw-shadow-color: rgb(253 164 175 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-300\/50 {
    --tw-shadow-color: rgb(253 164 175 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-300\/60 {
    --tw-shadow-color: rgb(253 164 175 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-300\/70 {
    --tw-shadow-color: rgb(253 164 175 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-300\/80 {
    --tw-shadow-color: rgb(253 164 175 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-300\/90 {
    --tw-shadow-color: rgb(253 164 175 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-400 {
    --tw-shadow-color: #fb7185;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-400\/10 {
    --tw-shadow-color: rgb(251 113 133 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-400\/20 {
    --tw-shadow-color: rgb(251 113 133 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-400\/30 {
    --tw-shadow-color: rgb(251 113 133 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-400\/40 {
    --tw-shadow-color: rgb(251 113 133 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-400\/5 {
    --tw-shadow-color: rgb(251 113 133 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-400\/50 {
    --tw-shadow-color: rgb(251 113 133 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-400\/60 {
    --tw-shadow-color: rgb(251 113 133 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-400\/70 {
    --tw-shadow-color: rgb(251 113 133 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-400\/80 {
    --tw-shadow-color: rgb(251 113 133 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-400\/90 {
    --tw-shadow-color: rgb(251 113 133 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-50 {
    --tw-shadow-color: #fff1f2;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-50\/10 {
    --tw-shadow-color: rgb(255 241 242 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-50\/20 {
    --tw-shadow-color: rgb(255 241 242 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-50\/30 {
    --tw-shadow-color: rgb(255 241 242 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-50\/40 {
    --tw-shadow-color: rgb(255 241 242 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-50\/5 {
    --tw-shadow-color: rgb(255 241 242 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-50\/50 {
    --tw-shadow-color: rgb(255 241 242 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-50\/60 {
    --tw-shadow-color: rgb(255 241 242 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-50\/70 {
    --tw-shadow-color: rgb(255 241 242 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-50\/80 {
    --tw-shadow-color: rgb(255 241 242 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-50\/90 {
    --tw-shadow-color: rgb(255 241 242 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-500 {
    --tw-shadow-color: #f43f5e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-500\/10 {
    --tw-shadow-color: rgb(244 63 94 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-500\/20 {
    --tw-shadow-color: rgb(244 63 94 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-500\/30 {
    --tw-shadow-color: rgb(244 63 94 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-500\/40 {
    --tw-shadow-color: rgb(244 63 94 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-500\/5 {
    --tw-shadow-color: rgb(244 63 94 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-500\/50 {
    --tw-shadow-color: rgb(244 63 94 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-500\/60 {
    --tw-shadow-color: rgb(244 63 94 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-500\/70 {
    --tw-shadow-color: rgb(244 63 94 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-500\/80 {
    --tw-shadow-color: rgb(244 63 94 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-500\/90 {
    --tw-shadow-color: rgb(244 63 94 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-600 {
    --tw-shadow-color: #e11d48;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-600\/10 {
    --tw-shadow-color: rgb(225 29 72 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-600\/20 {
    --tw-shadow-color: rgb(225 29 72 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-600\/30 {
    --tw-shadow-color: rgb(225 29 72 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-600\/40 {
    --tw-shadow-color: rgb(225 29 72 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-600\/5 {
    --tw-shadow-color: rgb(225 29 72 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-600\/50 {
    --tw-shadow-color: rgb(225 29 72 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-600\/60 {
    --tw-shadow-color: rgb(225 29 72 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-600\/70 {
    --tw-shadow-color: rgb(225 29 72 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-600\/80 {
    --tw-shadow-color: rgb(225 29 72 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-600\/90 {
    --tw-shadow-color: rgb(225 29 72 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-700 {
    --tw-shadow-color: #be123c;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-700\/10 {
    --tw-shadow-color: rgb(190 18 60 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-700\/20 {
    --tw-shadow-color: rgb(190 18 60 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-700\/30 {
    --tw-shadow-color: rgb(190 18 60 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-700\/40 {
    --tw-shadow-color: rgb(190 18 60 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-700\/5 {
    --tw-shadow-color: rgb(190 18 60 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-700\/50 {
    --tw-shadow-color: rgb(190 18 60 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-700\/60 {
    --tw-shadow-color: rgb(190 18 60 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-700\/70 {
    --tw-shadow-color: rgb(190 18 60 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-700\/80 {
    --tw-shadow-color: rgb(190 18 60 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-700\/90 {
    --tw-shadow-color: rgb(190 18 60 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-800 {
    --tw-shadow-color: #9f1239;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-800\/10 {
    --tw-shadow-color: rgb(159 18 57 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-800\/20 {
    --tw-shadow-color: rgb(159 18 57 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-800\/30 {
    --tw-shadow-color: rgb(159 18 57 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-800\/40 {
    --tw-shadow-color: rgb(159 18 57 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-800\/5 {
    --tw-shadow-color: rgb(159 18 57 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-800\/50 {
    --tw-shadow-color: rgb(159 18 57 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-800\/60 {
    --tw-shadow-color: rgb(159 18 57 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-800\/70 {
    --tw-shadow-color: rgb(159 18 57 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-800\/80 {
    --tw-shadow-color: rgb(159 18 57 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-800\/90 {
    --tw-shadow-color: rgb(159 18 57 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-900 {
    --tw-shadow-color: #881337;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-900\/10 {
    --tw-shadow-color: rgb(136 19 55 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-900\/20 {
    --tw-shadow-color: rgb(136 19 55 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-900\/30 {
    --tw-shadow-color: rgb(136 19 55 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-900\/40 {
    --tw-shadow-color: rgb(136 19 55 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-900\/5 {
    --tw-shadow-color: rgb(136 19 55 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-900\/50 {
    --tw-shadow-color: rgb(136 19 55 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-900\/60 {
    --tw-shadow-color: rgb(136 19 55 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-900\/70 {
    --tw-shadow-color: rgb(136 19 55 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-900\/80 {
    --tw-shadow-color: rgb(136 19 55 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-900\/90 {
    --tw-shadow-color: rgb(136 19 55 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-950 {
    --tw-shadow-color: #4c0519;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-950\/10 {
    --tw-shadow-color: rgb(76 5 25 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-950\/20 {
    --tw-shadow-color: rgb(76 5 25 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-950\/30 {
    --tw-shadow-color: rgb(76 5 25 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-950\/40 {
    --tw-shadow-color: rgb(76 5 25 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-950\/5 {
    --tw-shadow-color: rgb(76 5 25 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-950\/50 {
    --tw-shadow-color: rgb(76 5 25 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-950\/60 {
    --tw-shadow-color: rgb(76 5 25 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-950\/70 {
    --tw-shadow-color: rgb(76 5 25 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-950\/80 {
    --tw-shadow-color: rgb(76 5 25 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-rose-950\/90 {
    --tw-shadow-color: rgb(76 5 25 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-100 {
    --tw-shadow-color: #e0f2fe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-100\/10 {
    --tw-shadow-color: rgb(224 242 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-100\/20 {
    --tw-shadow-color: rgb(224 242 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-100\/30 {
    --tw-shadow-color: rgb(224 242 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-100\/40 {
    --tw-shadow-color: rgb(224 242 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-100\/5 {
    --tw-shadow-color: rgb(224 242 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-100\/50 {
    --tw-shadow-color: rgb(224 242 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-100\/60 {
    --tw-shadow-color: rgb(224 242 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-100\/70 {
    --tw-shadow-color: rgb(224 242 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-100\/80 {
    --tw-shadow-color: rgb(224 242 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-100\/90 {
    --tw-shadow-color: rgb(224 242 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-200 {
    --tw-shadow-color: #bae6fd;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-200\/10 {
    --tw-shadow-color: rgb(186 230 253 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-200\/20 {
    --tw-shadow-color: rgb(186 230 253 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-200\/30 {
    --tw-shadow-color: rgb(186 230 253 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-200\/40 {
    --tw-shadow-color: rgb(186 230 253 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-200\/5 {
    --tw-shadow-color: rgb(186 230 253 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-200\/50 {
    --tw-shadow-color: rgb(186 230 253 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-200\/60 {
    --tw-shadow-color: rgb(186 230 253 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-200\/70 {
    --tw-shadow-color: rgb(186 230 253 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-200\/80 {
    --tw-shadow-color: rgb(186 230 253 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-200\/90 {
    --tw-shadow-color: rgb(186 230 253 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-300 {
    --tw-shadow-color: #7dd3fc;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-300\/10 {
    --tw-shadow-color: rgb(125 211 252 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-300\/20 {
    --tw-shadow-color: rgb(125 211 252 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-300\/30 {
    --tw-shadow-color: rgb(125 211 252 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-300\/40 {
    --tw-shadow-color: rgb(125 211 252 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-300\/5 {
    --tw-shadow-color: rgb(125 211 252 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-300\/50 {
    --tw-shadow-color: rgb(125 211 252 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-300\/60 {
    --tw-shadow-color: rgb(125 211 252 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-300\/70 {
    --tw-shadow-color: rgb(125 211 252 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-300\/80 {
    --tw-shadow-color: rgb(125 211 252 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-300\/90 {
    --tw-shadow-color: rgb(125 211 252 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-400 {
    --tw-shadow-color: #38bdf8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-400\/10 {
    --tw-shadow-color: rgb(56 189 248 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-400\/20 {
    --tw-shadow-color: rgb(56 189 248 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-400\/30 {
    --tw-shadow-color: rgb(56 189 248 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-400\/40 {
    --tw-shadow-color: rgb(56 189 248 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-400\/5 {
    --tw-shadow-color: rgb(56 189 248 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-400\/50 {
    --tw-shadow-color: rgb(56 189 248 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-400\/60 {
    --tw-shadow-color: rgb(56 189 248 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-400\/70 {
    --tw-shadow-color: rgb(56 189 248 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-400\/80 {
    --tw-shadow-color: rgb(56 189 248 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-400\/90 {
    --tw-shadow-color: rgb(56 189 248 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-50 {
    --tw-shadow-color: #f0f9ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-50\/10 {
    --tw-shadow-color: rgb(240 249 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-50\/20 {
    --tw-shadow-color: rgb(240 249 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-50\/30 {
    --tw-shadow-color: rgb(240 249 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-50\/40 {
    --tw-shadow-color: rgb(240 249 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-50\/5 {
    --tw-shadow-color: rgb(240 249 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-50\/50 {
    --tw-shadow-color: rgb(240 249 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-50\/60 {
    --tw-shadow-color: rgb(240 249 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-50\/70 {
    --tw-shadow-color: rgb(240 249 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-50\/80 {
    --tw-shadow-color: rgb(240 249 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-50\/90 {
    --tw-shadow-color: rgb(240 249 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-500 {
    --tw-shadow-color: #0ea5e9;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-500\/10 {
    --tw-shadow-color: rgb(14 165 233 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-500\/20 {
    --tw-shadow-color: rgb(14 165 233 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-500\/30 {
    --tw-shadow-color: rgb(14 165 233 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-500\/40 {
    --tw-shadow-color: rgb(14 165 233 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-500\/5 {
    --tw-shadow-color: rgb(14 165 233 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-500\/50 {
    --tw-shadow-color: rgb(14 165 233 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-500\/60 {
    --tw-shadow-color: rgb(14 165 233 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-500\/70 {
    --tw-shadow-color: rgb(14 165 233 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-500\/80 {
    --tw-shadow-color: rgb(14 165 233 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-500\/90 {
    --tw-shadow-color: rgb(14 165 233 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-600 {
    --tw-shadow-color: #0284c7;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-600\/10 {
    --tw-shadow-color: rgb(2 132 199 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-600\/20 {
    --tw-shadow-color: rgb(2 132 199 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-600\/30 {
    --tw-shadow-color: rgb(2 132 199 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-600\/40 {
    --tw-shadow-color: rgb(2 132 199 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-600\/5 {
    --tw-shadow-color: rgb(2 132 199 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-600\/50 {
    --tw-shadow-color: rgb(2 132 199 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-600\/60 {
    --tw-shadow-color: rgb(2 132 199 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-600\/70 {
    --tw-shadow-color: rgb(2 132 199 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-600\/80 {
    --tw-shadow-color: rgb(2 132 199 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-600\/90 {
    --tw-shadow-color: rgb(2 132 199 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-700 {
    --tw-shadow-color: #0369a1;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-700\/10 {
    --tw-shadow-color: rgb(3 105 161 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-700\/20 {
    --tw-shadow-color: rgb(3 105 161 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-700\/30 {
    --tw-shadow-color: rgb(3 105 161 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-700\/40 {
    --tw-shadow-color: rgb(3 105 161 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-700\/5 {
    --tw-shadow-color: rgb(3 105 161 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-700\/50 {
    --tw-shadow-color: rgb(3 105 161 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-700\/60 {
    --tw-shadow-color: rgb(3 105 161 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-700\/70 {
    --tw-shadow-color: rgb(3 105 161 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-700\/80 {
    --tw-shadow-color: rgb(3 105 161 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-700\/90 {
    --tw-shadow-color: rgb(3 105 161 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-800 {
    --tw-shadow-color: #075985;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-800\/10 {
    --tw-shadow-color: rgb(7 89 133 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-800\/20 {
    --tw-shadow-color: rgb(7 89 133 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-800\/30 {
    --tw-shadow-color: rgb(7 89 133 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-800\/40 {
    --tw-shadow-color: rgb(7 89 133 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-800\/5 {
    --tw-shadow-color: rgb(7 89 133 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-800\/50 {
    --tw-shadow-color: rgb(7 89 133 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-800\/60 {
    --tw-shadow-color: rgb(7 89 133 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-800\/70 {
    --tw-shadow-color: rgb(7 89 133 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-800\/80 {
    --tw-shadow-color: rgb(7 89 133 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-800\/90 {
    --tw-shadow-color: rgb(7 89 133 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-900 {
    --tw-shadow-color: #0c4a6e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-900\/10 {
    --tw-shadow-color: rgb(12 74 110 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-900\/20 {
    --tw-shadow-color: rgb(12 74 110 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-900\/30 {
    --tw-shadow-color: rgb(12 74 110 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-900\/40 {
    --tw-shadow-color: rgb(12 74 110 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-900\/5 {
    --tw-shadow-color: rgb(12 74 110 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-900\/50 {
    --tw-shadow-color: rgb(12 74 110 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-900\/60 {
    --tw-shadow-color: rgb(12 74 110 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-900\/70 {
    --tw-shadow-color: rgb(12 74 110 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-900\/80 {
    --tw-shadow-color: rgb(12 74 110 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-900\/90 {
    --tw-shadow-color: rgb(12 74 110 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-950 {
    --tw-shadow-color: #082f49;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-950\/10 {
    --tw-shadow-color: rgb(8 47 73 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-950\/20 {
    --tw-shadow-color: rgb(8 47 73 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-950\/30 {
    --tw-shadow-color: rgb(8 47 73 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-950\/40 {
    --tw-shadow-color: rgb(8 47 73 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-950\/5 {
    --tw-shadow-color: rgb(8 47 73 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-950\/50 {
    --tw-shadow-color: rgb(8 47 73 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-950\/60 {
    --tw-shadow-color: rgb(8 47 73 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-950\/70 {
    --tw-shadow-color: rgb(8 47 73 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-950\/80 {
    --tw-shadow-color: rgb(8 47 73 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-sky-950\/90 {
    --tw-shadow-color: rgb(8 47 73 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-100 {
    --tw-shadow-color: #f1f5f9;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-100\/10 {
    --tw-shadow-color: rgb(241 245 249 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-100\/20 {
    --tw-shadow-color: rgb(241 245 249 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-100\/30 {
    --tw-shadow-color: rgb(241 245 249 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-100\/40 {
    --tw-shadow-color: rgb(241 245 249 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-100\/5 {
    --tw-shadow-color: rgb(241 245 249 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-100\/50 {
    --tw-shadow-color: rgb(241 245 249 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-100\/60 {
    --tw-shadow-color: rgb(241 245 249 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-100\/70 {
    --tw-shadow-color: rgb(241 245 249 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-100\/80 {
    --tw-shadow-color: rgb(241 245 249 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-100\/90 {
    --tw-shadow-color: rgb(241 245 249 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-200 {
    --tw-shadow-color: #e2e8f0;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-200\/10 {
    --tw-shadow-color: rgb(226 232 240 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-200\/20 {
    --tw-shadow-color: rgb(226 232 240 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-200\/30 {
    --tw-shadow-color: rgb(226 232 240 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-200\/40 {
    --tw-shadow-color: rgb(226 232 240 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-200\/5 {
    --tw-shadow-color: rgb(226 232 240 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-200\/50 {
    --tw-shadow-color: rgb(226 232 240 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-200\/60 {
    --tw-shadow-color: rgb(226 232 240 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-200\/70 {
    --tw-shadow-color: rgb(226 232 240 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-200\/80 {
    --tw-shadow-color: rgb(226 232 240 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-200\/90 {
    --tw-shadow-color: rgb(226 232 240 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-300 {
    --tw-shadow-color: #cbd5e1;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-300\/10 {
    --tw-shadow-color: rgb(203 213 225 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-300\/20 {
    --tw-shadow-color: rgb(203 213 225 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-300\/30 {
    --tw-shadow-color: rgb(203 213 225 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-300\/40 {
    --tw-shadow-color: rgb(203 213 225 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-300\/5 {
    --tw-shadow-color: rgb(203 213 225 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-300\/50 {
    --tw-shadow-color: rgb(203 213 225 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-300\/60 {
    --tw-shadow-color: rgb(203 213 225 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-300\/70 {
    --tw-shadow-color: rgb(203 213 225 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-300\/80 {
    --tw-shadow-color: rgb(203 213 225 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-300\/90 {
    --tw-shadow-color: rgb(203 213 225 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-400 {
    --tw-shadow-color: #94a3b8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-400\/10 {
    --tw-shadow-color: rgb(148 163 184 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-400\/20 {
    --tw-shadow-color: rgb(148 163 184 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-400\/30 {
    --tw-shadow-color: rgb(148 163 184 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-400\/40 {
    --tw-shadow-color: rgb(148 163 184 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-400\/5 {
    --tw-shadow-color: rgb(148 163 184 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-400\/50 {
    --tw-shadow-color: rgb(148 163 184 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-400\/60 {
    --tw-shadow-color: rgb(148 163 184 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-400\/70 {
    --tw-shadow-color: rgb(148 163 184 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-400\/80 {
    --tw-shadow-color: rgb(148 163 184 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-400\/90 {
    --tw-shadow-color: rgb(148 163 184 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-50 {
    --tw-shadow-color: #f8fafc;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-50\/10 {
    --tw-shadow-color: rgb(248 250 252 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-50\/20 {
    --tw-shadow-color: rgb(248 250 252 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-50\/30 {
    --tw-shadow-color: rgb(248 250 252 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-50\/40 {
    --tw-shadow-color: rgb(248 250 252 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-50\/5 {
    --tw-shadow-color: rgb(248 250 252 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-50\/50 {
    --tw-shadow-color: rgb(248 250 252 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-50\/60 {
    --tw-shadow-color: rgb(248 250 252 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-50\/70 {
    --tw-shadow-color: rgb(248 250 252 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-50\/80 {
    --tw-shadow-color: rgb(248 250 252 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-50\/90 {
    --tw-shadow-color: rgb(248 250 252 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-500 {
    --tw-shadow-color: #64748b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-500\/10 {
    --tw-shadow-color: rgb(100 116 139 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-500\/20 {
    --tw-shadow-color: rgb(100 116 139 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-500\/30 {
    --tw-shadow-color: rgb(100 116 139 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-500\/40 {
    --tw-shadow-color: rgb(100 116 139 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-500\/5 {
    --tw-shadow-color: rgb(100 116 139 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-500\/50 {
    --tw-shadow-color: rgb(100 116 139 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-500\/60 {
    --tw-shadow-color: rgb(100 116 139 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-500\/70 {
    --tw-shadow-color: rgb(100 116 139 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-500\/80 {
    --tw-shadow-color: rgb(100 116 139 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-500\/90 {
    --tw-shadow-color: rgb(100 116 139 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-600 {
    --tw-shadow-color: #475569;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-600\/10 {
    --tw-shadow-color: rgb(71 85 105 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-600\/20 {
    --tw-shadow-color: rgb(71 85 105 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-600\/30 {
    --tw-shadow-color: rgb(71 85 105 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-600\/40 {
    --tw-shadow-color: rgb(71 85 105 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-600\/5 {
    --tw-shadow-color: rgb(71 85 105 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-600\/50 {
    --tw-shadow-color: rgb(71 85 105 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-600\/60 {
    --tw-shadow-color: rgb(71 85 105 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-600\/70 {
    --tw-shadow-color: rgb(71 85 105 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-600\/80 {
    --tw-shadow-color: rgb(71 85 105 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-600\/90 {
    --tw-shadow-color: rgb(71 85 105 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-700 {
    --tw-shadow-color: #334155;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-700\/10 {
    --tw-shadow-color: rgb(51 65 85 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-700\/20 {
    --tw-shadow-color: rgb(51 65 85 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-700\/30 {
    --tw-shadow-color: rgb(51 65 85 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-700\/40 {
    --tw-shadow-color: rgb(51 65 85 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-700\/5 {
    --tw-shadow-color: rgb(51 65 85 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-700\/50 {
    --tw-shadow-color: rgb(51 65 85 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-700\/60 {
    --tw-shadow-color: rgb(51 65 85 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-700\/70 {
    --tw-shadow-color: rgb(51 65 85 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-700\/80 {
    --tw-shadow-color: rgb(51 65 85 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-700\/90 {
    --tw-shadow-color: rgb(51 65 85 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-800 {
    --tw-shadow-color: #1e293b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-800\/10 {
    --tw-shadow-color: rgb(30 41 59 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-800\/20 {
    --tw-shadow-color: rgb(30 41 59 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-800\/30 {
    --tw-shadow-color: rgb(30 41 59 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-800\/40 {
    --tw-shadow-color: rgb(30 41 59 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-800\/5 {
    --tw-shadow-color: rgb(30 41 59 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-800\/50 {
    --tw-shadow-color: rgb(30 41 59 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-800\/60 {
    --tw-shadow-color: rgb(30 41 59 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-800\/70 {
    --tw-shadow-color: rgb(30 41 59 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-800\/80 {
    --tw-shadow-color: rgb(30 41 59 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-800\/90 {
    --tw-shadow-color: rgb(30 41 59 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-900 {
    --tw-shadow-color: #0f172a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-900\/10 {
    --tw-shadow-color: rgb(15 23 42 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-900\/20 {
    --tw-shadow-color: rgb(15 23 42 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-900\/30 {
    --tw-shadow-color: rgb(15 23 42 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-900\/40 {
    --tw-shadow-color: rgb(15 23 42 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-900\/5 {
    --tw-shadow-color: rgb(15 23 42 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-900\/50 {
    --tw-shadow-color: rgb(15 23 42 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-900\/60 {
    --tw-shadow-color: rgb(15 23 42 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-900\/70 {
    --tw-shadow-color: rgb(15 23 42 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-900\/80 {
    --tw-shadow-color: rgb(15 23 42 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-900\/90 {
    --tw-shadow-color: rgb(15 23 42 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-950 {
    --tw-shadow-color: #020617;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-950\/10 {
    --tw-shadow-color: rgb(2 6 23 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-950\/20 {
    --tw-shadow-color: rgb(2 6 23 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-950\/30 {
    --tw-shadow-color: rgb(2 6 23 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-950\/40 {
    --tw-shadow-color: rgb(2 6 23 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-950\/5 {
    --tw-shadow-color: rgb(2 6 23 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-950\/50 {
    --tw-shadow-color: rgb(2 6 23 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-950\/60 {
    --tw-shadow-color: rgb(2 6 23 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-950\/70 {
    --tw-shadow-color: rgb(2 6 23 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-950\/80 {
    --tw-shadow-color: rgb(2 6 23 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-slate-950\/90 {
    --tw-shadow-color: rgb(2 6 23 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-100 {
    --tw-shadow-color: #f5f5f4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-100\/10 {
    --tw-shadow-color: rgb(245 245 244 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-100\/20 {
    --tw-shadow-color: rgb(245 245 244 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-100\/30 {
    --tw-shadow-color: rgb(245 245 244 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-100\/40 {
    --tw-shadow-color: rgb(245 245 244 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-100\/5 {
    --tw-shadow-color: rgb(245 245 244 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-100\/50 {
    --tw-shadow-color: rgb(245 245 244 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-100\/60 {
    --tw-shadow-color: rgb(245 245 244 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-100\/70 {
    --tw-shadow-color: rgb(245 245 244 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-100\/80 {
    --tw-shadow-color: rgb(245 245 244 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-100\/90 {
    --tw-shadow-color: rgb(245 245 244 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-200 {
    --tw-shadow-color: #e7e5e4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-200\/10 {
    --tw-shadow-color: rgb(231 229 228 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-200\/20 {
    --tw-shadow-color: rgb(231 229 228 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-200\/30 {
    --tw-shadow-color: rgb(231 229 228 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-200\/40 {
    --tw-shadow-color: rgb(231 229 228 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-200\/5 {
    --tw-shadow-color: rgb(231 229 228 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-200\/50 {
    --tw-shadow-color: rgb(231 229 228 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-200\/60 {
    --tw-shadow-color: rgb(231 229 228 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-200\/70 {
    --tw-shadow-color: rgb(231 229 228 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-200\/80 {
    --tw-shadow-color: rgb(231 229 228 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-200\/90 {
    --tw-shadow-color: rgb(231 229 228 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-300 {
    --tw-shadow-color: #d6d3d1;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-300\/10 {
    --tw-shadow-color: rgb(214 211 209 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-300\/20 {
    --tw-shadow-color: rgb(214 211 209 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-300\/30 {
    --tw-shadow-color: rgb(214 211 209 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-300\/40 {
    --tw-shadow-color: rgb(214 211 209 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-300\/5 {
    --tw-shadow-color: rgb(214 211 209 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-300\/50 {
    --tw-shadow-color: rgb(214 211 209 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-300\/60 {
    --tw-shadow-color: rgb(214 211 209 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-300\/70 {
    --tw-shadow-color: rgb(214 211 209 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-300\/80 {
    --tw-shadow-color: rgb(214 211 209 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-300\/90 {
    --tw-shadow-color: rgb(214 211 209 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-400 {
    --tw-shadow-color: #a8a29e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-400\/10 {
    --tw-shadow-color: rgb(168 162 158 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-400\/20 {
    --tw-shadow-color: rgb(168 162 158 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-400\/30 {
    --tw-shadow-color: rgb(168 162 158 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-400\/40 {
    --tw-shadow-color: rgb(168 162 158 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-400\/5 {
    --tw-shadow-color: rgb(168 162 158 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-400\/50 {
    --tw-shadow-color: rgb(168 162 158 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-400\/60 {
    --tw-shadow-color: rgb(168 162 158 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-400\/70 {
    --tw-shadow-color: rgb(168 162 158 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-400\/80 {
    --tw-shadow-color: rgb(168 162 158 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-400\/90 {
    --tw-shadow-color: rgb(168 162 158 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-50 {
    --tw-shadow-color: #fafaf9;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-50\/10 {
    --tw-shadow-color: rgb(250 250 249 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-50\/20 {
    --tw-shadow-color: rgb(250 250 249 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-50\/30 {
    --tw-shadow-color: rgb(250 250 249 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-50\/40 {
    --tw-shadow-color: rgb(250 250 249 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-50\/5 {
    --tw-shadow-color: rgb(250 250 249 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-50\/50 {
    --tw-shadow-color: rgb(250 250 249 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-50\/60 {
    --tw-shadow-color: rgb(250 250 249 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-50\/70 {
    --tw-shadow-color: rgb(250 250 249 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-50\/80 {
    --tw-shadow-color: rgb(250 250 249 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-50\/90 {
    --tw-shadow-color: rgb(250 250 249 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-500 {
    --tw-shadow-color: #78716c;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-500\/10 {
    --tw-shadow-color: rgb(120 113 108 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-500\/20 {
    --tw-shadow-color: rgb(120 113 108 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-500\/30 {
    --tw-shadow-color: rgb(120 113 108 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-500\/40 {
    --tw-shadow-color: rgb(120 113 108 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-500\/5 {
    --tw-shadow-color: rgb(120 113 108 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-500\/50 {
    --tw-shadow-color: rgb(120 113 108 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-500\/60 {
    --tw-shadow-color: rgb(120 113 108 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-500\/70 {
    --tw-shadow-color: rgb(120 113 108 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-500\/80 {
    --tw-shadow-color: rgb(120 113 108 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-500\/90 {
    --tw-shadow-color: rgb(120 113 108 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-600 {
    --tw-shadow-color: #57534e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-600\/10 {
    --tw-shadow-color: rgb(87 83 78 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-600\/20 {
    --tw-shadow-color: rgb(87 83 78 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-600\/30 {
    --tw-shadow-color: rgb(87 83 78 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-600\/40 {
    --tw-shadow-color: rgb(87 83 78 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-600\/5 {
    --tw-shadow-color: rgb(87 83 78 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-600\/50 {
    --tw-shadow-color: rgb(87 83 78 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-600\/60 {
    --tw-shadow-color: rgb(87 83 78 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-600\/70 {
    --tw-shadow-color: rgb(87 83 78 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-600\/80 {
    --tw-shadow-color: rgb(87 83 78 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-600\/90 {
    --tw-shadow-color: rgb(87 83 78 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-700 {
    --tw-shadow-color: #44403c;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-700\/10 {
    --tw-shadow-color: rgb(68 64 60 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-700\/20 {
    --tw-shadow-color: rgb(68 64 60 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-700\/30 {
    --tw-shadow-color: rgb(68 64 60 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-700\/40 {
    --tw-shadow-color: rgb(68 64 60 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-700\/5 {
    --tw-shadow-color: rgb(68 64 60 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-700\/50 {
    --tw-shadow-color: rgb(68 64 60 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-700\/60 {
    --tw-shadow-color: rgb(68 64 60 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-700\/70 {
    --tw-shadow-color: rgb(68 64 60 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-700\/80 {
    --tw-shadow-color: rgb(68 64 60 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-700\/90 {
    --tw-shadow-color: rgb(68 64 60 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-800 {
    --tw-shadow-color: #292524;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-800\/10 {
    --tw-shadow-color: rgb(41 37 36 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-800\/20 {
    --tw-shadow-color: rgb(41 37 36 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-800\/30 {
    --tw-shadow-color: rgb(41 37 36 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-800\/40 {
    --tw-shadow-color: rgb(41 37 36 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-800\/5 {
    --tw-shadow-color: rgb(41 37 36 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-800\/50 {
    --tw-shadow-color: rgb(41 37 36 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-800\/60 {
    --tw-shadow-color: rgb(41 37 36 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-800\/70 {
    --tw-shadow-color: rgb(41 37 36 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-800\/80 {
    --tw-shadow-color: rgb(41 37 36 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-800\/90 {
    --tw-shadow-color: rgb(41 37 36 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-900 {
    --tw-shadow-color: #1c1917;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-900\/10 {
    --tw-shadow-color: rgb(28 25 23 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-900\/20 {
    --tw-shadow-color: rgb(28 25 23 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-900\/30 {
    --tw-shadow-color: rgb(28 25 23 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-900\/40 {
    --tw-shadow-color: rgb(28 25 23 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-900\/5 {
    --tw-shadow-color: rgb(28 25 23 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-900\/50 {
    --tw-shadow-color: rgb(28 25 23 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-900\/60 {
    --tw-shadow-color: rgb(28 25 23 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-900\/70 {
    --tw-shadow-color: rgb(28 25 23 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-900\/80 {
    --tw-shadow-color: rgb(28 25 23 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-900\/90 {
    --tw-shadow-color: rgb(28 25 23 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-950 {
    --tw-shadow-color: #0c0a09;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-950\/10 {
    --tw-shadow-color: rgb(12 10 9 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-950\/20 {
    --tw-shadow-color: rgb(12 10 9 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-950\/30 {
    --tw-shadow-color: rgb(12 10 9 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-950\/40 {
    --tw-shadow-color: rgb(12 10 9 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-950\/5 {
    --tw-shadow-color: rgb(12 10 9 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-950\/50 {
    --tw-shadow-color: rgb(12 10 9 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-950\/60 {
    --tw-shadow-color: rgb(12 10 9 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-950\/70 {
    --tw-shadow-color: rgb(12 10 9 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-950\/80 {
    --tw-shadow-color: rgb(12 10 9 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-stone-950\/90 {
    --tw-shadow-color: rgb(12 10 9 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-100 {
    --tw-shadow-color: #ccfbf1;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-100\/10 {
    --tw-shadow-color: rgb(204 251 241 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-100\/20 {
    --tw-shadow-color: rgb(204 251 241 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-100\/30 {
    --tw-shadow-color: rgb(204 251 241 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-100\/40 {
    --tw-shadow-color: rgb(204 251 241 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-100\/5 {
    --tw-shadow-color: rgb(204 251 241 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-100\/50 {
    --tw-shadow-color: rgb(204 251 241 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-100\/60 {
    --tw-shadow-color: rgb(204 251 241 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-100\/70 {
    --tw-shadow-color: rgb(204 251 241 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-100\/80 {
    --tw-shadow-color: rgb(204 251 241 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-100\/90 {
    --tw-shadow-color: rgb(204 251 241 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-200 {
    --tw-shadow-color: #99f6e4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-200\/10 {
    --tw-shadow-color: rgb(153 246 228 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-200\/20 {
    --tw-shadow-color: rgb(153 246 228 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-200\/30 {
    --tw-shadow-color: rgb(153 246 228 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-200\/40 {
    --tw-shadow-color: rgb(153 246 228 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-200\/5 {
    --tw-shadow-color: rgb(153 246 228 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-200\/50 {
    --tw-shadow-color: rgb(153 246 228 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-200\/60 {
    --tw-shadow-color: rgb(153 246 228 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-200\/70 {
    --tw-shadow-color: rgb(153 246 228 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-200\/80 {
    --tw-shadow-color: rgb(153 246 228 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-200\/90 {
    --tw-shadow-color: rgb(153 246 228 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-300 {
    --tw-shadow-color: #5eead4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-300\/10 {
    --tw-shadow-color: rgb(94 234 212 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-300\/20 {
    --tw-shadow-color: rgb(94 234 212 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-300\/30 {
    --tw-shadow-color: rgb(94 234 212 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-300\/40 {
    --tw-shadow-color: rgb(94 234 212 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-300\/5 {
    --tw-shadow-color: rgb(94 234 212 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-300\/50 {
    --tw-shadow-color: rgb(94 234 212 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-300\/60 {
    --tw-shadow-color: rgb(94 234 212 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-300\/70 {
    --tw-shadow-color: rgb(94 234 212 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-300\/80 {
    --tw-shadow-color: rgb(94 234 212 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-300\/90 {
    --tw-shadow-color: rgb(94 234 212 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-400 {
    --tw-shadow-color: #2dd4bf;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-400\/10 {
    --tw-shadow-color: rgb(45 212 191 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-400\/20 {
    --tw-shadow-color: rgb(45 212 191 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-400\/30 {
    --tw-shadow-color: rgb(45 212 191 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-400\/40 {
    --tw-shadow-color: rgb(45 212 191 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-400\/5 {
    --tw-shadow-color: rgb(45 212 191 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-400\/50 {
    --tw-shadow-color: rgb(45 212 191 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-400\/60 {
    --tw-shadow-color: rgb(45 212 191 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-400\/70 {
    --tw-shadow-color: rgb(45 212 191 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-400\/80 {
    --tw-shadow-color: rgb(45 212 191 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-400\/90 {
    --tw-shadow-color: rgb(45 212 191 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-50 {
    --tw-shadow-color: #f0fdfa;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-50\/10 {
    --tw-shadow-color: rgb(240 253 250 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-50\/20 {
    --tw-shadow-color: rgb(240 253 250 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-50\/30 {
    --tw-shadow-color: rgb(240 253 250 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-50\/40 {
    --tw-shadow-color: rgb(240 253 250 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-50\/5 {
    --tw-shadow-color: rgb(240 253 250 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-50\/50 {
    --tw-shadow-color: rgb(240 253 250 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-50\/60 {
    --tw-shadow-color: rgb(240 253 250 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-50\/70 {
    --tw-shadow-color: rgb(240 253 250 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-50\/80 {
    --tw-shadow-color: rgb(240 253 250 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-50\/90 {
    --tw-shadow-color: rgb(240 253 250 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-500 {
    --tw-shadow-color: #14b8a6;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-500\/10 {
    --tw-shadow-color: rgb(20 184 166 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-500\/20 {
    --tw-shadow-color: rgb(20 184 166 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-500\/30 {
    --tw-shadow-color: rgb(20 184 166 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-500\/40 {
    --tw-shadow-color: rgb(20 184 166 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-500\/5 {
    --tw-shadow-color: rgb(20 184 166 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-500\/50 {
    --tw-shadow-color: rgb(20 184 166 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-500\/60 {
    --tw-shadow-color: rgb(20 184 166 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-500\/70 {
    --tw-shadow-color: rgb(20 184 166 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-500\/80 {
    --tw-shadow-color: rgb(20 184 166 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-500\/90 {
    --tw-shadow-color: rgb(20 184 166 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-600 {
    --tw-shadow-color: #0d9488;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-600\/10 {
    --tw-shadow-color: rgb(13 148 136 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-600\/20 {
    --tw-shadow-color: rgb(13 148 136 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-600\/30 {
    --tw-shadow-color: rgb(13 148 136 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-600\/40 {
    --tw-shadow-color: rgb(13 148 136 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-600\/5 {
    --tw-shadow-color: rgb(13 148 136 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-600\/50 {
    --tw-shadow-color: rgb(13 148 136 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-600\/60 {
    --tw-shadow-color: rgb(13 148 136 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-600\/70 {
    --tw-shadow-color: rgb(13 148 136 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-600\/80 {
    --tw-shadow-color: rgb(13 148 136 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-600\/90 {
    --tw-shadow-color: rgb(13 148 136 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-700 {
    --tw-shadow-color: #0f766e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-700\/10 {
    --tw-shadow-color: rgb(15 118 110 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-700\/20 {
    --tw-shadow-color: rgb(15 118 110 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-700\/30 {
    --tw-shadow-color: rgb(15 118 110 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-700\/40 {
    --tw-shadow-color: rgb(15 118 110 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-700\/5 {
    --tw-shadow-color: rgb(15 118 110 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-700\/50 {
    --tw-shadow-color: rgb(15 118 110 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-700\/60 {
    --tw-shadow-color: rgb(15 118 110 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-700\/70 {
    --tw-shadow-color: rgb(15 118 110 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-700\/80 {
    --tw-shadow-color: rgb(15 118 110 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-700\/90 {
    --tw-shadow-color: rgb(15 118 110 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-800 {
    --tw-shadow-color: #115e59;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-800\/10 {
    --tw-shadow-color: rgb(17 94 89 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-800\/20 {
    --tw-shadow-color: rgb(17 94 89 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-800\/30 {
    --tw-shadow-color: rgb(17 94 89 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-800\/40 {
    --tw-shadow-color: rgb(17 94 89 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-800\/5 {
    --tw-shadow-color: rgb(17 94 89 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-800\/50 {
    --tw-shadow-color: rgb(17 94 89 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-800\/60 {
    --tw-shadow-color: rgb(17 94 89 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-800\/70 {
    --tw-shadow-color: rgb(17 94 89 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-800\/80 {
    --tw-shadow-color: rgb(17 94 89 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-800\/90 {
    --tw-shadow-color: rgb(17 94 89 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-900 {
    --tw-shadow-color: #134e4a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-900\/10 {
    --tw-shadow-color: rgb(19 78 74 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-900\/20 {
    --tw-shadow-color: rgb(19 78 74 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-900\/30 {
    --tw-shadow-color: rgb(19 78 74 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-900\/40 {
    --tw-shadow-color: rgb(19 78 74 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-900\/5 {
    --tw-shadow-color: rgb(19 78 74 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-900\/50 {
    --tw-shadow-color: rgb(19 78 74 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-900\/60 {
    --tw-shadow-color: rgb(19 78 74 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-900\/70 {
    --tw-shadow-color: rgb(19 78 74 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-900\/80 {
    --tw-shadow-color: rgb(19 78 74 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-900\/90 {
    --tw-shadow-color: rgb(19 78 74 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-950 {
    --tw-shadow-color: #042f2e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-950\/10 {
    --tw-shadow-color: rgb(4 47 46 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-950\/20 {
    --tw-shadow-color: rgb(4 47 46 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-950\/30 {
    --tw-shadow-color: rgb(4 47 46 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-950\/40 {
    --tw-shadow-color: rgb(4 47 46 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-950\/5 {
    --tw-shadow-color: rgb(4 47 46 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-950\/50 {
    --tw-shadow-color: rgb(4 47 46 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-950\/60 {
    --tw-shadow-color: rgb(4 47 46 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-950\/70 {
    --tw-shadow-color: rgb(4 47 46 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-950\/80 {
    --tw-shadow-color: rgb(4 47 46 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-teal-950\/90 {
    --tw-shadow-color: rgb(4 47 46 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-100 {
    --tw-shadow-color: #ede9fe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-100\/10 {
    --tw-shadow-color: rgb(237 233 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-100\/20 {
    --tw-shadow-color: rgb(237 233 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-100\/30 {
    --tw-shadow-color: rgb(237 233 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-100\/40 {
    --tw-shadow-color: rgb(237 233 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-100\/5 {
    --tw-shadow-color: rgb(237 233 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-100\/50 {
    --tw-shadow-color: rgb(237 233 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-100\/60 {
    --tw-shadow-color: rgb(237 233 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-100\/70 {
    --tw-shadow-color: rgb(237 233 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-100\/80 {
    --tw-shadow-color: rgb(237 233 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-100\/90 {
    --tw-shadow-color: rgb(237 233 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-200 {
    --tw-shadow-color: #ddd6fe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-200\/10 {
    --tw-shadow-color: rgb(221 214 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-200\/20 {
    --tw-shadow-color: rgb(221 214 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-200\/30 {
    --tw-shadow-color: rgb(221 214 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-200\/40 {
    --tw-shadow-color: rgb(221 214 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-200\/5 {
    --tw-shadow-color: rgb(221 214 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-200\/50 {
    --tw-shadow-color: rgb(221 214 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-200\/60 {
    --tw-shadow-color: rgb(221 214 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-200\/70 {
    --tw-shadow-color: rgb(221 214 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-200\/80 {
    --tw-shadow-color: rgb(221 214 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-200\/90 {
    --tw-shadow-color: rgb(221 214 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-300 {
    --tw-shadow-color: #c4b5fd;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-300\/10 {
    --tw-shadow-color: rgb(196 181 253 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-300\/20 {
    --tw-shadow-color: rgb(196 181 253 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-300\/30 {
    --tw-shadow-color: rgb(196 181 253 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-300\/40 {
    --tw-shadow-color: rgb(196 181 253 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-300\/5 {
    --tw-shadow-color: rgb(196 181 253 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-300\/50 {
    --tw-shadow-color: rgb(196 181 253 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-300\/60 {
    --tw-shadow-color: rgb(196 181 253 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-300\/70 {
    --tw-shadow-color: rgb(196 181 253 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-300\/80 {
    --tw-shadow-color: rgb(196 181 253 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-300\/90 {
    --tw-shadow-color: rgb(196 181 253 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-400 {
    --tw-shadow-color: #a78bfa;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-400\/10 {
    --tw-shadow-color: rgb(167 139 250 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-400\/20 {
    --tw-shadow-color: rgb(167 139 250 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-400\/30 {
    --tw-shadow-color: rgb(167 139 250 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-400\/40 {
    --tw-shadow-color: rgb(167 139 250 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-400\/5 {
    --tw-shadow-color: rgb(167 139 250 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-400\/50 {
    --tw-shadow-color: rgb(167 139 250 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-400\/60 {
    --tw-shadow-color: rgb(167 139 250 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-400\/70 {
    --tw-shadow-color: rgb(167 139 250 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-400\/80 {
    --tw-shadow-color: rgb(167 139 250 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-400\/90 {
    --tw-shadow-color: rgb(167 139 250 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-50 {
    --tw-shadow-color: #f5f3ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-50\/10 {
    --tw-shadow-color: rgb(245 243 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-50\/20 {
    --tw-shadow-color: rgb(245 243 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-50\/30 {
    --tw-shadow-color: rgb(245 243 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-50\/40 {
    --tw-shadow-color: rgb(245 243 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-50\/5 {
    --tw-shadow-color: rgb(245 243 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-50\/50 {
    --tw-shadow-color: rgb(245 243 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-50\/60 {
    --tw-shadow-color: rgb(245 243 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-50\/70 {
    --tw-shadow-color: rgb(245 243 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-50\/80 {
    --tw-shadow-color: rgb(245 243 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-50\/90 {
    --tw-shadow-color: rgb(245 243 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-500 {
    --tw-shadow-color: #8b5cf6;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-500\/10 {
    --tw-shadow-color: rgb(139 92 246 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-500\/20 {
    --tw-shadow-color: rgb(139 92 246 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-500\/30 {
    --tw-shadow-color: rgb(139 92 246 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-500\/40 {
    --tw-shadow-color: rgb(139 92 246 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-500\/5 {
    --tw-shadow-color: rgb(139 92 246 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-500\/50 {
    --tw-shadow-color: rgb(139 92 246 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-500\/60 {
    --tw-shadow-color: rgb(139 92 246 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-500\/70 {
    --tw-shadow-color: rgb(139 92 246 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-500\/80 {
    --tw-shadow-color: rgb(139 92 246 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-500\/90 {
    --tw-shadow-color: rgb(139 92 246 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-600 {
    --tw-shadow-color: #7c3aed;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-600\/10 {
    --tw-shadow-color: rgb(124 58 237 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-600\/20 {
    --tw-shadow-color: rgb(124 58 237 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-600\/30 {
    --tw-shadow-color: rgb(124 58 237 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-600\/40 {
    --tw-shadow-color: rgb(124 58 237 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-600\/5 {
    --tw-shadow-color: rgb(124 58 237 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-600\/50 {
    --tw-shadow-color: rgb(124 58 237 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-600\/60 {
    --tw-shadow-color: rgb(124 58 237 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-600\/70 {
    --tw-shadow-color: rgb(124 58 237 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-600\/80 {
    --tw-shadow-color: rgb(124 58 237 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-600\/90 {
    --tw-shadow-color: rgb(124 58 237 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-700 {
    --tw-shadow-color: #6d28d9;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-700\/10 {
    --tw-shadow-color: rgb(109 40 217 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-700\/20 {
    --tw-shadow-color: rgb(109 40 217 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-700\/30 {
    --tw-shadow-color: rgb(109 40 217 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-700\/40 {
    --tw-shadow-color: rgb(109 40 217 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-700\/5 {
    --tw-shadow-color: rgb(109 40 217 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-700\/50 {
    --tw-shadow-color: rgb(109 40 217 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-700\/60 {
    --tw-shadow-color: rgb(109 40 217 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-700\/70 {
    --tw-shadow-color: rgb(109 40 217 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-700\/80 {
    --tw-shadow-color: rgb(109 40 217 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-700\/90 {
    --tw-shadow-color: rgb(109 40 217 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-800 {
    --tw-shadow-color: #5b21b6;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-800\/10 {
    --tw-shadow-color: rgb(91 33 182 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-800\/20 {
    --tw-shadow-color: rgb(91 33 182 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-800\/30 {
    --tw-shadow-color: rgb(91 33 182 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-800\/40 {
    --tw-shadow-color: rgb(91 33 182 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-800\/5 {
    --tw-shadow-color: rgb(91 33 182 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-800\/50 {
    --tw-shadow-color: rgb(91 33 182 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-800\/60 {
    --tw-shadow-color: rgb(91 33 182 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-800\/70 {
    --tw-shadow-color: rgb(91 33 182 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-800\/80 {
    --tw-shadow-color: rgb(91 33 182 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-800\/90 {
    --tw-shadow-color: rgb(91 33 182 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-900 {
    --tw-shadow-color: #4c1d95;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-900\/10 {
    --tw-shadow-color: rgb(76 29 149 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-900\/20 {
    --tw-shadow-color: rgb(76 29 149 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-900\/30 {
    --tw-shadow-color: rgb(76 29 149 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-900\/40 {
    --tw-shadow-color: rgb(76 29 149 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-900\/5 {
    --tw-shadow-color: rgb(76 29 149 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-900\/50 {
    --tw-shadow-color: rgb(76 29 149 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-900\/60 {
    --tw-shadow-color: rgb(76 29 149 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-900\/70 {
    --tw-shadow-color: rgb(76 29 149 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-900\/80 {
    --tw-shadow-color: rgb(76 29 149 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-900\/90 {
    --tw-shadow-color: rgb(76 29 149 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-950 {
    --tw-shadow-color: #2e1065;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-950\/10 {
    --tw-shadow-color: rgb(46 16 101 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-950\/20 {
    --tw-shadow-color: rgb(46 16 101 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-950\/30 {
    --tw-shadow-color: rgb(46 16 101 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-950\/40 {
    --tw-shadow-color: rgb(46 16 101 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-950\/5 {
    --tw-shadow-color: rgb(46 16 101 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-950\/50 {
    --tw-shadow-color: rgb(46 16 101 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-950\/60 {
    --tw-shadow-color: rgb(46 16 101 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-950\/70 {
    --tw-shadow-color: rgb(46 16 101 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-950\/80 {
    --tw-shadow-color: rgb(46 16 101 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-violet-950\/90 {
    --tw-shadow-color: rgb(46 16 101 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-100 {
    --tw-shadow-color: #fef9c3;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-100\/10 {
    --tw-shadow-color: rgb(254 249 195 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-100\/20 {
    --tw-shadow-color: rgb(254 249 195 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-100\/30 {
    --tw-shadow-color: rgb(254 249 195 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-100\/40 {
    --tw-shadow-color: rgb(254 249 195 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-100\/5 {
    --tw-shadow-color: rgb(254 249 195 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-100\/50 {
    --tw-shadow-color: rgb(254 249 195 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-100\/60 {
    --tw-shadow-color: rgb(254 249 195 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-100\/70 {
    --tw-shadow-color: rgb(254 249 195 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-100\/80 {
    --tw-shadow-color: rgb(254 249 195 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-100\/90 {
    --tw-shadow-color: rgb(254 249 195 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-200 {
    --tw-shadow-color: #fef08a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-200\/10 {
    --tw-shadow-color: rgb(254 240 138 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-200\/20 {
    --tw-shadow-color: rgb(254 240 138 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-200\/30 {
    --tw-shadow-color: rgb(254 240 138 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-200\/40 {
    --tw-shadow-color: rgb(254 240 138 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-200\/5 {
    --tw-shadow-color: rgb(254 240 138 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-200\/50 {
    --tw-shadow-color: rgb(254 240 138 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-200\/60 {
    --tw-shadow-color: rgb(254 240 138 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-200\/70 {
    --tw-shadow-color: rgb(254 240 138 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-200\/80 {
    --tw-shadow-color: rgb(254 240 138 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-200\/90 {
    --tw-shadow-color: rgb(254 240 138 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-300 {
    --tw-shadow-color: #fde047;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-300\/10 {
    --tw-shadow-color: rgb(253 224 71 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-300\/20 {
    --tw-shadow-color: rgb(253 224 71 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-300\/30 {
    --tw-shadow-color: rgb(253 224 71 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-300\/40 {
    --tw-shadow-color: rgb(253 224 71 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-300\/5 {
    --tw-shadow-color: rgb(253 224 71 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-300\/50 {
    --tw-shadow-color: rgb(253 224 71 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-300\/60 {
    --tw-shadow-color: rgb(253 224 71 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-300\/70 {
    --tw-shadow-color: rgb(253 224 71 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-300\/80 {
    --tw-shadow-color: rgb(253 224 71 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-300\/90 {
    --tw-shadow-color: rgb(253 224 71 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-400 {
    --tw-shadow-color: #facc15;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-400\/10 {
    --tw-shadow-color: rgb(250 204 21 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-400\/20 {
    --tw-shadow-color: rgb(250 204 21 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-400\/30 {
    --tw-shadow-color: rgb(250 204 21 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-400\/40 {
    --tw-shadow-color: rgb(250 204 21 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-400\/5 {
    --tw-shadow-color: rgb(250 204 21 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-400\/50 {
    --tw-shadow-color: rgb(250 204 21 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-400\/60 {
    --tw-shadow-color: rgb(250 204 21 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-400\/70 {
    --tw-shadow-color: rgb(250 204 21 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-400\/80 {
    --tw-shadow-color: rgb(250 204 21 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-400\/90 {
    --tw-shadow-color: rgb(250 204 21 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-50 {
    --tw-shadow-color: #fefce8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-50\/10 {
    --tw-shadow-color: rgb(254 252 232 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-50\/20 {
    --tw-shadow-color: rgb(254 252 232 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-50\/30 {
    --tw-shadow-color: rgb(254 252 232 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-50\/40 {
    --tw-shadow-color: rgb(254 252 232 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-50\/5 {
    --tw-shadow-color: rgb(254 252 232 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-50\/50 {
    --tw-shadow-color: rgb(254 252 232 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-50\/60 {
    --tw-shadow-color: rgb(254 252 232 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-50\/70 {
    --tw-shadow-color: rgb(254 252 232 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-50\/80 {
    --tw-shadow-color: rgb(254 252 232 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-50\/90 {
    --tw-shadow-color: rgb(254 252 232 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-500 {
    --tw-shadow-color: #eab308;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-500\/10 {
    --tw-shadow-color: rgb(234 179 8 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-500\/20 {
    --tw-shadow-color: rgb(234 179 8 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-500\/30 {
    --tw-shadow-color: rgb(234 179 8 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-500\/40 {
    --tw-shadow-color: rgb(234 179 8 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-500\/5 {
    --tw-shadow-color: rgb(234 179 8 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-500\/50 {
    --tw-shadow-color: rgb(234 179 8 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-500\/60 {
    --tw-shadow-color: rgb(234 179 8 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-500\/70 {
    --tw-shadow-color: rgb(234 179 8 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-500\/80 {
    --tw-shadow-color: rgb(234 179 8 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-500\/90 {
    --tw-shadow-color: rgb(234 179 8 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-600 {
    --tw-shadow-color: #ca8a04;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-600\/10 {
    --tw-shadow-color: rgb(202 138 4 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-600\/20 {
    --tw-shadow-color: rgb(202 138 4 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-600\/30 {
    --tw-shadow-color: rgb(202 138 4 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-600\/40 {
    --tw-shadow-color: rgb(202 138 4 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-600\/5 {
    --tw-shadow-color: rgb(202 138 4 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-600\/50 {
    --tw-shadow-color: rgb(202 138 4 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-600\/60 {
    --tw-shadow-color: rgb(202 138 4 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-600\/70 {
    --tw-shadow-color: rgb(202 138 4 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-600\/80 {
    --tw-shadow-color: rgb(202 138 4 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-600\/90 {
    --tw-shadow-color: rgb(202 138 4 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-700 {
    --tw-shadow-color: #a16207;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-700\/10 {
    --tw-shadow-color: rgb(161 98 7 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-700\/20 {
    --tw-shadow-color: rgb(161 98 7 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-700\/30 {
    --tw-shadow-color: rgb(161 98 7 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-700\/40 {
    --tw-shadow-color: rgb(161 98 7 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-700\/5 {
    --tw-shadow-color: rgb(161 98 7 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-700\/50 {
    --tw-shadow-color: rgb(161 98 7 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-700\/60 {
    --tw-shadow-color: rgb(161 98 7 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-700\/70 {
    --tw-shadow-color: rgb(161 98 7 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-700\/80 {
    --tw-shadow-color: rgb(161 98 7 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-700\/90 {
    --tw-shadow-color: rgb(161 98 7 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-800 {
    --tw-shadow-color: #854d0e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-800\/10 {
    --tw-shadow-color: rgb(133 77 14 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-800\/20 {
    --tw-shadow-color: rgb(133 77 14 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-800\/30 {
    --tw-shadow-color: rgb(133 77 14 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-800\/40 {
    --tw-shadow-color: rgb(133 77 14 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-800\/5 {
    --tw-shadow-color: rgb(133 77 14 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-800\/50 {
    --tw-shadow-color: rgb(133 77 14 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-800\/60 {
    --tw-shadow-color: rgb(133 77 14 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-800\/70 {
    --tw-shadow-color: rgb(133 77 14 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-800\/80 {
    --tw-shadow-color: rgb(133 77 14 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-800\/90 {
    --tw-shadow-color: rgb(133 77 14 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-900 {
    --tw-shadow-color: #713f12;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-900\/10 {
    --tw-shadow-color: rgb(113 63 18 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-900\/20 {
    --tw-shadow-color: rgb(113 63 18 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-900\/30 {
    --tw-shadow-color: rgb(113 63 18 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-900\/40 {
    --tw-shadow-color: rgb(113 63 18 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-900\/5 {
    --tw-shadow-color: rgb(113 63 18 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-900\/50 {
    --tw-shadow-color: rgb(113 63 18 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-900\/60 {
    --tw-shadow-color: rgb(113 63 18 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-900\/70 {
    --tw-shadow-color: rgb(113 63 18 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-900\/80 {
    --tw-shadow-color: rgb(113 63 18 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-900\/90 {
    --tw-shadow-color: rgb(113 63 18 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-950 {
    --tw-shadow-color: #422006;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-950\/10 {
    --tw-shadow-color: rgb(66 32 6 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-950\/20 {
    --tw-shadow-color: rgb(66 32 6 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-950\/30 {
    --tw-shadow-color: rgb(66 32 6 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-950\/40 {
    --tw-shadow-color: rgb(66 32 6 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-950\/5 {
    --tw-shadow-color: rgb(66 32 6 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-950\/50 {
    --tw-shadow-color: rgb(66 32 6 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-950\/60 {
    --tw-shadow-color: rgb(66 32 6 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-950\/70 {
    --tw-shadow-color: rgb(66 32 6 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-950\/80 {
    --tw-shadow-color: rgb(66 32 6 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-yellow-950\/90 {
    --tw-shadow-color: rgb(66 32 6 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-100 {
    --tw-shadow-color: #f4f4f5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-100\/10 {
    --tw-shadow-color: rgb(244 244 245 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-100\/20 {
    --tw-shadow-color: rgb(244 244 245 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-100\/30 {
    --tw-shadow-color: rgb(244 244 245 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-100\/40 {
    --tw-shadow-color: rgb(244 244 245 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-100\/5 {
    --tw-shadow-color: rgb(244 244 245 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-100\/50 {
    --tw-shadow-color: rgb(244 244 245 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-100\/60 {
    --tw-shadow-color: rgb(244 244 245 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-100\/70 {
    --tw-shadow-color: rgb(244 244 245 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-100\/80 {
    --tw-shadow-color: rgb(244 244 245 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-100\/90 {
    --tw-shadow-color: rgb(244 244 245 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-200 {
    --tw-shadow-color: #e4e4e7;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-200\/10 {
    --tw-shadow-color: rgb(228 228 231 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-200\/20 {
    --tw-shadow-color: rgb(228 228 231 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-200\/30 {
    --tw-shadow-color: rgb(228 228 231 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-200\/40 {
    --tw-shadow-color: rgb(228 228 231 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-200\/5 {
    --tw-shadow-color: rgb(228 228 231 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-200\/50 {
    --tw-shadow-color: rgb(228 228 231 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-200\/60 {
    --tw-shadow-color: rgb(228 228 231 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-200\/70 {
    --tw-shadow-color: rgb(228 228 231 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-200\/80 {
    --tw-shadow-color: rgb(228 228 231 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-200\/90 {
    --tw-shadow-color: rgb(228 228 231 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-300 {
    --tw-shadow-color: #d4d4d8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-300\/10 {
    --tw-shadow-color: rgb(212 212 216 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-300\/20 {
    --tw-shadow-color: rgb(212 212 216 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-300\/30 {
    --tw-shadow-color: rgb(212 212 216 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-300\/40 {
    --tw-shadow-color: rgb(212 212 216 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-300\/5 {
    --tw-shadow-color: rgb(212 212 216 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-300\/50 {
    --tw-shadow-color: rgb(212 212 216 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-300\/60 {
    --tw-shadow-color: rgb(212 212 216 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-300\/70 {
    --tw-shadow-color: rgb(212 212 216 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-300\/80 {
    --tw-shadow-color: rgb(212 212 216 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-300\/90 {
    --tw-shadow-color: rgb(212 212 216 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-400 {
    --tw-shadow-color: #a1a1aa;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-400\/10 {
    --tw-shadow-color: rgb(161 161 170 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-400\/20 {
    --tw-shadow-color: rgb(161 161 170 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-400\/30 {
    --tw-shadow-color: rgb(161 161 170 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-400\/40 {
    --tw-shadow-color: rgb(161 161 170 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-400\/5 {
    --tw-shadow-color: rgb(161 161 170 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-400\/50 {
    --tw-shadow-color: rgb(161 161 170 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-400\/60 {
    --tw-shadow-color: rgb(161 161 170 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-400\/70 {
    --tw-shadow-color: rgb(161 161 170 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-400\/80 {
    --tw-shadow-color: rgb(161 161 170 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-400\/90 {
    --tw-shadow-color: rgb(161 161 170 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-50 {
    --tw-shadow-color: #fafafa;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-50\/10 {
    --tw-shadow-color: rgb(250 250 250 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-50\/20 {
    --tw-shadow-color: rgb(250 250 250 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-50\/30 {
    --tw-shadow-color: rgb(250 250 250 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-50\/40 {
    --tw-shadow-color: rgb(250 250 250 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-50\/5 {
    --tw-shadow-color: rgb(250 250 250 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-50\/50 {
    --tw-shadow-color: rgb(250 250 250 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-50\/60 {
    --tw-shadow-color: rgb(250 250 250 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-50\/70 {
    --tw-shadow-color: rgb(250 250 250 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-50\/80 {
    --tw-shadow-color: rgb(250 250 250 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-50\/90 {
    --tw-shadow-color: rgb(250 250 250 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-500 {
    --tw-shadow-color: #71717a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-500\/10 {
    --tw-shadow-color: rgb(113 113 122 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-500\/20 {
    --tw-shadow-color: rgb(113 113 122 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-500\/30 {
    --tw-shadow-color: rgb(113 113 122 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-500\/40 {
    --tw-shadow-color: rgb(113 113 122 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-500\/5 {
    --tw-shadow-color: rgb(113 113 122 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-500\/50 {
    --tw-shadow-color: rgb(113 113 122 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-500\/60 {
    --tw-shadow-color: rgb(113 113 122 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-500\/70 {
    --tw-shadow-color: rgb(113 113 122 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-500\/80 {
    --tw-shadow-color: rgb(113 113 122 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-500\/90 {
    --tw-shadow-color: rgb(113 113 122 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-600 {
    --tw-shadow-color: #52525b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-600\/10 {
    --tw-shadow-color: rgb(82 82 91 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-600\/20 {
    --tw-shadow-color: rgb(82 82 91 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-600\/30 {
    --tw-shadow-color: rgb(82 82 91 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-600\/40 {
    --tw-shadow-color: rgb(82 82 91 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-600\/5 {
    --tw-shadow-color: rgb(82 82 91 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-600\/50 {
    --tw-shadow-color: rgb(82 82 91 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-600\/60 {
    --tw-shadow-color: rgb(82 82 91 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-600\/70 {
    --tw-shadow-color: rgb(82 82 91 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-600\/80 {
    --tw-shadow-color: rgb(82 82 91 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-600\/90 {
    --tw-shadow-color: rgb(82 82 91 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-700 {
    --tw-shadow-color: #3f3f46;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-700\/10 {
    --tw-shadow-color: rgb(63 63 70 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-700\/20 {
    --tw-shadow-color: rgb(63 63 70 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-700\/30 {
    --tw-shadow-color: rgb(63 63 70 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-700\/40 {
    --tw-shadow-color: rgb(63 63 70 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-700\/5 {
    --tw-shadow-color: rgb(63 63 70 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-700\/50 {
    --tw-shadow-color: rgb(63 63 70 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-700\/60 {
    --tw-shadow-color: rgb(63 63 70 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-700\/70 {
    --tw-shadow-color: rgb(63 63 70 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-700\/80 {
    --tw-shadow-color: rgb(63 63 70 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-700\/90 {
    --tw-shadow-color: rgb(63 63 70 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-800 {
    --tw-shadow-color: #27272a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-800\/10 {
    --tw-shadow-color: rgb(39 39 42 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-800\/20 {
    --tw-shadow-color: rgb(39 39 42 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-800\/30 {
    --tw-shadow-color: rgb(39 39 42 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-800\/40 {
    --tw-shadow-color: rgb(39 39 42 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-800\/5 {
    --tw-shadow-color: rgb(39 39 42 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-800\/50 {
    --tw-shadow-color: rgb(39 39 42 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-800\/60 {
    --tw-shadow-color: rgb(39 39 42 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-800\/70 {
    --tw-shadow-color: rgb(39 39 42 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-800\/80 {
    --tw-shadow-color: rgb(39 39 42 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-800\/90 {
    --tw-shadow-color: rgb(39 39 42 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-900 {
    --tw-shadow-color: #18181b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-900\/10 {
    --tw-shadow-color: rgb(24 24 27 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-900\/20 {
    --tw-shadow-color: rgb(24 24 27 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-900\/30 {
    --tw-shadow-color: rgb(24 24 27 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-900\/40 {
    --tw-shadow-color: rgb(24 24 27 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-900\/5 {
    --tw-shadow-color: rgb(24 24 27 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-900\/50 {
    --tw-shadow-color: rgb(24 24 27 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-900\/60 {
    --tw-shadow-color: rgb(24 24 27 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-900\/70 {
    --tw-shadow-color: rgb(24 24 27 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-900\/80 {
    --tw-shadow-color: rgb(24 24 27 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-900\/90 {
    --tw-shadow-color: rgb(24 24 27 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-950 {
    --tw-shadow-color: #09090b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-950\/10 {
    --tw-shadow-color: rgb(9 9 11 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-950\/20 {
    --tw-shadow-color: rgb(9 9 11 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-950\/30 {
    --tw-shadow-color: rgb(9 9 11 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-950\/40 {
    --tw-shadow-color: rgb(9 9 11 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-950\/5 {
    --tw-shadow-color: rgb(9 9 11 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-950\/50 {
    --tw-shadow-color: rgb(9 9 11 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-950\/60 {
    --tw-shadow-color: rgb(9 9 11 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-950\/70 {
    --tw-shadow-color: rgb(9 9 11 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-950\/80 {
    --tw-shadow-color: rgb(9 9 11 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .sm\:shadow-zinc-950\/90 {
    --tw-shadow-color: rgb(9 9 11 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

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

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

  .sm\:ring-4 {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .sm\:ring-8 {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .sm\:ring-amber-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 243 199 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-amber-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(253 230 138 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-amber-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(252 211 77 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-amber-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(251 191 36 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-amber-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(255 251 235 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-amber-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(245 158 11 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-amber-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(217 119 6 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-amber-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(180 83 9 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-amber-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(146 64 14 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-amber-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(120 53 15 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-amber-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(69 26 3 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-black {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-blue-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(219 234 254 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-blue-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(191 219 254 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-blue-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(147 197 253 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-blue-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(96 165 250 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-blue-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(239 246 255 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-blue-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-blue-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(37 99 235 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-blue-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(29 78 216 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-blue-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(30 64 175 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-blue-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(30 58 138 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-blue-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(23 37 84 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-cyan-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(207 250 254 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-cyan-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(165 243 252 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-cyan-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(103 232 249 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-cyan-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(34 211 238 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-cyan-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(236 254 255 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-cyan-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(6 182 212 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-cyan-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(8 145 178 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-cyan-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(14 116 144 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-cyan-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(21 94 117 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-cyan-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(22 78 99 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-cyan-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(8 51 68 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-emerald-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(209 250 229 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-emerald-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(167 243 208 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-emerald-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(110 231 183 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-emerald-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(52 211 153 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-emerald-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(236 253 245 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-emerald-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(16 185 129 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-emerald-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(5 150 105 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-emerald-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(4 120 87 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-emerald-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(6 95 70 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-emerald-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(6 78 59 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-emerald-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(2 44 34 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-fuchsia-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(250 232 255 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-fuchsia-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(245 208 254 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-fuchsia-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(240 171 252 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-fuchsia-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(232 121 249 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-fuchsia-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(253 244 255 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-fuchsia-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(217 70 239 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-fuchsia-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(192 38 211 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-fuchsia-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(162 28 175 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-fuchsia-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(134 25 143 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-fuchsia-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(112 26 117 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-fuchsia-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(74 4 78 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-gray-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(243 244 246 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-gray-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-gray-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-gray-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(156 163 175 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-gray-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(249 250 251 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-gray-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(107 114 128 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-gray-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(75 85 99 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-gray-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(55 65 81 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-gray-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(31 41 55 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-gray-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(17 24 39 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-gray-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(3 7 18 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-green-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(220 252 231 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-green-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(187 247 208 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-green-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(134 239 172 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-green-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(74 222 128 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-green-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(240 253 244 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-green-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(34 197 94 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-green-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(22 163 74 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-green-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(21 128 61 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-green-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(22 101 52 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-green-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(20 83 45 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-green-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(5 46 22 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-indigo-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(224 231 255 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-indigo-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(199 210 254 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-indigo-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(165 180 252 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-indigo-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(129 140 248 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-indigo-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(238 242 255 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-indigo-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(99 102 241 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-indigo-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(79 70 229 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-indigo-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(67 56 202 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-indigo-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(55 48 163 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-indigo-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(49 46 129 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-indigo-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(30 27 75 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-lime-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(236 252 203 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-lime-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(217 249 157 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-lime-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(190 242 100 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-lime-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(163 230 53 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-lime-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(247 254 231 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-lime-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(132 204 22 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-lime-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(101 163 13 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-lime-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(77 124 15 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-lime-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(63 98 18 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-lime-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(54 83 20 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-lime-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(26 46 5 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-neutral-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(245 245 245 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-neutral-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(229 229 229 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-neutral-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(212 212 212 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-neutral-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(163 163 163 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-neutral-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(250 250 250 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-neutral-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(115 115 115 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-neutral-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(82 82 82 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-neutral-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(64 64 64 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-neutral-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(38 38 38 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-neutral-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(23 23 23 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-neutral-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(10 10 10 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-orange-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(255 237 213 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-orange-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 215 170 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-orange-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(253 186 116 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-orange-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(251 146 60 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-orange-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(255 247 237 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-orange-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(249 115 22 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-orange-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(234 88 12 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-orange-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(194 65 12 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-orange-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(154 52 18 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-orange-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(124 45 18 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-orange-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(67 20 7 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-pink-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(252 231 243 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-pink-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(251 207 232 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-pink-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(249 168 212 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-pink-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(244 114 182 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-pink-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(253 242 248 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-pink-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(236 72 153 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-pink-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(219 39 119 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-pink-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(190 24 93 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-pink-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(157 23 77 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-pink-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(131 24 67 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-pink-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(80 7 36 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-purple-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(243 232 255 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-purple-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(233 213 255 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-purple-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(216 180 254 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-purple-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(192 132 252 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-purple-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(250 245 255 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-purple-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(168 85 247 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-purple-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(147 51 234 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-purple-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(126 34 206 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-purple-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(107 33 168 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-purple-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(88 28 135 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-purple-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(59 7 100 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-red-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 226 226 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-red-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 202 202 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-red-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(252 165 165 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-red-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(248 113 113 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-red-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 242 242 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-red-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-red-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(220 38 38 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-red-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(185 28 28 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-red-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(153 27 27 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-red-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(127 29 29 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-red-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(69 10 10 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-rose-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(255 228 230 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-rose-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 205 211 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-rose-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(253 164 175 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-rose-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(251 113 133 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-rose-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(255 241 242 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-rose-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(244 63 94 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-rose-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(225 29 72 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-rose-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(190 18 60 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-rose-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(159 18 57 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-rose-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(136 19 55 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-rose-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(76 5 25 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-sky-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(224 242 254 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-sky-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(186 230 253 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-sky-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(125 211 252 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-sky-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(56 189 248 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-sky-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(240 249 255 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-sky-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(14 165 233 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-sky-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(2 132 199 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-sky-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(3 105 161 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-sky-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(7 89 133 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-sky-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(12 74 110 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-sky-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(8 47 73 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-slate-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(241 245 249 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-slate-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(226 232 240 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-slate-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(203 213 225 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-slate-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(148 163 184 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-slate-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(248 250 252 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-slate-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(100 116 139 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-slate-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(71 85 105 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-slate-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(51 65 85 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-slate-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(30 41 59 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-slate-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(15 23 42 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-slate-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(2 6 23 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-stone-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(245 245 244 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-stone-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(231 229 228 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-stone-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(214 211 209 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-stone-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(168 162 158 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-stone-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(250 250 249 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-stone-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(120 113 108 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-stone-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(87 83 78 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-stone-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(68 64 60 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-stone-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(41 37 36 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-stone-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(28 25 23 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-stone-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(12 10 9 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-teal-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(204 251 241 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-teal-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(153 246 228 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-teal-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(94 234 212 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-teal-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(45 212 191 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-teal-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(240 253 250 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-teal-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(20 184 166 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-teal-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(13 148 136 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-teal-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(15 118 110 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-teal-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(17 94 89 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-teal-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(19 78 74 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-teal-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(4 47 46 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-violet-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(237 233 254 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-violet-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(221 214 254 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-violet-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(196 181 253 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-violet-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(167 139 250 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-violet-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(245 243 255 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-violet-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(139 92 246 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-violet-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(124 58 237 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-violet-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(109 40 217 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-violet-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(91 33 182 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-violet-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(76 29 149 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-violet-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(46 16 101 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-white {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-yellow-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 249 195 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-yellow-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 240 138 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-yellow-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(253 224 71 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-yellow-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(250 204 21 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-yellow-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 252 232 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-yellow-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(234 179 8 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-yellow-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(202 138 4 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-yellow-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(161 98 7 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-yellow-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(133 77 14 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-yellow-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(113 63 18 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-yellow-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(66 32 6 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-zinc-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(244 244 245 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-zinc-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(228 228 231 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-zinc-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(212 212 216 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-zinc-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(161 161 170 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-zinc-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(250 250 250 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-zinc-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(113 113 122 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-zinc-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(82 82 91 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-zinc-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(63 63 70 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-zinc-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(39 39 42 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-zinc-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(24 24 27 / var(--tw-ring-opacity, 1));
  }

  .sm\:ring-zinc-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(9 9 11 / var(--tw-ring-opacity, 1));
  }

  .sm\:blur-2xl {
    --tw-blur: blur(40px);
    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);
  }

  .sm\:blur-3xl {
    --tw-blur: blur(64px);
    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);
  }

  .sm\:blur-lg {
    --tw-blur: blur(16px);
    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);
  }

  .sm\:blur-md {
    --tw-blur: blur(12px);
    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);
  }

  .sm\:blur-sm {
    --tw-blur: blur(4px);
    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);
  }

  .sm\:blur-xl {
    --tw-blur: blur(24px);
    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);
  }

  .sm\:drop-shadow-lg {
    --tw-drop-shadow: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
    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);
  }

  .sm\:drop-shadow-md {
    --tw-drop-shadow: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
    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);
  }

  .sm\:drop-shadow-sm {
    --tw-drop-shadow: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05));
    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);
  }

  .sm\:backdrop-blur-lg {
    --tw-backdrop-blur: blur(16px);
    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);
  }

  .sm\:backdrop-blur-md {
    --tw-backdrop-blur: blur(12px);
    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);
  }

  .sm\:motion-blur-in-lg {
    --motion-origin-blur: 16px;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-blur-in-md {
    --motion-origin-blur: 12px;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-blur-out-lg {
    --motion-end-blur: 16px;
    --motion-filter-out-animation: motion-filter-out calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-out-animation), var(--motion-translate-out-animation), var(--motion-rotate-out-animation), var(--motion-filter-out-animation), var(--motion-opacity-out-animation), var(--motion-background-color-out-animation), var(--motion-text-color-out-animation);
  }

  .sm\:motion-blur-out-md {
    --motion-end-blur: 12px;
    --motion-filter-out-animation: motion-filter-out calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-out-animation), var(--motion-translate-out-animation), var(--motion-rotate-out-animation), var(--motion-filter-out-animation), var(--motion-opacity-out-animation), var(--motion-background-color-out-animation), var(--motion-text-color-out-animation);
  }

  .sm\:motion-blur-loop-lg {
    --motion-loop-blur: 16px;
    --motion-filter-loop-animation: motion-filter-loop-mirror calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both var(--motion-filter-loop-count, var(--motion-loop-count));
    animation-composition: accumulate;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .sm\:motion-blur-loop-md {
    --motion-loop-blur: 12px;
    --motion-filter-loop-animation: motion-filter-loop-mirror calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both var(--motion-filter-loop-count, var(--motion-loop-count));
    animation-composition: accumulate;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .data-\[state\=open\]\:sm\:slide-in-from-bottom-full[data-state="open"] {
    --tw-enter-translate-y: 100%;
  }
}
@media (min-width: 768px) {

  .md\:m-0 {
    margin: 0px;
  }

  .md\:m-1 {
    margin: 0.25rem;
  }

  .md\:m-10 {
    margin: 2.5rem;
  }

  .md\:m-11 {
    margin: 2.75rem;
  }

  .md\:m-12 {
    margin: 3rem;
  }

  .md\:m-14 {
    margin: 3.5rem;
  }

  .md\:m-16 {
    margin: 4rem;
  }

  .md\:m-2 {
    margin: 0.5rem;
  }

  .md\:m-20 {
    margin: 5rem;
  }

  .md\:m-24 {
    margin: 6rem;
  }

  .md\:m-28 {
    margin: 7rem;
  }

  .md\:m-3 {
    margin: 0.75rem;
  }

  .md\:m-32 {
    margin: 8rem;
  }

  .md\:m-36 {
    margin: 9rem;
  }

  .md\:m-4 {
    margin: 1rem;
  }

  .md\:m-40 {
    margin: 10rem;
  }

  .md\:m-44 {
    margin: 11rem;
  }

  .md\:m-48 {
    margin: 12rem;
  }

  .md\:m-5 {
    margin: 1.25rem;
  }

  .md\:m-52 {
    margin: 13rem;
  }

  .md\:m-56 {
    margin: 14rem;
  }

  .md\:m-6 {
    margin: 1.5rem;
  }

  .md\:m-60 {
    margin: 15rem;
  }

  .md\:m-64 {
    margin: 16rem;
  }

  .md\:m-7 {
    margin: 1.75rem;
  }

  .md\:m-72 {
    margin: 18rem;
  }

  .md\:m-8 {
    margin: 2rem;
  }

  .md\:m-80 {
    margin: 20rem;
  }

  .md\:m-9 {
    margin: 2.25rem;
  }

  .md\:m-96 {
    margin: 24rem;
  }

  .md\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }

  .md\:mx-1 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .md\:mx-10 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .md\:mx-11 {
    margin-left: 2.75rem;
    margin-right: 2.75rem;
  }

  .md\:mx-12 {
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .md\:mx-14 {
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .md\:mx-16 {
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .md\:mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .md\:mx-20 {
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .md\:mx-24 {
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .md\:mx-28 {
    margin-left: 7rem;
    margin-right: 7rem;
  }

  .md\:mx-3 {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .md\:mx-32 {
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .md\:mx-36 {
    margin-left: 9rem;
    margin-right: 9rem;
  }

  .md\:mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .md\:mx-40 {
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .md\:mx-44 {
    margin-left: 11rem;
    margin-right: 11rem;
  }

  .md\:mx-48 {
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .md\:mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .md\:mx-52 {
    margin-left: 13rem;
    margin-right: 13rem;
  }

  .md\:mx-56 {
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .md\:mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .md\:mx-60 {
    margin-left: 15rem;
    margin-right: 15rem;
  }

  .md\:mx-64 {
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .md\:mx-7 {
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .md\:mx-72 {
    margin-left: 18rem;
    margin-right: 18rem;
  }

  .md\:mx-8 {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .md\:mx-80 {
    margin-left: 20rem;
    margin-right: 20rem;
  }

  .md\:mx-9 {
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .md\:mx-96 {
    margin-left: 24rem;
    margin-right: 24rem;
  }

  .md\:my-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .md\:my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .md\:my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .md\:my-11 {
    margin-top: 2.75rem;
    margin-bottom: 2.75rem;
  }

  .md\:my-12 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .md\:my-14 {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .md\:my-16 {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .md\:my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .md\:my-20 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .md\:my-24 {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .md\:my-28 {
    margin-top: 7rem;
    margin-bottom: 7rem;
  }

  .md\:my-3 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .md\:my-32 {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .md\:my-36 {
    margin-top: 9rem;
    margin-bottom: 9rem;
  }

  .md\:my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .md\:my-40 {
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .md\:my-44 {
    margin-top: 11rem;
    margin-bottom: 11rem;
  }

  .md\:my-48 {
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .md\:my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .md\:my-52 {
    margin-top: 13rem;
    margin-bottom: 13rem;
  }

  .md\:my-56 {
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .md\:my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .md\:my-60 {
    margin-top: 15rem;
    margin-bottom: 15rem;
  }

  .md\:my-64 {
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .md\:my-7 {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .md\:my-72 {
    margin-top: 18rem;
    margin-bottom: 18rem;
  }

  .md\:my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .md\:my-80 {
    margin-top: 20rem;
    margin-bottom: 20rem;
  }

  .md\:my-9 {
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }

  .md\:my-96 {
    margin-top: 24rem;
    margin-bottom: 24rem;
  }

  .md\:mb-0 {
    margin-bottom: 0px;
  }

  .md\:mb-1 {
    margin-bottom: 0.25rem;
  }

  .md\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .md\:mb-11 {
    margin-bottom: 2.75rem;
  }

  .md\:mb-12 {
    margin-bottom: 3rem;
  }

  .md\:mb-14 {
    margin-bottom: 3.5rem;
  }

  .md\:mb-16 {
    margin-bottom: 4rem;
  }

  .md\:mb-2 {
    margin-bottom: 0.5rem;
  }

  .md\:mb-20 {
    margin-bottom: 5rem;
  }

  .md\:mb-24 {
    margin-bottom: 6rem;
  }

  .md\:mb-28 {
    margin-bottom: 7rem;
  }

  .md\:mb-3 {
    margin-bottom: 0.75rem;
  }

  .md\:mb-32 {
    margin-bottom: 8rem;
  }

  .md\:mb-36 {
    margin-bottom: 9rem;
  }

  .md\:mb-4 {
    margin-bottom: 1rem;
  }

  .md\:mb-40 {
    margin-bottom: 10rem;
  }

  .md\:mb-44 {
    margin-bottom: 11rem;
  }

  .md\:mb-48 {
    margin-bottom: 12rem;
  }

  .md\:mb-5 {
    margin-bottom: 1.25rem;
  }

  .md\:mb-52 {
    margin-bottom: 13rem;
  }

  .md\:mb-56 {
    margin-bottom: 14rem;
  }

  .md\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .md\:mb-60 {
    margin-bottom: 15rem;
  }

  .md\:mb-64 {
    margin-bottom: 16rem;
  }

  .md\:mb-7 {
    margin-bottom: 1.75rem;
  }

  .md\:mb-72 {
    margin-bottom: 18rem;
  }

  .md\:mb-8 {
    margin-bottom: 2rem;
  }

  .md\:mb-80 {
    margin-bottom: 20rem;
  }

  .md\:mb-9 {
    margin-bottom: 2.25rem;
  }

  .md\:mb-96 {
    margin-bottom: 24rem;
  }

  .md\:ml-0 {
    margin-left: 0px;
  }

  .md\:ml-1 {
    margin-left: 0.25rem;
  }

  .md\:ml-10 {
    margin-left: 2.5rem;
  }

  .md\:ml-11 {
    margin-left: 2.75rem;
  }

  .md\:ml-12 {
    margin-left: 3rem;
  }

  .md\:ml-14 {
    margin-left: 3.5rem;
  }

  .md\:ml-16 {
    margin-left: 4rem;
  }

  .md\:ml-2 {
    margin-left: 0.5rem;
  }

  .md\:ml-20 {
    margin-left: 5rem;
  }

  .md\:ml-24 {
    margin-left: 6rem;
  }

  .md\:ml-28 {
    margin-left: 7rem;
  }

  .md\:ml-3 {
    margin-left: 0.75rem;
  }

  .md\:ml-32 {
    margin-left: 8rem;
  }

  .md\:ml-36 {
    margin-left: 9rem;
  }

  .md\:ml-4 {
    margin-left: 1rem;
  }

  .md\:ml-40 {
    margin-left: 10rem;
  }

  .md\:ml-44 {
    margin-left: 11rem;
  }

  .md\:ml-48 {
    margin-left: 12rem;
  }

  .md\:ml-5 {
    margin-left: 1.25rem;
  }

  .md\:ml-52 {
    margin-left: 13rem;
  }

  .md\:ml-56 {
    margin-left: 14rem;
  }

  .md\:ml-6 {
    margin-left: 1.5rem;
  }

  .md\:ml-60 {
    margin-left: 15rem;
  }

  .md\:ml-64 {
    margin-left: 16rem;
  }

  .md\:ml-7 {
    margin-left: 1.75rem;
  }

  .md\:ml-72 {
    margin-left: 18rem;
  }

  .md\:ml-8 {
    margin-left: 2rem;
  }

  .md\:ml-80 {
    margin-left: 20rem;
  }

  .md\:ml-9 {
    margin-left: 2.25rem;
  }

  .md\:ml-96 {
    margin-left: 24rem;
  }

  .md\:mr-0 {
    margin-right: 0px;
  }

  .md\:mr-1 {
    margin-right: 0.25rem;
  }

  .md\:mr-10 {
    margin-right: 2.5rem;
  }

  .md\:mr-11 {
    margin-right: 2.75rem;
  }

  .md\:mr-12 {
    margin-right: 3rem;
  }

  .md\:mr-14 {
    margin-right: 3.5rem;
  }

  .md\:mr-16 {
    margin-right: 4rem;
  }

  .md\:mr-2 {
    margin-right: 0.5rem;
  }

  .md\:mr-20 {
    margin-right: 5rem;
  }

  .md\:mr-24 {
    margin-right: 6rem;
  }

  .md\:mr-28 {
    margin-right: 7rem;
  }

  .md\:mr-3 {
    margin-right: 0.75rem;
  }

  .md\:mr-32 {
    margin-right: 8rem;
  }

  .md\:mr-36 {
    margin-right: 9rem;
  }

  .md\:mr-4 {
    margin-right: 1rem;
  }

  .md\:mr-40 {
    margin-right: 10rem;
  }

  .md\:mr-44 {
    margin-right: 11rem;
  }

  .md\:mr-48 {
    margin-right: 12rem;
  }

  .md\:mr-5 {
    margin-right: 1.25rem;
  }

  .md\:mr-52 {
    margin-right: 13rem;
  }

  .md\:mr-56 {
    margin-right: 14rem;
  }

  .md\:mr-6 {
    margin-right: 1.5rem;
  }

  .md\:mr-60 {
    margin-right: 15rem;
  }

  .md\:mr-64 {
    margin-right: 16rem;
  }

  .md\:mr-7 {
    margin-right: 1.75rem;
  }

  .md\:mr-72 {
    margin-right: 18rem;
  }

  .md\:mr-8 {
    margin-right: 2rem;
  }

  .md\:mr-80 {
    margin-right: 20rem;
  }

  .md\:mr-9 {
    margin-right: 2.25rem;
  }

  .md\:mr-96 {
    margin-right: 24rem;
  }

  .md\:mt-0 {
    margin-top: 0px;
  }

  .md\:mt-1 {
    margin-top: 0.25rem;
  }

  .md\:mt-10 {
    margin-top: 2.5rem;
  }

  .md\:mt-11 {
    margin-top: 2.75rem;
  }

  .md\:mt-12 {
    margin-top: 3rem;
  }

  .md\:mt-14 {
    margin-top: 3.5rem;
  }

  .md\:mt-16 {
    margin-top: 4rem;
  }

  .md\:mt-2 {
    margin-top: 0.5rem;
  }

  .md\:mt-20 {
    margin-top: 5rem;
  }

  .md\:mt-24 {
    margin-top: 6rem;
  }

  .md\:mt-28 {
    margin-top: 7rem;
  }

  .md\:mt-3 {
    margin-top: 0.75rem;
  }

  .md\:mt-32 {
    margin-top: 8rem;
  }

  .md\:mt-36 {
    margin-top: 9rem;
  }

  .md\:mt-4 {
    margin-top: 1rem;
  }

  .md\:mt-40 {
    margin-top: 10rem;
  }

  .md\:mt-44 {
    margin-top: 11rem;
  }

  .md\:mt-48 {
    margin-top: 12rem;
  }

  .md\:mt-5 {
    margin-top: 1.25rem;
  }

  .md\:mt-52 {
    margin-top: 13rem;
  }

  .md\:mt-56 {
    margin-top: 14rem;
  }

  .md\:mt-6 {
    margin-top: 1.5rem;
  }

  .md\:mt-60 {
    margin-top: 15rem;
  }

  .md\:mt-64 {
    margin-top: 16rem;
  }

  .md\:mt-7 {
    margin-top: 1.75rem;
  }

  .md\:mt-72 {
    margin-top: 18rem;
  }

  .md\:mt-8 {
    margin-top: 2rem;
  }

  .md\:mt-80 {
    margin-top: 20rem;
  }

  .md\:mt-9 {
    margin-top: 2.25rem;
  }

  .md\:mt-96 {
    margin-top: 24rem;
  }

  .md\:h-0 {
    height: 0px;
  }

  .md\:h-0\.5 {
    height: 0.125rem;
  }

  .md\:h-1 {
    height: 0.25rem;
  }

  .md\:h-1\.5 {
    height: 0.375rem;
  }

  .md\:h-1\/2 {
    height: 50%;
  }

  .md\:h-1\/3 {
    height: 33.333333%;
  }

  .md\:h-1\/4 {
    height: 25%;
  }

  .md\:h-1\/5 {
    height: 20%;
  }

  .md\:h-1\/6 {
    height: 16.666667%;
  }

  .md\:h-10 {
    height: 2.5rem;
  }

  .md\:h-11 {
    height: 2.75rem;
  }

  .md\:h-12 {
    height: 3rem;
  }

  .md\:h-14 {
    height: 3.5rem;
  }

  .md\:h-16 {
    height: 4rem;
  }

  .md\:h-2 {
    height: 0.5rem;
  }

  .md\:h-2\.5 {
    height: 0.625rem;
  }

  .md\:h-2\/3 {
    height: 66.666667%;
  }

  .md\:h-2\/4 {
    height: 50%;
  }

  .md\:h-2\/5 {
    height: 40%;
  }

  .md\:h-2\/6 {
    height: 33.333333%;
  }

  .md\:h-20 {
    height: 5rem;
  }

  .md\:h-24 {
    height: 6rem;
  }

  .md\:h-28 {
    height: 7rem;
  }

  .md\:h-3 {
    height: 0.75rem;
  }

  .md\:h-3\.5 {
    height: 0.875rem;
  }

  .md\:h-3\/4 {
    height: 75%;
  }

  .md\:h-3\/5 {
    height: 60%;
  }

  .md\:h-3\/6 {
    height: 50%;
  }

  .md\:h-32 {
    height: 8rem;
  }

  .md\:h-36 {
    height: 9rem;
  }

  .md\:h-4 {
    height: 1rem;
  }

  .md\:h-4\/5 {
    height: 80%;
  }

  .md\:h-4\/6 {
    height: 66.666667%;
  }

  .md\:h-40 {
    height: 10rem;
  }

  .md\:h-44 {
    height: 11rem;
  }

  .md\:h-48 {
    height: 12rem;
  }

  .md\:h-5 {
    height: 1.25rem;
  }

  .md\:h-5\/6 {
    height: 83.333333%;
  }

  .md\:h-52 {
    height: 13rem;
  }

  .md\:h-56 {
    height: 14rem;
  }

  .md\:h-6 {
    height: 1.5rem;
  }

  .md\:h-60 {
    height: 15rem;
  }

  .md\:h-64 {
    height: 16rem;
  }

  .md\:h-7 {
    height: 1.75rem;
  }

  .md\:h-72 {
    height: 18rem;
  }

  .md\:h-8 {
    height: 2rem;
  }

  .md\:h-80 {
    height: 20rem;
  }

  .md\:h-9 {
    height: 2.25rem;
  }

  .md\:h-96 {
    height: 24rem;
  }

  .md\:h-auto {
    height: auto;
  }

  .md\:h-dvh {
    height: 100dvh;
  }

  .md\:h-fit {
    height: -moz-fit-content;
    height: fit-content;
  }

  .md\:h-full {
    height: 100%;
  }

  .md\:h-lvh {
    height: 100lvh;
  }

  .md\:h-max {
    height: -moz-max-content;
    height: max-content;
  }

  .md\:h-min {
    height: -moz-min-content;
    height: min-content;
  }

  .md\:h-px {
    height: 1px;
  }

  .md\:h-screen {
    height: 100vh;
  }

  .md\:h-svh {
    height: 100svh;
  }

  .md\:max-h-full {
    max-height: 100%;
  }

  .md\:max-h-none {
    max-height: none;
  }

  .md\:min-h-full {
    min-height: 100%;
  }

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

  .md\:w-1\/3 {
    width: 33.333333%;
  }

  .md\:w-1\/4 {
    width: 25%;
  }

  .md\:w-1\/5 {
    width: 20%;
  }

  .md\:w-1\/6 {
    width: 16.666667%;
  }

  .md\:w-full {
    width: 100%;
  }

  .md\:w-screen {
    width: 100vw;
  }

  .md\:min-w-full {
    min-width: 100%;
  }

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

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

  .md\:max-w-full {
    max-width: 100%;
  }

  .md\:max-w-lg {
    max-width: 32rem;
  }

  .md\:max-w-md {
    max-width: 28rem;
  }

  .md\:max-w-none {
    max-width: none;
  }

  .md\:max-w-screen-lg {
    max-width: 1024px;
  }

  .md\:max-w-screen-md {
    max-width: 768px;
  }

  .md\:max-w-screen-xl {
    max-width: 1280px;
  }

  .md\:scale-0 {
    --tw-scale-x: 0;
    --tw-scale-y: 0;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .md\:scale-100 {
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .md\:scale-105 {
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .md\:scale-110 {
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .md\:scale-125 {
    --tw-scale-x: 1.25;
    --tw-scale-y: 1.25;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .md\:scale-150 {
    --tw-scale-x: 1.5;
    --tw-scale-y: 1.5;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .md\:scale-95 {
    --tw-scale-x: .95;
    --tw-scale-y: .95;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .md\:columns-lg {
    -moz-columns: 32rem;
         columns: 32rem;
  }

  .md\:columns-md {
    -moz-columns: 28rem;
         columns: 28rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .md\:gap-1 {
    gap: 0.25rem;
  }

  .md\:gap-10 {
    gap: 2.5rem;
  }

  .md\:gap-11 {
    gap: 2.75rem;
  }

  .md\:gap-12 {
    gap: 3rem;
  }

  .md\:gap-2 {
    gap: 0.5rem;
  }

  .md\:gap-3 {
    gap: 0.75rem;
  }

  .md\:gap-4 {
    gap: 1rem;
  }

  .md\:gap-5 {
    gap: 1.25rem;
  }

  .md\:gap-6 {
    gap: 1.5rem;
  }

  .md\:gap-7 {
    gap: 1.75rem;
  }

  .md\:gap-8 {
    gap: 2rem;
  }

  .md\:gap-9 {
    gap: 2.25rem;
  }

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

  .md\:rounded-md {
    border-radius: calc(var(--radius) - 2px);
  }

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

  .md\:rounded-b-md {
    border-bottom-right-radius: calc(var(--radius) - 2px);
    border-bottom-left-radius: calc(var(--radius) - 2px);
  }

  .md\:rounded-e-lg {
    border-start-end-radius: var(--radius);
    border-end-end-radius: var(--radius);
  }

  .md\:rounded-e-md {
    border-start-end-radius: calc(var(--radius) - 2px);
    border-end-end-radius: calc(var(--radius) - 2px);
  }

  .md\:rounded-l-lg {
    border-top-left-radius: var(--radius);
    border-bottom-left-radius: var(--radius);
  }

  .md\:rounded-l-md {
    border-top-left-radius: calc(var(--radius) - 2px);
    border-bottom-left-radius: calc(var(--radius) - 2px);
  }

  .md\:rounded-r-lg {
    border-top-right-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
  }

  .md\:rounded-r-md {
    border-top-right-radius: calc(var(--radius) - 2px);
    border-bottom-right-radius: calc(var(--radius) - 2px);
  }

  .md\:rounded-s-lg {
    border-start-start-radius: var(--radius);
    border-end-start-radius: var(--radius);
  }

  .md\:rounded-s-md {
    border-start-start-radius: calc(var(--radius) - 2px);
    border-end-start-radius: calc(var(--radius) - 2px);
  }

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

  .md\:rounded-t-md {
    border-top-left-radius: calc(var(--radius) - 2px);
    border-top-right-radius: calc(var(--radius) - 2px);
  }

  .md\:rounded-bl-lg {
    border-bottom-left-radius: var(--radius);
  }

  .md\:rounded-bl-md {
    border-bottom-left-radius: calc(var(--radius) - 2px);
  }

  .md\:rounded-br-lg {
    border-bottom-right-radius: var(--radius);
  }

  .md\:rounded-br-md {
    border-bottom-right-radius: calc(var(--radius) - 2px);
  }

  .md\:rounded-ee-lg {
    border-end-end-radius: var(--radius);
  }

  .md\:rounded-ee-md {
    border-end-end-radius: calc(var(--radius) - 2px);
  }

  .md\:rounded-es-lg {
    border-end-start-radius: var(--radius);
  }

  .md\:rounded-es-md {
    border-end-start-radius: calc(var(--radius) - 2px);
  }

  .md\:rounded-se-lg {
    border-start-end-radius: var(--radius);
  }

  .md\:rounded-se-md {
    border-start-end-radius: calc(var(--radius) - 2px);
  }

  .md\:rounded-ss-lg {
    border-start-start-radius: var(--radius);
  }

  .md\:rounded-ss-md {
    border-start-start-radius: calc(var(--radius) - 2px);
  }

  .md\:rounded-tl-lg {
    border-top-left-radius: var(--radius);
  }

  .md\:rounded-tl-md {
    border-top-left-radius: calc(var(--radius) - 2px);
  }

  .md\:rounded-tr-lg {
    border-top-right-radius: var(--radius);
  }

  .md\:rounded-tr-md {
    border-top-right-radius: calc(var(--radius) - 2px);
  }

  .md\:border-amber-100 {
    --tw-border-opacity: 1;
    border-color: rgb(254 243 199 / var(--tw-border-opacity, 1));
  }

  .md\:border-amber-200 {
    --tw-border-opacity: 1;
    border-color: rgb(253 230 138 / var(--tw-border-opacity, 1));
  }

  .md\:border-amber-300 {
    --tw-border-opacity: 1;
    border-color: rgb(252 211 77 / var(--tw-border-opacity, 1));
  }

  .md\:border-amber-400 {
    --tw-border-opacity: 1;
    border-color: rgb(251 191 36 / var(--tw-border-opacity, 1));
  }

  .md\:border-amber-50 {
    --tw-border-opacity: 1;
    border-color: rgb(255 251 235 / var(--tw-border-opacity, 1));
  }

  .md\:border-amber-500 {
    --tw-border-opacity: 1;
    border-color: rgb(245 158 11 / var(--tw-border-opacity, 1));
  }

  .md\:border-amber-600 {
    --tw-border-opacity: 1;
    border-color: rgb(217 119 6 / var(--tw-border-opacity, 1));
  }

  .md\:border-amber-700 {
    --tw-border-opacity: 1;
    border-color: rgb(180 83 9 / var(--tw-border-opacity, 1));
  }

  .md\:border-amber-800 {
    --tw-border-opacity: 1;
    border-color: rgb(146 64 14 / var(--tw-border-opacity, 1));
  }

  .md\:border-amber-900 {
    --tw-border-opacity: 1;
    border-color: rgb(120 53 15 / var(--tw-border-opacity, 1));
  }

  .md\:border-amber-950 {
    --tw-border-opacity: 1;
    border-color: rgb(69 26 3 / var(--tw-border-opacity, 1));
  }

  .md\:border-blue-100 {
    --tw-border-opacity: 1;
    border-color: rgb(219 234 254 / var(--tw-border-opacity, 1));
  }

  .md\:border-blue-200 {
    --tw-border-opacity: 1;
    border-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
  }

  .md\:border-blue-300 {
    --tw-border-opacity: 1;
    border-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
  }

  .md\:border-blue-400 {
    --tw-border-opacity: 1;
    border-color: rgb(96 165 250 / var(--tw-border-opacity, 1));
  }

  .md\:border-blue-50 {
    --tw-border-opacity: 1;
    border-color: rgb(239 246 255 / var(--tw-border-opacity, 1));
  }

  .md\:border-blue-500 {
    --tw-border-opacity: 1;
    border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
  }

  .md\:border-blue-600 {
    --tw-border-opacity: 1;
    border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
  }

  .md\:border-blue-700 {
    --tw-border-opacity: 1;
    border-color: rgb(29 78 216 / var(--tw-border-opacity, 1));
  }

  .md\:border-blue-800 {
    --tw-border-opacity: 1;
    border-color: rgb(30 64 175 / var(--tw-border-opacity, 1));
  }

  .md\:border-blue-900 {
    --tw-border-opacity: 1;
    border-color: rgb(30 58 138 / var(--tw-border-opacity, 1));
  }

  .md\:border-blue-950 {
    --tw-border-opacity: 1;
    border-color: rgb(23 37 84 / var(--tw-border-opacity, 1));
  }

  .md\:border-cyan-100 {
    --tw-border-opacity: 1;
    border-color: rgb(207 250 254 / var(--tw-border-opacity, 1));
  }

  .md\:border-cyan-200 {
    --tw-border-opacity: 1;
    border-color: rgb(165 243 252 / var(--tw-border-opacity, 1));
  }

  .md\:border-cyan-300 {
    --tw-border-opacity: 1;
    border-color: rgb(103 232 249 / var(--tw-border-opacity, 1));
  }

  .md\:border-cyan-400 {
    --tw-border-opacity: 1;
    border-color: rgb(34 211 238 / var(--tw-border-opacity, 1));
  }

  .md\:border-cyan-50 {
    --tw-border-opacity: 1;
    border-color: rgb(236 254 255 / var(--tw-border-opacity, 1));
  }

  .md\:border-cyan-500 {
    --tw-border-opacity: 1;
    border-color: rgb(6 182 212 / var(--tw-border-opacity, 1));
  }

  .md\:border-cyan-600 {
    --tw-border-opacity: 1;
    border-color: rgb(8 145 178 / var(--tw-border-opacity, 1));
  }

  .md\:border-cyan-700 {
    --tw-border-opacity: 1;
    border-color: rgb(14 116 144 / var(--tw-border-opacity, 1));
  }

  .md\:border-cyan-800 {
    --tw-border-opacity: 1;
    border-color: rgb(21 94 117 / var(--tw-border-opacity, 1));
  }

  .md\:border-cyan-900 {
    --tw-border-opacity: 1;
    border-color: rgb(22 78 99 / var(--tw-border-opacity, 1));
  }

  .md\:border-cyan-950 {
    --tw-border-opacity: 1;
    border-color: rgb(8 51 68 / var(--tw-border-opacity, 1));
  }

  .md\:border-emerald-100 {
    --tw-border-opacity: 1;
    border-color: rgb(209 250 229 / var(--tw-border-opacity, 1));
  }

  .md\:border-emerald-200 {
    --tw-border-opacity: 1;
    border-color: rgb(167 243 208 / var(--tw-border-opacity, 1));
  }

  .md\:border-emerald-300 {
    --tw-border-opacity: 1;
    border-color: rgb(110 231 183 / var(--tw-border-opacity, 1));
  }

  .md\:border-emerald-400 {
    --tw-border-opacity: 1;
    border-color: rgb(52 211 153 / var(--tw-border-opacity, 1));
  }

  .md\:border-emerald-50 {
    --tw-border-opacity: 1;
    border-color: rgb(236 253 245 / var(--tw-border-opacity, 1));
  }

  .md\:border-emerald-500 {
    --tw-border-opacity: 1;
    border-color: rgb(16 185 129 / var(--tw-border-opacity, 1));
  }

  .md\:border-emerald-600 {
    --tw-border-opacity: 1;
    border-color: rgb(5 150 105 / var(--tw-border-opacity, 1));
  }

  .md\:border-emerald-700 {
    --tw-border-opacity: 1;
    border-color: rgb(4 120 87 / var(--tw-border-opacity, 1));
  }

  .md\:border-emerald-800 {
    --tw-border-opacity: 1;
    border-color: rgb(6 95 70 / var(--tw-border-opacity, 1));
  }

  .md\:border-emerald-900 {
    --tw-border-opacity: 1;
    border-color: rgb(6 78 59 / var(--tw-border-opacity, 1));
  }

  .md\:border-emerald-950 {
    --tw-border-opacity: 1;
    border-color: rgb(2 44 34 / var(--tw-border-opacity, 1));
  }

  .md\:border-fuchsia-100 {
    --tw-border-opacity: 1;
    border-color: rgb(250 232 255 / var(--tw-border-opacity, 1));
  }

  .md\:border-fuchsia-200 {
    --tw-border-opacity: 1;
    border-color: rgb(245 208 254 / var(--tw-border-opacity, 1));
  }

  .md\:border-fuchsia-300 {
    --tw-border-opacity: 1;
    border-color: rgb(240 171 252 / var(--tw-border-opacity, 1));
  }

  .md\:border-fuchsia-400 {
    --tw-border-opacity: 1;
    border-color: rgb(232 121 249 / var(--tw-border-opacity, 1));
  }

  .md\:border-fuchsia-50 {
    --tw-border-opacity: 1;
    border-color: rgb(253 244 255 / var(--tw-border-opacity, 1));
  }

  .md\:border-fuchsia-500 {
    --tw-border-opacity: 1;
    border-color: rgb(217 70 239 / var(--tw-border-opacity, 1));
  }

  .md\:border-fuchsia-600 {
    --tw-border-opacity: 1;
    border-color: rgb(192 38 211 / var(--tw-border-opacity, 1));
  }

  .md\:border-fuchsia-700 {
    --tw-border-opacity: 1;
    border-color: rgb(162 28 175 / var(--tw-border-opacity, 1));
  }

  .md\:border-fuchsia-800 {
    --tw-border-opacity: 1;
    border-color: rgb(134 25 143 / var(--tw-border-opacity, 1));
  }

  .md\:border-fuchsia-900 {
    --tw-border-opacity: 1;
    border-color: rgb(112 26 117 / var(--tw-border-opacity, 1));
  }

  .md\:border-fuchsia-950 {
    --tw-border-opacity: 1;
    border-color: rgb(74 4 78 / var(--tw-border-opacity, 1));
  }

  .md\:border-gray-100 {
    --tw-border-opacity: 1;
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
  }

  .md\:border-gray-200 {
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
  }

  .md\:border-gray-300 {
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
  }

  .md\:border-gray-400 {
    --tw-border-opacity: 1;
    border-color: rgb(156 163 175 / var(--tw-border-opacity, 1));
  }

  .md\:border-gray-50 {
    --tw-border-opacity: 1;
    border-color: rgb(249 250 251 / var(--tw-border-opacity, 1));
  }

  .md\:border-gray-500 {
    --tw-border-opacity: 1;
    border-color: rgb(107 114 128 / var(--tw-border-opacity, 1));
  }

  .md\:border-gray-600 {
    --tw-border-opacity: 1;
    border-color: rgb(75 85 99 / var(--tw-border-opacity, 1));
  }

  .md\:border-gray-700 {
    --tw-border-opacity: 1;
    border-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
  }

  .md\:border-gray-800 {
    --tw-border-opacity: 1;
    border-color: rgb(31 41 55 / var(--tw-border-opacity, 1));
  }

  .md\:border-gray-900 {
    --tw-border-opacity: 1;
    border-color: rgb(17 24 39 / var(--tw-border-opacity, 1));
  }

  .md\:border-gray-950 {
    --tw-border-opacity: 1;
    border-color: rgb(3 7 18 / var(--tw-border-opacity, 1));
  }

  .md\:border-green-100 {
    --tw-border-opacity: 1;
    border-color: rgb(220 252 231 / var(--tw-border-opacity, 1));
  }

  .md\:border-green-200 {
    --tw-border-opacity: 1;
    border-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
  }

  .md\:border-green-300 {
    --tw-border-opacity: 1;
    border-color: rgb(134 239 172 / var(--tw-border-opacity, 1));
  }

  .md\:border-green-400 {
    --tw-border-opacity: 1;
    border-color: rgb(74 222 128 / var(--tw-border-opacity, 1));
  }

  .md\:border-green-50 {
    --tw-border-opacity: 1;
    border-color: rgb(240 253 244 / var(--tw-border-opacity, 1));
  }

  .md\:border-green-500 {
    --tw-border-opacity: 1;
    border-color: rgb(34 197 94 / var(--tw-border-opacity, 1));
  }

  .md\:border-green-600 {
    --tw-border-opacity: 1;
    border-color: rgb(22 163 74 / var(--tw-border-opacity, 1));
  }

  .md\:border-green-700 {
    --tw-border-opacity: 1;
    border-color: rgb(21 128 61 / var(--tw-border-opacity, 1));
  }

  .md\:border-green-800 {
    --tw-border-opacity: 1;
    border-color: rgb(22 101 52 / var(--tw-border-opacity, 1));
  }

  .md\:border-green-900 {
    --tw-border-opacity: 1;
    border-color: rgb(20 83 45 / var(--tw-border-opacity, 1));
  }

  .md\:border-green-950 {
    --tw-border-opacity: 1;
    border-color: rgb(5 46 22 / var(--tw-border-opacity, 1));
  }

  .md\:border-indigo-100 {
    --tw-border-opacity: 1;
    border-color: rgb(224 231 255 / var(--tw-border-opacity, 1));
  }

  .md\:border-indigo-200 {
    --tw-border-opacity: 1;
    border-color: rgb(199 210 254 / var(--tw-border-opacity, 1));
  }

  .md\:border-indigo-300 {
    --tw-border-opacity: 1;
    border-color: rgb(165 180 252 / var(--tw-border-opacity, 1));
  }

  .md\:border-indigo-400 {
    --tw-border-opacity: 1;
    border-color: rgb(129 140 248 / var(--tw-border-opacity, 1));
  }

  .md\:border-indigo-50 {
    --tw-border-opacity: 1;
    border-color: rgb(238 242 255 / var(--tw-border-opacity, 1));
  }

  .md\:border-indigo-500 {
    --tw-border-opacity: 1;
    border-color: rgb(99 102 241 / var(--tw-border-opacity, 1));
  }

  .md\:border-indigo-600 {
    --tw-border-opacity: 1;
    border-color: rgb(79 70 229 / var(--tw-border-opacity, 1));
  }

  .md\:border-indigo-700 {
    --tw-border-opacity: 1;
    border-color: rgb(67 56 202 / var(--tw-border-opacity, 1));
  }

  .md\:border-indigo-800 {
    --tw-border-opacity: 1;
    border-color: rgb(55 48 163 / var(--tw-border-opacity, 1));
  }

  .md\:border-indigo-900 {
    --tw-border-opacity: 1;
    border-color: rgb(49 46 129 / var(--tw-border-opacity, 1));
  }

  .md\:border-indigo-950 {
    --tw-border-opacity: 1;
    border-color: rgb(30 27 75 / var(--tw-border-opacity, 1));
  }

  .md\:border-lime-100 {
    --tw-border-opacity: 1;
    border-color: rgb(236 252 203 / var(--tw-border-opacity, 1));
  }

  .md\:border-lime-200 {
    --tw-border-opacity: 1;
    border-color: rgb(217 249 157 / var(--tw-border-opacity, 1));
  }

  .md\:border-lime-300 {
    --tw-border-opacity: 1;
    border-color: rgb(190 242 100 / var(--tw-border-opacity, 1));
  }

  .md\:border-lime-400 {
    --tw-border-opacity: 1;
    border-color: rgb(163 230 53 / var(--tw-border-opacity, 1));
  }

  .md\:border-lime-50 {
    --tw-border-opacity: 1;
    border-color: rgb(247 254 231 / var(--tw-border-opacity, 1));
  }

  .md\:border-lime-500 {
    --tw-border-opacity: 1;
    border-color: rgb(132 204 22 / var(--tw-border-opacity, 1));
  }

  .md\:border-lime-600 {
    --tw-border-opacity: 1;
    border-color: rgb(101 163 13 / var(--tw-border-opacity, 1));
  }

  .md\:border-lime-700 {
    --tw-border-opacity: 1;
    border-color: rgb(77 124 15 / var(--tw-border-opacity, 1));
  }

  .md\:border-lime-800 {
    --tw-border-opacity: 1;
    border-color: rgb(63 98 18 / var(--tw-border-opacity, 1));
  }

  .md\:border-lime-900 {
    --tw-border-opacity: 1;
    border-color: rgb(54 83 20 / var(--tw-border-opacity, 1));
  }

  .md\:border-lime-950 {
    --tw-border-opacity: 1;
    border-color: rgb(26 46 5 / var(--tw-border-opacity, 1));
  }

  .md\:border-neutral-100 {
    --tw-border-opacity: 1;
    border-color: rgb(245 245 245 / var(--tw-border-opacity, 1));
  }

  .md\:border-neutral-200 {
    --tw-border-opacity: 1;
    border-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
  }

  .md\:border-neutral-300 {
    --tw-border-opacity: 1;
    border-color: rgb(212 212 212 / var(--tw-border-opacity, 1));
  }

  .md\:border-neutral-400 {
    --tw-border-opacity: 1;
    border-color: rgb(163 163 163 / var(--tw-border-opacity, 1));
  }

  .md\:border-neutral-50 {
    --tw-border-opacity: 1;
    border-color: rgb(250 250 250 / var(--tw-border-opacity, 1));
  }

  .md\:border-neutral-500 {
    --tw-border-opacity: 1;
    border-color: rgb(115 115 115 / var(--tw-border-opacity, 1));
  }

  .md\:border-neutral-600 {
    --tw-border-opacity: 1;
    border-color: rgb(82 82 82 / var(--tw-border-opacity, 1));
  }

  .md\:border-neutral-700 {
    --tw-border-opacity: 1;
    border-color: rgb(64 64 64 / var(--tw-border-opacity, 1));
  }

  .md\:border-neutral-800 {
    --tw-border-opacity: 1;
    border-color: rgb(38 38 38 / var(--tw-border-opacity, 1));
  }

  .md\:border-neutral-900 {
    --tw-border-opacity: 1;
    border-color: rgb(23 23 23 / var(--tw-border-opacity, 1));
  }

  .md\:border-neutral-950 {
    --tw-border-opacity: 1;
    border-color: rgb(10 10 10 / var(--tw-border-opacity, 1));
  }

  .md\:border-orange-100 {
    --tw-border-opacity: 1;
    border-color: rgb(255 237 213 / var(--tw-border-opacity, 1));
  }

  .md\:border-orange-200 {
    --tw-border-opacity: 1;
    border-color: rgb(254 215 170 / var(--tw-border-opacity, 1));
  }

  .md\:border-orange-300 {
    --tw-border-opacity: 1;
    border-color: rgb(253 186 116 / var(--tw-border-opacity, 1));
  }

  .md\:border-orange-400 {
    --tw-border-opacity: 1;
    border-color: rgb(251 146 60 / var(--tw-border-opacity, 1));
  }

  .md\:border-orange-50 {
    --tw-border-opacity: 1;
    border-color: rgb(255 247 237 / var(--tw-border-opacity, 1));
  }

  .md\:border-orange-500 {
    --tw-border-opacity: 1;
    border-color: rgb(249 115 22 / var(--tw-border-opacity, 1));
  }

  .md\:border-orange-600 {
    --tw-border-opacity: 1;
    border-color: rgb(234 88 12 / var(--tw-border-opacity, 1));
  }

  .md\:border-orange-700 {
    --tw-border-opacity: 1;
    border-color: rgb(194 65 12 / var(--tw-border-opacity, 1));
  }

  .md\:border-orange-800 {
    --tw-border-opacity: 1;
    border-color: rgb(154 52 18 / var(--tw-border-opacity, 1));
  }

  .md\:border-orange-900 {
    --tw-border-opacity: 1;
    border-color: rgb(124 45 18 / var(--tw-border-opacity, 1));
  }

  .md\:border-orange-950 {
    --tw-border-opacity: 1;
    border-color: rgb(67 20 7 / var(--tw-border-opacity, 1));
  }

  .md\:border-pink-100 {
    --tw-border-opacity: 1;
    border-color: rgb(252 231 243 / var(--tw-border-opacity, 1));
  }

  .md\:border-pink-200 {
    --tw-border-opacity: 1;
    border-color: rgb(251 207 232 / var(--tw-border-opacity, 1));
  }

  .md\:border-pink-300 {
    --tw-border-opacity: 1;
    border-color: rgb(249 168 212 / var(--tw-border-opacity, 1));
  }

  .md\:border-pink-400 {
    --tw-border-opacity: 1;
    border-color: rgb(244 114 182 / var(--tw-border-opacity, 1));
  }

  .md\:border-pink-50 {
    --tw-border-opacity: 1;
    border-color: rgb(253 242 248 / var(--tw-border-opacity, 1));
  }

  .md\:border-pink-500 {
    --tw-border-opacity: 1;
    border-color: rgb(236 72 153 / var(--tw-border-opacity, 1));
  }

  .md\:border-pink-600 {
    --tw-border-opacity: 1;
    border-color: rgb(219 39 119 / var(--tw-border-opacity, 1));
  }

  .md\:border-pink-700 {
    --tw-border-opacity: 1;
    border-color: rgb(190 24 93 / var(--tw-border-opacity, 1));
  }

  .md\:border-pink-800 {
    --tw-border-opacity: 1;
    border-color: rgb(157 23 77 / var(--tw-border-opacity, 1));
  }

  .md\:border-pink-900 {
    --tw-border-opacity: 1;
    border-color: rgb(131 24 67 / var(--tw-border-opacity, 1));
  }

  .md\:border-pink-950 {
    --tw-border-opacity: 1;
    border-color: rgb(80 7 36 / var(--tw-border-opacity, 1));
  }

  .md\:border-purple-100 {
    --tw-border-opacity: 1;
    border-color: rgb(243 232 255 / var(--tw-border-opacity, 1));
  }

  .md\:border-purple-200 {
    --tw-border-opacity: 1;
    border-color: rgb(233 213 255 / var(--tw-border-opacity, 1));
  }

  .md\:border-purple-300 {
    --tw-border-opacity: 1;
    border-color: rgb(216 180 254 / var(--tw-border-opacity, 1));
  }

  .md\:border-purple-400 {
    --tw-border-opacity: 1;
    border-color: rgb(192 132 252 / var(--tw-border-opacity, 1));
  }

  .md\:border-purple-50 {
    --tw-border-opacity: 1;
    border-color: rgb(250 245 255 / var(--tw-border-opacity, 1));
  }

  .md\:border-purple-500 {
    --tw-border-opacity: 1;
    border-color: rgb(168 85 247 / var(--tw-border-opacity, 1));
  }

  .md\:border-purple-600 {
    --tw-border-opacity: 1;
    border-color: rgb(147 51 234 / var(--tw-border-opacity, 1));
  }

  .md\:border-purple-700 {
    --tw-border-opacity: 1;
    border-color: rgb(126 34 206 / var(--tw-border-opacity, 1));
  }

  .md\:border-purple-800 {
    --tw-border-opacity: 1;
    border-color: rgb(107 33 168 / var(--tw-border-opacity, 1));
  }

  .md\:border-purple-900 {
    --tw-border-opacity: 1;
    border-color: rgb(88 28 135 / var(--tw-border-opacity, 1));
  }

  .md\:border-purple-950 {
    --tw-border-opacity: 1;
    border-color: rgb(59 7 100 / var(--tw-border-opacity, 1));
  }

  .md\:border-red-100 {
    --tw-border-opacity: 1;
    border-color: rgb(254 226 226 / var(--tw-border-opacity, 1));
  }

  .md\:border-red-200 {
    --tw-border-opacity: 1;
    border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
  }

  .md\:border-red-300 {
    --tw-border-opacity: 1;
    border-color: rgb(252 165 165 / var(--tw-border-opacity, 1));
  }

  .md\:border-red-400 {
    --tw-border-opacity: 1;
    border-color: rgb(248 113 113 / var(--tw-border-opacity, 1));
  }

  .md\:border-red-50 {
    --tw-border-opacity: 1;
    border-color: rgb(254 242 242 / var(--tw-border-opacity, 1));
  }

  .md\:border-red-500 {
    --tw-border-opacity: 1;
    border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
  }

  .md\:border-red-600 {
    --tw-border-opacity: 1;
    border-color: rgb(220 38 38 / var(--tw-border-opacity, 1));
  }

  .md\:border-red-700 {
    --tw-border-opacity: 1;
    border-color: rgb(185 28 28 / var(--tw-border-opacity, 1));
  }

  .md\:border-red-800 {
    --tw-border-opacity: 1;
    border-color: rgb(153 27 27 / var(--tw-border-opacity, 1));
  }

  .md\:border-red-900 {
    --tw-border-opacity: 1;
    border-color: rgb(127 29 29 / var(--tw-border-opacity, 1));
  }

  .md\:border-red-950 {
    --tw-border-opacity: 1;
    border-color: rgb(69 10 10 / var(--tw-border-opacity, 1));
  }

  .md\:border-rose-100 {
    --tw-border-opacity: 1;
    border-color: rgb(255 228 230 / var(--tw-border-opacity, 1));
  }

  .md\:border-rose-200 {
    --tw-border-opacity: 1;
    border-color: rgb(254 205 211 / var(--tw-border-opacity, 1));
  }

  .md\:border-rose-300 {
    --tw-border-opacity: 1;
    border-color: rgb(253 164 175 / var(--tw-border-opacity, 1));
  }

  .md\:border-rose-400 {
    --tw-border-opacity: 1;
    border-color: rgb(251 113 133 / var(--tw-border-opacity, 1));
  }

  .md\:border-rose-50 {
    --tw-border-opacity: 1;
    border-color: rgb(255 241 242 / var(--tw-border-opacity, 1));
  }

  .md\:border-rose-500 {
    --tw-border-opacity: 1;
    border-color: rgb(244 63 94 / var(--tw-border-opacity, 1));
  }

  .md\:border-rose-600 {
    --tw-border-opacity: 1;
    border-color: rgb(225 29 72 / var(--tw-border-opacity, 1));
  }

  .md\:border-rose-700 {
    --tw-border-opacity: 1;
    border-color: rgb(190 18 60 / var(--tw-border-opacity, 1));
  }

  .md\:border-rose-800 {
    --tw-border-opacity: 1;
    border-color: rgb(159 18 57 / var(--tw-border-opacity, 1));
  }

  .md\:border-rose-900 {
    --tw-border-opacity: 1;
    border-color: rgb(136 19 55 / var(--tw-border-opacity, 1));
  }

  .md\:border-rose-950 {
    --tw-border-opacity: 1;
    border-color: rgb(76 5 25 / var(--tw-border-opacity, 1));
  }

  .md\:border-sky-100 {
    --tw-border-opacity: 1;
    border-color: rgb(224 242 254 / var(--tw-border-opacity, 1));
  }

  .md\:border-sky-200 {
    --tw-border-opacity: 1;
    border-color: rgb(186 230 253 / var(--tw-border-opacity, 1));
  }

  .md\:border-sky-300 {
    --tw-border-opacity: 1;
    border-color: rgb(125 211 252 / var(--tw-border-opacity, 1));
  }

  .md\:border-sky-400 {
    --tw-border-opacity: 1;
    border-color: rgb(56 189 248 / var(--tw-border-opacity, 1));
  }

  .md\:border-sky-50 {
    --tw-border-opacity: 1;
    border-color: rgb(240 249 255 / var(--tw-border-opacity, 1));
  }

  .md\:border-sky-500 {
    --tw-border-opacity: 1;
    border-color: rgb(14 165 233 / var(--tw-border-opacity, 1));
  }

  .md\:border-sky-600 {
    --tw-border-opacity: 1;
    border-color: rgb(2 132 199 / var(--tw-border-opacity, 1));
  }

  .md\:border-sky-700 {
    --tw-border-opacity: 1;
    border-color: rgb(3 105 161 / var(--tw-border-opacity, 1));
  }

  .md\:border-sky-800 {
    --tw-border-opacity: 1;
    border-color: rgb(7 89 133 / var(--tw-border-opacity, 1));
  }

  .md\:border-sky-900 {
    --tw-border-opacity: 1;
    border-color: rgb(12 74 110 / var(--tw-border-opacity, 1));
  }

  .md\:border-sky-950 {
    --tw-border-opacity: 1;
    border-color: rgb(8 47 73 / var(--tw-border-opacity, 1));
  }

  .md\:border-slate-100 {
    --tw-border-opacity: 1;
    border-color: rgb(241 245 249 / var(--tw-border-opacity, 1));
  }

  .md\:border-slate-200 {
    --tw-border-opacity: 1;
    border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
  }

  .md\:border-slate-300 {
    --tw-border-opacity: 1;
    border-color: rgb(203 213 225 / var(--tw-border-opacity, 1));
  }

  .md\:border-slate-400 {
    --tw-border-opacity: 1;
    border-color: rgb(148 163 184 / var(--tw-border-opacity, 1));
  }

  .md\:border-slate-50 {
    --tw-border-opacity: 1;
    border-color: rgb(248 250 252 / var(--tw-border-opacity, 1));
  }

  .md\:border-slate-500 {
    --tw-border-opacity: 1;
    border-color: rgb(100 116 139 / var(--tw-border-opacity, 1));
  }

  .md\:border-slate-600 {
    --tw-border-opacity: 1;
    border-color: rgb(71 85 105 / var(--tw-border-opacity, 1));
  }

  .md\:border-slate-700 {
    --tw-border-opacity: 1;
    border-color: rgb(51 65 85 / var(--tw-border-opacity, 1));
  }

  .md\:border-slate-800 {
    --tw-border-opacity: 1;
    border-color: rgb(30 41 59 / var(--tw-border-opacity, 1));
  }

  .md\:border-slate-900 {
    --tw-border-opacity: 1;
    border-color: rgb(15 23 42 / var(--tw-border-opacity, 1));
  }

  .md\:border-slate-950 {
    --tw-border-opacity: 1;
    border-color: rgb(2 6 23 / var(--tw-border-opacity, 1));
  }

  .md\:border-stone-100 {
    --tw-border-opacity: 1;
    border-color: rgb(245 245 244 / var(--tw-border-opacity, 1));
  }

  .md\:border-stone-200 {
    --tw-border-opacity: 1;
    border-color: rgb(231 229 228 / var(--tw-border-opacity, 1));
  }

  .md\:border-stone-300 {
    --tw-border-opacity: 1;
    border-color: rgb(214 211 209 / var(--tw-border-opacity, 1));
  }

  .md\:border-stone-400 {
    --tw-border-opacity: 1;
    border-color: rgb(168 162 158 / var(--tw-border-opacity, 1));
  }

  .md\:border-stone-50 {
    --tw-border-opacity: 1;
    border-color: rgb(250 250 249 / var(--tw-border-opacity, 1));
  }

  .md\:border-stone-500 {
    --tw-border-opacity: 1;
    border-color: rgb(120 113 108 / var(--tw-border-opacity, 1));
  }

  .md\:border-stone-600 {
    --tw-border-opacity: 1;
    border-color: rgb(87 83 78 / var(--tw-border-opacity, 1));
  }

  .md\:border-stone-700 {
    --tw-border-opacity: 1;
    border-color: rgb(68 64 60 / var(--tw-border-opacity, 1));
  }

  .md\:border-stone-800 {
    --tw-border-opacity: 1;
    border-color: rgb(41 37 36 / var(--tw-border-opacity, 1));
  }

  .md\:border-stone-900 {
    --tw-border-opacity: 1;
    border-color: rgb(28 25 23 / var(--tw-border-opacity, 1));
  }

  .md\:border-stone-950 {
    --tw-border-opacity: 1;
    border-color: rgb(12 10 9 / var(--tw-border-opacity, 1));
  }

  .md\:border-teal-100 {
    --tw-border-opacity: 1;
    border-color: rgb(204 251 241 / var(--tw-border-opacity, 1));
  }

  .md\:border-teal-200 {
    --tw-border-opacity: 1;
    border-color: rgb(153 246 228 / var(--tw-border-opacity, 1));
  }

  .md\:border-teal-300 {
    --tw-border-opacity: 1;
    border-color: rgb(94 234 212 / var(--tw-border-opacity, 1));
  }

  .md\:border-teal-400 {
    --tw-border-opacity: 1;
    border-color: rgb(45 212 191 / var(--tw-border-opacity, 1));
  }

  .md\:border-teal-50 {
    --tw-border-opacity: 1;
    border-color: rgb(240 253 250 / var(--tw-border-opacity, 1));
  }

  .md\:border-teal-500 {
    --tw-border-opacity: 1;
    border-color: rgb(20 184 166 / var(--tw-border-opacity, 1));
  }

  .md\:border-teal-600 {
    --tw-border-opacity: 1;
    border-color: rgb(13 148 136 / var(--tw-border-opacity, 1));
  }

  .md\:border-teal-700 {
    --tw-border-opacity: 1;
    border-color: rgb(15 118 110 / var(--tw-border-opacity, 1));
  }

  .md\:border-teal-800 {
    --tw-border-opacity: 1;
    border-color: rgb(17 94 89 / var(--tw-border-opacity, 1));
  }

  .md\:border-teal-900 {
    --tw-border-opacity: 1;
    border-color: rgb(19 78 74 / var(--tw-border-opacity, 1));
  }

  .md\:border-teal-950 {
    --tw-border-opacity: 1;
    border-color: rgb(4 47 46 / var(--tw-border-opacity, 1));
  }

  .md\:border-violet-100 {
    --tw-border-opacity: 1;
    border-color: rgb(237 233 254 / var(--tw-border-opacity, 1));
  }

  .md\:border-violet-200 {
    --tw-border-opacity: 1;
    border-color: rgb(221 214 254 / var(--tw-border-opacity, 1));
  }

  .md\:border-violet-300 {
    --tw-border-opacity: 1;
    border-color: rgb(196 181 253 / var(--tw-border-opacity, 1));
  }

  .md\:border-violet-400 {
    --tw-border-opacity: 1;
    border-color: rgb(167 139 250 / var(--tw-border-opacity, 1));
  }

  .md\:border-violet-50 {
    --tw-border-opacity: 1;
    border-color: rgb(245 243 255 / var(--tw-border-opacity, 1));
  }

  .md\:border-violet-500 {
    --tw-border-opacity: 1;
    border-color: rgb(139 92 246 / var(--tw-border-opacity, 1));
  }

  .md\:border-violet-600 {
    --tw-border-opacity: 1;
    border-color: rgb(124 58 237 / var(--tw-border-opacity, 1));
  }

  .md\:border-violet-700 {
    --tw-border-opacity: 1;
    border-color: rgb(109 40 217 / var(--tw-border-opacity, 1));
  }

  .md\:border-violet-800 {
    --tw-border-opacity: 1;
    border-color: rgb(91 33 182 / var(--tw-border-opacity, 1));
  }

  .md\:border-violet-900 {
    --tw-border-opacity: 1;
    border-color: rgb(76 29 149 / var(--tw-border-opacity, 1));
  }

  .md\:border-violet-950 {
    --tw-border-opacity: 1;
    border-color: rgb(46 16 101 / var(--tw-border-opacity, 1));
  }

  .md\:border-yellow-100 {
    --tw-border-opacity: 1;
    border-color: rgb(254 249 195 / var(--tw-border-opacity, 1));
  }

  .md\:border-yellow-200 {
    --tw-border-opacity: 1;
    border-color: rgb(254 240 138 / var(--tw-border-opacity, 1));
  }

  .md\:border-yellow-300 {
    --tw-border-opacity: 1;
    border-color: rgb(253 224 71 / var(--tw-border-opacity, 1));
  }

  .md\:border-yellow-400 {
    --tw-border-opacity: 1;
    border-color: rgb(250 204 21 / var(--tw-border-opacity, 1));
  }

  .md\:border-yellow-50 {
    --tw-border-opacity: 1;
    border-color: rgb(254 252 232 / var(--tw-border-opacity, 1));
  }

  .md\:border-yellow-500 {
    --tw-border-opacity: 1;
    border-color: rgb(234 179 8 / var(--tw-border-opacity, 1));
  }

  .md\:border-yellow-600 {
    --tw-border-opacity: 1;
    border-color: rgb(202 138 4 / var(--tw-border-opacity, 1));
  }

  .md\:border-yellow-700 {
    --tw-border-opacity: 1;
    border-color: rgb(161 98 7 / var(--tw-border-opacity, 1));
  }

  .md\:border-yellow-800 {
    --tw-border-opacity: 1;
    border-color: rgb(133 77 14 / var(--tw-border-opacity, 1));
  }

  .md\:border-yellow-900 {
    --tw-border-opacity: 1;
    border-color: rgb(113 63 18 / var(--tw-border-opacity, 1));
  }

  .md\:border-yellow-950 {
    --tw-border-opacity: 1;
    border-color: rgb(66 32 6 / var(--tw-border-opacity, 1));
  }

  .md\:border-zinc-100 {
    --tw-border-opacity: 1;
    border-color: rgb(244 244 245 / var(--tw-border-opacity, 1));
  }

  .md\:border-zinc-200 {
    --tw-border-opacity: 1;
    border-color: rgb(228 228 231 / var(--tw-border-opacity, 1));
  }

  .md\:border-zinc-300 {
    --tw-border-opacity: 1;
    border-color: rgb(212 212 216 / var(--tw-border-opacity, 1));
  }

  .md\:border-zinc-400 {
    --tw-border-opacity: 1;
    border-color: rgb(161 161 170 / var(--tw-border-opacity, 1));
  }

  .md\:border-zinc-50 {
    --tw-border-opacity: 1;
    border-color: rgb(250 250 250 / var(--tw-border-opacity, 1));
  }

  .md\:border-zinc-500 {
    --tw-border-opacity: 1;
    border-color: rgb(113 113 122 / var(--tw-border-opacity, 1));
  }

  .md\:border-zinc-600 {
    --tw-border-opacity: 1;
    border-color: rgb(82 82 91 / var(--tw-border-opacity, 1));
  }

  .md\:border-zinc-700 {
    --tw-border-opacity: 1;
    border-color: rgb(63 63 70 / var(--tw-border-opacity, 1));
  }

  .md\:border-zinc-800 {
    --tw-border-opacity: 1;
    border-color: rgb(39 39 42 / var(--tw-border-opacity, 1));
  }

  .md\:border-zinc-900 {
    --tw-border-opacity: 1;
    border-color: rgb(24 24 27 / var(--tw-border-opacity, 1));
  }

  .md\:border-zinc-950 {
    --tw-border-opacity: 1;
    border-color: rgb(9 9 11 / var(--tw-border-opacity, 1));
  }

  .md\:bg-amber-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 243 199 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-amber-100\/10 {
    background-color: rgb(254 243 199 / 0.1);
  }

  .md\:bg-amber-100\/20 {
    background-color: rgb(254 243 199 / 0.2);
  }

  .md\:bg-amber-100\/30 {
    background-color: rgb(254 243 199 / 0.3);
  }

  .md\:bg-amber-100\/40 {
    background-color: rgb(254 243 199 / 0.4);
  }

  .md\:bg-amber-100\/5 {
    background-color: rgb(254 243 199 / 0.05);
  }

  .md\:bg-amber-100\/50 {
    background-color: rgb(254 243 199 / 0.5);
  }

  .md\:bg-amber-100\/60 {
    background-color: rgb(254 243 199 / 0.6);
  }

  .md\:bg-amber-100\/70 {
    background-color: rgb(254 243 199 / 0.7);
  }

  .md\:bg-amber-100\/80 {
    background-color: rgb(254 243 199 / 0.8);
  }

  .md\:bg-amber-100\/90 {
    background-color: rgb(254 243 199 / 0.9);
  }

  .md\:bg-amber-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(253 230 138 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-amber-200\/10 {
    background-color: rgb(253 230 138 / 0.1);
  }

  .md\:bg-amber-200\/20 {
    background-color: rgb(253 230 138 / 0.2);
  }

  .md\:bg-amber-200\/30 {
    background-color: rgb(253 230 138 / 0.3);
  }

  .md\:bg-amber-200\/40 {
    background-color: rgb(253 230 138 / 0.4);
  }

  .md\:bg-amber-200\/5 {
    background-color: rgb(253 230 138 / 0.05);
  }

  .md\:bg-amber-200\/50 {
    background-color: rgb(253 230 138 / 0.5);
  }

  .md\:bg-amber-200\/60 {
    background-color: rgb(253 230 138 / 0.6);
  }

  .md\:bg-amber-200\/70 {
    background-color: rgb(253 230 138 / 0.7);
  }

  .md\:bg-amber-200\/80 {
    background-color: rgb(253 230 138 / 0.8);
  }

  .md\:bg-amber-200\/90 {
    background-color: rgb(253 230 138 / 0.9);
  }

  .md\:bg-amber-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(252 211 77 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-amber-300\/10 {
    background-color: rgb(252 211 77 / 0.1);
  }

  .md\:bg-amber-300\/20 {
    background-color: rgb(252 211 77 / 0.2);
  }

  .md\:bg-amber-300\/30 {
    background-color: rgb(252 211 77 / 0.3);
  }

  .md\:bg-amber-300\/40 {
    background-color: rgb(252 211 77 / 0.4);
  }

  .md\:bg-amber-300\/5 {
    background-color: rgb(252 211 77 / 0.05);
  }

  .md\:bg-amber-300\/50 {
    background-color: rgb(252 211 77 / 0.5);
  }

  .md\:bg-amber-300\/60 {
    background-color: rgb(252 211 77 / 0.6);
  }

  .md\:bg-amber-300\/70 {
    background-color: rgb(252 211 77 / 0.7);
  }

  .md\:bg-amber-300\/80 {
    background-color: rgb(252 211 77 / 0.8);
  }

  .md\:bg-amber-300\/90 {
    background-color: rgb(252 211 77 / 0.9);
  }

  .md\:bg-amber-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(251 191 36 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-amber-400\/10 {
    background-color: rgb(251 191 36 / 0.1);
  }

  .md\:bg-amber-400\/20 {
    background-color: rgb(251 191 36 / 0.2);
  }

  .md\:bg-amber-400\/30 {
    background-color: rgb(251 191 36 / 0.3);
  }

  .md\:bg-amber-400\/40 {
    background-color: rgb(251 191 36 / 0.4);
  }

  .md\:bg-amber-400\/5 {
    background-color: rgb(251 191 36 / 0.05);
  }

  .md\:bg-amber-400\/50 {
    background-color: rgb(251 191 36 / 0.5);
  }

  .md\:bg-amber-400\/60 {
    background-color: rgb(251 191 36 / 0.6);
  }

  .md\:bg-amber-400\/70 {
    background-color: rgb(251 191 36 / 0.7);
  }

  .md\:bg-amber-400\/80 {
    background-color: rgb(251 191 36 / 0.8);
  }

  .md\:bg-amber-400\/90 {
    background-color: rgb(251 191 36 / 0.9);
  }

  .md\:bg-amber-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 251 235 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-amber-50\/10 {
    background-color: rgb(255 251 235 / 0.1);
  }

  .md\:bg-amber-50\/20 {
    background-color: rgb(255 251 235 / 0.2);
  }

  .md\:bg-amber-50\/30 {
    background-color: rgb(255 251 235 / 0.3);
  }

  .md\:bg-amber-50\/40 {
    background-color: rgb(255 251 235 / 0.4);
  }

  .md\:bg-amber-50\/5 {
    background-color: rgb(255 251 235 / 0.05);
  }

  .md\:bg-amber-50\/50 {
    background-color: rgb(255 251 235 / 0.5);
  }

  .md\:bg-amber-50\/60 {
    background-color: rgb(255 251 235 / 0.6);
  }

  .md\:bg-amber-50\/70 {
    background-color: rgb(255 251 235 / 0.7);
  }

  .md\:bg-amber-50\/80 {
    background-color: rgb(255 251 235 / 0.8);
  }

  .md\:bg-amber-50\/90 {
    background-color: rgb(255 251 235 / 0.9);
  }

  .md\:bg-amber-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(245 158 11 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-amber-500\/10 {
    background-color: rgb(245 158 11 / 0.1);
  }

  .md\:bg-amber-500\/20 {
    background-color: rgb(245 158 11 / 0.2);
  }

  .md\:bg-amber-500\/30 {
    background-color: rgb(245 158 11 / 0.3);
  }

  .md\:bg-amber-500\/40 {
    background-color: rgb(245 158 11 / 0.4);
  }

  .md\:bg-amber-500\/5 {
    background-color: rgb(245 158 11 / 0.05);
  }

  .md\:bg-amber-500\/50 {
    background-color: rgb(245 158 11 / 0.5);
  }

  .md\:bg-amber-500\/60 {
    background-color: rgb(245 158 11 / 0.6);
  }

  .md\:bg-amber-500\/70 {
    background-color: rgb(245 158 11 / 0.7);
  }

  .md\:bg-amber-500\/80 {
    background-color: rgb(245 158 11 / 0.8);
  }

  .md\:bg-amber-500\/90 {
    background-color: rgb(245 158 11 / 0.9);
  }

  .md\:bg-amber-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(217 119 6 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-amber-600\/10 {
    background-color: rgb(217 119 6 / 0.1);
  }

  .md\:bg-amber-600\/20 {
    background-color: rgb(217 119 6 / 0.2);
  }

  .md\:bg-amber-600\/30 {
    background-color: rgb(217 119 6 / 0.3);
  }

  .md\:bg-amber-600\/40 {
    background-color: rgb(217 119 6 / 0.4);
  }

  .md\:bg-amber-600\/5 {
    background-color: rgb(217 119 6 / 0.05);
  }

  .md\:bg-amber-600\/50 {
    background-color: rgb(217 119 6 / 0.5);
  }

  .md\:bg-amber-600\/60 {
    background-color: rgb(217 119 6 / 0.6);
  }

  .md\:bg-amber-600\/70 {
    background-color: rgb(217 119 6 / 0.7);
  }

  .md\:bg-amber-600\/80 {
    background-color: rgb(217 119 6 / 0.8);
  }

  .md\:bg-amber-600\/90 {
    background-color: rgb(217 119 6 / 0.9);
  }

  .md\:bg-amber-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(180 83 9 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-amber-700\/10 {
    background-color: rgb(180 83 9 / 0.1);
  }

  .md\:bg-amber-700\/20 {
    background-color: rgb(180 83 9 / 0.2);
  }

  .md\:bg-amber-700\/30 {
    background-color: rgb(180 83 9 / 0.3);
  }

  .md\:bg-amber-700\/40 {
    background-color: rgb(180 83 9 / 0.4);
  }

  .md\:bg-amber-700\/5 {
    background-color: rgb(180 83 9 / 0.05);
  }

  .md\:bg-amber-700\/50 {
    background-color: rgb(180 83 9 / 0.5);
  }

  .md\:bg-amber-700\/60 {
    background-color: rgb(180 83 9 / 0.6);
  }

  .md\:bg-amber-700\/70 {
    background-color: rgb(180 83 9 / 0.7);
  }

  .md\:bg-amber-700\/80 {
    background-color: rgb(180 83 9 / 0.8);
  }

  .md\:bg-amber-700\/90 {
    background-color: rgb(180 83 9 / 0.9);
  }

  .md\:bg-amber-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(146 64 14 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-amber-800\/10 {
    background-color: rgb(146 64 14 / 0.1);
  }

  .md\:bg-amber-800\/20 {
    background-color: rgb(146 64 14 / 0.2);
  }

  .md\:bg-amber-800\/30 {
    background-color: rgb(146 64 14 / 0.3);
  }

  .md\:bg-amber-800\/40 {
    background-color: rgb(146 64 14 / 0.4);
  }

  .md\:bg-amber-800\/5 {
    background-color: rgb(146 64 14 / 0.05);
  }

  .md\:bg-amber-800\/50 {
    background-color: rgb(146 64 14 / 0.5);
  }

  .md\:bg-amber-800\/60 {
    background-color: rgb(146 64 14 / 0.6);
  }

  .md\:bg-amber-800\/70 {
    background-color: rgb(146 64 14 / 0.7);
  }

  .md\:bg-amber-800\/80 {
    background-color: rgb(146 64 14 / 0.8);
  }

  .md\:bg-amber-800\/90 {
    background-color: rgb(146 64 14 / 0.9);
  }

  .md\:bg-amber-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(120 53 15 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-amber-900\/10 {
    background-color: rgb(120 53 15 / 0.1);
  }

  .md\:bg-amber-900\/20 {
    background-color: rgb(120 53 15 / 0.2);
  }

  .md\:bg-amber-900\/30 {
    background-color: rgb(120 53 15 / 0.3);
  }

  .md\:bg-amber-900\/40 {
    background-color: rgb(120 53 15 / 0.4);
  }

  .md\:bg-amber-900\/5 {
    background-color: rgb(120 53 15 / 0.05);
  }

  .md\:bg-amber-900\/50 {
    background-color: rgb(120 53 15 / 0.5);
  }

  .md\:bg-amber-900\/60 {
    background-color: rgb(120 53 15 / 0.6);
  }

  .md\:bg-amber-900\/70 {
    background-color: rgb(120 53 15 / 0.7);
  }

  .md\:bg-amber-900\/80 {
    background-color: rgb(120 53 15 / 0.8);
  }

  .md\:bg-amber-900\/90 {
    background-color: rgb(120 53 15 / 0.9);
  }

  .md\:bg-amber-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(69 26 3 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-amber-950\/10 {
    background-color: rgb(69 26 3 / 0.1);
  }

  .md\:bg-amber-950\/20 {
    background-color: rgb(69 26 3 / 0.2);
  }

  .md\:bg-amber-950\/30 {
    background-color: rgb(69 26 3 / 0.3);
  }

  .md\:bg-amber-950\/40 {
    background-color: rgb(69 26 3 / 0.4);
  }

  .md\:bg-amber-950\/5 {
    background-color: rgb(69 26 3 / 0.05);
  }

  .md\:bg-amber-950\/50 {
    background-color: rgb(69 26 3 / 0.5);
  }

  .md\:bg-amber-950\/60 {
    background-color: rgb(69 26 3 / 0.6);
  }

  .md\:bg-amber-950\/70 {
    background-color: rgb(69 26 3 / 0.7);
  }

  .md\:bg-amber-950\/80 {
    background-color: rgb(69 26 3 / 0.8);
  }

  .md\:bg-amber-950\/90 {
    background-color: rgb(69 26 3 / 0.9);
  }

  .md\:bg-blue-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-blue-100\/10 {
    background-color: rgb(219 234 254 / 0.1);
  }

  .md\:bg-blue-100\/20 {
    background-color: rgb(219 234 254 / 0.2);
  }

  .md\:bg-blue-100\/30 {
    background-color: rgb(219 234 254 / 0.3);
  }

  .md\:bg-blue-100\/40 {
    background-color: rgb(219 234 254 / 0.4);
  }

  .md\:bg-blue-100\/5 {
    background-color: rgb(219 234 254 / 0.05);
  }

  .md\:bg-blue-100\/50 {
    background-color: rgb(219 234 254 / 0.5);
  }

  .md\:bg-blue-100\/60 {
    background-color: rgb(219 234 254 / 0.6);
  }

  .md\:bg-blue-100\/70 {
    background-color: rgb(219 234 254 / 0.7);
  }

  .md\:bg-blue-100\/80 {
    background-color: rgb(219 234 254 / 0.8);
  }

  .md\:bg-blue-100\/90 {
    background-color: rgb(219 234 254 / 0.9);
  }

  .md\:bg-blue-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(191 219 254 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-blue-200\/10 {
    background-color: rgb(191 219 254 / 0.1);
  }

  .md\:bg-blue-200\/20 {
    background-color: rgb(191 219 254 / 0.2);
  }

  .md\:bg-blue-200\/30 {
    background-color: rgb(191 219 254 / 0.3);
  }

  .md\:bg-blue-200\/40 {
    background-color: rgb(191 219 254 / 0.4);
  }

  .md\:bg-blue-200\/5 {
    background-color: rgb(191 219 254 / 0.05);
  }

  .md\:bg-blue-200\/50 {
    background-color: rgb(191 219 254 / 0.5);
  }

  .md\:bg-blue-200\/60 {
    background-color: rgb(191 219 254 / 0.6);
  }

  .md\:bg-blue-200\/70 {
    background-color: rgb(191 219 254 / 0.7);
  }

  .md\:bg-blue-200\/80 {
    background-color: rgb(191 219 254 / 0.8);
  }

  .md\:bg-blue-200\/90 {
    background-color: rgb(191 219 254 / 0.9);
  }

  .md\:bg-blue-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(147 197 253 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-blue-300\/10 {
    background-color: rgb(147 197 253 / 0.1);
  }

  .md\:bg-blue-300\/20 {
    background-color: rgb(147 197 253 / 0.2);
  }

  .md\:bg-blue-300\/30 {
    background-color: rgb(147 197 253 / 0.3);
  }

  .md\:bg-blue-300\/40 {
    background-color: rgb(147 197 253 / 0.4);
  }

  .md\:bg-blue-300\/5 {
    background-color: rgb(147 197 253 / 0.05);
  }

  .md\:bg-blue-300\/50 {
    background-color: rgb(147 197 253 / 0.5);
  }

  .md\:bg-blue-300\/60 {
    background-color: rgb(147 197 253 / 0.6);
  }

  .md\:bg-blue-300\/70 {
    background-color: rgb(147 197 253 / 0.7);
  }

  .md\:bg-blue-300\/80 {
    background-color: rgb(147 197 253 / 0.8);
  }

  .md\:bg-blue-300\/90 {
    background-color: rgb(147 197 253 / 0.9);
  }

  .md\:bg-blue-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(96 165 250 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-blue-400\/10 {
    background-color: rgb(96 165 250 / 0.1);
  }

  .md\:bg-blue-400\/20 {
    background-color: rgb(96 165 250 / 0.2);
  }

  .md\:bg-blue-400\/30 {
    background-color: rgb(96 165 250 / 0.3);
  }

  .md\:bg-blue-400\/40 {
    background-color: rgb(96 165 250 / 0.4);
  }

  .md\:bg-blue-400\/5 {
    background-color: rgb(96 165 250 / 0.05);
  }

  .md\:bg-blue-400\/50 {
    background-color: rgb(96 165 250 / 0.5);
  }

  .md\:bg-blue-400\/60 {
    background-color: rgb(96 165 250 / 0.6);
  }

  .md\:bg-blue-400\/70 {
    background-color: rgb(96 165 250 / 0.7);
  }

  .md\:bg-blue-400\/80 {
    background-color: rgb(96 165 250 / 0.8);
  }

  .md\:bg-blue-400\/90 {
    background-color: rgb(96 165 250 / 0.9);
  }

  .md\:bg-blue-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-blue-50\/10 {
    background-color: rgb(239 246 255 / 0.1);
  }

  .md\:bg-blue-50\/20 {
    background-color: rgb(239 246 255 / 0.2);
  }

  .md\:bg-blue-50\/30 {
    background-color: rgb(239 246 255 / 0.3);
  }

  .md\:bg-blue-50\/40 {
    background-color: rgb(239 246 255 / 0.4);
  }

  .md\:bg-blue-50\/5 {
    background-color: rgb(239 246 255 / 0.05);
  }

  .md\:bg-blue-50\/50 {
    background-color: rgb(239 246 255 / 0.5);
  }

  .md\:bg-blue-50\/60 {
    background-color: rgb(239 246 255 / 0.6);
  }

  .md\:bg-blue-50\/70 {
    background-color: rgb(239 246 255 / 0.7);
  }

  .md\:bg-blue-50\/80 {
    background-color: rgb(239 246 255 / 0.8);
  }

  .md\:bg-blue-50\/90 {
    background-color: rgb(239 246 255 / 0.9);
  }

  .md\:bg-blue-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-blue-500\/10 {
    background-color: rgb(59 130 246 / 0.1);
  }

  .md\:bg-blue-500\/20 {
    background-color: rgb(59 130 246 / 0.2);
  }

  .md\:bg-blue-500\/30 {
    background-color: rgb(59 130 246 / 0.3);
  }

  .md\:bg-blue-500\/40 {
    background-color: rgb(59 130 246 / 0.4);
  }

  .md\:bg-blue-500\/5 {
    background-color: rgb(59 130 246 / 0.05);
  }

  .md\:bg-blue-500\/50 {
    background-color: rgb(59 130 246 / 0.5);
  }

  .md\:bg-blue-500\/60 {
    background-color: rgb(59 130 246 / 0.6);
  }

  .md\:bg-blue-500\/70 {
    background-color: rgb(59 130 246 / 0.7);
  }

  .md\:bg-blue-500\/80 {
    background-color: rgb(59 130 246 / 0.8);
  }

  .md\:bg-blue-500\/90 {
    background-color: rgb(59 130 246 / 0.9);
  }

  .md\:bg-blue-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-blue-600\/10 {
    background-color: rgb(37 99 235 / 0.1);
  }

  .md\:bg-blue-600\/20 {
    background-color: rgb(37 99 235 / 0.2);
  }

  .md\:bg-blue-600\/30 {
    background-color: rgb(37 99 235 / 0.3);
  }

  .md\:bg-blue-600\/40 {
    background-color: rgb(37 99 235 / 0.4);
  }

  .md\:bg-blue-600\/5 {
    background-color: rgb(37 99 235 / 0.05);
  }

  .md\:bg-blue-600\/50 {
    background-color: rgb(37 99 235 / 0.5);
  }

  .md\:bg-blue-600\/60 {
    background-color: rgb(37 99 235 / 0.6);
  }

  .md\:bg-blue-600\/70 {
    background-color: rgb(37 99 235 / 0.7);
  }

  .md\:bg-blue-600\/80 {
    background-color: rgb(37 99 235 / 0.8);
  }

  .md\:bg-blue-600\/90 {
    background-color: rgb(37 99 235 / 0.9);
  }

  .md\:bg-blue-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-blue-700\/10 {
    background-color: rgb(29 78 216 / 0.1);
  }

  .md\:bg-blue-700\/20 {
    background-color: rgb(29 78 216 / 0.2);
  }

  .md\:bg-blue-700\/30 {
    background-color: rgb(29 78 216 / 0.3);
  }

  .md\:bg-blue-700\/40 {
    background-color: rgb(29 78 216 / 0.4);
  }

  .md\:bg-blue-700\/5 {
    background-color: rgb(29 78 216 / 0.05);
  }

  .md\:bg-blue-700\/50 {
    background-color: rgb(29 78 216 / 0.5);
  }

  .md\:bg-blue-700\/60 {
    background-color: rgb(29 78 216 / 0.6);
  }

  .md\:bg-blue-700\/70 {
    background-color: rgb(29 78 216 / 0.7);
  }

  .md\:bg-blue-700\/80 {
    background-color: rgb(29 78 216 / 0.8);
  }

  .md\:bg-blue-700\/90 {
    background-color: rgb(29 78 216 / 0.9);
  }

  .md\:bg-blue-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(30 64 175 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-blue-800\/10 {
    background-color: rgb(30 64 175 / 0.1);
  }

  .md\:bg-blue-800\/20 {
    background-color: rgb(30 64 175 / 0.2);
  }

  .md\:bg-blue-800\/30 {
    background-color: rgb(30 64 175 / 0.3);
  }

  .md\:bg-blue-800\/40 {
    background-color: rgb(30 64 175 / 0.4);
  }

  .md\:bg-blue-800\/5 {
    background-color: rgb(30 64 175 / 0.05);
  }

  .md\:bg-blue-800\/50 {
    background-color: rgb(30 64 175 / 0.5);
  }

  .md\:bg-blue-800\/60 {
    background-color: rgb(30 64 175 / 0.6);
  }

  .md\:bg-blue-800\/70 {
    background-color: rgb(30 64 175 / 0.7);
  }

  .md\:bg-blue-800\/80 {
    background-color: rgb(30 64 175 / 0.8);
  }

  .md\:bg-blue-800\/90 {
    background-color: rgb(30 64 175 / 0.9);
  }

  .md\:bg-blue-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(30 58 138 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-blue-900\/10 {
    background-color: rgb(30 58 138 / 0.1);
  }

  .md\:bg-blue-900\/20 {
    background-color: rgb(30 58 138 / 0.2);
  }

  .md\:bg-blue-900\/30 {
    background-color: rgb(30 58 138 / 0.3);
  }

  .md\:bg-blue-900\/40 {
    background-color: rgb(30 58 138 / 0.4);
  }

  .md\:bg-blue-900\/5 {
    background-color: rgb(30 58 138 / 0.05);
  }

  .md\:bg-blue-900\/50 {
    background-color: rgb(30 58 138 / 0.5);
  }

  .md\:bg-blue-900\/60 {
    background-color: rgb(30 58 138 / 0.6);
  }

  .md\:bg-blue-900\/70 {
    background-color: rgb(30 58 138 / 0.7);
  }

  .md\:bg-blue-900\/80 {
    background-color: rgb(30 58 138 / 0.8);
  }

  .md\:bg-blue-900\/90 {
    background-color: rgb(30 58 138 / 0.9);
  }

  .md\:bg-blue-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(23 37 84 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-blue-950\/10 {
    background-color: rgb(23 37 84 / 0.1);
  }

  .md\:bg-blue-950\/20 {
    background-color: rgb(23 37 84 / 0.2);
  }

  .md\:bg-blue-950\/30 {
    background-color: rgb(23 37 84 / 0.3);
  }

  .md\:bg-blue-950\/40 {
    background-color: rgb(23 37 84 / 0.4);
  }

  .md\:bg-blue-950\/5 {
    background-color: rgb(23 37 84 / 0.05);
  }

  .md\:bg-blue-950\/50 {
    background-color: rgb(23 37 84 / 0.5);
  }

  .md\:bg-blue-950\/60 {
    background-color: rgb(23 37 84 / 0.6);
  }

  .md\:bg-blue-950\/70 {
    background-color: rgb(23 37 84 / 0.7);
  }

  .md\:bg-blue-950\/80 {
    background-color: rgb(23 37 84 / 0.8);
  }

  .md\:bg-blue-950\/90 {
    background-color: rgb(23 37 84 / 0.9);
  }

  .md\:bg-cyan-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(207 250 254 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-cyan-100\/10 {
    background-color: rgb(207 250 254 / 0.1);
  }

  .md\:bg-cyan-100\/20 {
    background-color: rgb(207 250 254 / 0.2);
  }

  .md\:bg-cyan-100\/30 {
    background-color: rgb(207 250 254 / 0.3);
  }

  .md\:bg-cyan-100\/40 {
    background-color: rgb(207 250 254 / 0.4);
  }

  .md\:bg-cyan-100\/5 {
    background-color: rgb(207 250 254 / 0.05);
  }

  .md\:bg-cyan-100\/50 {
    background-color: rgb(207 250 254 / 0.5);
  }

  .md\:bg-cyan-100\/60 {
    background-color: rgb(207 250 254 / 0.6);
  }

  .md\:bg-cyan-100\/70 {
    background-color: rgb(207 250 254 / 0.7);
  }

  .md\:bg-cyan-100\/80 {
    background-color: rgb(207 250 254 / 0.8);
  }

  .md\:bg-cyan-100\/90 {
    background-color: rgb(207 250 254 / 0.9);
  }

  .md\:bg-cyan-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(165 243 252 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-cyan-200\/10 {
    background-color: rgb(165 243 252 / 0.1);
  }

  .md\:bg-cyan-200\/20 {
    background-color: rgb(165 243 252 / 0.2);
  }

  .md\:bg-cyan-200\/30 {
    background-color: rgb(165 243 252 / 0.3);
  }

  .md\:bg-cyan-200\/40 {
    background-color: rgb(165 243 252 / 0.4);
  }

  .md\:bg-cyan-200\/5 {
    background-color: rgb(165 243 252 / 0.05);
  }

  .md\:bg-cyan-200\/50 {
    background-color: rgb(165 243 252 / 0.5);
  }

  .md\:bg-cyan-200\/60 {
    background-color: rgb(165 243 252 / 0.6);
  }

  .md\:bg-cyan-200\/70 {
    background-color: rgb(165 243 252 / 0.7);
  }

  .md\:bg-cyan-200\/80 {
    background-color: rgb(165 243 252 / 0.8);
  }

  .md\:bg-cyan-200\/90 {
    background-color: rgb(165 243 252 / 0.9);
  }

  .md\:bg-cyan-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(103 232 249 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-cyan-300\/10 {
    background-color: rgb(103 232 249 / 0.1);
  }

  .md\:bg-cyan-300\/20 {
    background-color: rgb(103 232 249 / 0.2);
  }

  .md\:bg-cyan-300\/30 {
    background-color: rgb(103 232 249 / 0.3);
  }

  .md\:bg-cyan-300\/40 {
    background-color: rgb(103 232 249 / 0.4);
  }

  .md\:bg-cyan-300\/5 {
    background-color: rgb(103 232 249 / 0.05);
  }

  .md\:bg-cyan-300\/50 {
    background-color: rgb(103 232 249 / 0.5);
  }

  .md\:bg-cyan-300\/60 {
    background-color: rgb(103 232 249 / 0.6);
  }

  .md\:bg-cyan-300\/70 {
    background-color: rgb(103 232 249 / 0.7);
  }

  .md\:bg-cyan-300\/80 {
    background-color: rgb(103 232 249 / 0.8);
  }

  .md\:bg-cyan-300\/90 {
    background-color: rgb(103 232 249 / 0.9);
  }

  .md\:bg-cyan-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(34 211 238 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-cyan-400\/10 {
    background-color: rgb(34 211 238 / 0.1);
  }

  .md\:bg-cyan-400\/20 {
    background-color: rgb(34 211 238 / 0.2);
  }

  .md\:bg-cyan-400\/30 {
    background-color: rgb(34 211 238 / 0.3);
  }

  .md\:bg-cyan-400\/40 {
    background-color: rgb(34 211 238 / 0.4);
  }

  .md\:bg-cyan-400\/5 {
    background-color: rgb(34 211 238 / 0.05);
  }

  .md\:bg-cyan-400\/50 {
    background-color: rgb(34 211 238 / 0.5);
  }

  .md\:bg-cyan-400\/60 {
    background-color: rgb(34 211 238 / 0.6);
  }

  .md\:bg-cyan-400\/70 {
    background-color: rgb(34 211 238 / 0.7);
  }

  .md\:bg-cyan-400\/80 {
    background-color: rgb(34 211 238 / 0.8);
  }

  .md\:bg-cyan-400\/90 {
    background-color: rgb(34 211 238 / 0.9);
  }

  .md\:bg-cyan-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(236 254 255 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-cyan-50\/10 {
    background-color: rgb(236 254 255 / 0.1);
  }

  .md\:bg-cyan-50\/20 {
    background-color: rgb(236 254 255 / 0.2);
  }

  .md\:bg-cyan-50\/30 {
    background-color: rgb(236 254 255 / 0.3);
  }

  .md\:bg-cyan-50\/40 {
    background-color: rgb(236 254 255 / 0.4);
  }

  .md\:bg-cyan-50\/5 {
    background-color: rgb(236 254 255 / 0.05);
  }

  .md\:bg-cyan-50\/50 {
    background-color: rgb(236 254 255 / 0.5);
  }

  .md\:bg-cyan-50\/60 {
    background-color: rgb(236 254 255 / 0.6);
  }

  .md\:bg-cyan-50\/70 {
    background-color: rgb(236 254 255 / 0.7);
  }

  .md\:bg-cyan-50\/80 {
    background-color: rgb(236 254 255 / 0.8);
  }

  .md\:bg-cyan-50\/90 {
    background-color: rgb(236 254 255 / 0.9);
  }

  .md\:bg-cyan-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(6 182 212 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-cyan-500\/10 {
    background-color: rgb(6 182 212 / 0.1);
  }

  .md\:bg-cyan-500\/20 {
    background-color: rgb(6 182 212 / 0.2);
  }

  .md\:bg-cyan-500\/30 {
    background-color: rgb(6 182 212 / 0.3);
  }

  .md\:bg-cyan-500\/40 {
    background-color: rgb(6 182 212 / 0.4);
  }

  .md\:bg-cyan-500\/5 {
    background-color: rgb(6 182 212 / 0.05);
  }

  .md\:bg-cyan-500\/50 {
    background-color: rgb(6 182 212 / 0.5);
  }

  .md\:bg-cyan-500\/60 {
    background-color: rgb(6 182 212 / 0.6);
  }

  .md\:bg-cyan-500\/70 {
    background-color: rgb(6 182 212 / 0.7);
  }

  .md\:bg-cyan-500\/80 {
    background-color: rgb(6 182 212 / 0.8);
  }

  .md\:bg-cyan-500\/90 {
    background-color: rgb(6 182 212 / 0.9);
  }

  .md\:bg-cyan-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(8 145 178 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-cyan-600\/10 {
    background-color: rgb(8 145 178 / 0.1);
  }

  .md\:bg-cyan-600\/20 {
    background-color: rgb(8 145 178 / 0.2);
  }

  .md\:bg-cyan-600\/30 {
    background-color: rgb(8 145 178 / 0.3);
  }

  .md\:bg-cyan-600\/40 {
    background-color: rgb(8 145 178 / 0.4);
  }

  .md\:bg-cyan-600\/5 {
    background-color: rgb(8 145 178 / 0.05);
  }

  .md\:bg-cyan-600\/50 {
    background-color: rgb(8 145 178 / 0.5);
  }

  .md\:bg-cyan-600\/60 {
    background-color: rgb(8 145 178 / 0.6);
  }

  .md\:bg-cyan-600\/70 {
    background-color: rgb(8 145 178 / 0.7);
  }

  .md\:bg-cyan-600\/80 {
    background-color: rgb(8 145 178 / 0.8);
  }

  .md\:bg-cyan-600\/90 {
    background-color: rgb(8 145 178 / 0.9);
  }

  .md\:bg-cyan-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(14 116 144 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-cyan-700\/10 {
    background-color: rgb(14 116 144 / 0.1);
  }

  .md\:bg-cyan-700\/20 {
    background-color: rgb(14 116 144 / 0.2);
  }

  .md\:bg-cyan-700\/30 {
    background-color: rgb(14 116 144 / 0.3);
  }

  .md\:bg-cyan-700\/40 {
    background-color: rgb(14 116 144 / 0.4);
  }

  .md\:bg-cyan-700\/5 {
    background-color: rgb(14 116 144 / 0.05);
  }

  .md\:bg-cyan-700\/50 {
    background-color: rgb(14 116 144 / 0.5);
  }

  .md\:bg-cyan-700\/60 {
    background-color: rgb(14 116 144 / 0.6);
  }

  .md\:bg-cyan-700\/70 {
    background-color: rgb(14 116 144 / 0.7);
  }

  .md\:bg-cyan-700\/80 {
    background-color: rgb(14 116 144 / 0.8);
  }

  .md\:bg-cyan-700\/90 {
    background-color: rgb(14 116 144 / 0.9);
  }

  .md\:bg-cyan-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(21 94 117 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-cyan-800\/10 {
    background-color: rgb(21 94 117 / 0.1);
  }

  .md\:bg-cyan-800\/20 {
    background-color: rgb(21 94 117 / 0.2);
  }

  .md\:bg-cyan-800\/30 {
    background-color: rgb(21 94 117 / 0.3);
  }

  .md\:bg-cyan-800\/40 {
    background-color: rgb(21 94 117 / 0.4);
  }

  .md\:bg-cyan-800\/5 {
    background-color: rgb(21 94 117 / 0.05);
  }

  .md\:bg-cyan-800\/50 {
    background-color: rgb(21 94 117 / 0.5);
  }

  .md\:bg-cyan-800\/60 {
    background-color: rgb(21 94 117 / 0.6);
  }

  .md\:bg-cyan-800\/70 {
    background-color: rgb(21 94 117 / 0.7);
  }

  .md\:bg-cyan-800\/80 {
    background-color: rgb(21 94 117 / 0.8);
  }

  .md\:bg-cyan-800\/90 {
    background-color: rgb(21 94 117 / 0.9);
  }

  .md\:bg-cyan-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(22 78 99 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-cyan-900\/10 {
    background-color: rgb(22 78 99 / 0.1);
  }

  .md\:bg-cyan-900\/20 {
    background-color: rgb(22 78 99 / 0.2);
  }

  .md\:bg-cyan-900\/30 {
    background-color: rgb(22 78 99 / 0.3);
  }

  .md\:bg-cyan-900\/40 {
    background-color: rgb(22 78 99 / 0.4);
  }

  .md\:bg-cyan-900\/5 {
    background-color: rgb(22 78 99 / 0.05);
  }

  .md\:bg-cyan-900\/50 {
    background-color: rgb(22 78 99 / 0.5);
  }

  .md\:bg-cyan-900\/60 {
    background-color: rgb(22 78 99 / 0.6);
  }

  .md\:bg-cyan-900\/70 {
    background-color: rgb(22 78 99 / 0.7);
  }

  .md\:bg-cyan-900\/80 {
    background-color: rgb(22 78 99 / 0.8);
  }

  .md\:bg-cyan-900\/90 {
    background-color: rgb(22 78 99 / 0.9);
  }

  .md\:bg-cyan-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(8 51 68 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-cyan-950\/10 {
    background-color: rgb(8 51 68 / 0.1);
  }

  .md\:bg-cyan-950\/20 {
    background-color: rgb(8 51 68 / 0.2);
  }

  .md\:bg-cyan-950\/30 {
    background-color: rgb(8 51 68 / 0.3);
  }

  .md\:bg-cyan-950\/40 {
    background-color: rgb(8 51 68 / 0.4);
  }

  .md\:bg-cyan-950\/5 {
    background-color: rgb(8 51 68 / 0.05);
  }

  .md\:bg-cyan-950\/50 {
    background-color: rgb(8 51 68 / 0.5);
  }

  .md\:bg-cyan-950\/60 {
    background-color: rgb(8 51 68 / 0.6);
  }

  .md\:bg-cyan-950\/70 {
    background-color: rgb(8 51 68 / 0.7);
  }

  .md\:bg-cyan-950\/80 {
    background-color: rgb(8 51 68 / 0.8);
  }

  .md\:bg-cyan-950\/90 {
    background-color: rgb(8 51 68 / 0.9);
  }

  .md\:bg-emerald-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(209 250 229 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-emerald-100\/10 {
    background-color: rgb(209 250 229 / 0.1);
  }

  .md\:bg-emerald-100\/20 {
    background-color: rgb(209 250 229 / 0.2);
  }

  .md\:bg-emerald-100\/30 {
    background-color: rgb(209 250 229 / 0.3);
  }

  .md\:bg-emerald-100\/40 {
    background-color: rgb(209 250 229 / 0.4);
  }

  .md\:bg-emerald-100\/5 {
    background-color: rgb(209 250 229 / 0.05);
  }

  .md\:bg-emerald-100\/50 {
    background-color: rgb(209 250 229 / 0.5);
  }

  .md\:bg-emerald-100\/60 {
    background-color: rgb(209 250 229 / 0.6);
  }

  .md\:bg-emerald-100\/70 {
    background-color: rgb(209 250 229 / 0.7);
  }

  .md\:bg-emerald-100\/80 {
    background-color: rgb(209 250 229 / 0.8);
  }

  .md\:bg-emerald-100\/90 {
    background-color: rgb(209 250 229 / 0.9);
  }

  .md\:bg-emerald-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(167 243 208 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-emerald-200\/10 {
    background-color: rgb(167 243 208 / 0.1);
  }

  .md\:bg-emerald-200\/20 {
    background-color: rgb(167 243 208 / 0.2);
  }

  .md\:bg-emerald-200\/30 {
    background-color: rgb(167 243 208 / 0.3);
  }

  .md\:bg-emerald-200\/40 {
    background-color: rgb(167 243 208 / 0.4);
  }

  .md\:bg-emerald-200\/5 {
    background-color: rgb(167 243 208 / 0.05);
  }

  .md\:bg-emerald-200\/50 {
    background-color: rgb(167 243 208 / 0.5);
  }

  .md\:bg-emerald-200\/60 {
    background-color: rgb(167 243 208 / 0.6);
  }

  .md\:bg-emerald-200\/70 {
    background-color: rgb(167 243 208 / 0.7);
  }

  .md\:bg-emerald-200\/80 {
    background-color: rgb(167 243 208 / 0.8);
  }

  .md\:bg-emerald-200\/90 {
    background-color: rgb(167 243 208 / 0.9);
  }

  .md\:bg-emerald-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(110 231 183 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-emerald-300\/10 {
    background-color: rgb(110 231 183 / 0.1);
  }

  .md\:bg-emerald-300\/20 {
    background-color: rgb(110 231 183 / 0.2);
  }

  .md\:bg-emerald-300\/30 {
    background-color: rgb(110 231 183 / 0.3);
  }

  .md\:bg-emerald-300\/40 {
    background-color: rgb(110 231 183 / 0.4);
  }

  .md\:bg-emerald-300\/5 {
    background-color: rgb(110 231 183 / 0.05);
  }

  .md\:bg-emerald-300\/50 {
    background-color: rgb(110 231 183 / 0.5);
  }

  .md\:bg-emerald-300\/60 {
    background-color: rgb(110 231 183 / 0.6);
  }

  .md\:bg-emerald-300\/70 {
    background-color: rgb(110 231 183 / 0.7);
  }

  .md\:bg-emerald-300\/80 {
    background-color: rgb(110 231 183 / 0.8);
  }

  .md\:bg-emerald-300\/90 {
    background-color: rgb(110 231 183 / 0.9);
  }

  .md\:bg-emerald-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(52 211 153 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-emerald-400\/10 {
    background-color: rgb(52 211 153 / 0.1);
  }

  .md\:bg-emerald-400\/20 {
    background-color: rgb(52 211 153 / 0.2);
  }

  .md\:bg-emerald-400\/30 {
    background-color: rgb(52 211 153 / 0.3);
  }

  .md\:bg-emerald-400\/40 {
    background-color: rgb(52 211 153 / 0.4);
  }

  .md\:bg-emerald-400\/5 {
    background-color: rgb(52 211 153 / 0.05);
  }

  .md\:bg-emerald-400\/50 {
    background-color: rgb(52 211 153 / 0.5);
  }

  .md\:bg-emerald-400\/60 {
    background-color: rgb(52 211 153 / 0.6);
  }

  .md\:bg-emerald-400\/70 {
    background-color: rgb(52 211 153 / 0.7);
  }

  .md\:bg-emerald-400\/80 {
    background-color: rgb(52 211 153 / 0.8);
  }

  .md\:bg-emerald-400\/90 {
    background-color: rgb(52 211 153 / 0.9);
  }

  .md\:bg-emerald-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(236 253 245 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-emerald-50\/10 {
    background-color: rgb(236 253 245 / 0.1);
  }

  .md\:bg-emerald-50\/20 {
    background-color: rgb(236 253 245 / 0.2);
  }

  .md\:bg-emerald-50\/30 {
    background-color: rgb(236 253 245 / 0.3);
  }

  .md\:bg-emerald-50\/40 {
    background-color: rgb(236 253 245 / 0.4);
  }

  .md\:bg-emerald-50\/5 {
    background-color: rgb(236 253 245 / 0.05);
  }

  .md\:bg-emerald-50\/50 {
    background-color: rgb(236 253 245 / 0.5);
  }

  .md\:bg-emerald-50\/60 {
    background-color: rgb(236 253 245 / 0.6);
  }

  .md\:bg-emerald-50\/70 {
    background-color: rgb(236 253 245 / 0.7);
  }

  .md\:bg-emerald-50\/80 {
    background-color: rgb(236 253 245 / 0.8);
  }

  .md\:bg-emerald-50\/90 {
    background-color: rgb(236 253 245 / 0.9);
  }

  .md\:bg-emerald-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(16 185 129 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-emerald-500\/10 {
    background-color: rgb(16 185 129 / 0.1);
  }

  .md\:bg-emerald-500\/20 {
    background-color: rgb(16 185 129 / 0.2);
  }

  .md\:bg-emerald-500\/30 {
    background-color: rgb(16 185 129 / 0.3);
  }

  .md\:bg-emerald-500\/40 {
    background-color: rgb(16 185 129 / 0.4);
  }

  .md\:bg-emerald-500\/5 {
    background-color: rgb(16 185 129 / 0.05);
  }

  .md\:bg-emerald-500\/50 {
    background-color: rgb(16 185 129 / 0.5);
  }

  .md\:bg-emerald-500\/60 {
    background-color: rgb(16 185 129 / 0.6);
  }

  .md\:bg-emerald-500\/70 {
    background-color: rgb(16 185 129 / 0.7);
  }

  .md\:bg-emerald-500\/80 {
    background-color: rgb(16 185 129 / 0.8);
  }

  .md\:bg-emerald-500\/90 {
    background-color: rgb(16 185 129 / 0.9);
  }

  .md\:bg-emerald-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(5 150 105 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-emerald-600\/10 {
    background-color: rgb(5 150 105 / 0.1);
  }

  .md\:bg-emerald-600\/20 {
    background-color: rgb(5 150 105 / 0.2);
  }

  .md\:bg-emerald-600\/30 {
    background-color: rgb(5 150 105 / 0.3);
  }

  .md\:bg-emerald-600\/40 {
    background-color: rgb(5 150 105 / 0.4);
  }

  .md\:bg-emerald-600\/5 {
    background-color: rgb(5 150 105 / 0.05);
  }

  .md\:bg-emerald-600\/50 {
    background-color: rgb(5 150 105 / 0.5);
  }

  .md\:bg-emerald-600\/60 {
    background-color: rgb(5 150 105 / 0.6);
  }

  .md\:bg-emerald-600\/70 {
    background-color: rgb(5 150 105 / 0.7);
  }

  .md\:bg-emerald-600\/80 {
    background-color: rgb(5 150 105 / 0.8);
  }

  .md\:bg-emerald-600\/90 {
    background-color: rgb(5 150 105 / 0.9);
  }

  .md\:bg-emerald-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(4 120 87 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-emerald-700\/10 {
    background-color: rgb(4 120 87 / 0.1);
  }

  .md\:bg-emerald-700\/20 {
    background-color: rgb(4 120 87 / 0.2);
  }

  .md\:bg-emerald-700\/30 {
    background-color: rgb(4 120 87 / 0.3);
  }

  .md\:bg-emerald-700\/40 {
    background-color: rgb(4 120 87 / 0.4);
  }

  .md\:bg-emerald-700\/5 {
    background-color: rgb(4 120 87 / 0.05);
  }

  .md\:bg-emerald-700\/50 {
    background-color: rgb(4 120 87 / 0.5);
  }

  .md\:bg-emerald-700\/60 {
    background-color: rgb(4 120 87 / 0.6);
  }

  .md\:bg-emerald-700\/70 {
    background-color: rgb(4 120 87 / 0.7);
  }

  .md\:bg-emerald-700\/80 {
    background-color: rgb(4 120 87 / 0.8);
  }

  .md\:bg-emerald-700\/90 {
    background-color: rgb(4 120 87 / 0.9);
  }

  .md\:bg-emerald-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(6 95 70 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-emerald-800\/10 {
    background-color: rgb(6 95 70 / 0.1);
  }

  .md\:bg-emerald-800\/20 {
    background-color: rgb(6 95 70 / 0.2);
  }

  .md\:bg-emerald-800\/30 {
    background-color: rgb(6 95 70 / 0.3);
  }

  .md\:bg-emerald-800\/40 {
    background-color: rgb(6 95 70 / 0.4);
  }

  .md\:bg-emerald-800\/5 {
    background-color: rgb(6 95 70 / 0.05);
  }

  .md\:bg-emerald-800\/50 {
    background-color: rgb(6 95 70 / 0.5);
  }

  .md\:bg-emerald-800\/60 {
    background-color: rgb(6 95 70 / 0.6);
  }

  .md\:bg-emerald-800\/70 {
    background-color: rgb(6 95 70 / 0.7);
  }

  .md\:bg-emerald-800\/80 {
    background-color: rgb(6 95 70 / 0.8);
  }

  .md\:bg-emerald-800\/90 {
    background-color: rgb(6 95 70 / 0.9);
  }

  .md\:bg-emerald-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(6 78 59 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-emerald-900\/10 {
    background-color: rgb(6 78 59 / 0.1);
  }

  .md\:bg-emerald-900\/20 {
    background-color: rgb(6 78 59 / 0.2);
  }

  .md\:bg-emerald-900\/30 {
    background-color: rgb(6 78 59 / 0.3);
  }

  .md\:bg-emerald-900\/40 {
    background-color: rgb(6 78 59 / 0.4);
  }

  .md\:bg-emerald-900\/5 {
    background-color: rgb(6 78 59 / 0.05);
  }

  .md\:bg-emerald-900\/50 {
    background-color: rgb(6 78 59 / 0.5);
  }

  .md\:bg-emerald-900\/60 {
    background-color: rgb(6 78 59 / 0.6);
  }

  .md\:bg-emerald-900\/70 {
    background-color: rgb(6 78 59 / 0.7);
  }

  .md\:bg-emerald-900\/80 {
    background-color: rgb(6 78 59 / 0.8);
  }

  .md\:bg-emerald-900\/90 {
    background-color: rgb(6 78 59 / 0.9);
  }

  .md\:bg-emerald-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(2 44 34 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-emerald-950\/10 {
    background-color: rgb(2 44 34 / 0.1);
  }

  .md\:bg-emerald-950\/20 {
    background-color: rgb(2 44 34 / 0.2);
  }

  .md\:bg-emerald-950\/30 {
    background-color: rgb(2 44 34 / 0.3);
  }

  .md\:bg-emerald-950\/40 {
    background-color: rgb(2 44 34 / 0.4);
  }

  .md\:bg-emerald-950\/5 {
    background-color: rgb(2 44 34 / 0.05);
  }

  .md\:bg-emerald-950\/50 {
    background-color: rgb(2 44 34 / 0.5);
  }

  .md\:bg-emerald-950\/60 {
    background-color: rgb(2 44 34 / 0.6);
  }

  .md\:bg-emerald-950\/70 {
    background-color: rgb(2 44 34 / 0.7);
  }

  .md\:bg-emerald-950\/80 {
    background-color: rgb(2 44 34 / 0.8);
  }

  .md\:bg-emerald-950\/90 {
    background-color: rgb(2 44 34 / 0.9);
  }

  .md\:bg-fuchsia-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 232 255 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-fuchsia-100\/10 {
    background-color: rgb(250 232 255 / 0.1);
  }

  .md\:bg-fuchsia-100\/20 {
    background-color: rgb(250 232 255 / 0.2);
  }

  .md\:bg-fuchsia-100\/30 {
    background-color: rgb(250 232 255 / 0.3);
  }

  .md\:bg-fuchsia-100\/40 {
    background-color: rgb(250 232 255 / 0.4);
  }

  .md\:bg-fuchsia-100\/5 {
    background-color: rgb(250 232 255 / 0.05);
  }

  .md\:bg-fuchsia-100\/50 {
    background-color: rgb(250 232 255 / 0.5);
  }

  .md\:bg-fuchsia-100\/60 {
    background-color: rgb(250 232 255 / 0.6);
  }

  .md\:bg-fuchsia-100\/70 {
    background-color: rgb(250 232 255 / 0.7);
  }

  .md\:bg-fuchsia-100\/80 {
    background-color: rgb(250 232 255 / 0.8);
  }

  .md\:bg-fuchsia-100\/90 {
    background-color: rgb(250 232 255 / 0.9);
  }

  .md\:bg-fuchsia-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(245 208 254 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-fuchsia-200\/10 {
    background-color: rgb(245 208 254 / 0.1);
  }

  .md\:bg-fuchsia-200\/20 {
    background-color: rgb(245 208 254 / 0.2);
  }

  .md\:bg-fuchsia-200\/30 {
    background-color: rgb(245 208 254 / 0.3);
  }

  .md\:bg-fuchsia-200\/40 {
    background-color: rgb(245 208 254 / 0.4);
  }

  .md\:bg-fuchsia-200\/5 {
    background-color: rgb(245 208 254 / 0.05);
  }

  .md\:bg-fuchsia-200\/50 {
    background-color: rgb(245 208 254 / 0.5);
  }

  .md\:bg-fuchsia-200\/60 {
    background-color: rgb(245 208 254 / 0.6);
  }

  .md\:bg-fuchsia-200\/70 {
    background-color: rgb(245 208 254 / 0.7);
  }

  .md\:bg-fuchsia-200\/80 {
    background-color: rgb(245 208 254 / 0.8);
  }

  .md\:bg-fuchsia-200\/90 {
    background-color: rgb(245 208 254 / 0.9);
  }

  .md\:bg-fuchsia-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(240 171 252 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-fuchsia-300\/10 {
    background-color: rgb(240 171 252 / 0.1);
  }

  .md\:bg-fuchsia-300\/20 {
    background-color: rgb(240 171 252 / 0.2);
  }

  .md\:bg-fuchsia-300\/30 {
    background-color: rgb(240 171 252 / 0.3);
  }

  .md\:bg-fuchsia-300\/40 {
    background-color: rgb(240 171 252 / 0.4);
  }

  .md\:bg-fuchsia-300\/5 {
    background-color: rgb(240 171 252 / 0.05);
  }

  .md\:bg-fuchsia-300\/50 {
    background-color: rgb(240 171 252 / 0.5);
  }

  .md\:bg-fuchsia-300\/60 {
    background-color: rgb(240 171 252 / 0.6);
  }

  .md\:bg-fuchsia-300\/70 {
    background-color: rgb(240 171 252 / 0.7);
  }

  .md\:bg-fuchsia-300\/80 {
    background-color: rgb(240 171 252 / 0.8);
  }

  .md\:bg-fuchsia-300\/90 {
    background-color: rgb(240 171 252 / 0.9);
  }

  .md\:bg-fuchsia-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(232 121 249 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-fuchsia-400\/10 {
    background-color: rgb(232 121 249 / 0.1);
  }

  .md\:bg-fuchsia-400\/20 {
    background-color: rgb(232 121 249 / 0.2);
  }

  .md\:bg-fuchsia-400\/30 {
    background-color: rgb(232 121 249 / 0.3);
  }

  .md\:bg-fuchsia-400\/40 {
    background-color: rgb(232 121 249 / 0.4);
  }

  .md\:bg-fuchsia-400\/5 {
    background-color: rgb(232 121 249 / 0.05);
  }

  .md\:bg-fuchsia-400\/50 {
    background-color: rgb(232 121 249 / 0.5);
  }

  .md\:bg-fuchsia-400\/60 {
    background-color: rgb(232 121 249 / 0.6);
  }

  .md\:bg-fuchsia-400\/70 {
    background-color: rgb(232 121 249 / 0.7);
  }

  .md\:bg-fuchsia-400\/80 {
    background-color: rgb(232 121 249 / 0.8);
  }

  .md\:bg-fuchsia-400\/90 {
    background-color: rgb(232 121 249 / 0.9);
  }

  .md\:bg-fuchsia-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(253 244 255 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-fuchsia-50\/10 {
    background-color: rgb(253 244 255 / 0.1);
  }

  .md\:bg-fuchsia-50\/20 {
    background-color: rgb(253 244 255 / 0.2);
  }

  .md\:bg-fuchsia-50\/30 {
    background-color: rgb(253 244 255 / 0.3);
  }

  .md\:bg-fuchsia-50\/40 {
    background-color: rgb(253 244 255 / 0.4);
  }

  .md\:bg-fuchsia-50\/5 {
    background-color: rgb(253 244 255 / 0.05);
  }

  .md\:bg-fuchsia-50\/50 {
    background-color: rgb(253 244 255 / 0.5);
  }

  .md\:bg-fuchsia-50\/60 {
    background-color: rgb(253 244 255 / 0.6);
  }

  .md\:bg-fuchsia-50\/70 {
    background-color: rgb(253 244 255 / 0.7);
  }

  .md\:bg-fuchsia-50\/80 {
    background-color: rgb(253 244 255 / 0.8);
  }

  .md\:bg-fuchsia-50\/90 {
    background-color: rgb(253 244 255 / 0.9);
  }

  .md\:bg-fuchsia-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(217 70 239 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-fuchsia-500\/10 {
    background-color: rgb(217 70 239 / 0.1);
  }

  .md\:bg-fuchsia-500\/20 {
    background-color: rgb(217 70 239 / 0.2);
  }

  .md\:bg-fuchsia-500\/30 {
    background-color: rgb(217 70 239 / 0.3);
  }

  .md\:bg-fuchsia-500\/40 {
    background-color: rgb(217 70 239 / 0.4);
  }

  .md\:bg-fuchsia-500\/5 {
    background-color: rgb(217 70 239 / 0.05);
  }

  .md\:bg-fuchsia-500\/50 {
    background-color: rgb(217 70 239 / 0.5);
  }

  .md\:bg-fuchsia-500\/60 {
    background-color: rgb(217 70 239 / 0.6);
  }

  .md\:bg-fuchsia-500\/70 {
    background-color: rgb(217 70 239 / 0.7);
  }

  .md\:bg-fuchsia-500\/80 {
    background-color: rgb(217 70 239 / 0.8);
  }

  .md\:bg-fuchsia-500\/90 {
    background-color: rgb(217 70 239 / 0.9);
  }

  .md\:bg-fuchsia-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(192 38 211 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-fuchsia-600\/10 {
    background-color: rgb(192 38 211 / 0.1);
  }

  .md\:bg-fuchsia-600\/20 {
    background-color: rgb(192 38 211 / 0.2);
  }

  .md\:bg-fuchsia-600\/30 {
    background-color: rgb(192 38 211 / 0.3);
  }

  .md\:bg-fuchsia-600\/40 {
    background-color: rgb(192 38 211 / 0.4);
  }

  .md\:bg-fuchsia-600\/5 {
    background-color: rgb(192 38 211 / 0.05);
  }

  .md\:bg-fuchsia-600\/50 {
    background-color: rgb(192 38 211 / 0.5);
  }

  .md\:bg-fuchsia-600\/60 {
    background-color: rgb(192 38 211 / 0.6);
  }

  .md\:bg-fuchsia-600\/70 {
    background-color: rgb(192 38 211 / 0.7);
  }

  .md\:bg-fuchsia-600\/80 {
    background-color: rgb(192 38 211 / 0.8);
  }

  .md\:bg-fuchsia-600\/90 {
    background-color: rgb(192 38 211 / 0.9);
  }

  .md\:bg-fuchsia-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(162 28 175 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-fuchsia-700\/10 {
    background-color: rgb(162 28 175 / 0.1);
  }

  .md\:bg-fuchsia-700\/20 {
    background-color: rgb(162 28 175 / 0.2);
  }

  .md\:bg-fuchsia-700\/30 {
    background-color: rgb(162 28 175 / 0.3);
  }

  .md\:bg-fuchsia-700\/40 {
    background-color: rgb(162 28 175 / 0.4);
  }

  .md\:bg-fuchsia-700\/5 {
    background-color: rgb(162 28 175 / 0.05);
  }

  .md\:bg-fuchsia-700\/50 {
    background-color: rgb(162 28 175 / 0.5);
  }

  .md\:bg-fuchsia-700\/60 {
    background-color: rgb(162 28 175 / 0.6);
  }

  .md\:bg-fuchsia-700\/70 {
    background-color: rgb(162 28 175 / 0.7);
  }

  .md\:bg-fuchsia-700\/80 {
    background-color: rgb(162 28 175 / 0.8);
  }

  .md\:bg-fuchsia-700\/90 {
    background-color: rgb(162 28 175 / 0.9);
  }

  .md\:bg-fuchsia-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(134 25 143 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-fuchsia-800\/10 {
    background-color: rgb(134 25 143 / 0.1);
  }

  .md\:bg-fuchsia-800\/20 {
    background-color: rgb(134 25 143 / 0.2);
  }

  .md\:bg-fuchsia-800\/30 {
    background-color: rgb(134 25 143 / 0.3);
  }

  .md\:bg-fuchsia-800\/40 {
    background-color: rgb(134 25 143 / 0.4);
  }

  .md\:bg-fuchsia-800\/5 {
    background-color: rgb(134 25 143 / 0.05);
  }

  .md\:bg-fuchsia-800\/50 {
    background-color: rgb(134 25 143 / 0.5);
  }

  .md\:bg-fuchsia-800\/60 {
    background-color: rgb(134 25 143 / 0.6);
  }

  .md\:bg-fuchsia-800\/70 {
    background-color: rgb(134 25 143 / 0.7);
  }

  .md\:bg-fuchsia-800\/80 {
    background-color: rgb(134 25 143 / 0.8);
  }

  .md\:bg-fuchsia-800\/90 {
    background-color: rgb(134 25 143 / 0.9);
  }

  .md\:bg-fuchsia-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(112 26 117 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-fuchsia-900\/10 {
    background-color: rgb(112 26 117 / 0.1);
  }

  .md\:bg-fuchsia-900\/20 {
    background-color: rgb(112 26 117 / 0.2);
  }

  .md\:bg-fuchsia-900\/30 {
    background-color: rgb(112 26 117 / 0.3);
  }

  .md\:bg-fuchsia-900\/40 {
    background-color: rgb(112 26 117 / 0.4);
  }

  .md\:bg-fuchsia-900\/5 {
    background-color: rgb(112 26 117 / 0.05);
  }

  .md\:bg-fuchsia-900\/50 {
    background-color: rgb(112 26 117 / 0.5);
  }

  .md\:bg-fuchsia-900\/60 {
    background-color: rgb(112 26 117 / 0.6);
  }

  .md\:bg-fuchsia-900\/70 {
    background-color: rgb(112 26 117 / 0.7);
  }

  .md\:bg-fuchsia-900\/80 {
    background-color: rgb(112 26 117 / 0.8);
  }

  .md\:bg-fuchsia-900\/90 {
    background-color: rgb(112 26 117 / 0.9);
  }

  .md\:bg-fuchsia-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(74 4 78 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-fuchsia-950\/10 {
    background-color: rgb(74 4 78 / 0.1);
  }

  .md\:bg-fuchsia-950\/20 {
    background-color: rgb(74 4 78 / 0.2);
  }

  .md\:bg-fuchsia-950\/30 {
    background-color: rgb(74 4 78 / 0.3);
  }

  .md\:bg-fuchsia-950\/40 {
    background-color: rgb(74 4 78 / 0.4);
  }

  .md\:bg-fuchsia-950\/5 {
    background-color: rgb(74 4 78 / 0.05);
  }

  .md\:bg-fuchsia-950\/50 {
    background-color: rgb(74 4 78 / 0.5);
  }

  .md\:bg-fuchsia-950\/60 {
    background-color: rgb(74 4 78 / 0.6);
  }

  .md\:bg-fuchsia-950\/70 {
    background-color: rgb(74 4 78 / 0.7);
  }

  .md\:bg-fuchsia-950\/80 {
    background-color: rgb(74 4 78 / 0.8);
  }

  .md\:bg-fuchsia-950\/90 {
    background-color: rgb(74 4 78 / 0.9);
  }

  .md\:bg-gray-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-gray-100\/10 {
    background-color: rgb(243 244 246 / 0.1);
  }

  .md\:bg-gray-100\/20 {
    background-color: rgb(243 244 246 / 0.2);
  }

  .md\:bg-gray-100\/30 {
    background-color: rgb(243 244 246 / 0.3);
  }

  .md\:bg-gray-100\/40 {
    background-color: rgb(243 244 246 / 0.4);
  }

  .md\:bg-gray-100\/5 {
    background-color: rgb(243 244 246 / 0.05);
  }

  .md\:bg-gray-100\/50 {
    background-color: rgb(243 244 246 / 0.5);
  }

  .md\:bg-gray-100\/60 {
    background-color: rgb(243 244 246 / 0.6);
  }

  .md\:bg-gray-100\/70 {
    background-color: rgb(243 244 246 / 0.7);
  }

  .md\:bg-gray-100\/80 {
    background-color: rgb(243 244 246 / 0.8);
  }

  .md\:bg-gray-100\/90 {
    background-color: rgb(243 244 246 / 0.9);
  }

  .md\:bg-gray-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-gray-200\/10 {
    background-color: rgb(229 231 235 / 0.1);
  }

  .md\:bg-gray-200\/20 {
    background-color: rgb(229 231 235 / 0.2);
  }

  .md\:bg-gray-200\/30 {
    background-color: rgb(229 231 235 / 0.3);
  }

  .md\:bg-gray-200\/40 {
    background-color: rgb(229 231 235 / 0.4);
  }

  .md\:bg-gray-200\/5 {
    background-color: rgb(229 231 235 / 0.05);
  }

  .md\:bg-gray-200\/50 {
    background-color: rgb(229 231 235 / 0.5);
  }

  .md\:bg-gray-200\/60 {
    background-color: rgb(229 231 235 / 0.6);
  }

  .md\:bg-gray-200\/70 {
    background-color: rgb(229 231 235 / 0.7);
  }

  .md\:bg-gray-200\/80 {
    background-color: rgb(229 231 235 / 0.8);
  }

  .md\:bg-gray-200\/90 {
    background-color: rgb(229 231 235 / 0.9);
  }

  .md\:bg-gray-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-gray-300\/10 {
    background-color: rgb(209 213 219 / 0.1);
  }

  .md\:bg-gray-300\/20 {
    background-color: rgb(209 213 219 / 0.2);
  }

  .md\:bg-gray-300\/30 {
    background-color: rgb(209 213 219 / 0.3);
  }

  .md\:bg-gray-300\/40 {
    background-color: rgb(209 213 219 / 0.4);
  }

  .md\:bg-gray-300\/5 {
    background-color: rgb(209 213 219 / 0.05);
  }

  .md\:bg-gray-300\/50 {
    background-color: rgb(209 213 219 / 0.5);
  }

  .md\:bg-gray-300\/60 {
    background-color: rgb(209 213 219 / 0.6);
  }

  .md\:bg-gray-300\/70 {
    background-color: rgb(209 213 219 / 0.7);
  }

  .md\:bg-gray-300\/80 {
    background-color: rgb(209 213 219 / 0.8);
  }

  .md\:bg-gray-300\/90 {
    background-color: rgb(209 213 219 / 0.9);
  }

  .md\:bg-gray-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(156 163 175 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-gray-400\/10 {
    background-color: rgb(156 163 175 / 0.1);
  }

  .md\:bg-gray-400\/20 {
    background-color: rgb(156 163 175 / 0.2);
  }

  .md\:bg-gray-400\/30 {
    background-color: rgb(156 163 175 / 0.3);
  }

  .md\:bg-gray-400\/40 {
    background-color: rgb(156 163 175 / 0.4);
  }

  .md\:bg-gray-400\/5 {
    background-color: rgb(156 163 175 / 0.05);
  }

  .md\:bg-gray-400\/50 {
    background-color: rgb(156 163 175 / 0.5);
  }

  .md\:bg-gray-400\/60 {
    background-color: rgb(156 163 175 / 0.6);
  }

  .md\:bg-gray-400\/70 {
    background-color: rgb(156 163 175 / 0.7);
  }

  .md\:bg-gray-400\/80 {
    background-color: rgb(156 163 175 / 0.8);
  }

  .md\:bg-gray-400\/90 {
    background-color: rgb(156 163 175 / 0.9);
  }

  .md\:bg-gray-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-gray-50\/10 {
    background-color: rgb(249 250 251 / 0.1);
  }

  .md\:bg-gray-50\/20 {
    background-color: rgb(249 250 251 / 0.2);
  }

  .md\:bg-gray-50\/30 {
    background-color: rgb(249 250 251 / 0.3);
  }

  .md\:bg-gray-50\/40 {
    background-color: rgb(249 250 251 / 0.4);
  }

  .md\:bg-gray-50\/5 {
    background-color: rgb(249 250 251 / 0.05);
  }

  .md\:bg-gray-50\/50 {
    background-color: rgb(249 250 251 / 0.5);
  }

  .md\:bg-gray-50\/60 {
    background-color: rgb(249 250 251 / 0.6);
  }

  .md\:bg-gray-50\/70 {
    background-color: rgb(249 250 251 / 0.7);
  }

  .md\:bg-gray-50\/80 {
    background-color: rgb(249 250 251 / 0.8);
  }

  .md\:bg-gray-50\/90 {
    background-color: rgb(249 250 251 / 0.9);
  }

  .md\:bg-gray-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(107 114 128 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-gray-500\/10 {
    background-color: rgb(107 114 128 / 0.1);
  }

  .md\:bg-gray-500\/20 {
    background-color: rgb(107 114 128 / 0.2);
  }

  .md\:bg-gray-500\/30 {
    background-color: rgb(107 114 128 / 0.3);
  }

  .md\:bg-gray-500\/40 {
    background-color: rgb(107 114 128 / 0.4);
  }

  .md\:bg-gray-500\/5 {
    background-color: rgb(107 114 128 / 0.05);
  }

  .md\:bg-gray-500\/50 {
    background-color: rgb(107 114 128 / 0.5);
  }

  .md\:bg-gray-500\/60 {
    background-color: rgb(107 114 128 / 0.6);
  }

  .md\:bg-gray-500\/70 {
    background-color: rgb(107 114 128 / 0.7);
  }

  .md\:bg-gray-500\/80 {
    background-color: rgb(107 114 128 / 0.8);
  }

  .md\:bg-gray-500\/90 {
    background-color: rgb(107 114 128 / 0.9);
  }

  .md\:bg-gray-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-gray-600\/10 {
    background-color: rgb(75 85 99 / 0.1);
  }

  .md\:bg-gray-600\/20 {
    background-color: rgb(75 85 99 / 0.2);
  }

  .md\:bg-gray-600\/30 {
    background-color: rgb(75 85 99 / 0.3);
  }

  .md\:bg-gray-600\/40 {
    background-color: rgb(75 85 99 / 0.4);
  }

  .md\:bg-gray-600\/5 {
    background-color: rgb(75 85 99 / 0.05);
  }

  .md\:bg-gray-600\/50 {
    background-color: rgb(75 85 99 / 0.5);
  }

  .md\:bg-gray-600\/60 {
    background-color: rgb(75 85 99 / 0.6);
  }

  .md\:bg-gray-600\/70 {
    background-color: rgb(75 85 99 / 0.7);
  }

  .md\:bg-gray-600\/80 {
    background-color: rgb(75 85 99 / 0.8);
  }

  .md\:bg-gray-600\/90 {
    background-color: rgb(75 85 99 / 0.9);
  }

  .md\:bg-gray-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-gray-700\/10 {
    background-color: rgb(55 65 81 / 0.1);
  }

  .md\:bg-gray-700\/20 {
    background-color: rgb(55 65 81 / 0.2);
  }

  .md\:bg-gray-700\/30 {
    background-color: rgb(55 65 81 / 0.3);
  }

  .md\:bg-gray-700\/40 {
    background-color: rgb(55 65 81 / 0.4);
  }

  .md\:bg-gray-700\/5 {
    background-color: rgb(55 65 81 / 0.05);
  }

  .md\:bg-gray-700\/50 {
    background-color: rgb(55 65 81 / 0.5);
  }

  .md\:bg-gray-700\/60 {
    background-color: rgb(55 65 81 / 0.6);
  }

  .md\:bg-gray-700\/70 {
    background-color: rgb(55 65 81 / 0.7);
  }

  .md\:bg-gray-700\/80 {
    background-color: rgb(55 65 81 / 0.8);
  }

  .md\:bg-gray-700\/90 {
    background-color: rgb(55 65 81 / 0.9);
  }

  .md\:bg-gray-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-gray-800\/10 {
    background-color: rgb(31 41 55 / 0.1);
  }

  .md\:bg-gray-800\/20 {
    background-color: rgb(31 41 55 / 0.2);
  }

  .md\:bg-gray-800\/30 {
    background-color: rgb(31 41 55 / 0.3);
  }

  .md\:bg-gray-800\/40 {
    background-color: rgb(31 41 55 / 0.4);
  }

  .md\:bg-gray-800\/5 {
    background-color: rgb(31 41 55 / 0.05);
  }

  .md\:bg-gray-800\/50 {
    background-color: rgb(31 41 55 / 0.5);
  }

  .md\:bg-gray-800\/60 {
    background-color: rgb(31 41 55 / 0.6);
  }

  .md\:bg-gray-800\/70 {
    background-color: rgb(31 41 55 / 0.7);
  }

  .md\:bg-gray-800\/80 {
    background-color: rgb(31 41 55 / 0.8);
  }

  .md\:bg-gray-800\/90 {
    background-color: rgb(31 41 55 / 0.9);
  }

  .md\:bg-gray-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-gray-900\/10 {
    background-color: rgb(17 24 39 / 0.1);
  }

  .md\:bg-gray-900\/20 {
    background-color: rgb(17 24 39 / 0.2);
  }

  .md\:bg-gray-900\/30 {
    background-color: rgb(17 24 39 / 0.3);
  }

  .md\:bg-gray-900\/40 {
    background-color: rgb(17 24 39 / 0.4);
  }

  .md\:bg-gray-900\/5 {
    background-color: rgb(17 24 39 / 0.05);
  }

  .md\:bg-gray-900\/50 {
    background-color: rgb(17 24 39 / 0.5);
  }

  .md\:bg-gray-900\/60 {
    background-color: rgb(17 24 39 / 0.6);
  }

  .md\:bg-gray-900\/70 {
    background-color: rgb(17 24 39 / 0.7);
  }

  .md\:bg-gray-900\/80 {
    background-color: rgb(17 24 39 / 0.8);
  }

  .md\:bg-gray-900\/90 {
    background-color: rgb(17 24 39 / 0.9);
  }

  .md\:bg-gray-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(3 7 18 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-gray-950\/10 {
    background-color: rgb(3 7 18 / 0.1);
  }

  .md\:bg-gray-950\/20 {
    background-color: rgb(3 7 18 / 0.2);
  }

  .md\:bg-gray-950\/30 {
    background-color: rgb(3 7 18 / 0.3);
  }

  .md\:bg-gray-950\/40 {
    background-color: rgb(3 7 18 / 0.4);
  }

  .md\:bg-gray-950\/5 {
    background-color: rgb(3 7 18 / 0.05);
  }

  .md\:bg-gray-950\/50 {
    background-color: rgb(3 7 18 / 0.5);
  }

  .md\:bg-gray-950\/60 {
    background-color: rgb(3 7 18 / 0.6);
  }

  .md\:bg-gray-950\/70 {
    background-color: rgb(3 7 18 / 0.7);
  }

  .md\:bg-gray-950\/80 {
    background-color: rgb(3 7 18 / 0.8);
  }

  .md\:bg-gray-950\/90 {
    background-color: rgb(3 7 18 / 0.9);
  }

  .md\:bg-green-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-green-100\/10 {
    background-color: rgb(220 252 231 / 0.1);
  }

  .md\:bg-green-100\/20 {
    background-color: rgb(220 252 231 / 0.2);
  }

  .md\:bg-green-100\/30 {
    background-color: rgb(220 252 231 / 0.3);
  }

  .md\:bg-green-100\/40 {
    background-color: rgb(220 252 231 / 0.4);
  }

  .md\:bg-green-100\/5 {
    background-color: rgb(220 252 231 / 0.05);
  }

  .md\:bg-green-100\/50 {
    background-color: rgb(220 252 231 / 0.5);
  }

  .md\:bg-green-100\/60 {
    background-color: rgb(220 252 231 / 0.6);
  }

  .md\:bg-green-100\/70 {
    background-color: rgb(220 252 231 / 0.7);
  }

  .md\:bg-green-100\/80 {
    background-color: rgb(220 252 231 / 0.8);
  }

  .md\:bg-green-100\/90 {
    background-color: rgb(220 252 231 / 0.9);
  }

  .md\:bg-green-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(187 247 208 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-green-200\/10 {
    background-color: rgb(187 247 208 / 0.1);
  }

  .md\:bg-green-200\/20 {
    background-color: rgb(187 247 208 / 0.2);
  }

  .md\:bg-green-200\/30 {
    background-color: rgb(187 247 208 / 0.3);
  }

  .md\:bg-green-200\/40 {
    background-color: rgb(187 247 208 / 0.4);
  }

  .md\:bg-green-200\/5 {
    background-color: rgb(187 247 208 / 0.05);
  }

  .md\:bg-green-200\/50 {
    background-color: rgb(187 247 208 / 0.5);
  }

  .md\:bg-green-200\/60 {
    background-color: rgb(187 247 208 / 0.6);
  }

  .md\:bg-green-200\/70 {
    background-color: rgb(187 247 208 / 0.7);
  }

  .md\:bg-green-200\/80 {
    background-color: rgb(187 247 208 / 0.8);
  }

  .md\:bg-green-200\/90 {
    background-color: rgb(187 247 208 / 0.9);
  }

  .md\:bg-green-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(134 239 172 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-green-300\/10 {
    background-color: rgb(134 239 172 / 0.1);
  }

  .md\:bg-green-300\/20 {
    background-color: rgb(134 239 172 / 0.2);
  }

  .md\:bg-green-300\/30 {
    background-color: rgb(134 239 172 / 0.3);
  }

  .md\:bg-green-300\/40 {
    background-color: rgb(134 239 172 / 0.4);
  }

  .md\:bg-green-300\/5 {
    background-color: rgb(134 239 172 / 0.05);
  }

  .md\:bg-green-300\/50 {
    background-color: rgb(134 239 172 / 0.5);
  }

  .md\:bg-green-300\/60 {
    background-color: rgb(134 239 172 / 0.6);
  }

  .md\:bg-green-300\/70 {
    background-color: rgb(134 239 172 / 0.7);
  }

  .md\:bg-green-300\/80 {
    background-color: rgb(134 239 172 / 0.8);
  }

  .md\:bg-green-300\/90 {
    background-color: rgb(134 239 172 / 0.9);
  }

  .md\:bg-green-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(74 222 128 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-green-400\/10 {
    background-color: rgb(74 222 128 / 0.1);
  }

  .md\:bg-green-400\/20 {
    background-color: rgb(74 222 128 / 0.2);
  }

  .md\:bg-green-400\/30 {
    background-color: rgb(74 222 128 / 0.3);
  }

  .md\:bg-green-400\/40 {
    background-color: rgb(74 222 128 / 0.4);
  }

  .md\:bg-green-400\/5 {
    background-color: rgb(74 222 128 / 0.05);
  }

  .md\:bg-green-400\/50 {
    background-color: rgb(74 222 128 / 0.5);
  }

  .md\:bg-green-400\/60 {
    background-color: rgb(74 222 128 / 0.6);
  }

  .md\:bg-green-400\/70 {
    background-color: rgb(74 222 128 / 0.7);
  }

  .md\:bg-green-400\/80 {
    background-color: rgb(74 222 128 / 0.8);
  }

  .md\:bg-green-400\/90 {
    background-color: rgb(74 222 128 / 0.9);
  }

  .md\:bg-green-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-green-50\/10 {
    background-color: rgb(240 253 244 / 0.1);
  }

  .md\:bg-green-50\/20 {
    background-color: rgb(240 253 244 / 0.2);
  }

  .md\:bg-green-50\/30 {
    background-color: rgb(240 253 244 / 0.3);
  }

  .md\:bg-green-50\/40 {
    background-color: rgb(240 253 244 / 0.4);
  }

  .md\:bg-green-50\/5 {
    background-color: rgb(240 253 244 / 0.05);
  }

  .md\:bg-green-50\/50 {
    background-color: rgb(240 253 244 / 0.5);
  }

  .md\:bg-green-50\/60 {
    background-color: rgb(240 253 244 / 0.6);
  }

  .md\:bg-green-50\/70 {
    background-color: rgb(240 253 244 / 0.7);
  }

  .md\:bg-green-50\/80 {
    background-color: rgb(240 253 244 / 0.8);
  }

  .md\:bg-green-50\/90 {
    background-color: rgb(240 253 244 / 0.9);
  }

  .md\:bg-green-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-green-500\/10 {
    background-color: rgb(34 197 94 / 0.1);
  }

  .md\:bg-green-500\/20 {
    background-color: rgb(34 197 94 / 0.2);
  }

  .md\:bg-green-500\/30 {
    background-color: rgb(34 197 94 / 0.3);
  }

  .md\:bg-green-500\/40 {
    background-color: rgb(34 197 94 / 0.4);
  }

  .md\:bg-green-500\/5 {
    background-color: rgb(34 197 94 / 0.05);
  }

  .md\:bg-green-500\/50 {
    background-color: rgb(34 197 94 / 0.5);
  }

  .md\:bg-green-500\/60 {
    background-color: rgb(34 197 94 / 0.6);
  }

  .md\:bg-green-500\/70 {
    background-color: rgb(34 197 94 / 0.7);
  }

  .md\:bg-green-500\/80 {
    background-color: rgb(34 197 94 / 0.8);
  }

  .md\:bg-green-500\/90 {
    background-color: rgb(34 197 94 / 0.9);
  }

  .md\:bg-green-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-green-600\/10 {
    background-color: rgb(22 163 74 / 0.1);
  }

  .md\:bg-green-600\/20 {
    background-color: rgb(22 163 74 / 0.2);
  }

  .md\:bg-green-600\/30 {
    background-color: rgb(22 163 74 / 0.3);
  }

  .md\:bg-green-600\/40 {
    background-color: rgb(22 163 74 / 0.4);
  }

  .md\:bg-green-600\/5 {
    background-color: rgb(22 163 74 / 0.05);
  }

  .md\:bg-green-600\/50 {
    background-color: rgb(22 163 74 / 0.5);
  }

  .md\:bg-green-600\/60 {
    background-color: rgb(22 163 74 / 0.6);
  }

  .md\:bg-green-600\/70 {
    background-color: rgb(22 163 74 / 0.7);
  }

  .md\:bg-green-600\/80 {
    background-color: rgb(22 163 74 / 0.8);
  }

  .md\:bg-green-600\/90 {
    background-color: rgb(22 163 74 / 0.9);
  }

  .md\:bg-green-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(21 128 61 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-green-700\/10 {
    background-color: rgb(21 128 61 / 0.1);
  }

  .md\:bg-green-700\/20 {
    background-color: rgb(21 128 61 / 0.2);
  }

  .md\:bg-green-700\/30 {
    background-color: rgb(21 128 61 / 0.3);
  }

  .md\:bg-green-700\/40 {
    background-color: rgb(21 128 61 / 0.4);
  }

  .md\:bg-green-700\/5 {
    background-color: rgb(21 128 61 / 0.05);
  }

  .md\:bg-green-700\/50 {
    background-color: rgb(21 128 61 / 0.5);
  }

  .md\:bg-green-700\/60 {
    background-color: rgb(21 128 61 / 0.6);
  }

  .md\:bg-green-700\/70 {
    background-color: rgb(21 128 61 / 0.7);
  }

  .md\:bg-green-700\/80 {
    background-color: rgb(21 128 61 / 0.8);
  }

  .md\:bg-green-700\/90 {
    background-color: rgb(21 128 61 / 0.9);
  }

  .md\:bg-green-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(22 101 52 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-green-800\/10 {
    background-color: rgb(22 101 52 / 0.1);
  }

  .md\:bg-green-800\/20 {
    background-color: rgb(22 101 52 / 0.2);
  }

  .md\:bg-green-800\/30 {
    background-color: rgb(22 101 52 / 0.3);
  }

  .md\:bg-green-800\/40 {
    background-color: rgb(22 101 52 / 0.4);
  }

  .md\:bg-green-800\/5 {
    background-color: rgb(22 101 52 / 0.05);
  }

  .md\:bg-green-800\/50 {
    background-color: rgb(22 101 52 / 0.5);
  }

  .md\:bg-green-800\/60 {
    background-color: rgb(22 101 52 / 0.6);
  }

  .md\:bg-green-800\/70 {
    background-color: rgb(22 101 52 / 0.7);
  }

  .md\:bg-green-800\/80 {
    background-color: rgb(22 101 52 / 0.8);
  }

  .md\:bg-green-800\/90 {
    background-color: rgb(22 101 52 / 0.9);
  }

  .md\:bg-green-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(20 83 45 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-green-900\/10 {
    background-color: rgb(20 83 45 / 0.1);
  }

  .md\:bg-green-900\/20 {
    background-color: rgb(20 83 45 / 0.2);
  }

  .md\:bg-green-900\/30 {
    background-color: rgb(20 83 45 / 0.3);
  }

  .md\:bg-green-900\/40 {
    background-color: rgb(20 83 45 / 0.4);
  }

  .md\:bg-green-900\/5 {
    background-color: rgb(20 83 45 / 0.05);
  }

  .md\:bg-green-900\/50 {
    background-color: rgb(20 83 45 / 0.5);
  }

  .md\:bg-green-900\/60 {
    background-color: rgb(20 83 45 / 0.6);
  }

  .md\:bg-green-900\/70 {
    background-color: rgb(20 83 45 / 0.7);
  }

  .md\:bg-green-900\/80 {
    background-color: rgb(20 83 45 / 0.8);
  }

  .md\:bg-green-900\/90 {
    background-color: rgb(20 83 45 / 0.9);
  }

  .md\:bg-green-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(5 46 22 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-green-950\/10 {
    background-color: rgb(5 46 22 / 0.1);
  }

  .md\:bg-green-950\/20 {
    background-color: rgb(5 46 22 / 0.2);
  }

  .md\:bg-green-950\/30 {
    background-color: rgb(5 46 22 / 0.3);
  }

  .md\:bg-green-950\/40 {
    background-color: rgb(5 46 22 / 0.4);
  }

  .md\:bg-green-950\/5 {
    background-color: rgb(5 46 22 / 0.05);
  }

  .md\:bg-green-950\/50 {
    background-color: rgb(5 46 22 / 0.5);
  }

  .md\:bg-green-950\/60 {
    background-color: rgb(5 46 22 / 0.6);
  }

  .md\:bg-green-950\/70 {
    background-color: rgb(5 46 22 / 0.7);
  }

  .md\:bg-green-950\/80 {
    background-color: rgb(5 46 22 / 0.8);
  }

  .md\:bg-green-950\/90 {
    background-color: rgb(5 46 22 / 0.9);
  }

  .md\:bg-indigo-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(224 231 255 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-indigo-100\/10 {
    background-color: rgb(224 231 255 / 0.1);
  }

  .md\:bg-indigo-100\/20 {
    background-color: rgb(224 231 255 / 0.2);
  }

  .md\:bg-indigo-100\/30 {
    background-color: rgb(224 231 255 / 0.3);
  }

  .md\:bg-indigo-100\/40 {
    background-color: rgb(224 231 255 / 0.4);
  }

  .md\:bg-indigo-100\/5 {
    background-color: rgb(224 231 255 / 0.05);
  }

  .md\:bg-indigo-100\/50 {
    background-color: rgb(224 231 255 / 0.5);
  }

  .md\:bg-indigo-100\/60 {
    background-color: rgb(224 231 255 / 0.6);
  }

  .md\:bg-indigo-100\/70 {
    background-color: rgb(224 231 255 / 0.7);
  }

  .md\:bg-indigo-100\/80 {
    background-color: rgb(224 231 255 / 0.8);
  }

  .md\:bg-indigo-100\/90 {
    background-color: rgb(224 231 255 / 0.9);
  }

  .md\:bg-indigo-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(199 210 254 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-indigo-200\/10 {
    background-color: rgb(199 210 254 / 0.1);
  }

  .md\:bg-indigo-200\/20 {
    background-color: rgb(199 210 254 / 0.2);
  }

  .md\:bg-indigo-200\/30 {
    background-color: rgb(199 210 254 / 0.3);
  }

  .md\:bg-indigo-200\/40 {
    background-color: rgb(199 210 254 / 0.4);
  }

  .md\:bg-indigo-200\/5 {
    background-color: rgb(199 210 254 / 0.05);
  }

  .md\:bg-indigo-200\/50 {
    background-color: rgb(199 210 254 / 0.5);
  }

  .md\:bg-indigo-200\/60 {
    background-color: rgb(199 210 254 / 0.6);
  }

  .md\:bg-indigo-200\/70 {
    background-color: rgb(199 210 254 / 0.7);
  }

  .md\:bg-indigo-200\/80 {
    background-color: rgb(199 210 254 / 0.8);
  }

  .md\:bg-indigo-200\/90 {
    background-color: rgb(199 210 254 / 0.9);
  }

  .md\:bg-indigo-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(165 180 252 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-indigo-300\/10 {
    background-color: rgb(165 180 252 / 0.1);
  }

  .md\:bg-indigo-300\/20 {
    background-color: rgb(165 180 252 / 0.2);
  }

  .md\:bg-indigo-300\/30 {
    background-color: rgb(165 180 252 / 0.3);
  }

  .md\:bg-indigo-300\/40 {
    background-color: rgb(165 180 252 / 0.4);
  }

  .md\:bg-indigo-300\/5 {
    background-color: rgb(165 180 252 / 0.05);
  }

  .md\:bg-indigo-300\/50 {
    background-color: rgb(165 180 252 / 0.5);
  }

  .md\:bg-indigo-300\/60 {
    background-color: rgb(165 180 252 / 0.6);
  }

  .md\:bg-indigo-300\/70 {
    background-color: rgb(165 180 252 / 0.7);
  }

  .md\:bg-indigo-300\/80 {
    background-color: rgb(165 180 252 / 0.8);
  }

  .md\:bg-indigo-300\/90 {
    background-color: rgb(165 180 252 / 0.9);
  }

  .md\:bg-indigo-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(129 140 248 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-indigo-400\/10 {
    background-color: rgb(129 140 248 / 0.1);
  }

  .md\:bg-indigo-400\/20 {
    background-color: rgb(129 140 248 / 0.2);
  }

  .md\:bg-indigo-400\/30 {
    background-color: rgb(129 140 248 / 0.3);
  }

  .md\:bg-indigo-400\/40 {
    background-color: rgb(129 140 248 / 0.4);
  }

  .md\:bg-indigo-400\/5 {
    background-color: rgb(129 140 248 / 0.05);
  }

  .md\:bg-indigo-400\/50 {
    background-color: rgb(129 140 248 / 0.5);
  }

  .md\:bg-indigo-400\/60 {
    background-color: rgb(129 140 248 / 0.6);
  }

  .md\:bg-indigo-400\/70 {
    background-color: rgb(129 140 248 / 0.7);
  }

  .md\:bg-indigo-400\/80 {
    background-color: rgb(129 140 248 / 0.8);
  }

  .md\:bg-indigo-400\/90 {
    background-color: rgb(129 140 248 / 0.9);
  }

  .md\:bg-indigo-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(238 242 255 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-indigo-50\/10 {
    background-color: rgb(238 242 255 / 0.1);
  }

  .md\:bg-indigo-50\/20 {
    background-color: rgb(238 242 255 / 0.2);
  }

  .md\:bg-indigo-50\/30 {
    background-color: rgb(238 242 255 / 0.3);
  }

  .md\:bg-indigo-50\/40 {
    background-color: rgb(238 242 255 / 0.4);
  }

  .md\:bg-indigo-50\/5 {
    background-color: rgb(238 242 255 / 0.05);
  }

  .md\:bg-indigo-50\/50 {
    background-color: rgb(238 242 255 / 0.5);
  }

  .md\:bg-indigo-50\/60 {
    background-color: rgb(238 242 255 / 0.6);
  }

  .md\:bg-indigo-50\/70 {
    background-color: rgb(238 242 255 / 0.7);
  }

  .md\:bg-indigo-50\/80 {
    background-color: rgb(238 242 255 / 0.8);
  }

  .md\:bg-indigo-50\/90 {
    background-color: rgb(238 242 255 / 0.9);
  }

  .md\:bg-indigo-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(99 102 241 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-indigo-500\/10 {
    background-color: rgb(99 102 241 / 0.1);
  }

  .md\:bg-indigo-500\/20 {
    background-color: rgb(99 102 241 / 0.2);
  }

  .md\:bg-indigo-500\/30 {
    background-color: rgb(99 102 241 / 0.3);
  }

  .md\:bg-indigo-500\/40 {
    background-color: rgb(99 102 241 / 0.4);
  }

  .md\:bg-indigo-500\/5 {
    background-color: rgb(99 102 241 / 0.05);
  }

  .md\:bg-indigo-500\/50 {
    background-color: rgb(99 102 241 / 0.5);
  }

  .md\:bg-indigo-500\/60 {
    background-color: rgb(99 102 241 / 0.6);
  }

  .md\:bg-indigo-500\/70 {
    background-color: rgb(99 102 241 / 0.7);
  }

  .md\:bg-indigo-500\/80 {
    background-color: rgb(99 102 241 / 0.8);
  }

  .md\:bg-indigo-500\/90 {
    background-color: rgb(99 102 241 / 0.9);
  }

  .md\:bg-indigo-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(79 70 229 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-indigo-600\/10 {
    background-color: rgb(79 70 229 / 0.1);
  }

  .md\:bg-indigo-600\/20 {
    background-color: rgb(79 70 229 / 0.2);
  }

  .md\:bg-indigo-600\/30 {
    background-color: rgb(79 70 229 / 0.3);
  }

  .md\:bg-indigo-600\/40 {
    background-color: rgb(79 70 229 / 0.4);
  }

  .md\:bg-indigo-600\/5 {
    background-color: rgb(79 70 229 / 0.05);
  }

  .md\:bg-indigo-600\/50 {
    background-color: rgb(79 70 229 / 0.5);
  }

  .md\:bg-indigo-600\/60 {
    background-color: rgb(79 70 229 / 0.6);
  }

  .md\:bg-indigo-600\/70 {
    background-color: rgb(79 70 229 / 0.7);
  }

  .md\:bg-indigo-600\/80 {
    background-color: rgb(79 70 229 / 0.8);
  }

  .md\:bg-indigo-600\/90 {
    background-color: rgb(79 70 229 / 0.9);
  }

  .md\:bg-indigo-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(67 56 202 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-indigo-700\/10 {
    background-color: rgb(67 56 202 / 0.1);
  }

  .md\:bg-indigo-700\/20 {
    background-color: rgb(67 56 202 / 0.2);
  }

  .md\:bg-indigo-700\/30 {
    background-color: rgb(67 56 202 / 0.3);
  }

  .md\:bg-indigo-700\/40 {
    background-color: rgb(67 56 202 / 0.4);
  }

  .md\:bg-indigo-700\/5 {
    background-color: rgb(67 56 202 / 0.05);
  }

  .md\:bg-indigo-700\/50 {
    background-color: rgb(67 56 202 / 0.5);
  }

  .md\:bg-indigo-700\/60 {
    background-color: rgb(67 56 202 / 0.6);
  }

  .md\:bg-indigo-700\/70 {
    background-color: rgb(67 56 202 / 0.7);
  }

  .md\:bg-indigo-700\/80 {
    background-color: rgb(67 56 202 / 0.8);
  }

  .md\:bg-indigo-700\/90 {
    background-color: rgb(67 56 202 / 0.9);
  }

  .md\:bg-indigo-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(55 48 163 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-indigo-800\/10 {
    background-color: rgb(55 48 163 / 0.1);
  }

  .md\:bg-indigo-800\/20 {
    background-color: rgb(55 48 163 / 0.2);
  }

  .md\:bg-indigo-800\/30 {
    background-color: rgb(55 48 163 / 0.3);
  }

  .md\:bg-indigo-800\/40 {
    background-color: rgb(55 48 163 / 0.4);
  }

  .md\:bg-indigo-800\/5 {
    background-color: rgb(55 48 163 / 0.05);
  }

  .md\:bg-indigo-800\/50 {
    background-color: rgb(55 48 163 / 0.5);
  }

  .md\:bg-indigo-800\/60 {
    background-color: rgb(55 48 163 / 0.6);
  }

  .md\:bg-indigo-800\/70 {
    background-color: rgb(55 48 163 / 0.7);
  }

  .md\:bg-indigo-800\/80 {
    background-color: rgb(55 48 163 / 0.8);
  }

  .md\:bg-indigo-800\/90 {
    background-color: rgb(55 48 163 / 0.9);
  }

  .md\:bg-indigo-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(49 46 129 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-indigo-900\/10 {
    background-color: rgb(49 46 129 / 0.1);
  }

  .md\:bg-indigo-900\/20 {
    background-color: rgb(49 46 129 / 0.2);
  }

  .md\:bg-indigo-900\/30 {
    background-color: rgb(49 46 129 / 0.3);
  }

  .md\:bg-indigo-900\/40 {
    background-color: rgb(49 46 129 / 0.4);
  }

  .md\:bg-indigo-900\/5 {
    background-color: rgb(49 46 129 / 0.05);
  }

  .md\:bg-indigo-900\/50 {
    background-color: rgb(49 46 129 / 0.5);
  }

  .md\:bg-indigo-900\/60 {
    background-color: rgb(49 46 129 / 0.6);
  }

  .md\:bg-indigo-900\/70 {
    background-color: rgb(49 46 129 / 0.7);
  }

  .md\:bg-indigo-900\/80 {
    background-color: rgb(49 46 129 / 0.8);
  }

  .md\:bg-indigo-900\/90 {
    background-color: rgb(49 46 129 / 0.9);
  }

  .md\:bg-indigo-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(30 27 75 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-indigo-950\/10 {
    background-color: rgb(30 27 75 / 0.1);
  }

  .md\:bg-indigo-950\/20 {
    background-color: rgb(30 27 75 / 0.2);
  }

  .md\:bg-indigo-950\/30 {
    background-color: rgb(30 27 75 / 0.3);
  }

  .md\:bg-indigo-950\/40 {
    background-color: rgb(30 27 75 / 0.4);
  }

  .md\:bg-indigo-950\/5 {
    background-color: rgb(30 27 75 / 0.05);
  }

  .md\:bg-indigo-950\/50 {
    background-color: rgb(30 27 75 / 0.5);
  }

  .md\:bg-indigo-950\/60 {
    background-color: rgb(30 27 75 / 0.6);
  }

  .md\:bg-indigo-950\/70 {
    background-color: rgb(30 27 75 / 0.7);
  }

  .md\:bg-indigo-950\/80 {
    background-color: rgb(30 27 75 / 0.8);
  }

  .md\:bg-indigo-950\/90 {
    background-color: rgb(30 27 75 / 0.9);
  }

  .md\:bg-lime-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(236 252 203 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-lime-100\/10 {
    background-color: rgb(236 252 203 / 0.1);
  }

  .md\:bg-lime-100\/20 {
    background-color: rgb(236 252 203 / 0.2);
  }

  .md\:bg-lime-100\/30 {
    background-color: rgb(236 252 203 / 0.3);
  }

  .md\:bg-lime-100\/40 {
    background-color: rgb(236 252 203 / 0.4);
  }

  .md\:bg-lime-100\/5 {
    background-color: rgb(236 252 203 / 0.05);
  }

  .md\:bg-lime-100\/50 {
    background-color: rgb(236 252 203 / 0.5);
  }

  .md\:bg-lime-100\/60 {
    background-color: rgb(236 252 203 / 0.6);
  }

  .md\:bg-lime-100\/70 {
    background-color: rgb(236 252 203 / 0.7);
  }

  .md\:bg-lime-100\/80 {
    background-color: rgb(236 252 203 / 0.8);
  }

  .md\:bg-lime-100\/90 {
    background-color: rgb(236 252 203 / 0.9);
  }

  .md\:bg-lime-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(217 249 157 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-lime-200\/10 {
    background-color: rgb(217 249 157 / 0.1);
  }

  .md\:bg-lime-200\/20 {
    background-color: rgb(217 249 157 / 0.2);
  }

  .md\:bg-lime-200\/30 {
    background-color: rgb(217 249 157 / 0.3);
  }

  .md\:bg-lime-200\/40 {
    background-color: rgb(217 249 157 / 0.4);
  }

  .md\:bg-lime-200\/5 {
    background-color: rgb(217 249 157 / 0.05);
  }

  .md\:bg-lime-200\/50 {
    background-color: rgb(217 249 157 / 0.5);
  }

  .md\:bg-lime-200\/60 {
    background-color: rgb(217 249 157 / 0.6);
  }

  .md\:bg-lime-200\/70 {
    background-color: rgb(217 249 157 / 0.7);
  }

  .md\:bg-lime-200\/80 {
    background-color: rgb(217 249 157 / 0.8);
  }

  .md\:bg-lime-200\/90 {
    background-color: rgb(217 249 157 / 0.9);
  }

  .md\:bg-lime-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(190 242 100 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-lime-300\/10 {
    background-color: rgb(190 242 100 / 0.1);
  }

  .md\:bg-lime-300\/20 {
    background-color: rgb(190 242 100 / 0.2);
  }

  .md\:bg-lime-300\/30 {
    background-color: rgb(190 242 100 / 0.3);
  }

  .md\:bg-lime-300\/40 {
    background-color: rgb(190 242 100 / 0.4);
  }

  .md\:bg-lime-300\/5 {
    background-color: rgb(190 242 100 / 0.05);
  }

  .md\:bg-lime-300\/50 {
    background-color: rgb(190 242 100 / 0.5);
  }

  .md\:bg-lime-300\/60 {
    background-color: rgb(190 242 100 / 0.6);
  }

  .md\:bg-lime-300\/70 {
    background-color: rgb(190 242 100 / 0.7);
  }

  .md\:bg-lime-300\/80 {
    background-color: rgb(190 242 100 / 0.8);
  }

  .md\:bg-lime-300\/90 {
    background-color: rgb(190 242 100 / 0.9);
  }

  .md\:bg-lime-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(163 230 53 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-lime-400\/10 {
    background-color: rgb(163 230 53 / 0.1);
  }

  .md\:bg-lime-400\/20 {
    background-color: rgb(163 230 53 / 0.2);
  }

  .md\:bg-lime-400\/30 {
    background-color: rgb(163 230 53 / 0.3);
  }

  .md\:bg-lime-400\/40 {
    background-color: rgb(163 230 53 / 0.4);
  }

  .md\:bg-lime-400\/5 {
    background-color: rgb(163 230 53 / 0.05);
  }

  .md\:bg-lime-400\/50 {
    background-color: rgb(163 230 53 / 0.5);
  }

  .md\:bg-lime-400\/60 {
    background-color: rgb(163 230 53 / 0.6);
  }

  .md\:bg-lime-400\/70 {
    background-color: rgb(163 230 53 / 0.7);
  }

  .md\:bg-lime-400\/80 {
    background-color: rgb(163 230 53 / 0.8);
  }

  .md\:bg-lime-400\/90 {
    background-color: rgb(163 230 53 / 0.9);
  }

  .md\:bg-lime-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(247 254 231 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-lime-50\/10 {
    background-color: rgb(247 254 231 / 0.1);
  }

  .md\:bg-lime-50\/20 {
    background-color: rgb(247 254 231 / 0.2);
  }

  .md\:bg-lime-50\/30 {
    background-color: rgb(247 254 231 / 0.3);
  }

  .md\:bg-lime-50\/40 {
    background-color: rgb(247 254 231 / 0.4);
  }

  .md\:bg-lime-50\/5 {
    background-color: rgb(247 254 231 / 0.05);
  }

  .md\:bg-lime-50\/50 {
    background-color: rgb(247 254 231 / 0.5);
  }

  .md\:bg-lime-50\/60 {
    background-color: rgb(247 254 231 / 0.6);
  }

  .md\:bg-lime-50\/70 {
    background-color: rgb(247 254 231 / 0.7);
  }

  .md\:bg-lime-50\/80 {
    background-color: rgb(247 254 231 / 0.8);
  }

  .md\:bg-lime-50\/90 {
    background-color: rgb(247 254 231 / 0.9);
  }

  .md\:bg-lime-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(132 204 22 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-lime-500\/10 {
    background-color: rgb(132 204 22 / 0.1);
  }

  .md\:bg-lime-500\/20 {
    background-color: rgb(132 204 22 / 0.2);
  }

  .md\:bg-lime-500\/30 {
    background-color: rgb(132 204 22 / 0.3);
  }

  .md\:bg-lime-500\/40 {
    background-color: rgb(132 204 22 / 0.4);
  }

  .md\:bg-lime-500\/5 {
    background-color: rgb(132 204 22 / 0.05);
  }

  .md\:bg-lime-500\/50 {
    background-color: rgb(132 204 22 / 0.5);
  }

  .md\:bg-lime-500\/60 {
    background-color: rgb(132 204 22 / 0.6);
  }

  .md\:bg-lime-500\/70 {
    background-color: rgb(132 204 22 / 0.7);
  }

  .md\:bg-lime-500\/80 {
    background-color: rgb(132 204 22 / 0.8);
  }

  .md\:bg-lime-500\/90 {
    background-color: rgb(132 204 22 / 0.9);
  }

  .md\:bg-lime-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(101 163 13 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-lime-600\/10 {
    background-color: rgb(101 163 13 / 0.1);
  }

  .md\:bg-lime-600\/20 {
    background-color: rgb(101 163 13 / 0.2);
  }

  .md\:bg-lime-600\/30 {
    background-color: rgb(101 163 13 / 0.3);
  }

  .md\:bg-lime-600\/40 {
    background-color: rgb(101 163 13 / 0.4);
  }

  .md\:bg-lime-600\/5 {
    background-color: rgb(101 163 13 / 0.05);
  }

  .md\:bg-lime-600\/50 {
    background-color: rgb(101 163 13 / 0.5);
  }

  .md\:bg-lime-600\/60 {
    background-color: rgb(101 163 13 / 0.6);
  }

  .md\:bg-lime-600\/70 {
    background-color: rgb(101 163 13 / 0.7);
  }

  .md\:bg-lime-600\/80 {
    background-color: rgb(101 163 13 / 0.8);
  }

  .md\:bg-lime-600\/90 {
    background-color: rgb(101 163 13 / 0.9);
  }

  .md\:bg-lime-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(77 124 15 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-lime-700\/10 {
    background-color: rgb(77 124 15 / 0.1);
  }

  .md\:bg-lime-700\/20 {
    background-color: rgb(77 124 15 / 0.2);
  }

  .md\:bg-lime-700\/30 {
    background-color: rgb(77 124 15 / 0.3);
  }

  .md\:bg-lime-700\/40 {
    background-color: rgb(77 124 15 / 0.4);
  }

  .md\:bg-lime-700\/5 {
    background-color: rgb(77 124 15 / 0.05);
  }

  .md\:bg-lime-700\/50 {
    background-color: rgb(77 124 15 / 0.5);
  }

  .md\:bg-lime-700\/60 {
    background-color: rgb(77 124 15 / 0.6);
  }

  .md\:bg-lime-700\/70 {
    background-color: rgb(77 124 15 / 0.7);
  }

  .md\:bg-lime-700\/80 {
    background-color: rgb(77 124 15 / 0.8);
  }

  .md\:bg-lime-700\/90 {
    background-color: rgb(77 124 15 / 0.9);
  }

  .md\:bg-lime-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(63 98 18 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-lime-800\/10 {
    background-color: rgb(63 98 18 / 0.1);
  }

  .md\:bg-lime-800\/20 {
    background-color: rgb(63 98 18 / 0.2);
  }

  .md\:bg-lime-800\/30 {
    background-color: rgb(63 98 18 / 0.3);
  }

  .md\:bg-lime-800\/40 {
    background-color: rgb(63 98 18 / 0.4);
  }

  .md\:bg-lime-800\/5 {
    background-color: rgb(63 98 18 / 0.05);
  }

  .md\:bg-lime-800\/50 {
    background-color: rgb(63 98 18 / 0.5);
  }

  .md\:bg-lime-800\/60 {
    background-color: rgb(63 98 18 / 0.6);
  }

  .md\:bg-lime-800\/70 {
    background-color: rgb(63 98 18 / 0.7);
  }

  .md\:bg-lime-800\/80 {
    background-color: rgb(63 98 18 / 0.8);
  }

  .md\:bg-lime-800\/90 {
    background-color: rgb(63 98 18 / 0.9);
  }

  .md\:bg-lime-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(54 83 20 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-lime-900\/10 {
    background-color: rgb(54 83 20 / 0.1);
  }

  .md\:bg-lime-900\/20 {
    background-color: rgb(54 83 20 / 0.2);
  }

  .md\:bg-lime-900\/30 {
    background-color: rgb(54 83 20 / 0.3);
  }

  .md\:bg-lime-900\/40 {
    background-color: rgb(54 83 20 / 0.4);
  }

  .md\:bg-lime-900\/5 {
    background-color: rgb(54 83 20 / 0.05);
  }

  .md\:bg-lime-900\/50 {
    background-color: rgb(54 83 20 / 0.5);
  }

  .md\:bg-lime-900\/60 {
    background-color: rgb(54 83 20 / 0.6);
  }

  .md\:bg-lime-900\/70 {
    background-color: rgb(54 83 20 / 0.7);
  }

  .md\:bg-lime-900\/80 {
    background-color: rgb(54 83 20 / 0.8);
  }

  .md\:bg-lime-900\/90 {
    background-color: rgb(54 83 20 / 0.9);
  }

  .md\:bg-lime-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(26 46 5 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-lime-950\/10 {
    background-color: rgb(26 46 5 / 0.1);
  }

  .md\:bg-lime-950\/20 {
    background-color: rgb(26 46 5 / 0.2);
  }

  .md\:bg-lime-950\/30 {
    background-color: rgb(26 46 5 / 0.3);
  }

  .md\:bg-lime-950\/40 {
    background-color: rgb(26 46 5 / 0.4);
  }

  .md\:bg-lime-950\/5 {
    background-color: rgb(26 46 5 / 0.05);
  }

  .md\:bg-lime-950\/50 {
    background-color: rgb(26 46 5 / 0.5);
  }

  .md\:bg-lime-950\/60 {
    background-color: rgb(26 46 5 / 0.6);
  }

  .md\:bg-lime-950\/70 {
    background-color: rgb(26 46 5 / 0.7);
  }

  .md\:bg-lime-950\/80 {
    background-color: rgb(26 46 5 / 0.8);
  }

  .md\:bg-lime-950\/90 {
    background-color: rgb(26 46 5 / 0.9);
  }

  .md\:bg-neutral-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(245 245 245 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-neutral-100\/10 {
    background-color: rgb(245 245 245 / 0.1);
  }

  .md\:bg-neutral-100\/20 {
    background-color: rgb(245 245 245 / 0.2);
  }

  .md\:bg-neutral-100\/30 {
    background-color: rgb(245 245 245 / 0.3);
  }

  .md\:bg-neutral-100\/40 {
    background-color: rgb(245 245 245 / 0.4);
  }

  .md\:bg-neutral-100\/5 {
    background-color: rgb(245 245 245 / 0.05);
  }

  .md\:bg-neutral-100\/50 {
    background-color: rgb(245 245 245 / 0.5);
  }

  .md\:bg-neutral-100\/60 {
    background-color: rgb(245 245 245 / 0.6);
  }

  .md\:bg-neutral-100\/70 {
    background-color: rgb(245 245 245 / 0.7);
  }

  .md\:bg-neutral-100\/80 {
    background-color: rgb(245 245 245 / 0.8);
  }

  .md\:bg-neutral-100\/90 {
    background-color: rgb(245 245 245 / 0.9);
  }

  .md\:bg-neutral-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(229 229 229 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-neutral-200\/10 {
    background-color: rgb(229 229 229 / 0.1);
  }

  .md\:bg-neutral-200\/20 {
    background-color: rgb(229 229 229 / 0.2);
  }

  .md\:bg-neutral-200\/30 {
    background-color: rgb(229 229 229 / 0.3);
  }

  .md\:bg-neutral-200\/40 {
    background-color: rgb(229 229 229 / 0.4);
  }

  .md\:bg-neutral-200\/5 {
    background-color: rgb(229 229 229 / 0.05);
  }

  .md\:bg-neutral-200\/50 {
    background-color: rgb(229 229 229 / 0.5);
  }

  .md\:bg-neutral-200\/60 {
    background-color: rgb(229 229 229 / 0.6);
  }

  .md\:bg-neutral-200\/70 {
    background-color: rgb(229 229 229 / 0.7);
  }

  .md\:bg-neutral-200\/80 {
    background-color: rgb(229 229 229 / 0.8);
  }

  .md\:bg-neutral-200\/90 {
    background-color: rgb(229 229 229 / 0.9);
  }

  .md\:bg-neutral-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(212 212 212 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-neutral-300\/10 {
    background-color: rgb(212 212 212 / 0.1);
  }

  .md\:bg-neutral-300\/20 {
    background-color: rgb(212 212 212 / 0.2);
  }

  .md\:bg-neutral-300\/30 {
    background-color: rgb(212 212 212 / 0.3);
  }

  .md\:bg-neutral-300\/40 {
    background-color: rgb(212 212 212 / 0.4);
  }

  .md\:bg-neutral-300\/5 {
    background-color: rgb(212 212 212 / 0.05);
  }

  .md\:bg-neutral-300\/50 {
    background-color: rgb(212 212 212 / 0.5);
  }

  .md\:bg-neutral-300\/60 {
    background-color: rgb(212 212 212 / 0.6);
  }

  .md\:bg-neutral-300\/70 {
    background-color: rgb(212 212 212 / 0.7);
  }

  .md\:bg-neutral-300\/80 {
    background-color: rgb(212 212 212 / 0.8);
  }

  .md\:bg-neutral-300\/90 {
    background-color: rgb(212 212 212 / 0.9);
  }

  .md\:bg-neutral-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(163 163 163 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-neutral-400\/10 {
    background-color: rgb(163 163 163 / 0.1);
  }

  .md\:bg-neutral-400\/20 {
    background-color: rgb(163 163 163 / 0.2);
  }

  .md\:bg-neutral-400\/30 {
    background-color: rgb(163 163 163 / 0.3);
  }

  .md\:bg-neutral-400\/40 {
    background-color: rgb(163 163 163 / 0.4);
  }

  .md\:bg-neutral-400\/5 {
    background-color: rgb(163 163 163 / 0.05);
  }

  .md\:bg-neutral-400\/50 {
    background-color: rgb(163 163 163 / 0.5);
  }

  .md\:bg-neutral-400\/60 {
    background-color: rgb(163 163 163 / 0.6);
  }

  .md\:bg-neutral-400\/70 {
    background-color: rgb(163 163 163 / 0.7);
  }

  .md\:bg-neutral-400\/80 {
    background-color: rgb(163 163 163 / 0.8);
  }

  .md\:bg-neutral-400\/90 {
    background-color: rgb(163 163 163 / 0.9);
  }

  .md\:bg-neutral-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-neutral-50\/10 {
    background-color: rgb(250 250 250 / 0.1);
  }

  .md\:bg-neutral-50\/20 {
    background-color: rgb(250 250 250 / 0.2);
  }

  .md\:bg-neutral-50\/30 {
    background-color: rgb(250 250 250 / 0.3);
  }

  .md\:bg-neutral-50\/40 {
    background-color: rgb(250 250 250 / 0.4);
  }

  .md\:bg-neutral-50\/5 {
    background-color: rgb(250 250 250 / 0.05);
  }

  .md\:bg-neutral-50\/50 {
    background-color: rgb(250 250 250 / 0.5);
  }

  .md\:bg-neutral-50\/60 {
    background-color: rgb(250 250 250 / 0.6);
  }

  .md\:bg-neutral-50\/70 {
    background-color: rgb(250 250 250 / 0.7);
  }

  .md\:bg-neutral-50\/80 {
    background-color: rgb(250 250 250 / 0.8);
  }

  .md\:bg-neutral-50\/90 {
    background-color: rgb(250 250 250 / 0.9);
  }

  .md\:bg-neutral-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(115 115 115 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-neutral-500\/10 {
    background-color: rgb(115 115 115 / 0.1);
  }

  .md\:bg-neutral-500\/20 {
    background-color: rgb(115 115 115 / 0.2);
  }

  .md\:bg-neutral-500\/30 {
    background-color: rgb(115 115 115 / 0.3);
  }

  .md\:bg-neutral-500\/40 {
    background-color: rgb(115 115 115 / 0.4);
  }

  .md\:bg-neutral-500\/5 {
    background-color: rgb(115 115 115 / 0.05);
  }

  .md\:bg-neutral-500\/50 {
    background-color: rgb(115 115 115 / 0.5);
  }

  .md\:bg-neutral-500\/60 {
    background-color: rgb(115 115 115 / 0.6);
  }

  .md\:bg-neutral-500\/70 {
    background-color: rgb(115 115 115 / 0.7);
  }

  .md\:bg-neutral-500\/80 {
    background-color: rgb(115 115 115 / 0.8);
  }

  .md\:bg-neutral-500\/90 {
    background-color: rgb(115 115 115 / 0.9);
  }

  .md\:bg-neutral-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(82 82 82 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-neutral-600\/10 {
    background-color: rgb(82 82 82 / 0.1);
  }

  .md\:bg-neutral-600\/20 {
    background-color: rgb(82 82 82 / 0.2);
  }

  .md\:bg-neutral-600\/30 {
    background-color: rgb(82 82 82 / 0.3);
  }

  .md\:bg-neutral-600\/40 {
    background-color: rgb(82 82 82 / 0.4);
  }

  .md\:bg-neutral-600\/5 {
    background-color: rgb(82 82 82 / 0.05);
  }

  .md\:bg-neutral-600\/50 {
    background-color: rgb(82 82 82 / 0.5);
  }

  .md\:bg-neutral-600\/60 {
    background-color: rgb(82 82 82 / 0.6);
  }

  .md\:bg-neutral-600\/70 {
    background-color: rgb(82 82 82 / 0.7);
  }

  .md\:bg-neutral-600\/80 {
    background-color: rgb(82 82 82 / 0.8);
  }

  .md\:bg-neutral-600\/90 {
    background-color: rgb(82 82 82 / 0.9);
  }

  .md\:bg-neutral-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(64 64 64 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-neutral-700\/10 {
    background-color: rgb(64 64 64 / 0.1);
  }

  .md\:bg-neutral-700\/20 {
    background-color: rgb(64 64 64 / 0.2);
  }

  .md\:bg-neutral-700\/30 {
    background-color: rgb(64 64 64 / 0.3);
  }

  .md\:bg-neutral-700\/40 {
    background-color: rgb(64 64 64 / 0.4);
  }

  .md\:bg-neutral-700\/5 {
    background-color: rgb(64 64 64 / 0.05);
  }

  .md\:bg-neutral-700\/50 {
    background-color: rgb(64 64 64 / 0.5);
  }

  .md\:bg-neutral-700\/60 {
    background-color: rgb(64 64 64 / 0.6);
  }

  .md\:bg-neutral-700\/70 {
    background-color: rgb(64 64 64 / 0.7);
  }

  .md\:bg-neutral-700\/80 {
    background-color: rgb(64 64 64 / 0.8);
  }

  .md\:bg-neutral-700\/90 {
    background-color: rgb(64 64 64 / 0.9);
  }

  .md\:bg-neutral-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(38 38 38 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-neutral-800\/10 {
    background-color: rgb(38 38 38 / 0.1);
  }

  .md\:bg-neutral-800\/20 {
    background-color: rgb(38 38 38 / 0.2);
  }

  .md\:bg-neutral-800\/30 {
    background-color: rgb(38 38 38 / 0.3);
  }

  .md\:bg-neutral-800\/40 {
    background-color: rgb(38 38 38 / 0.4);
  }

  .md\:bg-neutral-800\/5 {
    background-color: rgb(38 38 38 / 0.05);
  }

  .md\:bg-neutral-800\/50 {
    background-color: rgb(38 38 38 / 0.5);
  }

  .md\:bg-neutral-800\/60 {
    background-color: rgb(38 38 38 / 0.6);
  }

  .md\:bg-neutral-800\/70 {
    background-color: rgb(38 38 38 / 0.7);
  }

  .md\:bg-neutral-800\/80 {
    background-color: rgb(38 38 38 / 0.8);
  }

  .md\:bg-neutral-800\/90 {
    background-color: rgb(38 38 38 / 0.9);
  }

  .md\:bg-neutral-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(23 23 23 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-neutral-900\/10 {
    background-color: rgb(23 23 23 / 0.1);
  }

  .md\:bg-neutral-900\/20 {
    background-color: rgb(23 23 23 / 0.2);
  }

  .md\:bg-neutral-900\/30 {
    background-color: rgb(23 23 23 / 0.3);
  }

  .md\:bg-neutral-900\/40 {
    background-color: rgb(23 23 23 / 0.4);
  }

  .md\:bg-neutral-900\/5 {
    background-color: rgb(23 23 23 / 0.05);
  }

  .md\:bg-neutral-900\/50 {
    background-color: rgb(23 23 23 / 0.5);
  }

  .md\:bg-neutral-900\/60 {
    background-color: rgb(23 23 23 / 0.6);
  }

  .md\:bg-neutral-900\/70 {
    background-color: rgb(23 23 23 / 0.7);
  }

  .md\:bg-neutral-900\/80 {
    background-color: rgb(23 23 23 / 0.8);
  }

  .md\:bg-neutral-900\/90 {
    background-color: rgb(23 23 23 / 0.9);
  }

  .md\:bg-neutral-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(10 10 10 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-neutral-950\/10 {
    background-color: rgb(10 10 10 / 0.1);
  }

  .md\:bg-neutral-950\/20 {
    background-color: rgb(10 10 10 / 0.2);
  }

  .md\:bg-neutral-950\/30 {
    background-color: rgb(10 10 10 / 0.3);
  }

  .md\:bg-neutral-950\/40 {
    background-color: rgb(10 10 10 / 0.4);
  }

  .md\:bg-neutral-950\/5 {
    background-color: rgb(10 10 10 / 0.05);
  }

  .md\:bg-neutral-950\/50 {
    background-color: rgb(10 10 10 / 0.5);
  }

  .md\:bg-neutral-950\/60 {
    background-color: rgb(10 10 10 / 0.6);
  }

  .md\:bg-neutral-950\/70 {
    background-color: rgb(10 10 10 / 0.7);
  }

  .md\:bg-neutral-950\/80 {
    background-color: rgb(10 10 10 / 0.8);
  }

  .md\:bg-neutral-950\/90 {
    background-color: rgb(10 10 10 / 0.9);
  }

  .md\:bg-orange-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 237 213 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-orange-100\/10 {
    background-color: rgb(255 237 213 / 0.1);
  }

  .md\:bg-orange-100\/20 {
    background-color: rgb(255 237 213 / 0.2);
  }

  .md\:bg-orange-100\/30 {
    background-color: rgb(255 237 213 / 0.3);
  }

  .md\:bg-orange-100\/40 {
    background-color: rgb(255 237 213 / 0.4);
  }

  .md\:bg-orange-100\/5 {
    background-color: rgb(255 237 213 / 0.05);
  }

  .md\:bg-orange-100\/50 {
    background-color: rgb(255 237 213 / 0.5);
  }

  .md\:bg-orange-100\/60 {
    background-color: rgb(255 237 213 / 0.6);
  }

  .md\:bg-orange-100\/70 {
    background-color: rgb(255 237 213 / 0.7);
  }

  .md\:bg-orange-100\/80 {
    background-color: rgb(255 237 213 / 0.8);
  }

  .md\:bg-orange-100\/90 {
    background-color: rgb(255 237 213 / 0.9);
  }

  .md\:bg-orange-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 215 170 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-orange-200\/10 {
    background-color: rgb(254 215 170 / 0.1);
  }

  .md\:bg-orange-200\/20 {
    background-color: rgb(254 215 170 / 0.2);
  }

  .md\:bg-orange-200\/30 {
    background-color: rgb(254 215 170 / 0.3);
  }

  .md\:bg-orange-200\/40 {
    background-color: rgb(254 215 170 / 0.4);
  }

  .md\:bg-orange-200\/5 {
    background-color: rgb(254 215 170 / 0.05);
  }

  .md\:bg-orange-200\/50 {
    background-color: rgb(254 215 170 / 0.5);
  }

  .md\:bg-orange-200\/60 {
    background-color: rgb(254 215 170 / 0.6);
  }

  .md\:bg-orange-200\/70 {
    background-color: rgb(254 215 170 / 0.7);
  }

  .md\:bg-orange-200\/80 {
    background-color: rgb(254 215 170 / 0.8);
  }

  .md\:bg-orange-200\/90 {
    background-color: rgb(254 215 170 / 0.9);
  }

  .md\:bg-orange-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(253 186 116 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-orange-300\/10 {
    background-color: rgb(253 186 116 / 0.1);
  }

  .md\:bg-orange-300\/20 {
    background-color: rgb(253 186 116 / 0.2);
  }

  .md\:bg-orange-300\/30 {
    background-color: rgb(253 186 116 / 0.3);
  }

  .md\:bg-orange-300\/40 {
    background-color: rgb(253 186 116 / 0.4);
  }

  .md\:bg-orange-300\/5 {
    background-color: rgb(253 186 116 / 0.05);
  }

  .md\:bg-orange-300\/50 {
    background-color: rgb(253 186 116 / 0.5);
  }

  .md\:bg-orange-300\/60 {
    background-color: rgb(253 186 116 / 0.6);
  }

  .md\:bg-orange-300\/70 {
    background-color: rgb(253 186 116 / 0.7);
  }

  .md\:bg-orange-300\/80 {
    background-color: rgb(253 186 116 / 0.8);
  }

  .md\:bg-orange-300\/90 {
    background-color: rgb(253 186 116 / 0.9);
  }

  .md\:bg-orange-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(251 146 60 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-orange-400\/10 {
    background-color: rgb(251 146 60 / 0.1);
  }

  .md\:bg-orange-400\/20 {
    background-color: rgb(251 146 60 / 0.2);
  }

  .md\:bg-orange-400\/30 {
    background-color: rgb(251 146 60 / 0.3);
  }

  .md\:bg-orange-400\/40 {
    background-color: rgb(251 146 60 / 0.4);
  }

  .md\:bg-orange-400\/5 {
    background-color: rgb(251 146 60 / 0.05);
  }

  .md\:bg-orange-400\/50 {
    background-color: rgb(251 146 60 / 0.5);
  }

  .md\:bg-orange-400\/60 {
    background-color: rgb(251 146 60 / 0.6);
  }

  .md\:bg-orange-400\/70 {
    background-color: rgb(251 146 60 / 0.7);
  }

  .md\:bg-orange-400\/80 {
    background-color: rgb(251 146 60 / 0.8);
  }

  .md\:bg-orange-400\/90 {
    background-color: rgb(251 146 60 / 0.9);
  }

  .md\:bg-orange-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 247 237 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-orange-50\/10 {
    background-color: rgb(255 247 237 / 0.1);
  }

  .md\:bg-orange-50\/20 {
    background-color: rgb(255 247 237 / 0.2);
  }

  .md\:bg-orange-50\/30 {
    background-color: rgb(255 247 237 / 0.3);
  }

  .md\:bg-orange-50\/40 {
    background-color: rgb(255 247 237 / 0.4);
  }

  .md\:bg-orange-50\/5 {
    background-color: rgb(255 247 237 / 0.05);
  }

  .md\:bg-orange-50\/50 {
    background-color: rgb(255 247 237 / 0.5);
  }

  .md\:bg-orange-50\/60 {
    background-color: rgb(255 247 237 / 0.6);
  }

  .md\:bg-orange-50\/70 {
    background-color: rgb(255 247 237 / 0.7);
  }

  .md\:bg-orange-50\/80 {
    background-color: rgb(255 247 237 / 0.8);
  }

  .md\:bg-orange-50\/90 {
    background-color: rgb(255 247 237 / 0.9);
  }

  .md\:bg-orange-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-orange-500\/10 {
    background-color: rgb(249 115 22 / 0.1);
  }

  .md\:bg-orange-500\/20 {
    background-color: rgb(249 115 22 / 0.2);
  }

  .md\:bg-orange-500\/30 {
    background-color: rgb(249 115 22 / 0.3);
  }

  .md\:bg-orange-500\/40 {
    background-color: rgb(249 115 22 / 0.4);
  }

  .md\:bg-orange-500\/5 {
    background-color: rgb(249 115 22 / 0.05);
  }

  .md\:bg-orange-500\/50 {
    background-color: rgb(249 115 22 / 0.5);
  }

  .md\:bg-orange-500\/60 {
    background-color: rgb(249 115 22 / 0.6);
  }

  .md\:bg-orange-500\/70 {
    background-color: rgb(249 115 22 / 0.7);
  }

  .md\:bg-orange-500\/80 {
    background-color: rgb(249 115 22 / 0.8);
  }

  .md\:bg-orange-500\/90 {
    background-color: rgb(249 115 22 / 0.9);
  }

  .md\:bg-orange-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(234 88 12 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-orange-600\/10 {
    background-color: rgb(234 88 12 / 0.1);
  }

  .md\:bg-orange-600\/20 {
    background-color: rgb(234 88 12 / 0.2);
  }

  .md\:bg-orange-600\/30 {
    background-color: rgb(234 88 12 / 0.3);
  }

  .md\:bg-orange-600\/40 {
    background-color: rgb(234 88 12 / 0.4);
  }

  .md\:bg-orange-600\/5 {
    background-color: rgb(234 88 12 / 0.05);
  }

  .md\:bg-orange-600\/50 {
    background-color: rgb(234 88 12 / 0.5);
  }

  .md\:bg-orange-600\/60 {
    background-color: rgb(234 88 12 / 0.6);
  }

  .md\:bg-orange-600\/70 {
    background-color: rgb(234 88 12 / 0.7);
  }

  .md\:bg-orange-600\/80 {
    background-color: rgb(234 88 12 / 0.8);
  }

  .md\:bg-orange-600\/90 {
    background-color: rgb(234 88 12 / 0.9);
  }

  .md\:bg-orange-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(194 65 12 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-orange-700\/10 {
    background-color: rgb(194 65 12 / 0.1);
  }

  .md\:bg-orange-700\/20 {
    background-color: rgb(194 65 12 / 0.2);
  }

  .md\:bg-orange-700\/30 {
    background-color: rgb(194 65 12 / 0.3);
  }

  .md\:bg-orange-700\/40 {
    background-color: rgb(194 65 12 / 0.4);
  }

  .md\:bg-orange-700\/5 {
    background-color: rgb(194 65 12 / 0.05);
  }

  .md\:bg-orange-700\/50 {
    background-color: rgb(194 65 12 / 0.5);
  }

  .md\:bg-orange-700\/60 {
    background-color: rgb(194 65 12 / 0.6);
  }

  .md\:bg-orange-700\/70 {
    background-color: rgb(194 65 12 / 0.7);
  }

  .md\:bg-orange-700\/80 {
    background-color: rgb(194 65 12 / 0.8);
  }

  .md\:bg-orange-700\/90 {
    background-color: rgb(194 65 12 / 0.9);
  }

  .md\:bg-orange-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(154 52 18 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-orange-800\/10 {
    background-color: rgb(154 52 18 / 0.1);
  }

  .md\:bg-orange-800\/20 {
    background-color: rgb(154 52 18 / 0.2);
  }

  .md\:bg-orange-800\/30 {
    background-color: rgb(154 52 18 / 0.3);
  }

  .md\:bg-orange-800\/40 {
    background-color: rgb(154 52 18 / 0.4);
  }

  .md\:bg-orange-800\/5 {
    background-color: rgb(154 52 18 / 0.05);
  }

  .md\:bg-orange-800\/50 {
    background-color: rgb(154 52 18 / 0.5);
  }

  .md\:bg-orange-800\/60 {
    background-color: rgb(154 52 18 / 0.6);
  }

  .md\:bg-orange-800\/70 {
    background-color: rgb(154 52 18 / 0.7);
  }

  .md\:bg-orange-800\/80 {
    background-color: rgb(154 52 18 / 0.8);
  }

  .md\:bg-orange-800\/90 {
    background-color: rgb(154 52 18 / 0.9);
  }

  .md\:bg-orange-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(124 45 18 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-orange-900\/10 {
    background-color: rgb(124 45 18 / 0.1);
  }

  .md\:bg-orange-900\/20 {
    background-color: rgb(124 45 18 / 0.2);
  }

  .md\:bg-orange-900\/30 {
    background-color: rgb(124 45 18 / 0.3);
  }

  .md\:bg-orange-900\/40 {
    background-color: rgb(124 45 18 / 0.4);
  }

  .md\:bg-orange-900\/5 {
    background-color: rgb(124 45 18 / 0.05);
  }

  .md\:bg-orange-900\/50 {
    background-color: rgb(124 45 18 / 0.5);
  }

  .md\:bg-orange-900\/60 {
    background-color: rgb(124 45 18 / 0.6);
  }

  .md\:bg-orange-900\/70 {
    background-color: rgb(124 45 18 / 0.7);
  }

  .md\:bg-orange-900\/80 {
    background-color: rgb(124 45 18 / 0.8);
  }

  .md\:bg-orange-900\/90 {
    background-color: rgb(124 45 18 / 0.9);
  }

  .md\:bg-orange-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(67 20 7 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-orange-950\/10 {
    background-color: rgb(67 20 7 / 0.1);
  }

  .md\:bg-orange-950\/20 {
    background-color: rgb(67 20 7 / 0.2);
  }

  .md\:bg-orange-950\/30 {
    background-color: rgb(67 20 7 / 0.3);
  }

  .md\:bg-orange-950\/40 {
    background-color: rgb(67 20 7 / 0.4);
  }

  .md\:bg-orange-950\/5 {
    background-color: rgb(67 20 7 / 0.05);
  }

  .md\:bg-orange-950\/50 {
    background-color: rgb(67 20 7 / 0.5);
  }

  .md\:bg-orange-950\/60 {
    background-color: rgb(67 20 7 / 0.6);
  }

  .md\:bg-orange-950\/70 {
    background-color: rgb(67 20 7 / 0.7);
  }

  .md\:bg-orange-950\/80 {
    background-color: rgb(67 20 7 / 0.8);
  }

  .md\:bg-orange-950\/90 {
    background-color: rgb(67 20 7 / 0.9);
  }

  .md\:bg-pink-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(252 231 243 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-pink-100\/10 {
    background-color: rgb(252 231 243 / 0.1);
  }

  .md\:bg-pink-100\/20 {
    background-color: rgb(252 231 243 / 0.2);
  }

  .md\:bg-pink-100\/30 {
    background-color: rgb(252 231 243 / 0.3);
  }

  .md\:bg-pink-100\/40 {
    background-color: rgb(252 231 243 / 0.4);
  }

  .md\:bg-pink-100\/5 {
    background-color: rgb(252 231 243 / 0.05);
  }

  .md\:bg-pink-100\/50 {
    background-color: rgb(252 231 243 / 0.5);
  }

  .md\:bg-pink-100\/60 {
    background-color: rgb(252 231 243 / 0.6);
  }

  .md\:bg-pink-100\/70 {
    background-color: rgb(252 231 243 / 0.7);
  }

  .md\:bg-pink-100\/80 {
    background-color: rgb(252 231 243 / 0.8);
  }

  .md\:bg-pink-100\/90 {
    background-color: rgb(252 231 243 / 0.9);
  }

  .md\:bg-pink-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(251 207 232 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-pink-200\/10 {
    background-color: rgb(251 207 232 / 0.1);
  }

  .md\:bg-pink-200\/20 {
    background-color: rgb(251 207 232 / 0.2);
  }

  .md\:bg-pink-200\/30 {
    background-color: rgb(251 207 232 / 0.3);
  }

  .md\:bg-pink-200\/40 {
    background-color: rgb(251 207 232 / 0.4);
  }

  .md\:bg-pink-200\/5 {
    background-color: rgb(251 207 232 / 0.05);
  }

  .md\:bg-pink-200\/50 {
    background-color: rgb(251 207 232 / 0.5);
  }

  .md\:bg-pink-200\/60 {
    background-color: rgb(251 207 232 / 0.6);
  }

  .md\:bg-pink-200\/70 {
    background-color: rgb(251 207 232 / 0.7);
  }

  .md\:bg-pink-200\/80 {
    background-color: rgb(251 207 232 / 0.8);
  }

  .md\:bg-pink-200\/90 {
    background-color: rgb(251 207 232 / 0.9);
  }

  .md\:bg-pink-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(249 168 212 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-pink-300\/10 {
    background-color: rgb(249 168 212 / 0.1);
  }

  .md\:bg-pink-300\/20 {
    background-color: rgb(249 168 212 / 0.2);
  }

  .md\:bg-pink-300\/30 {
    background-color: rgb(249 168 212 / 0.3);
  }

  .md\:bg-pink-300\/40 {
    background-color: rgb(249 168 212 / 0.4);
  }

  .md\:bg-pink-300\/5 {
    background-color: rgb(249 168 212 / 0.05);
  }

  .md\:bg-pink-300\/50 {
    background-color: rgb(249 168 212 / 0.5);
  }

  .md\:bg-pink-300\/60 {
    background-color: rgb(249 168 212 / 0.6);
  }

  .md\:bg-pink-300\/70 {
    background-color: rgb(249 168 212 / 0.7);
  }

  .md\:bg-pink-300\/80 {
    background-color: rgb(249 168 212 / 0.8);
  }

  .md\:bg-pink-300\/90 {
    background-color: rgb(249 168 212 / 0.9);
  }

  .md\:bg-pink-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(244 114 182 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-pink-400\/10 {
    background-color: rgb(244 114 182 / 0.1);
  }

  .md\:bg-pink-400\/20 {
    background-color: rgb(244 114 182 / 0.2);
  }

  .md\:bg-pink-400\/30 {
    background-color: rgb(244 114 182 / 0.3);
  }

  .md\:bg-pink-400\/40 {
    background-color: rgb(244 114 182 / 0.4);
  }

  .md\:bg-pink-400\/5 {
    background-color: rgb(244 114 182 / 0.05);
  }

  .md\:bg-pink-400\/50 {
    background-color: rgb(244 114 182 / 0.5);
  }

  .md\:bg-pink-400\/60 {
    background-color: rgb(244 114 182 / 0.6);
  }

  .md\:bg-pink-400\/70 {
    background-color: rgb(244 114 182 / 0.7);
  }

  .md\:bg-pink-400\/80 {
    background-color: rgb(244 114 182 / 0.8);
  }

  .md\:bg-pink-400\/90 {
    background-color: rgb(244 114 182 / 0.9);
  }

  .md\:bg-pink-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(253 242 248 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-pink-50\/10 {
    background-color: rgb(253 242 248 / 0.1);
  }

  .md\:bg-pink-50\/20 {
    background-color: rgb(253 242 248 / 0.2);
  }

  .md\:bg-pink-50\/30 {
    background-color: rgb(253 242 248 / 0.3);
  }

  .md\:bg-pink-50\/40 {
    background-color: rgb(253 242 248 / 0.4);
  }

  .md\:bg-pink-50\/5 {
    background-color: rgb(253 242 248 / 0.05);
  }

  .md\:bg-pink-50\/50 {
    background-color: rgb(253 242 248 / 0.5);
  }

  .md\:bg-pink-50\/60 {
    background-color: rgb(253 242 248 / 0.6);
  }

  .md\:bg-pink-50\/70 {
    background-color: rgb(253 242 248 / 0.7);
  }

  .md\:bg-pink-50\/80 {
    background-color: rgb(253 242 248 / 0.8);
  }

  .md\:bg-pink-50\/90 {
    background-color: rgb(253 242 248 / 0.9);
  }

  .md\:bg-pink-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(236 72 153 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-pink-500\/10 {
    background-color: rgb(236 72 153 / 0.1);
  }

  .md\:bg-pink-500\/20 {
    background-color: rgb(236 72 153 / 0.2);
  }

  .md\:bg-pink-500\/30 {
    background-color: rgb(236 72 153 / 0.3);
  }

  .md\:bg-pink-500\/40 {
    background-color: rgb(236 72 153 / 0.4);
  }

  .md\:bg-pink-500\/5 {
    background-color: rgb(236 72 153 / 0.05);
  }

  .md\:bg-pink-500\/50 {
    background-color: rgb(236 72 153 / 0.5);
  }

  .md\:bg-pink-500\/60 {
    background-color: rgb(236 72 153 / 0.6);
  }

  .md\:bg-pink-500\/70 {
    background-color: rgb(236 72 153 / 0.7);
  }

  .md\:bg-pink-500\/80 {
    background-color: rgb(236 72 153 / 0.8);
  }

  .md\:bg-pink-500\/90 {
    background-color: rgb(236 72 153 / 0.9);
  }

  .md\:bg-pink-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(219 39 119 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-pink-600\/10 {
    background-color: rgb(219 39 119 / 0.1);
  }

  .md\:bg-pink-600\/20 {
    background-color: rgb(219 39 119 / 0.2);
  }

  .md\:bg-pink-600\/30 {
    background-color: rgb(219 39 119 / 0.3);
  }

  .md\:bg-pink-600\/40 {
    background-color: rgb(219 39 119 / 0.4);
  }

  .md\:bg-pink-600\/5 {
    background-color: rgb(219 39 119 / 0.05);
  }

  .md\:bg-pink-600\/50 {
    background-color: rgb(219 39 119 / 0.5);
  }

  .md\:bg-pink-600\/60 {
    background-color: rgb(219 39 119 / 0.6);
  }

  .md\:bg-pink-600\/70 {
    background-color: rgb(219 39 119 / 0.7);
  }

  .md\:bg-pink-600\/80 {
    background-color: rgb(219 39 119 / 0.8);
  }

  .md\:bg-pink-600\/90 {
    background-color: rgb(219 39 119 / 0.9);
  }

  .md\:bg-pink-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(190 24 93 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-pink-700\/10 {
    background-color: rgb(190 24 93 / 0.1);
  }

  .md\:bg-pink-700\/20 {
    background-color: rgb(190 24 93 / 0.2);
  }

  .md\:bg-pink-700\/30 {
    background-color: rgb(190 24 93 / 0.3);
  }

  .md\:bg-pink-700\/40 {
    background-color: rgb(190 24 93 / 0.4);
  }

  .md\:bg-pink-700\/5 {
    background-color: rgb(190 24 93 / 0.05);
  }

  .md\:bg-pink-700\/50 {
    background-color: rgb(190 24 93 / 0.5);
  }

  .md\:bg-pink-700\/60 {
    background-color: rgb(190 24 93 / 0.6);
  }

  .md\:bg-pink-700\/70 {
    background-color: rgb(190 24 93 / 0.7);
  }

  .md\:bg-pink-700\/80 {
    background-color: rgb(190 24 93 / 0.8);
  }

  .md\:bg-pink-700\/90 {
    background-color: rgb(190 24 93 / 0.9);
  }

  .md\:bg-pink-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(157 23 77 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-pink-800\/10 {
    background-color: rgb(157 23 77 / 0.1);
  }

  .md\:bg-pink-800\/20 {
    background-color: rgb(157 23 77 / 0.2);
  }

  .md\:bg-pink-800\/30 {
    background-color: rgb(157 23 77 / 0.3);
  }

  .md\:bg-pink-800\/40 {
    background-color: rgb(157 23 77 / 0.4);
  }

  .md\:bg-pink-800\/5 {
    background-color: rgb(157 23 77 / 0.05);
  }

  .md\:bg-pink-800\/50 {
    background-color: rgb(157 23 77 / 0.5);
  }

  .md\:bg-pink-800\/60 {
    background-color: rgb(157 23 77 / 0.6);
  }

  .md\:bg-pink-800\/70 {
    background-color: rgb(157 23 77 / 0.7);
  }

  .md\:bg-pink-800\/80 {
    background-color: rgb(157 23 77 / 0.8);
  }

  .md\:bg-pink-800\/90 {
    background-color: rgb(157 23 77 / 0.9);
  }

  .md\:bg-pink-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(131 24 67 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-pink-900\/10 {
    background-color: rgb(131 24 67 / 0.1);
  }

  .md\:bg-pink-900\/20 {
    background-color: rgb(131 24 67 / 0.2);
  }

  .md\:bg-pink-900\/30 {
    background-color: rgb(131 24 67 / 0.3);
  }

  .md\:bg-pink-900\/40 {
    background-color: rgb(131 24 67 / 0.4);
  }

  .md\:bg-pink-900\/5 {
    background-color: rgb(131 24 67 / 0.05);
  }

  .md\:bg-pink-900\/50 {
    background-color: rgb(131 24 67 / 0.5);
  }

  .md\:bg-pink-900\/60 {
    background-color: rgb(131 24 67 / 0.6);
  }

  .md\:bg-pink-900\/70 {
    background-color: rgb(131 24 67 / 0.7);
  }

  .md\:bg-pink-900\/80 {
    background-color: rgb(131 24 67 / 0.8);
  }

  .md\:bg-pink-900\/90 {
    background-color: rgb(131 24 67 / 0.9);
  }

  .md\:bg-pink-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(80 7 36 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-pink-950\/10 {
    background-color: rgb(80 7 36 / 0.1);
  }

  .md\:bg-pink-950\/20 {
    background-color: rgb(80 7 36 / 0.2);
  }

  .md\:bg-pink-950\/30 {
    background-color: rgb(80 7 36 / 0.3);
  }

  .md\:bg-pink-950\/40 {
    background-color: rgb(80 7 36 / 0.4);
  }

  .md\:bg-pink-950\/5 {
    background-color: rgb(80 7 36 / 0.05);
  }

  .md\:bg-pink-950\/50 {
    background-color: rgb(80 7 36 / 0.5);
  }

  .md\:bg-pink-950\/60 {
    background-color: rgb(80 7 36 / 0.6);
  }

  .md\:bg-pink-950\/70 {
    background-color: rgb(80 7 36 / 0.7);
  }

  .md\:bg-pink-950\/80 {
    background-color: rgb(80 7 36 / 0.8);
  }

  .md\:bg-pink-950\/90 {
    background-color: rgb(80 7 36 / 0.9);
  }

  .md\:bg-purple-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(243 232 255 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-purple-100\/10 {
    background-color: rgb(243 232 255 / 0.1);
  }

  .md\:bg-purple-100\/20 {
    background-color: rgb(243 232 255 / 0.2);
  }

  .md\:bg-purple-100\/30 {
    background-color: rgb(243 232 255 / 0.3);
  }

  .md\:bg-purple-100\/40 {
    background-color: rgb(243 232 255 / 0.4);
  }

  .md\:bg-purple-100\/5 {
    background-color: rgb(243 232 255 / 0.05);
  }

  .md\:bg-purple-100\/50 {
    background-color: rgb(243 232 255 / 0.5);
  }

  .md\:bg-purple-100\/60 {
    background-color: rgb(243 232 255 / 0.6);
  }

  .md\:bg-purple-100\/70 {
    background-color: rgb(243 232 255 / 0.7);
  }

  .md\:bg-purple-100\/80 {
    background-color: rgb(243 232 255 / 0.8);
  }

  .md\:bg-purple-100\/90 {
    background-color: rgb(243 232 255 / 0.9);
  }

  .md\:bg-purple-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(233 213 255 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-purple-200\/10 {
    background-color: rgb(233 213 255 / 0.1);
  }

  .md\:bg-purple-200\/20 {
    background-color: rgb(233 213 255 / 0.2);
  }

  .md\:bg-purple-200\/30 {
    background-color: rgb(233 213 255 / 0.3);
  }

  .md\:bg-purple-200\/40 {
    background-color: rgb(233 213 255 / 0.4);
  }

  .md\:bg-purple-200\/5 {
    background-color: rgb(233 213 255 / 0.05);
  }

  .md\:bg-purple-200\/50 {
    background-color: rgb(233 213 255 / 0.5);
  }

  .md\:bg-purple-200\/60 {
    background-color: rgb(233 213 255 / 0.6);
  }

  .md\:bg-purple-200\/70 {
    background-color: rgb(233 213 255 / 0.7);
  }

  .md\:bg-purple-200\/80 {
    background-color: rgb(233 213 255 / 0.8);
  }

  .md\:bg-purple-200\/90 {
    background-color: rgb(233 213 255 / 0.9);
  }

  .md\:bg-purple-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(216 180 254 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-purple-300\/10 {
    background-color: rgb(216 180 254 / 0.1);
  }

  .md\:bg-purple-300\/20 {
    background-color: rgb(216 180 254 / 0.2);
  }

  .md\:bg-purple-300\/30 {
    background-color: rgb(216 180 254 / 0.3);
  }

  .md\:bg-purple-300\/40 {
    background-color: rgb(216 180 254 / 0.4);
  }

  .md\:bg-purple-300\/5 {
    background-color: rgb(216 180 254 / 0.05);
  }

  .md\:bg-purple-300\/50 {
    background-color: rgb(216 180 254 / 0.5);
  }

  .md\:bg-purple-300\/60 {
    background-color: rgb(216 180 254 / 0.6);
  }

  .md\:bg-purple-300\/70 {
    background-color: rgb(216 180 254 / 0.7);
  }

  .md\:bg-purple-300\/80 {
    background-color: rgb(216 180 254 / 0.8);
  }

  .md\:bg-purple-300\/90 {
    background-color: rgb(216 180 254 / 0.9);
  }

  .md\:bg-purple-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(192 132 252 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-purple-400\/10 {
    background-color: rgb(192 132 252 / 0.1);
  }

  .md\:bg-purple-400\/20 {
    background-color: rgb(192 132 252 / 0.2);
  }

  .md\:bg-purple-400\/30 {
    background-color: rgb(192 132 252 / 0.3);
  }

  .md\:bg-purple-400\/40 {
    background-color: rgb(192 132 252 / 0.4);
  }

  .md\:bg-purple-400\/5 {
    background-color: rgb(192 132 252 / 0.05);
  }

  .md\:bg-purple-400\/50 {
    background-color: rgb(192 132 252 / 0.5);
  }

  .md\:bg-purple-400\/60 {
    background-color: rgb(192 132 252 / 0.6);
  }

  .md\:bg-purple-400\/70 {
    background-color: rgb(192 132 252 / 0.7);
  }

  .md\:bg-purple-400\/80 {
    background-color: rgb(192 132 252 / 0.8);
  }

  .md\:bg-purple-400\/90 {
    background-color: rgb(192 132 252 / 0.9);
  }

  .md\:bg-purple-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 245 255 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-purple-50\/10 {
    background-color: rgb(250 245 255 / 0.1);
  }

  .md\:bg-purple-50\/20 {
    background-color: rgb(250 245 255 / 0.2);
  }

  .md\:bg-purple-50\/30 {
    background-color: rgb(250 245 255 / 0.3);
  }

  .md\:bg-purple-50\/40 {
    background-color: rgb(250 245 255 / 0.4);
  }

  .md\:bg-purple-50\/5 {
    background-color: rgb(250 245 255 / 0.05);
  }

  .md\:bg-purple-50\/50 {
    background-color: rgb(250 245 255 / 0.5);
  }

  .md\:bg-purple-50\/60 {
    background-color: rgb(250 245 255 / 0.6);
  }

  .md\:bg-purple-50\/70 {
    background-color: rgb(250 245 255 / 0.7);
  }

  .md\:bg-purple-50\/80 {
    background-color: rgb(250 245 255 / 0.8);
  }

  .md\:bg-purple-50\/90 {
    background-color: rgb(250 245 255 / 0.9);
  }

  .md\:bg-purple-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(168 85 247 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-purple-500\/10 {
    background-color: rgb(168 85 247 / 0.1);
  }

  .md\:bg-purple-500\/20 {
    background-color: rgb(168 85 247 / 0.2);
  }

  .md\:bg-purple-500\/30 {
    background-color: rgb(168 85 247 / 0.3);
  }

  .md\:bg-purple-500\/40 {
    background-color: rgb(168 85 247 / 0.4);
  }

  .md\:bg-purple-500\/5 {
    background-color: rgb(168 85 247 / 0.05);
  }

  .md\:bg-purple-500\/50 {
    background-color: rgb(168 85 247 / 0.5);
  }

  .md\:bg-purple-500\/60 {
    background-color: rgb(168 85 247 / 0.6);
  }

  .md\:bg-purple-500\/70 {
    background-color: rgb(168 85 247 / 0.7);
  }

  .md\:bg-purple-500\/80 {
    background-color: rgb(168 85 247 / 0.8);
  }

  .md\:bg-purple-500\/90 {
    background-color: rgb(168 85 247 / 0.9);
  }

  .md\:bg-purple-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(147 51 234 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-purple-600\/10 {
    background-color: rgb(147 51 234 / 0.1);
  }

  .md\:bg-purple-600\/20 {
    background-color: rgb(147 51 234 / 0.2);
  }

  .md\:bg-purple-600\/30 {
    background-color: rgb(147 51 234 / 0.3);
  }

  .md\:bg-purple-600\/40 {
    background-color: rgb(147 51 234 / 0.4);
  }

  .md\:bg-purple-600\/5 {
    background-color: rgb(147 51 234 / 0.05);
  }

  .md\:bg-purple-600\/50 {
    background-color: rgb(147 51 234 / 0.5);
  }

  .md\:bg-purple-600\/60 {
    background-color: rgb(147 51 234 / 0.6);
  }

  .md\:bg-purple-600\/70 {
    background-color: rgb(147 51 234 / 0.7);
  }

  .md\:bg-purple-600\/80 {
    background-color: rgb(147 51 234 / 0.8);
  }

  .md\:bg-purple-600\/90 {
    background-color: rgb(147 51 234 / 0.9);
  }

  .md\:bg-purple-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(126 34 206 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-purple-700\/10 {
    background-color: rgb(126 34 206 / 0.1);
  }

  .md\:bg-purple-700\/20 {
    background-color: rgb(126 34 206 / 0.2);
  }

  .md\:bg-purple-700\/30 {
    background-color: rgb(126 34 206 / 0.3);
  }

  .md\:bg-purple-700\/40 {
    background-color: rgb(126 34 206 / 0.4);
  }

  .md\:bg-purple-700\/5 {
    background-color: rgb(126 34 206 / 0.05);
  }

  .md\:bg-purple-700\/50 {
    background-color: rgb(126 34 206 / 0.5);
  }

  .md\:bg-purple-700\/60 {
    background-color: rgb(126 34 206 / 0.6);
  }

  .md\:bg-purple-700\/70 {
    background-color: rgb(126 34 206 / 0.7);
  }

  .md\:bg-purple-700\/80 {
    background-color: rgb(126 34 206 / 0.8);
  }

  .md\:bg-purple-700\/90 {
    background-color: rgb(126 34 206 / 0.9);
  }

  .md\:bg-purple-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(107 33 168 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-purple-800\/10 {
    background-color: rgb(107 33 168 / 0.1);
  }

  .md\:bg-purple-800\/20 {
    background-color: rgb(107 33 168 / 0.2);
  }

  .md\:bg-purple-800\/30 {
    background-color: rgb(107 33 168 / 0.3);
  }

  .md\:bg-purple-800\/40 {
    background-color: rgb(107 33 168 / 0.4);
  }

  .md\:bg-purple-800\/5 {
    background-color: rgb(107 33 168 / 0.05);
  }

  .md\:bg-purple-800\/50 {
    background-color: rgb(107 33 168 / 0.5);
  }

  .md\:bg-purple-800\/60 {
    background-color: rgb(107 33 168 / 0.6);
  }

  .md\:bg-purple-800\/70 {
    background-color: rgb(107 33 168 / 0.7);
  }

  .md\:bg-purple-800\/80 {
    background-color: rgb(107 33 168 / 0.8);
  }

  .md\:bg-purple-800\/90 {
    background-color: rgb(107 33 168 / 0.9);
  }

  .md\:bg-purple-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(88 28 135 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-purple-900\/10 {
    background-color: rgb(88 28 135 / 0.1);
  }

  .md\:bg-purple-900\/20 {
    background-color: rgb(88 28 135 / 0.2);
  }

  .md\:bg-purple-900\/30 {
    background-color: rgb(88 28 135 / 0.3);
  }

  .md\:bg-purple-900\/40 {
    background-color: rgb(88 28 135 / 0.4);
  }

  .md\:bg-purple-900\/5 {
    background-color: rgb(88 28 135 / 0.05);
  }

  .md\:bg-purple-900\/50 {
    background-color: rgb(88 28 135 / 0.5);
  }

  .md\:bg-purple-900\/60 {
    background-color: rgb(88 28 135 / 0.6);
  }

  .md\:bg-purple-900\/70 {
    background-color: rgb(88 28 135 / 0.7);
  }

  .md\:bg-purple-900\/80 {
    background-color: rgb(88 28 135 / 0.8);
  }

  .md\:bg-purple-900\/90 {
    background-color: rgb(88 28 135 / 0.9);
  }

  .md\:bg-purple-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(59 7 100 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-purple-950\/10 {
    background-color: rgb(59 7 100 / 0.1);
  }

  .md\:bg-purple-950\/20 {
    background-color: rgb(59 7 100 / 0.2);
  }

  .md\:bg-purple-950\/30 {
    background-color: rgb(59 7 100 / 0.3);
  }

  .md\:bg-purple-950\/40 {
    background-color: rgb(59 7 100 / 0.4);
  }

  .md\:bg-purple-950\/5 {
    background-color: rgb(59 7 100 / 0.05);
  }

  .md\:bg-purple-950\/50 {
    background-color: rgb(59 7 100 / 0.5);
  }

  .md\:bg-purple-950\/60 {
    background-color: rgb(59 7 100 / 0.6);
  }

  .md\:bg-purple-950\/70 {
    background-color: rgb(59 7 100 / 0.7);
  }

  .md\:bg-purple-950\/80 {
    background-color: rgb(59 7 100 / 0.8);
  }

  .md\:bg-purple-950\/90 {
    background-color: rgb(59 7 100 / 0.9);
  }

  .md\:bg-red-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-red-100\/10 {
    background-color: rgb(254 226 226 / 0.1);
  }

  .md\:bg-red-100\/20 {
    background-color: rgb(254 226 226 / 0.2);
  }

  .md\:bg-red-100\/30 {
    background-color: rgb(254 226 226 / 0.3);
  }

  .md\:bg-red-100\/40 {
    background-color: rgb(254 226 226 / 0.4);
  }

  .md\:bg-red-100\/5 {
    background-color: rgb(254 226 226 / 0.05);
  }

  .md\:bg-red-100\/50 {
    background-color: rgb(254 226 226 / 0.5);
  }

  .md\:bg-red-100\/60 {
    background-color: rgb(254 226 226 / 0.6);
  }

  .md\:bg-red-100\/70 {
    background-color: rgb(254 226 226 / 0.7);
  }

  .md\:bg-red-100\/80 {
    background-color: rgb(254 226 226 / 0.8);
  }

  .md\:bg-red-100\/90 {
    background-color: rgb(254 226 226 / 0.9);
  }

  .md\:bg-red-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 202 202 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-red-200\/10 {
    background-color: rgb(254 202 202 / 0.1);
  }

  .md\:bg-red-200\/20 {
    background-color: rgb(254 202 202 / 0.2);
  }

  .md\:bg-red-200\/30 {
    background-color: rgb(254 202 202 / 0.3);
  }

  .md\:bg-red-200\/40 {
    background-color: rgb(254 202 202 / 0.4);
  }

  .md\:bg-red-200\/5 {
    background-color: rgb(254 202 202 / 0.05);
  }

  .md\:bg-red-200\/50 {
    background-color: rgb(254 202 202 / 0.5);
  }

  .md\:bg-red-200\/60 {
    background-color: rgb(254 202 202 / 0.6);
  }

  .md\:bg-red-200\/70 {
    background-color: rgb(254 202 202 / 0.7);
  }

  .md\:bg-red-200\/80 {
    background-color: rgb(254 202 202 / 0.8);
  }

  .md\:bg-red-200\/90 {
    background-color: rgb(254 202 202 / 0.9);
  }

  .md\:bg-red-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(252 165 165 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-red-300\/10 {
    background-color: rgb(252 165 165 / 0.1);
  }

  .md\:bg-red-300\/20 {
    background-color: rgb(252 165 165 / 0.2);
  }

  .md\:bg-red-300\/30 {
    background-color: rgb(252 165 165 / 0.3);
  }

  .md\:bg-red-300\/40 {
    background-color: rgb(252 165 165 / 0.4);
  }

  .md\:bg-red-300\/5 {
    background-color: rgb(252 165 165 / 0.05);
  }

  .md\:bg-red-300\/50 {
    background-color: rgb(252 165 165 / 0.5);
  }

  .md\:bg-red-300\/60 {
    background-color: rgb(252 165 165 / 0.6);
  }

  .md\:bg-red-300\/70 {
    background-color: rgb(252 165 165 / 0.7);
  }

  .md\:bg-red-300\/80 {
    background-color: rgb(252 165 165 / 0.8);
  }

  .md\:bg-red-300\/90 {
    background-color: rgb(252 165 165 / 0.9);
  }

  .md\:bg-red-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(248 113 113 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-red-400\/10 {
    background-color: rgb(248 113 113 / 0.1);
  }

  .md\:bg-red-400\/20 {
    background-color: rgb(248 113 113 / 0.2);
  }

  .md\:bg-red-400\/30 {
    background-color: rgb(248 113 113 / 0.3);
  }

  .md\:bg-red-400\/40 {
    background-color: rgb(248 113 113 / 0.4);
  }

  .md\:bg-red-400\/5 {
    background-color: rgb(248 113 113 / 0.05);
  }

  .md\:bg-red-400\/50 {
    background-color: rgb(248 113 113 / 0.5);
  }

  .md\:bg-red-400\/60 {
    background-color: rgb(248 113 113 / 0.6);
  }

  .md\:bg-red-400\/70 {
    background-color: rgb(248 113 113 / 0.7);
  }

  .md\:bg-red-400\/80 {
    background-color: rgb(248 113 113 / 0.8);
  }

  .md\:bg-red-400\/90 {
    background-color: rgb(248 113 113 / 0.9);
  }

  .md\:bg-red-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-red-50\/10 {
    background-color: rgb(254 242 242 / 0.1);
  }

  .md\:bg-red-50\/20 {
    background-color: rgb(254 242 242 / 0.2);
  }

  .md\:bg-red-50\/30 {
    background-color: rgb(254 242 242 / 0.3);
  }

  .md\:bg-red-50\/40 {
    background-color: rgb(254 242 242 / 0.4);
  }

  .md\:bg-red-50\/5 {
    background-color: rgb(254 242 242 / 0.05);
  }

  .md\:bg-red-50\/50 {
    background-color: rgb(254 242 242 / 0.5);
  }

  .md\:bg-red-50\/60 {
    background-color: rgb(254 242 242 / 0.6);
  }

  .md\:bg-red-50\/70 {
    background-color: rgb(254 242 242 / 0.7);
  }

  .md\:bg-red-50\/80 {
    background-color: rgb(254 242 242 / 0.8);
  }

  .md\:bg-red-50\/90 {
    background-color: rgb(254 242 242 / 0.9);
  }

  .md\:bg-red-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-red-500\/10 {
    background-color: rgb(239 68 68 / 0.1);
  }

  .md\:bg-red-500\/20 {
    background-color: rgb(239 68 68 / 0.2);
  }

  .md\:bg-red-500\/30 {
    background-color: rgb(239 68 68 / 0.3);
  }

  .md\:bg-red-500\/40 {
    background-color: rgb(239 68 68 / 0.4);
  }

  .md\:bg-red-500\/5 {
    background-color: rgb(239 68 68 / 0.05);
  }

  .md\:bg-red-500\/50 {
    background-color: rgb(239 68 68 / 0.5);
  }

  .md\:bg-red-500\/60 {
    background-color: rgb(239 68 68 / 0.6);
  }

  .md\:bg-red-500\/70 {
    background-color: rgb(239 68 68 / 0.7);
  }

  .md\:bg-red-500\/80 {
    background-color: rgb(239 68 68 / 0.8);
  }

  .md\:bg-red-500\/90 {
    background-color: rgb(239 68 68 / 0.9);
  }

  .md\:bg-red-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-red-600\/10 {
    background-color: rgb(220 38 38 / 0.1);
  }

  .md\:bg-red-600\/20 {
    background-color: rgb(220 38 38 / 0.2);
  }

  .md\:bg-red-600\/30 {
    background-color: rgb(220 38 38 / 0.3);
  }

  .md\:bg-red-600\/40 {
    background-color: rgb(220 38 38 / 0.4);
  }

  .md\:bg-red-600\/5 {
    background-color: rgb(220 38 38 / 0.05);
  }

  .md\:bg-red-600\/50 {
    background-color: rgb(220 38 38 / 0.5);
  }

  .md\:bg-red-600\/60 {
    background-color: rgb(220 38 38 / 0.6);
  }

  .md\:bg-red-600\/70 {
    background-color: rgb(220 38 38 / 0.7);
  }

  .md\:bg-red-600\/80 {
    background-color: rgb(220 38 38 / 0.8);
  }

  .md\:bg-red-600\/90 {
    background-color: rgb(220 38 38 / 0.9);
  }

  .md\:bg-red-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-red-700\/10 {
    background-color: rgb(185 28 28 / 0.1);
  }

  .md\:bg-red-700\/20 {
    background-color: rgb(185 28 28 / 0.2);
  }

  .md\:bg-red-700\/30 {
    background-color: rgb(185 28 28 / 0.3);
  }

  .md\:bg-red-700\/40 {
    background-color: rgb(185 28 28 / 0.4);
  }

  .md\:bg-red-700\/5 {
    background-color: rgb(185 28 28 / 0.05);
  }

  .md\:bg-red-700\/50 {
    background-color: rgb(185 28 28 / 0.5);
  }

  .md\:bg-red-700\/60 {
    background-color: rgb(185 28 28 / 0.6);
  }

  .md\:bg-red-700\/70 {
    background-color: rgb(185 28 28 / 0.7);
  }

  .md\:bg-red-700\/80 {
    background-color: rgb(185 28 28 / 0.8);
  }

  .md\:bg-red-700\/90 {
    background-color: rgb(185 28 28 / 0.9);
  }

  .md\:bg-red-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(153 27 27 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-red-800\/10 {
    background-color: rgb(153 27 27 / 0.1);
  }

  .md\:bg-red-800\/20 {
    background-color: rgb(153 27 27 / 0.2);
  }

  .md\:bg-red-800\/30 {
    background-color: rgb(153 27 27 / 0.3);
  }

  .md\:bg-red-800\/40 {
    background-color: rgb(153 27 27 / 0.4);
  }

  .md\:bg-red-800\/5 {
    background-color: rgb(153 27 27 / 0.05);
  }

  .md\:bg-red-800\/50 {
    background-color: rgb(153 27 27 / 0.5);
  }

  .md\:bg-red-800\/60 {
    background-color: rgb(153 27 27 / 0.6);
  }

  .md\:bg-red-800\/70 {
    background-color: rgb(153 27 27 / 0.7);
  }

  .md\:bg-red-800\/80 {
    background-color: rgb(153 27 27 / 0.8);
  }

  .md\:bg-red-800\/90 {
    background-color: rgb(153 27 27 / 0.9);
  }

  .md\:bg-red-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(127 29 29 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-red-900\/10 {
    background-color: rgb(127 29 29 / 0.1);
  }

  .md\:bg-red-900\/20 {
    background-color: rgb(127 29 29 / 0.2);
  }

  .md\:bg-red-900\/30 {
    background-color: rgb(127 29 29 / 0.3);
  }

  .md\:bg-red-900\/40 {
    background-color: rgb(127 29 29 / 0.4);
  }

  .md\:bg-red-900\/5 {
    background-color: rgb(127 29 29 / 0.05);
  }

  .md\:bg-red-900\/50 {
    background-color: rgb(127 29 29 / 0.5);
  }

  .md\:bg-red-900\/60 {
    background-color: rgb(127 29 29 / 0.6);
  }

  .md\:bg-red-900\/70 {
    background-color: rgb(127 29 29 / 0.7);
  }

  .md\:bg-red-900\/80 {
    background-color: rgb(127 29 29 / 0.8);
  }

  .md\:bg-red-900\/90 {
    background-color: rgb(127 29 29 / 0.9);
  }

  .md\:bg-red-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(69 10 10 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-red-950\/10 {
    background-color: rgb(69 10 10 / 0.1);
  }

  .md\:bg-red-950\/20 {
    background-color: rgb(69 10 10 / 0.2);
  }

  .md\:bg-red-950\/30 {
    background-color: rgb(69 10 10 / 0.3);
  }

  .md\:bg-red-950\/40 {
    background-color: rgb(69 10 10 / 0.4);
  }

  .md\:bg-red-950\/5 {
    background-color: rgb(69 10 10 / 0.05);
  }

  .md\:bg-red-950\/50 {
    background-color: rgb(69 10 10 / 0.5);
  }

  .md\:bg-red-950\/60 {
    background-color: rgb(69 10 10 / 0.6);
  }

  .md\:bg-red-950\/70 {
    background-color: rgb(69 10 10 / 0.7);
  }

  .md\:bg-red-950\/80 {
    background-color: rgb(69 10 10 / 0.8);
  }

  .md\:bg-red-950\/90 {
    background-color: rgb(69 10 10 / 0.9);
  }

  .md\:bg-rose-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 228 230 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-rose-100\/10 {
    background-color: rgb(255 228 230 / 0.1);
  }

  .md\:bg-rose-100\/20 {
    background-color: rgb(255 228 230 / 0.2);
  }

  .md\:bg-rose-100\/30 {
    background-color: rgb(255 228 230 / 0.3);
  }

  .md\:bg-rose-100\/40 {
    background-color: rgb(255 228 230 / 0.4);
  }

  .md\:bg-rose-100\/5 {
    background-color: rgb(255 228 230 / 0.05);
  }

  .md\:bg-rose-100\/50 {
    background-color: rgb(255 228 230 / 0.5);
  }

  .md\:bg-rose-100\/60 {
    background-color: rgb(255 228 230 / 0.6);
  }

  .md\:bg-rose-100\/70 {
    background-color: rgb(255 228 230 / 0.7);
  }

  .md\:bg-rose-100\/80 {
    background-color: rgb(255 228 230 / 0.8);
  }

  .md\:bg-rose-100\/90 {
    background-color: rgb(255 228 230 / 0.9);
  }

  .md\:bg-rose-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 205 211 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-rose-200\/10 {
    background-color: rgb(254 205 211 / 0.1);
  }

  .md\:bg-rose-200\/20 {
    background-color: rgb(254 205 211 / 0.2);
  }

  .md\:bg-rose-200\/30 {
    background-color: rgb(254 205 211 / 0.3);
  }

  .md\:bg-rose-200\/40 {
    background-color: rgb(254 205 211 / 0.4);
  }

  .md\:bg-rose-200\/5 {
    background-color: rgb(254 205 211 / 0.05);
  }

  .md\:bg-rose-200\/50 {
    background-color: rgb(254 205 211 / 0.5);
  }

  .md\:bg-rose-200\/60 {
    background-color: rgb(254 205 211 / 0.6);
  }

  .md\:bg-rose-200\/70 {
    background-color: rgb(254 205 211 / 0.7);
  }

  .md\:bg-rose-200\/80 {
    background-color: rgb(254 205 211 / 0.8);
  }

  .md\:bg-rose-200\/90 {
    background-color: rgb(254 205 211 / 0.9);
  }

  .md\:bg-rose-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(253 164 175 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-rose-300\/10 {
    background-color: rgb(253 164 175 / 0.1);
  }

  .md\:bg-rose-300\/20 {
    background-color: rgb(253 164 175 / 0.2);
  }

  .md\:bg-rose-300\/30 {
    background-color: rgb(253 164 175 / 0.3);
  }

  .md\:bg-rose-300\/40 {
    background-color: rgb(253 164 175 / 0.4);
  }

  .md\:bg-rose-300\/5 {
    background-color: rgb(253 164 175 / 0.05);
  }

  .md\:bg-rose-300\/50 {
    background-color: rgb(253 164 175 / 0.5);
  }

  .md\:bg-rose-300\/60 {
    background-color: rgb(253 164 175 / 0.6);
  }

  .md\:bg-rose-300\/70 {
    background-color: rgb(253 164 175 / 0.7);
  }

  .md\:bg-rose-300\/80 {
    background-color: rgb(253 164 175 / 0.8);
  }

  .md\:bg-rose-300\/90 {
    background-color: rgb(253 164 175 / 0.9);
  }

  .md\:bg-rose-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(251 113 133 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-rose-400\/10 {
    background-color: rgb(251 113 133 / 0.1);
  }

  .md\:bg-rose-400\/20 {
    background-color: rgb(251 113 133 / 0.2);
  }

  .md\:bg-rose-400\/30 {
    background-color: rgb(251 113 133 / 0.3);
  }

  .md\:bg-rose-400\/40 {
    background-color: rgb(251 113 133 / 0.4);
  }

  .md\:bg-rose-400\/5 {
    background-color: rgb(251 113 133 / 0.05);
  }

  .md\:bg-rose-400\/50 {
    background-color: rgb(251 113 133 / 0.5);
  }

  .md\:bg-rose-400\/60 {
    background-color: rgb(251 113 133 / 0.6);
  }

  .md\:bg-rose-400\/70 {
    background-color: rgb(251 113 133 / 0.7);
  }

  .md\:bg-rose-400\/80 {
    background-color: rgb(251 113 133 / 0.8);
  }

  .md\:bg-rose-400\/90 {
    background-color: rgb(251 113 133 / 0.9);
  }

  .md\:bg-rose-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 241 242 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-rose-50\/10 {
    background-color: rgb(255 241 242 / 0.1);
  }

  .md\:bg-rose-50\/20 {
    background-color: rgb(255 241 242 / 0.2);
  }

  .md\:bg-rose-50\/30 {
    background-color: rgb(255 241 242 / 0.3);
  }

  .md\:bg-rose-50\/40 {
    background-color: rgb(255 241 242 / 0.4);
  }

  .md\:bg-rose-50\/5 {
    background-color: rgb(255 241 242 / 0.05);
  }

  .md\:bg-rose-50\/50 {
    background-color: rgb(255 241 242 / 0.5);
  }

  .md\:bg-rose-50\/60 {
    background-color: rgb(255 241 242 / 0.6);
  }

  .md\:bg-rose-50\/70 {
    background-color: rgb(255 241 242 / 0.7);
  }

  .md\:bg-rose-50\/80 {
    background-color: rgb(255 241 242 / 0.8);
  }

  .md\:bg-rose-50\/90 {
    background-color: rgb(255 241 242 / 0.9);
  }

  .md\:bg-rose-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(244 63 94 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-rose-500\/10 {
    background-color: rgb(244 63 94 / 0.1);
  }

  .md\:bg-rose-500\/20 {
    background-color: rgb(244 63 94 / 0.2);
  }

  .md\:bg-rose-500\/30 {
    background-color: rgb(244 63 94 / 0.3);
  }

  .md\:bg-rose-500\/40 {
    background-color: rgb(244 63 94 / 0.4);
  }

  .md\:bg-rose-500\/5 {
    background-color: rgb(244 63 94 / 0.05);
  }

  .md\:bg-rose-500\/50 {
    background-color: rgb(244 63 94 / 0.5);
  }

  .md\:bg-rose-500\/60 {
    background-color: rgb(244 63 94 / 0.6);
  }

  .md\:bg-rose-500\/70 {
    background-color: rgb(244 63 94 / 0.7);
  }

  .md\:bg-rose-500\/80 {
    background-color: rgb(244 63 94 / 0.8);
  }

  .md\:bg-rose-500\/90 {
    background-color: rgb(244 63 94 / 0.9);
  }

  .md\:bg-rose-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(225 29 72 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-rose-600\/10 {
    background-color: rgb(225 29 72 / 0.1);
  }

  .md\:bg-rose-600\/20 {
    background-color: rgb(225 29 72 / 0.2);
  }

  .md\:bg-rose-600\/30 {
    background-color: rgb(225 29 72 / 0.3);
  }

  .md\:bg-rose-600\/40 {
    background-color: rgb(225 29 72 / 0.4);
  }

  .md\:bg-rose-600\/5 {
    background-color: rgb(225 29 72 / 0.05);
  }

  .md\:bg-rose-600\/50 {
    background-color: rgb(225 29 72 / 0.5);
  }

  .md\:bg-rose-600\/60 {
    background-color: rgb(225 29 72 / 0.6);
  }

  .md\:bg-rose-600\/70 {
    background-color: rgb(225 29 72 / 0.7);
  }

  .md\:bg-rose-600\/80 {
    background-color: rgb(225 29 72 / 0.8);
  }

  .md\:bg-rose-600\/90 {
    background-color: rgb(225 29 72 / 0.9);
  }

  .md\:bg-rose-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(190 18 60 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-rose-700\/10 {
    background-color: rgb(190 18 60 / 0.1);
  }

  .md\:bg-rose-700\/20 {
    background-color: rgb(190 18 60 / 0.2);
  }

  .md\:bg-rose-700\/30 {
    background-color: rgb(190 18 60 / 0.3);
  }

  .md\:bg-rose-700\/40 {
    background-color: rgb(190 18 60 / 0.4);
  }

  .md\:bg-rose-700\/5 {
    background-color: rgb(190 18 60 / 0.05);
  }

  .md\:bg-rose-700\/50 {
    background-color: rgb(190 18 60 / 0.5);
  }

  .md\:bg-rose-700\/60 {
    background-color: rgb(190 18 60 / 0.6);
  }

  .md\:bg-rose-700\/70 {
    background-color: rgb(190 18 60 / 0.7);
  }

  .md\:bg-rose-700\/80 {
    background-color: rgb(190 18 60 / 0.8);
  }

  .md\:bg-rose-700\/90 {
    background-color: rgb(190 18 60 / 0.9);
  }

  .md\:bg-rose-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(159 18 57 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-rose-800\/10 {
    background-color: rgb(159 18 57 / 0.1);
  }

  .md\:bg-rose-800\/20 {
    background-color: rgb(159 18 57 / 0.2);
  }

  .md\:bg-rose-800\/30 {
    background-color: rgb(159 18 57 / 0.3);
  }

  .md\:bg-rose-800\/40 {
    background-color: rgb(159 18 57 / 0.4);
  }

  .md\:bg-rose-800\/5 {
    background-color: rgb(159 18 57 / 0.05);
  }

  .md\:bg-rose-800\/50 {
    background-color: rgb(159 18 57 / 0.5);
  }

  .md\:bg-rose-800\/60 {
    background-color: rgb(159 18 57 / 0.6);
  }

  .md\:bg-rose-800\/70 {
    background-color: rgb(159 18 57 / 0.7);
  }

  .md\:bg-rose-800\/80 {
    background-color: rgb(159 18 57 / 0.8);
  }

  .md\:bg-rose-800\/90 {
    background-color: rgb(159 18 57 / 0.9);
  }

  .md\:bg-rose-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(136 19 55 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-rose-900\/10 {
    background-color: rgb(136 19 55 / 0.1);
  }

  .md\:bg-rose-900\/20 {
    background-color: rgb(136 19 55 / 0.2);
  }

  .md\:bg-rose-900\/30 {
    background-color: rgb(136 19 55 / 0.3);
  }

  .md\:bg-rose-900\/40 {
    background-color: rgb(136 19 55 / 0.4);
  }

  .md\:bg-rose-900\/5 {
    background-color: rgb(136 19 55 / 0.05);
  }

  .md\:bg-rose-900\/50 {
    background-color: rgb(136 19 55 / 0.5);
  }

  .md\:bg-rose-900\/60 {
    background-color: rgb(136 19 55 / 0.6);
  }

  .md\:bg-rose-900\/70 {
    background-color: rgb(136 19 55 / 0.7);
  }

  .md\:bg-rose-900\/80 {
    background-color: rgb(136 19 55 / 0.8);
  }

  .md\:bg-rose-900\/90 {
    background-color: rgb(136 19 55 / 0.9);
  }

  .md\:bg-rose-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(76 5 25 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-rose-950\/10 {
    background-color: rgb(76 5 25 / 0.1);
  }

  .md\:bg-rose-950\/20 {
    background-color: rgb(76 5 25 / 0.2);
  }

  .md\:bg-rose-950\/30 {
    background-color: rgb(76 5 25 / 0.3);
  }

  .md\:bg-rose-950\/40 {
    background-color: rgb(76 5 25 / 0.4);
  }

  .md\:bg-rose-950\/5 {
    background-color: rgb(76 5 25 / 0.05);
  }

  .md\:bg-rose-950\/50 {
    background-color: rgb(76 5 25 / 0.5);
  }

  .md\:bg-rose-950\/60 {
    background-color: rgb(76 5 25 / 0.6);
  }

  .md\:bg-rose-950\/70 {
    background-color: rgb(76 5 25 / 0.7);
  }

  .md\:bg-rose-950\/80 {
    background-color: rgb(76 5 25 / 0.8);
  }

  .md\:bg-rose-950\/90 {
    background-color: rgb(76 5 25 / 0.9);
  }

  .md\:bg-sky-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(224 242 254 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-sky-100\/10 {
    background-color: rgb(224 242 254 / 0.1);
  }

  .md\:bg-sky-100\/20 {
    background-color: rgb(224 242 254 / 0.2);
  }

  .md\:bg-sky-100\/30 {
    background-color: rgb(224 242 254 / 0.3);
  }

  .md\:bg-sky-100\/40 {
    background-color: rgb(224 242 254 / 0.4);
  }

  .md\:bg-sky-100\/5 {
    background-color: rgb(224 242 254 / 0.05);
  }

  .md\:bg-sky-100\/50 {
    background-color: rgb(224 242 254 / 0.5);
  }

  .md\:bg-sky-100\/60 {
    background-color: rgb(224 242 254 / 0.6);
  }

  .md\:bg-sky-100\/70 {
    background-color: rgb(224 242 254 / 0.7);
  }

  .md\:bg-sky-100\/80 {
    background-color: rgb(224 242 254 / 0.8);
  }

  .md\:bg-sky-100\/90 {
    background-color: rgb(224 242 254 / 0.9);
  }

  .md\:bg-sky-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(186 230 253 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-sky-200\/10 {
    background-color: rgb(186 230 253 / 0.1);
  }

  .md\:bg-sky-200\/20 {
    background-color: rgb(186 230 253 / 0.2);
  }

  .md\:bg-sky-200\/30 {
    background-color: rgb(186 230 253 / 0.3);
  }

  .md\:bg-sky-200\/40 {
    background-color: rgb(186 230 253 / 0.4);
  }

  .md\:bg-sky-200\/5 {
    background-color: rgb(186 230 253 / 0.05);
  }

  .md\:bg-sky-200\/50 {
    background-color: rgb(186 230 253 / 0.5);
  }

  .md\:bg-sky-200\/60 {
    background-color: rgb(186 230 253 / 0.6);
  }

  .md\:bg-sky-200\/70 {
    background-color: rgb(186 230 253 / 0.7);
  }

  .md\:bg-sky-200\/80 {
    background-color: rgb(186 230 253 / 0.8);
  }

  .md\:bg-sky-200\/90 {
    background-color: rgb(186 230 253 / 0.9);
  }

  .md\:bg-sky-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(125 211 252 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-sky-300\/10 {
    background-color: rgb(125 211 252 / 0.1);
  }

  .md\:bg-sky-300\/20 {
    background-color: rgb(125 211 252 / 0.2);
  }

  .md\:bg-sky-300\/30 {
    background-color: rgb(125 211 252 / 0.3);
  }

  .md\:bg-sky-300\/40 {
    background-color: rgb(125 211 252 / 0.4);
  }

  .md\:bg-sky-300\/5 {
    background-color: rgb(125 211 252 / 0.05);
  }

  .md\:bg-sky-300\/50 {
    background-color: rgb(125 211 252 / 0.5);
  }

  .md\:bg-sky-300\/60 {
    background-color: rgb(125 211 252 / 0.6);
  }

  .md\:bg-sky-300\/70 {
    background-color: rgb(125 211 252 / 0.7);
  }

  .md\:bg-sky-300\/80 {
    background-color: rgb(125 211 252 / 0.8);
  }

  .md\:bg-sky-300\/90 {
    background-color: rgb(125 211 252 / 0.9);
  }

  .md\:bg-sky-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(56 189 248 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-sky-400\/10 {
    background-color: rgb(56 189 248 / 0.1);
  }

  .md\:bg-sky-400\/20 {
    background-color: rgb(56 189 248 / 0.2);
  }

  .md\:bg-sky-400\/30 {
    background-color: rgb(56 189 248 / 0.3);
  }

  .md\:bg-sky-400\/40 {
    background-color: rgb(56 189 248 / 0.4);
  }

  .md\:bg-sky-400\/5 {
    background-color: rgb(56 189 248 / 0.05);
  }

  .md\:bg-sky-400\/50 {
    background-color: rgb(56 189 248 / 0.5);
  }

  .md\:bg-sky-400\/60 {
    background-color: rgb(56 189 248 / 0.6);
  }

  .md\:bg-sky-400\/70 {
    background-color: rgb(56 189 248 / 0.7);
  }

  .md\:bg-sky-400\/80 {
    background-color: rgb(56 189 248 / 0.8);
  }

  .md\:bg-sky-400\/90 {
    background-color: rgb(56 189 248 / 0.9);
  }

  .md\:bg-sky-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(240 249 255 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-sky-50\/10 {
    background-color: rgb(240 249 255 / 0.1);
  }

  .md\:bg-sky-50\/20 {
    background-color: rgb(240 249 255 / 0.2);
  }

  .md\:bg-sky-50\/30 {
    background-color: rgb(240 249 255 / 0.3);
  }

  .md\:bg-sky-50\/40 {
    background-color: rgb(240 249 255 / 0.4);
  }

  .md\:bg-sky-50\/5 {
    background-color: rgb(240 249 255 / 0.05);
  }

  .md\:bg-sky-50\/50 {
    background-color: rgb(240 249 255 / 0.5);
  }

  .md\:bg-sky-50\/60 {
    background-color: rgb(240 249 255 / 0.6);
  }

  .md\:bg-sky-50\/70 {
    background-color: rgb(240 249 255 / 0.7);
  }

  .md\:bg-sky-50\/80 {
    background-color: rgb(240 249 255 / 0.8);
  }

  .md\:bg-sky-50\/90 {
    background-color: rgb(240 249 255 / 0.9);
  }

  .md\:bg-sky-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(14 165 233 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-sky-500\/10 {
    background-color: rgb(14 165 233 / 0.1);
  }

  .md\:bg-sky-500\/20 {
    background-color: rgb(14 165 233 / 0.2);
  }

  .md\:bg-sky-500\/30 {
    background-color: rgb(14 165 233 / 0.3);
  }

  .md\:bg-sky-500\/40 {
    background-color: rgb(14 165 233 / 0.4);
  }

  .md\:bg-sky-500\/5 {
    background-color: rgb(14 165 233 / 0.05);
  }

  .md\:bg-sky-500\/50 {
    background-color: rgb(14 165 233 / 0.5);
  }

  .md\:bg-sky-500\/60 {
    background-color: rgb(14 165 233 / 0.6);
  }

  .md\:bg-sky-500\/70 {
    background-color: rgb(14 165 233 / 0.7);
  }

  .md\:bg-sky-500\/80 {
    background-color: rgb(14 165 233 / 0.8);
  }

  .md\:bg-sky-500\/90 {
    background-color: rgb(14 165 233 / 0.9);
  }

  .md\:bg-sky-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(2 132 199 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-sky-600\/10 {
    background-color: rgb(2 132 199 / 0.1);
  }

  .md\:bg-sky-600\/20 {
    background-color: rgb(2 132 199 / 0.2);
  }

  .md\:bg-sky-600\/30 {
    background-color: rgb(2 132 199 / 0.3);
  }

  .md\:bg-sky-600\/40 {
    background-color: rgb(2 132 199 / 0.4);
  }

  .md\:bg-sky-600\/5 {
    background-color: rgb(2 132 199 / 0.05);
  }

  .md\:bg-sky-600\/50 {
    background-color: rgb(2 132 199 / 0.5);
  }

  .md\:bg-sky-600\/60 {
    background-color: rgb(2 132 199 / 0.6);
  }

  .md\:bg-sky-600\/70 {
    background-color: rgb(2 132 199 / 0.7);
  }

  .md\:bg-sky-600\/80 {
    background-color: rgb(2 132 199 / 0.8);
  }

  .md\:bg-sky-600\/90 {
    background-color: rgb(2 132 199 / 0.9);
  }

  .md\:bg-sky-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(3 105 161 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-sky-700\/10 {
    background-color: rgb(3 105 161 / 0.1);
  }

  .md\:bg-sky-700\/20 {
    background-color: rgb(3 105 161 / 0.2);
  }

  .md\:bg-sky-700\/30 {
    background-color: rgb(3 105 161 / 0.3);
  }

  .md\:bg-sky-700\/40 {
    background-color: rgb(3 105 161 / 0.4);
  }

  .md\:bg-sky-700\/5 {
    background-color: rgb(3 105 161 / 0.05);
  }

  .md\:bg-sky-700\/50 {
    background-color: rgb(3 105 161 / 0.5);
  }

  .md\:bg-sky-700\/60 {
    background-color: rgb(3 105 161 / 0.6);
  }

  .md\:bg-sky-700\/70 {
    background-color: rgb(3 105 161 / 0.7);
  }

  .md\:bg-sky-700\/80 {
    background-color: rgb(3 105 161 / 0.8);
  }

  .md\:bg-sky-700\/90 {
    background-color: rgb(3 105 161 / 0.9);
  }

  .md\:bg-sky-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(7 89 133 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-sky-800\/10 {
    background-color: rgb(7 89 133 / 0.1);
  }

  .md\:bg-sky-800\/20 {
    background-color: rgb(7 89 133 / 0.2);
  }

  .md\:bg-sky-800\/30 {
    background-color: rgb(7 89 133 / 0.3);
  }

  .md\:bg-sky-800\/40 {
    background-color: rgb(7 89 133 / 0.4);
  }

  .md\:bg-sky-800\/5 {
    background-color: rgb(7 89 133 / 0.05);
  }

  .md\:bg-sky-800\/50 {
    background-color: rgb(7 89 133 / 0.5);
  }

  .md\:bg-sky-800\/60 {
    background-color: rgb(7 89 133 / 0.6);
  }

  .md\:bg-sky-800\/70 {
    background-color: rgb(7 89 133 / 0.7);
  }

  .md\:bg-sky-800\/80 {
    background-color: rgb(7 89 133 / 0.8);
  }

  .md\:bg-sky-800\/90 {
    background-color: rgb(7 89 133 / 0.9);
  }

  .md\:bg-sky-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(12 74 110 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-sky-900\/10 {
    background-color: rgb(12 74 110 / 0.1);
  }

  .md\:bg-sky-900\/20 {
    background-color: rgb(12 74 110 / 0.2);
  }

  .md\:bg-sky-900\/30 {
    background-color: rgb(12 74 110 / 0.3);
  }

  .md\:bg-sky-900\/40 {
    background-color: rgb(12 74 110 / 0.4);
  }

  .md\:bg-sky-900\/5 {
    background-color: rgb(12 74 110 / 0.05);
  }

  .md\:bg-sky-900\/50 {
    background-color: rgb(12 74 110 / 0.5);
  }

  .md\:bg-sky-900\/60 {
    background-color: rgb(12 74 110 / 0.6);
  }

  .md\:bg-sky-900\/70 {
    background-color: rgb(12 74 110 / 0.7);
  }

  .md\:bg-sky-900\/80 {
    background-color: rgb(12 74 110 / 0.8);
  }

  .md\:bg-sky-900\/90 {
    background-color: rgb(12 74 110 / 0.9);
  }

  .md\:bg-sky-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(8 47 73 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-sky-950\/10 {
    background-color: rgb(8 47 73 / 0.1);
  }

  .md\:bg-sky-950\/20 {
    background-color: rgb(8 47 73 / 0.2);
  }

  .md\:bg-sky-950\/30 {
    background-color: rgb(8 47 73 / 0.3);
  }

  .md\:bg-sky-950\/40 {
    background-color: rgb(8 47 73 / 0.4);
  }

  .md\:bg-sky-950\/5 {
    background-color: rgb(8 47 73 / 0.05);
  }

  .md\:bg-sky-950\/50 {
    background-color: rgb(8 47 73 / 0.5);
  }

  .md\:bg-sky-950\/60 {
    background-color: rgb(8 47 73 / 0.6);
  }

  .md\:bg-sky-950\/70 {
    background-color: rgb(8 47 73 / 0.7);
  }

  .md\:bg-sky-950\/80 {
    background-color: rgb(8 47 73 / 0.8);
  }

  .md\:bg-sky-950\/90 {
    background-color: rgb(8 47 73 / 0.9);
  }

  .md\:bg-slate-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-slate-100\/10 {
    background-color: rgb(241 245 249 / 0.1);
  }

  .md\:bg-slate-100\/20 {
    background-color: rgb(241 245 249 / 0.2);
  }

  .md\:bg-slate-100\/30 {
    background-color: rgb(241 245 249 / 0.3);
  }

  .md\:bg-slate-100\/40 {
    background-color: rgb(241 245 249 / 0.4);
  }

  .md\:bg-slate-100\/5 {
    background-color: rgb(241 245 249 / 0.05);
  }

  .md\:bg-slate-100\/50 {
    background-color: rgb(241 245 249 / 0.5);
  }

  .md\:bg-slate-100\/60 {
    background-color: rgb(241 245 249 / 0.6);
  }

  .md\:bg-slate-100\/70 {
    background-color: rgb(241 245 249 / 0.7);
  }

  .md\:bg-slate-100\/80 {
    background-color: rgb(241 245 249 / 0.8);
  }

  .md\:bg-slate-100\/90 {
    background-color: rgb(241 245 249 / 0.9);
  }

  .md\:bg-slate-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(226 232 240 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-slate-200\/10 {
    background-color: rgb(226 232 240 / 0.1);
  }

  .md\:bg-slate-200\/20 {
    background-color: rgb(226 232 240 / 0.2);
  }

  .md\:bg-slate-200\/30 {
    background-color: rgb(226 232 240 / 0.3);
  }

  .md\:bg-slate-200\/40 {
    background-color: rgb(226 232 240 / 0.4);
  }

  .md\:bg-slate-200\/5 {
    background-color: rgb(226 232 240 / 0.05);
  }

  .md\:bg-slate-200\/50 {
    background-color: rgb(226 232 240 / 0.5);
  }

  .md\:bg-slate-200\/60 {
    background-color: rgb(226 232 240 / 0.6);
  }

  .md\:bg-slate-200\/70 {
    background-color: rgb(226 232 240 / 0.7);
  }

  .md\:bg-slate-200\/80 {
    background-color: rgb(226 232 240 / 0.8);
  }

  .md\:bg-slate-200\/90 {
    background-color: rgb(226 232 240 / 0.9);
  }

  .md\:bg-slate-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(203 213 225 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-slate-300\/10 {
    background-color: rgb(203 213 225 / 0.1);
  }

  .md\:bg-slate-300\/20 {
    background-color: rgb(203 213 225 / 0.2);
  }

  .md\:bg-slate-300\/30 {
    background-color: rgb(203 213 225 / 0.3);
  }

  .md\:bg-slate-300\/40 {
    background-color: rgb(203 213 225 / 0.4);
  }

  .md\:bg-slate-300\/5 {
    background-color: rgb(203 213 225 / 0.05);
  }

  .md\:bg-slate-300\/50 {
    background-color: rgb(203 213 225 / 0.5);
  }

  .md\:bg-slate-300\/60 {
    background-color: rgb(203 213 225 / 0.6);
  }

  .md\:bg-slate-300\/70 {
    background-color: rgb(203 213 225 / 0.7);
  }

  .md\:bg-slate-300\/80 {
    background-color: rgb(203 213 225 / 0.8);
  }

  .md\:bg-slate-300\/90 {
    background-color: rgb(203 213 225 / 0.9);
  }

  .md\:bg-slate-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(148 163 184 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-slate-400\/10 {
    background-color: rgb(148 163 184 / 0.1);
  }

  .md\:bg-slate-400\/20 {
    background-color: rgb(148 163 184 / 0.2);
  }

  .md\:bg-slate-400\/30 {
    background-color: rgb(148 163 184 / 0.3);
  }

  .md\:bg-slate-400\/40 {
    background-color: rgb(148 163 184 / 0.4);
  }

  .md\:bg-slate-400\/5 {
    background-color: rgb(148 163 184 / 0.05);
  }

  .md\:bg-slate-400\/50 {
    background-color: rgb(148 163 184 / 0.5);
  }

  .md\:bg-slate-400\/60 {
    background-color: rgb(148 163 184 / 0.6);
  }

  .md\:bg-slate-400\/70 {
    background-color: rgb(148 163 184 / 0.7);
  }

  .md\:bg-slate-400\/80 {
    background-color: rgb(148 163 184 / 0.8);
  }

  .md\:bg-slate-400\/90 {
    background-color: rgb(148 163 184 / 0.9);
  }

  .md\:bg-slate-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-slate-50\/10 {
    background-color: rgb(248 250 252 / 0.1);
  }

  .md\:bg-slate-50\/20 {
    background-color: rgb(248 250 252 / 0.2);
  }

  .md\:bg-slate-50\/30 {
    background-color: rgb(248 250 252 / 0.3);
  }

  .md\:bg-slate-50\/40 {
    background-color: rgb(248 250 252 / 0.4);
  }

  .md\:bg-slate-50\/5 {
    background-color: rgb(248 250 252 / 0.05);
  }

  .md\:bg-slate-50\/50 {
    background-color: rgb(248 250 252 / 0.5);
  }

  .md\:bg-slate-50\/60 {
    background-color: rgb(248 250 252 / 0.6);
  }

  .md\:bg-slate-50\/70 {
    background-color: rgb(248 250 252 / 0.7);
  }

  .md\:bg-slate-50\/80 {
    background-color: rgb(248 250 252 / 0.8);
  }

  .md\:bg-slate-50\/90 {
    background-color: rgb(248 250 252 / 0.9);
  }

  .md\:bg-slate-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(100 116 139 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-slate-500\/10 {
    background-color: rgb(100 116 139 / 0.1);
  }

  .md\:bg-slate-500\/20 {
    background-color: rgb(100 116 139 / 0.2);
  }

  .md\:bg-slate-500\/30 {
    background-color: rgb(100 116 139 / 0.3);
  }

  .md\:bg-slate-500\/40 {
    background-color: rgb(100 116 139 / 0.4);
  }

  .md\:bg-slate-500\/5 {
    background-color: rgb(100 116 139 / 0.05);
  }

  .md\:bg-slate-500\/50 {
    background-color: rgb(100 116 139 / 0.5);
  }

  .md\:bg-slate-500\/60 {
    background-color: rgb(100 116 139 / 0.6);
  }

  .md\:bg-slate-500\/70 {
    background-color: rgb(100 116 139 / 0.7);
  }

  .md\:bg-slate-500\/80 {
    background-color: rgb(100 116 139 / 0.8);
  }

  .md\:bg-slate-500\/90 {
    background-color: rgb(100 116 139 / 0.9);
  }

  .md\:bg-slate-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(71 85 105 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-slate-600\/10 {
    background-color: rgb(71 85 105 / 0.1);
  }

  .md\:bg-slate-600\/20 {
    background-color: rgb(71 85 105 / 0.2);
  }

  .md\:bg-slate-600\/30 {
    background-color: rgb(71 85 105 / 0.3);
  }

  .md\:bg-slate-600\/40 {
    background-color: rgb(71 85 105 / 0.4);
  }

  .md\:bg-slate-600\/5 {
    background-color: rgb(71 85 105 / 0.05);
  }

  .md\:bg-slate-600\/50 {
    background-color: rgb(71 85 105 / 0.5);
  }

  .md\:bg-slate-600\/60 {
    background-color: rgb(71 85 105 / 0.6);
  }

  .md\:bg-slate-600\/70 {
    background-color: rgb(71 85 105 / 0.7);
  }

  .md\:bg-slate-600\/80 {
    background-color: rgb(71 85 105 / 0.8);
  }

  .md\:bg-slate-600\/90 {
    background-color: rgb(71 85 105 / 0.9);
  }

  .md\:bg-slate-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(51 65 85 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-slate-700\/10 {
    background-color: rgb(51 65 85 / 0.1);
  }

  .md\:bg-slate-700\/20 {
    background-color: rgb(51 65 85 / 0.2);
  }

  .md\:bg-slate-700\/30 {
    background-color: rgb(51 65 85 / 0.3);
  }

  .md\:bg-slate-700\/40 {
    background-color: rgb(51 65 85 / 0.4);
  }

  .md\:bg-slate-700\/5 {
    background-color: rgb(51 65 85 / 0.05);
  }

  .md\:bg-slate-700\/50 {
    background-color: rgb(51 65 85 / 0.5);
  }

  .md\:bg-slate-700\/60 {
    background-color: rgb(51 65 85 / 0.6);
  }

  .md\:bg-slate-700\/70 {
    background-color: rgb(51 65 85 / 0.7);
  }

  .md\:bg-slate-700\/80 {
    background-color: rgb(51 65 85 / 0.8);
  }

  .md\:bg-slate-700\/90 {
    background-color: rgb(51 65 85 / 0.9);
  }

  .md\:bg-slate-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(30 41 59 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-slate-800\/10 {
    background-color: rgb(30 41 59 / 0.1);
  }

  .md\:bg-slate-800\/20 {
    background-color: rgb(30 41 59 / 0.2);
  }

  .md\:bg-slate-800\/30 {
    background-color: rgb(30 41 59 / 0.3);
  }

  .md\:bg-slate-800\/40 {
    background-color: rgb(30 41 59 / 0.4);
  }

  .md\:bg-slate-800\/5 {
    background-color: rgb(30 41 59 / 0.05);
  }

  .md\:bg-slate-800\/50 {
    background-color: rgb(30 41 59 / 0.5);
  }

  .md\:bg-slate-800\/60 {
    background-color: rgb(30 41 59 / 0.6);
  }

  .md\:bg-slate-800\/70 {
    background-color: rgb(30 41 59 / 0.7);
  }

  .md\:bg-slate-800\/80 {
    background-color: rgb(30 41 59 / 0.8);
  }

  .md\:bg-slate-800\/90 {
    background-color: rgb(30 41 59 / 0.9);
  }

  .md\:bg-slate-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(15 23 42 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-slate-900\/10 {
    background-color: rgb(15 23 42 / 0.1);
  }

  .md\:bg-slate-900\/20 {
    background-color: rgb(15 23 42 / 0.2);
  }

  .md\:bg-slate-900\/30 {
    background-color: rgb(15 23 42 / 0.3);
  }

  .md\:bg-slate-900\/40 {
    background-color: rgb(15 23 42 / 0.4);
  }

  .md\:bg-slate-900\/5 {
    background-color: rgb(15 23 42 / 0.05);
  }

  .md\:bg-slate-900\/50 {
    background-color: rgb(15 23 42 / 0.5);
  }

  .md\:bg-slate-900\/60 {
    background-color: rgb(15 23 42 / 0.6);
  }

  .md\:bg-slate-900\/70 {
    background-color: rgb(15 23 42 / 0.7);
  }

  .md\:bg-slate-900\/80 {
    background-color: rgb(15 23 42 / 0.8);
  }

  .md\:bg-slate-900\/90 {
    background-color: rgb(15 23 42 / 0.9);
  }

  .md\:bg-slate-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(2 6 23 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-slate-950\/10 {
    background-color: rgb(2 6 23 / 0.1);
  }

  .md\:bg-slate-950\/20 {
    background-color: rgb(2 6 23 / 0.2);
  }

  .md\:bg-slate-950\/30 {
    background-color: rgb(2 6 23 / 0.3);
  }

  .md\:bg-slate-950\/40 {
    background-color: rgb(2 6 23 / 0.4);
  }

  .md\:bg-slate-950\/5 {
    background-color: rgb(2 6 23 / 0.05);
  }

  .md\:bg-slate-950\/50 {
    background-color: rgb(2 6 23 / 0.5);
  }

  .md\:bg-slate-950\/60 {
    background-color: rgb(2 6 23 / 0.6);
  }

  .md\:bg-slate-950\/70 {
    background-color: rgb(2 6 23 / 0.7);
  }

  .md\:bg-slate-950\/80 {
    background-color: rgb(2 6 23 / 0.8);
  }

  .md\:bg-slate-950\/90 {
    background-color: rgb(2 6 23 / 0.9);
  }

  .md\:bg-stone-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(245 245 244 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-stone-100\/10 {
    background-color: rgb(245 245 244 / 0.1);
  }

  .md\:bg-stone-100\/20 {
    background-color: rgb(245 245 244 / 0.2);
  }

  .md\:bg-stone-100\/30 {
    background-color: rgb(245 245 244 / 0.3);
  }

  .md\:bg-stone-100\/40 {
    background-color: rgb(245 245 244 / 0.4);
  }

  .md\:bg-stone-100\/5 {
    background-color: rgb(245 245 244 / 0.05);
  }

  .md\:bg-stone-100\/50 {
    background-color: rgb(245 245 244 / 0.5);
  }

  .md\:bg-stone-100\/60 {
    background-color: rgb(245 245 244 / 0.6);
  }

  .md\:bg-stone-100\/70 {
    background-color: rgb(245 245 244 / 0.7);
  }

  .md\:bg-stone-100\/80 {
    background-color: rgb(245 245 244 / 0.8);
  }

  .md\:bg-stone-100\/90 {
    background-color: rgb(245 245 244 / 0.9);
  }

  .md\:bg-stone-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(231 229 228 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-stone-200\/10 {
    background-color: rgb(231 229 228 / 0.1);
  }

  .md\:bg-stone-200\/20 {
    background-color: rgb(231 229 228 / 0.2);
  }

  .md\:bg-stone-200\/30 {
    background-color: rgb(231 229 228 / 0.3);
  }

  .md\:bg-stone-200\/40 {
    background-color: rgb(231 229 228 / 0.4);
  }

  .md\:bg-stone-200\/5 {
    background-color: rgb(231 229 228 / 0.05);
  }

  .md\:bg-stone-200\/50 {
    background-color: rgb(231 229 228 / 0.5);
  }

  .md\:bg-stone-200\/60 {
    background-color: rgb(231 229 228 / 0.6);
  }

  .md\:bg-stone-200\/70 {
    background-color: rgb(231 229 228 / 0.7);
  }

  .md\:bg-stone-200\/80 {
    background-color: rgb(231 229 228 / 0.8);
  }

  .md\:bg-stone-200\/90 {
    background-color: rgb(231 229 228 / 0.9);
  }

  .md\:bg-stone-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(214 211 209 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-stone-300\/10 {
    background-color: rgb(214 211 209 / 0.1);
  }

  .md\:bg-stone-300\/20 {
    background-color: rgb(214 211 209 / 0.2);
  }

  .md\:bg-stone-300\/30 {
    background-color: rgb(214 211 209 / 0.3);
  }

  .md\:bg-stone-300\/40 {
    background-color: rgb(214 211 209 / 0.4);
  }

  .md\:bg-stone-300\/5 {
    background-color: rgb(214 211 209 / 0.05);
  }

  .md\:bg-stone-300\/50 {
    background-color: rgb(214 211 209 / 0.5);
  }

  .md\:bg-stone-300\/60 {
    background-color: rgb(214 211 209 / 0.6);
  }

  .md\:bg-stone-300\/70 {
    background-color: rgb(214 211 209 / 0.7);
  }

  .md\:bg-stone-300\/80 {
    background-color: rgb(214 211 209 / 0.8);
  }

  .md\:bg-stone-300\/90 {
    background-color: rgb(214 211 209 / 0.9);
  }

  .md\:bg-stone-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(168 162 158 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-stone-400\/10 {
    background-color: rgb(168 162 158 / 0.1);
  }

  .md\:bg-stone-400\/20 {
    background-color: rgb(168 162 158 / 0.2);
  }

  .md\:bg-stone-400\/30 {
    background-color: rgb(168 162 158 / 0.3);
  }

  .md\:bg-stone-400\/40 {
    background-color: rgb(168 162 158 / 0.4);
  }

  .md\:bg-stone-400\/5 {
    background-color: rgb(168 162 158 / 0.05);
  }

  .md\:bg-stone-400\/50 {
    background-color: rgb(168 162 158 / 0.5);
  }

  .md\:bg-stone-400\/60 {
    background-color: rgb(168 162 158 / 0.6);
  }

  .md\:bg-stone-400\/70 {
    background-color: rgb(168 162 158 / 0.7);
  }

  .md\:bg-stone-400\/80 {
    background-color: rgb(168 162 158 / 0.8);
  }

  .md\:bg-stone-400\/90 {
    background-color: rgb(168 162 158 / 0.9);
  }

  .md\:bg-stone-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 250 249 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-stone-50\/10 {
    background-color: rgb(250 250 249 / 0.1);
  }

  .md\:bg-stone-50\/20 {
    background-color: rgb(250 250 249 / 0.2);
  }

  .md\:bg-stone-50\/30 {
    background-color: rgb(250 250 249 / 0.3);
  }

  .md\:bg-stone-50\/40 {
    background-color: rgb(250 250 249 / 0.4);
  }

  .md\:bg-stone-50\/5 {
    background-color: rgb(250 250 249 / 0.05);
  }

  .md\:bg-stone-50\/50 {
    background-color: rgb(250 250 249 / 0.5);
  }

  .md\:bg-stone-50\/60 {
    background-color: rgb(250 250 249 / 0.6);
  }

  .md\:bg-stone-50\/70 {
    background-color: rgb(250 250 249 / 0.7);
  }

  .md\:bg-stone-50\/80 {
    background-color: rgb(250 250 249 / 0.8);
  }

  .md\:bg-stone-50\/90 {
    background-color: rgb(250 250 249 / 0.9);
  }

  .md\:bg-stone-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(120 113 108 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-stone-500\/10 {
    background-color: rgb(120 113 108 / 0.1);
  }

  .md\:bg-stone-500\/20 {
    background-color: rgb(120 113 108 / 0.2);
  }

  .md\:bg-stone-500\/30 {
    background-color: rgb(120 113 108 / 0.3);
  }

  .md\:bg-stone-500\/40 {
    background-color: rgb(120 113 108 / 0.4);
  }

  .md\:bg-stone-500\/5 {
    background-color: rgb(120 113 108 / 0.05);
  }

  .md\:bg-stone-500\/50 {
    background-color: rgb(120 113 108 / 0.5);
  }

  .md\:bg-stone-500\/60 {
    background-color: rgb(120 113 108 / 0.6);
  }

  .md\:bg-stone-500\/70 {
    background-color: rgb(120 113 108 / 0.7);
  }

  .md\:bg-stone-500\/80 {
    background-color: rgb(120 113 108 / 0.8);
  }

  .md\:bg-stone-500\/90 {
    background-color: rgb(120 113 108 / 0.9);
  }

  .md\:bg-stone-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(87 83 78 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-stone-600\/10 {
    background-color: rgb(87 83 78 / 0.1);
  }

  .md\:bg-stone-600\/20 {
    background-color: rgb(87 83 78 / 0.2);
  }

  .md\:bg-stone-600\/30 {
    background-color: rgb(87 83 78 / 0.3);
  }

  .md\:bg-stone-600\/40 {
    background-color: rgb(87 83 78 / 0.4);
  }

  .md\:bg-stone-600\/5 {
    background-color: rgb(87 83 78 / 0.05);
  }

  .md\:bg-stone-600\/50 {
    background-color: rgb(87 83 78 / 0.5);
  }

  .md\:bg-stone-600\/60 {
    background-color: rgb(87 83 78 / 0.6);
  }

  .md\:bg-stone-600\/70 {
    background-color: rgb(87 83 78 / 0.7);
  }

  .md\:bg-stone-600\/80 {
    background-color: rgb(87 83 78 / 0.8);
  }

  .md\:bg-stone-600\/90 {
    background-color: rgb(87 83 78 / 0.9);
  }

  .md\:bg-stone-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(68 64 60 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-stone-700\/10 {
    background-color: rgb(68 64 60 / 0.1);
  }

  .md\:bg-stone-700\/20 {
    background-color: rgb(68 64 60 / 0.2);
  }

  .md\:bg-stone-700\/30 {
    background-color: rgb(68 64 60 / 0.3);
  }

  .md\:bg-stone-700\/40 {
    background-color: rgb(68 64 60 / 0.4);
  }

  .md\:bg-stone-700\/5 {
    background-color: rgb(68 64 60 / 0.05);
  }

  .md\:bg-stone-700\/50 {
    background-color: rgb(68 64 60 / 0.5);
  }

  .md\:bg-stone-700\/60 {
    background-color: rgb(68 64 60 / 0.6);
  }

  .md\:bg-stone-700\/70 {
    background-color: rgb(68 64 60 / 0.7);
  }

  .md\:bg-stone-700\/80 {
    background-color: rgb(68 64 60 / 0.8);
  }

  .md\:bg-stone-700\/90 {
    background-color: rgb(68 64 60 / 0.9);
  }

  .md\:bg-stone-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(41 37 36 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-stone-800\/10 {
    background-color: rgb(41 37 36 / 0.1);
  }

  .md\:bg-stone-800\/20 {
    background-color: rgb(41 37 36 / 0.2);
  }

  .md\:bg-stone-800\/30 {
    background-color: rgb(41 37 36 / 0.3);
  }

  .md\:bg-stone-800\/40 {
    background-color: rgb(41 37 36 / 0.4);
  }

  .md\:bg-stone-800\/5 {
    background-color: rgb(41 37 36 / 0.05);
  }

  .md\:bg-stone-800\/50 {
    background-color: rgb(41 37 36 / 0.5);
  }

  .md\:bg-stone-800\/60 {
    background-color: rgb(41 37 36 / 0.6);
  }

  .md\:bg-stone-800\/70 {
    background-color: rgb(41 37 36 / 0.7);
  }

  .md\:bg-stone-800\/80 {
    background-color: rgb(41 37 36 / 0.8);
  }

  .md\:bg-stone-800\/90 {
    background-color: rgb(41 37 36 / 0.9);
  }

  .md\:bg-stone-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(28 25 23 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-stone-900\/10 {
    background-color: rgb(28 25 23 / 0.1);
  }

  .md\:bg-stone-900\/20 {
    background-color: rgb(28 25 23 / 0.2);
  }

  .md\:bg-stone-900\/30 {
    background-color: rgb(28 25 23 / 0.3);
  }

  .md\:bg-stone-900\/40 {
    background-color: rgb(28 25 23 / 0.4);
  }

  .md\:bg-stone-900\/5 {
    background-color: rgb(28 25 23 / 0.05);
  }

  .md\:bg-stone-900\/50 {
    background-color: rgb(28 25 23 / 0.5);
  }

  .md\:bg-stone-900\/60 {
    background-color: rgb(28 25 23 / 0.6);
  }

  .md\:bg-stone-900\/70 {
    background-color: rgb(28 25 23 / 0.7);
  }

  .md\:bg-stone-900\/80 {
    background-color: rgb(28 25 23 / 0.8);
  }

  .md\:bg-stone-900\/90 {
    background-color: rgb(28 25 23 / 0.9);
  }

  .md\:bg-stone-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(12 10 9 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-stone-950\/10 {
    background-color: rgb(12 10 9 / 0.1);
  }

  .md\:bg-stone-950\/20 {
    background-color: rgb(12 10 9 / 0.2);
  }

  .md\:bg-stone-950\/30 {
    background-color: rgb(12 10 9 / 0.3);
  }

  .md\:bg-stone-950\/40 {
    background-color: rgb(12 10 9 / 0.4);
  }

  .md\:bg-stone-950\/5 {
    background-color: rgb(12 10 9 / 0.05);
  }

  .md\:bg-stone-950\/50 {
    background-color: rgb(12 10 9 / 0.5);
  }

  .md\:bg-stone-950\/60 {
    background-color: rgb(12 10 9 / 0.6);
  }

  .md\:bg-stone-950\/70 {
    background-color: rgb(12 10 9 / 0.7);
  }

  .md\:bg-stone-950\/80 {
    background-color: rgb(12 10 9 / 0.8);
  }

  .md\:bg-stone-950\/90 {
    background-color: rgb(12 10 9 / 0.9);
  }

  .md\:bg-teal-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(204 251 241 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-teal-100\/10 {
    background-color: rgb(204 251 241 / 0.1);
  }

  .md\:bg-teal-100\/20 {
    background-color: rgb(204 251 241 / 0.2);
  }

  .md\:bg-teal-100\/30 {
    background-color: rgb(204 251 241 / 0.3);
  }

  .md\:bg-teal-100\/40 {
    background-color: rgb(204 251 241 / 0.4);
  }

  .md\:bg-teal-100\/5 {
    background-color: rgb(204 251 241 / 0.05);
  }

  .md\:bg-teal-100\/50 {
    background-color: rgb(204 251 241 / 0.5);
  }

  .md\:bg-teal-100\/60 {
    background-color: rgb(204 251 241 / 0.6);
  }

  .md\:bg-teal-100\/70 {
    background-color: rgb(204 251 241 / 0.7);
  }

  .md\:bg-teal-100\/80 {
    background-color: rgb(204 251 241 / 0.8);
  }

  .md\:bg-teal-100\/90 {
    background-color: rgb(204 251 241 / 0.9);
  }

  .md\:bg-teal-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(153 246 228 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-teal-200\/10 {
    background-color: rgb(153 246 228 / 0.1);
  }

  .md\:bg-teal-200\/20 {
    background-color: rgb(153 246 228 / 0.2);
  }

  .md\:bg-teal-200\/30 {
    background-color: rgb(153 246 228 / 0.3);
  }

  .md\:bg-teal-200\/40 {
    background-color: rgb(153 246 228 / 0.4);
  }

  .md\:bg-teal-200\/5 {
    background-color: rgb(153 246 228 / 0.05);
  }

  .md\:bg-teal-200\/50 {
    background-color: rgb(153 246 228 / 0.5);
  }

  .md\:bg-teal-200\/60 {
    background-color: rgb(153 246 228 / 0.6);
  }

  .md\:bg-teal-200\/70 {
    background-color: rgb(153 246 228 / 0.7);
  }

  .md\:bg-teal-200\/80 {
    background-color: rgb(153 246 228 / 0.8);
  }

  .md\:bg-teal-200\/90 {
    background-color: rgb(153 246 228 / 0.9);
  }

  .md\:bg-teal-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(94 234 212 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-teal-300\/10 {
    background-color: rgb(94 234 212 / 0.1);
  }

  .md\:bg-teal-300\/20 {
    background-color: rgb(94 234 212 / 0.2);
  }

  .md\:bg-teal-300\/30 {
    background-color: rgb(94 234 212 / 0.3);
  }

  .md\:bg-teal-300\/40 {
    background-color: rgb(94 234 212 / 0.4);
  }

  .md\:bg-teal-300\/5 {
    background-color: rgb(94 234 212 / 0.05);
  }

  .md\:bg-teal-300\/50 {
    background-color: rgb(94 234 212 / 0.5);
  }

  .md\:bg-teal-300\/60 {
    background-color: rgb(94 234 212 / 0.6);
  }

  .md\:bg-teal-300\/70 {
    background-color: rgb(94 234 212 / 0.7);
  }

  .md\:bg-teal-300\/80 {
    background-color: rgb(94 234 212 / 0.8);
  }

  .md\:bg-teal-300\/90 {
    background-color: rgb(94 234 212 / 0.9);
  }

  .md\:bg-teal-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(45 212 191 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-teal-400\/10 {
    background-color: rgb(45 212 191 / 0.1);
  }

  .md\:bg-teal-400\/20 {
    background-color: rgb(45 212 191 / 0.2);
  }

  .md\:bg-teal-400\/30 {
    background-color: rgb(45 212 191 / 0.3);
  }

  .md\:bg-teal-400\/40 {
    background-color: rgb(45 212 191 / 0.4);
  }

  .md\:bg-teal-400\/5 {
    background-color: rgb(45 212 191 / 0.05);
  }

  .md\:bg-teal-400\/50 {
    background-color: rgb(45 212 191 / 0.5);
  }

  .md\:bg-teal-400\/60 {
    background-color: rgb(45 212 191 / 0.6);
  }

  .md\:bg-teal-400\/70 {
    background-color: rgb(45 212 191 / 0.7);
  }

  .md\:bg-teal-400\/80 {
    background-color: rgb(45 212 191 / 0.8);
  }

  .md\:bg-teal-400\/90 {
    background-color: rgb(45 212 191 / 0.9);
  }

  .md\:bg-teal-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(240 253 250 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-teal-50\/10 {
    background-color: rgb(240 253 250 / 0.1);
  }

  .md\:bg-teal-50\/20 {
    background-color: rgb(240 253 250 / 0.2);
  }

  .md\:bg-teal-50\/30 {
    background-color: rgb(240 253 250 / 0.3);
  }

  .md\:bg-teal-50\/40 {
    background-color: rgb(240 253 250 / 0.4);
  }

  .md\:bg-teal-50\/5 {
    background-color: rgb(240 253 250 / 0.05);
  }

  .md\:bg-teal-50\/50 {
    background-color: rgb(240 253 250 / 0.5);
  }

  .md\:bg-teal-50\/60 {
    background-color: rgb(240 253 250 / 0.6);
  }

  .md\:bg-teal-50\/70 {
    background-color: rgb(240 253 250 / 0.7);
  }

  .md\:bg-teal-50\/80 {
    background-color: rgb(240 253 250 / 0.8);
  }

  .md\:bg-teal-50\/90 {
    background-color: rgb(240 253 250 / 0.9);
  }

  .md\:bg-teal-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(20 184 166 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-teal-500\/10 {
    background-color: rgb(20 184 166 / 0.1);
  }

  .md\:bg-teal-500\/20 {
    background-color: rgb(20 184 166 / 0.2);
  }

  .md\:bg-teal-500\/30 {
    background-color: rgb(20 184 166 / 0.3);
  }

  .md\:bg-teal-500\/40 {
    background-color: rgb(20 184 166 / 0.4);
  }

  .md\:bg-teal-500\/5 {
    background-color: rgb(20 184 166 / 0.05);
  }

  .md\:bg-teal-500\/50 {
    background-color: rgb(20 184 166 / 0.5);
  }

  .md\:bg-teal-500\/60 {
    background-color: rgb(20 184 166 / 0.6);
  }

  .md\:bg-teal-500\/70 {
    background-color: rgb(20 184 166 / 0.7);
  }

  .md\:bg-teal-500\/80 {
    background-color: rgb(20 184 166 / 0.8);
  }

  .md\:bg-teal-500\/90 {
    background-color: rgb(20 184 166 / 0.9);
  }

  .md\:bg-teal-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(13 148 136 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-teal-600\/10 {
    background-color: rgb(13 148 136 / 0.1);
  }

  .md\:bg-teal-600\/20 {
    background-color: rgb(13 148 136 / 0.2);
  }

  .md\:bg-teal-600\/30 {
    background-color: rgb(13 148 136 / 0.3);
  }

  .md\:bg-teal-600\/40 {
    background-color: rgb(13 148 136 / 0.4);
  }

  .md\:bg-teal-600\/5 {
    background-color: rgb(13 148 136 / 0.05);
  }

  .md\:bg-teal-600\/50 {
    background-color: rgb(13 148 136 / 0.5);
  }

  .md\:bg-teal-600\/60 {
    background-color: rgb(13 148 136 / 0.6);
  }

  .md\:bg-teal-600\/70 {
    background-color: rgb(13 148 136 / 0.7);
  }

  .md\:bg-teal-600\/80 {
    background-color: rgb(13 148 136 / 0.8);
  }

  .md\:bg-teal-600\/90 {
    background-color: rgb(13 148 136 / 0.9);
  }

  .md\:bg-teal-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(15 118 110 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-teal-700\/10 {
    background-color: rgb(15 118 110 / 0.1);
  }

  .md\:bg-teal-700\/20 {
    background-color: rgb(15 118 110 / 0.2);
  }

  .md\:bg-teal-700\/30 {
    background-color: rgb(15 118 110 / 0.3);
  }

  .md\:bg-teal-700\/40 {
    background-color: rgb(15 118 110 / 0.4);
  }

  .md\:bg-teal-700\/5 {
    background-color: rgb(15 118 110 / 0.05);
  }

  .md\:bg-teal-700\/50 {
    background-color: rgb(15 118 110 / 0.5);
  }

  .md\:bg-teal-700\/60 {
    background-color: rgb(15 118 110 / 0.6);
  }

  .md\:bg-teal-700\/70 {
    background-color: rgb(15 118 110 / 0.7);
  }

  .md\:bg-teal-700\/80 {
    background-color: rgb(15 118 110 / 0.8);
  }

  .md\:bg-teal-700\/90 {
    background-color: rgb(15 118 110 / 0.9);
  }

  .md\:bg-teal-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(17 94 89 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-teal-800\/10 {
    background-color: rgb(17 94 89 / 0.1);
  }

  .md\:bg-teal-800\/20 {
    background-color: rgb(17 94 89 / 0.2);
  }

  .md\:bg-teal-800\/30 {
    background-color: rgb(17 94 89 / 0.3);
  }

  .md\:bg-teal-800\/40 {
    background-color: rgb(17 94 89 / 0.4);
  }

  .md\:bg-teal-800\/5 {
    background-color: rgb(17 94 89 / 0.05);
  }

  .md\:bg-teal-800\/50 {
    background-color: rgb(17 94 89 / 0.5);
  }

  .md\:bg-teal-800\/60 {
    background-color: rgb(17 94 89 / 0.6);
  }

  .md\:bg-teal-800\/70 {
    background-color: rgb(17 94 89 / 0.7);
  }

  .md\:bg-teal-800\/80 {
    background-color: rgb(17 94 89 / 0.8);
  }

  .md\:bg-teal-800\/90 {
    background-color: rgb(17 94 89 / 0.9);
  }

  .md\:bg-teal-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(19 78 74 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-teal-900\/10 {
    background-color: rgb(19 78 74 / 0.1);
  }

  .md\:bg-teal-900\/20 {
    background-color: rgb(19 78 74 / 0.2);
  }

  .md\:bg-teal-900\/30 {
    background-color: rgb(19 78 74 / 0.3);
  }

  .md\:bg-teal-900\/40 {
    background-color: rgb(19 78 74 / 0.4);
  }

  .md\:bg-teal-900\/5 {
    background-color: rgb(19 78 74 / 0.05);
  }

  .md\:bg-teal-900\/50 {
    background-color: rgb(19 78 74 / 0.5);
  }

  .md\:bg-teal-900\/60 {
    background-color: rgb(19 78 74 / 0.6);
  }

  .md\:bg-teal-900\/70 {
    background-color: rgb(19 78 74 / 0.7);
  }

  .md\:bg-teal-900\/80 {
    background-color: rgb(19 78 74 / 0.8);
  }

  .md\:bg-teal-900\/90 {
    background-color: rgb(19 78 74 / 0.9);
  }

  .md\:bg-teal-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(4 47 46 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-teal-950\/10 {
    background-color: rgb(4 47 46 / 0.1);
  }

  .md\:bg-teal-950\/20 {
    background-color: rgb(4 47 46 / 0.2);
  }

  .md\:bg-teal-950\/30 {
    background-color: rgb(4 47 46 / 0.3);
  }

  .md\:bg-teal-950\/40 {
    background-color: rgb(4 47 46 / 0.4);
  }

  .md\:bg-teal-950\/5 {
    background-color: rgb(4 47 46 / 0.05);
  }

  .md\:bg-teal-950\/50 {
    background-color: rgb(4 47 46 / 0.5);
  }

  .md\:bg-teal-950\/60 {
    background-color: rgb(4 47 46 / 0.6);
  }

  .md\:bg-teal-950\/70 {
    background-color: rgb(4 47 46 / 0.7);
  }

  .md\:bg-teal-950\/80 {
    background-color: rgb(4 47 46 / 0.8);
  }

  .md\:bg-teal-950\/90 {
    background-color: rgb(4 47 46 / 0.9);
  }

  .md\:bg-violet-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(237 233 254 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-violet-100\/10 {
    background-color: rgb(237 233 254 / 0.1);
  }

  .md\:bg-violet-100\/20 {
    background-color: rgb(237 233 254 / 0.2);
  }

  .md\:bg-violet-100\/30 {
    background-color: rgb(237 233 254 / 0.3);
  }

  .md\:bg-violet-100\/40 {
    background-color: rgb(237 233 254 / 0.4);
  }

  .md\:bg-violet-100\/5 {
    background-color: rgb(237 233 254 / 0.05);
  }

  .md\:bg-violet-100\/50 {
    background-color: rgb(237 233 254 / 0.5);
  }

  .md\:bg-violet-100\/60 {
    background-color: rgb(237 233 254 / 0.6);
  }

  .md\:bg-violet-100\/70 {
    background-color: rgb(237 233 254 / 0.7);
  }

  .md\:bg-violet-100\/80 {
    background-color: rgb(237 233 254 / 0.8);
  }

  .md\:bg-violet-100\/90 {
    background-color: rgb(237 233 254 / 0.9);
  }

  .md\:bg-violet-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(221 214 254 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-violet-200\/10 {
    background-color: rgb(221 214 254 / 0.1);
  }

  .md\:bg-violet-200\/20 {
    background-color: rgb(221 214 254 / 0.2);
  }

  .md\:bg-violet-200\/30 {
    background-color: rgb(221 214 254 / 0.3);
  }

  .md\:bg-violet-200\/40 {
    background-color: rgb(221 214 254 / 0.4);
  }

  .md\:bg-violet-200\/5 {
    background-color: rgb(221 214 254 / 0.05);
  }

  .md\:bg-violet-200\/50 {
    background-color: rgb(221 214 254 / 0.5);
  }

  .md\:bg-violet-200\/60 {
    background-color: rgb(221 214 254 / 0.6);
  }

  .md\:bg-violet-200\/70 {
    background-color: rgb(221 214 254 / 0.7);
  }

  .md\:bg-violet-200\/80 {
    background-color: rgb(221 214 254 / 0.8);
  }

  .md\:bg-violet-200\/90 {
    background-color: rgb(221 214 254 / 0.9);
  }

  .md\:bg-violet-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(196 181 253 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-violet-300\/10 {
    background-color: rgb(196 181 253 / 0.1);
  }

  .md\:bg-violet-300\/20 {
    background-color: rgb(196 181 253 / 0.2);
  }

  .md\:bg-violet-300\/30 {
    background-color: rgb(196 181 253 / 0.3);
  }

  .md\:bg-violet-300\/40 {
    background-color: rgb(196 181 253 / 0.4);
  }

  .md\:bg-violet-300\/5 {
    background-color: rgb(196 181 253 / 0.05);
  }

  .md\:bg-violet-300\/50 {
    background-color: rgb(196 181 253 / 0.5);
  }

  .md\:bg-violet-300\/60 {
    background-color: rgb(196 181 253 / 0.6);
  }

  .md\:bg-violet-300\/70 {
    background-color: rgb(196 181 253 / 0.7);
  }

  .md\:bg-violet-300\/80 {
    background-color: rgb(196 181 253 / 0.8);
  }

  .md\:bg-violet-300\/90 {
    background-color: rgb(196 181 253 / 0.9);
  }

  .md\:bg-violet-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(167 139 250 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-violet-400\/10 {
    background-color: rgb(167 139 250 / 0.1);
  }

  .md\:bg-violet-400\/20 {
    background-color: rgb(167 139 250 / 0.2);
  }

  .md\:bg-violet-400\/30 {
    background-color: rgb(167 139 250 / 0.3);
  }

  .md\:bg-violet-400\/40 {
    background-color: rgb(167 139 250 / 0.4);
  }

  .md\:bg-violet-400\/5 {
    background-color: rgb(167 139 250 / 0.05);
  }

  .md\:bg-violet-400\/50 {
    background-color: rgb(167 139 250 / 0.5);
  }

  .md\:bg-violet-400\/60 {
    background-color: rgb(167 139 250 / 0.6);
  }

  .md\:bg-violet-400\/70 {
    background-color: rgb(167 139 250 / 0.7);
  }

  .md\:bg-violet-400\/80 {
    background-color: rgb(167 139 250 / 0.8);
  }

  .md\:bg-violet-400\/90 {
    background-color: rgb(167 139 250 / 0.9);
  }

  .md\:bg-violet-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(245 243 255 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-violet-50\/10 {
    background-color: rgb(245 243 255 / 0.1);
  }

  .md\:bg-violet-50\/20 {
    background-color: rgb(245 243 255 / 0.2);
  }

  .md\:bg-violet-50\/30 {
    background-color: rgb(245 243 255 / 0.3);
  }

  .md\:bg-violet-50\/40 {
    background-color: rgb(245 243 255 / 0.4);
  }

  .md\:bg-violet-50\/5 {
    background-color: rgb(245 243 255 / 0.05);
  }

  .md\:bg-violet-50\/50 {
    background-color: rgb(245 243 255 / 0.5);
  }

  .md\:bg-violet-50\/60 {
    background-color: rgb(245 243 255 / 0.6);
  }

  .md\:bg-violet-50\/70 {
    background-color: rgb(245 243 255 / 0.7);
  }

  .md\:bg-violet-50\/80 {
    background-color: rgb(245 243 255 / 0.8);
  }

  .md\:bg-violet-50\/90 {
    background-color: rgb(245 243 255 / 0.9);
  }

  .md\:bg-violet-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(139 92 246 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-violet-500\/10 {
    background-color: rgb(139 92 246 / 0.1);
  }

  .md\:bg-violet-500\/20 {
    background-color: rgb(139 92 246 / 0.2);
  }

  .md\:bg-violet-500\/30 {
    background-color: rgb(139 92 246 / 0.3);
  }

  .md\:bg-violet-500\/40 {
    background-color: rgb(139 92 246 / 0.4);
  }

  .md\:bg-violet-500\/5 {
    background-color: rgb(139 92 246 / 0.05);
  }

  .md\:bg-violet-500\/50 {
    background-color: rgb(139 92 246 / 0.5);
  }

  .md\:bg-violet-500\/60 {
    background-color: rgb(139 92 246 / 0.6);
  }

  .md\:bg-violet-500\/70 {
    background-color: rgb(139 92 246 / 0.7);
  }

  .md\:bg-violet-500\/80 {
    background-color: rgb(139 92 246 / 0.8);
  }

  .md\:bg-violet-500\/90 {
    background-color: rgb(139 92 246 / 0.9);
  }

  .md\:bg-violet-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(124 58 237 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-violet-600\/10 {
    background-color: rgb(124 58 237 / 0.1);
  }

  .md\:bg-violet-600\/20 {
    background-color: rgb(124 58 237 / 0.2);
  }

  .md\:bg-violet-600\/30 {
    background-color: rgb(124 58 237 / 0.3);
  }

  .md\:bg-violet-600\/40 {
    background-color: rgb(124 58 237 / 0.4);
  }

  .md\:bg-violet-600\/5 {
    background-color: rgb(124 58 237 / 0.05);
  }

  .md\:bg-violet-600\/50 {
    background-color: rgb(124 58 237 / 0.5);
  }

  .md\:bg-violet-600\/60 {
    background-color: rgb(124 58 237 / 0.6);
  }

  .md\:bg-violet-600\/70 {
    background-color: rgb(124 58 237 / 0.7);
  }

  .md\:bg-violet-600\/80 {
    background-color: rgb(124 58 237 / 0.8);
  }

  .md\:bg-violet-600\/90 {
    background-color: rgb(124 58 237 / 0.9);
  }

  .md\:bg-violet-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(109 40 217 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-violet-700\/10 {
    background-color: rgb(109 40 217 / 0.1);
  }

  .md\:bg-violet-700\/20 {
    background-color: rgb(109 40 217 / 0.2);
  }

  .md\:bg-violet-700\/30 {
    background-color: rgb(109 40 217 / 0.3);
  }

  .md\:bg-violet-700\/40 {
    background-color: rgb(109 40 217 / 0.4);
  }

  .md\:bg-violet-700\/5 {
    background-color: rgb(109 40 217 / 0.05);
  }

  .md\:bg-violet-700\/50 {
    background-color: rgb(109 40 217 / 0.5);
  }

  .md\:bg-violet-700\/60 {
    background-color: rgb(109 40 217 / 0.6);
  }

  .md\:bg-violet-700\/70 {
    background-color: rgb(109 40 217 / 0.7);
  }

  .md\:bg-violet-700\/80 {
    background-color: rgb(109 40 217 / 0.8);
  }

  .md\:bg-violet-700\/90 {
    background-color: rgb(109 40 217 / 0.9);
  }

  .md\:bg-violet-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(91 33 182 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-violet-800\/10 {
    background-color: rgb(91 33 182 / 0.1);
  }

  .md\:bg-violet-800\/20 {
    background-color: rgb(91 33 182 / 0.2);
  }

  .md\:bg-violet-800\/30 {
    background-color: rgb(91 33 182 / 0.3);
  }

  .md\:bg-violet-800\/40 {
    background-color: rgb(91 33 182 / 0.4);
  }

  .md\:bg-violet-800\/5 {
    background-color: rgb(91 33 182 / 0.05);
  }

  .md\:bg-violet-800\/50 {
    background-color: rgb(91 33 182 / 0.5);
  }

  .md\:bg-violet-800\/60 {
    background-color: rgb(91 33 182 / 0.6);
  }

  .md\:bg-violet-800\/70 {
    background-color: rgb(91 33 182 / 0.7);
  }

  .md\:bg-violet-800\/80 {
    background-color: rgb(91 33 182 / 0.8);
  }

  .md\:bg-violet-800\/90 {
    background-color: rgb(91 33 182 / 0.9);
  }

  .md\:bg-violet-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(76 29 149 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-violet-900\/10 {
    background-color: rgb(76 29 149 / 0.1);
  }

  .md\:bg-violet-900\/20 {
    background-color: rgb(76 29 149 / 0.2);
  }

  .md\:bg-violet-900\/30 {
    background-color: rgb(76 29 149 / 0.3);
  }

  .md\:bg-violet-900\/40 {
    background-color: rgb(76 29 149 / 0.4);
  }

  .md\:bg-violet-900\/5 {
    background-color: rgb(76 29 149 / 0.05);
  }

  .md\:bg-violet-900\/50 {
    background-color: rgb(76 29 149 / 0.5);
  }

  .md\:bg-violet-900\/60 {
    background-color: rgb(76 29 149 / 0.6);
  }

  .md\:bg-violet-900\/70 {
    background-color: rgb(76 29 149 / 0.7);
  }

  .md\:bg-violet-900\/80 {
    background-color: rgb(76 29 149 / 0.8);
  }

  .md\:bg-violet-900\/90 {
    background-color: rgb(76 29 149 / 0.9);
  }

  .md\:bg-violet-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(46 16 101 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-violet-950\/10 {
    background-color: rgb(46 16 101 / 0.1);
  }

  .md\:bg-violet-950\/20 {
    background-color: rgb(46 16 101 / 0.2);
  }

  .md\:bg-violet-950\/30 {
    background-color: rgb(46 16 101 / 0.3);
  }

  .md\:bg-violet-950\/40 {
    background-color: rgb(46 16 101 / 0.4);
  }

  .md\:bg-violet-950\/5 {
    background-color: rgb(46 16 101 / 0.05);
  }

  .md\:bg-violet-950\/50 {
    background-color: rgb(46 16 101 / 0.5);
  }

  .md\:bg-violet-950\/60 {
    background-color: rgb(46 16 101 / 0.6);
  }

  .md\:bg-violet-950\/70 {
    background-color: rgb(46 16 101 / 0.7);
  }

  .md\:bg-violet-950\/80 {
    background-color: rgb(46 16 101 / 0.8);
  }

  .md\:bg-violet-950\/90 {
    background-color: rgb(46 16 101 / 0.9);
  }

  .md\:bg-yellow-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-yellow-100\/10 {
    background-color: rgb(254 249 195 / 0.1);
  }

  .md\:bg-yellow-100\/20 {
    background-color: rgb(254 249 195 / 0.2);
  }

  .md\:bg-yellow-100\/30 {
    background-color: rgb(254 249 195 / 0.3);
  }

  .md\:bg-yellow-100\/40 {
    background-color: rgb(254 249 195 / 0.4);
  }

  .md\:bg-yellow-100\/5 {
    background-color: rgb(254 249 195 / 0.05);
  }

  .md\:bg-yellow-100\/50 {
    background-color: rgb(254 249 195 / 0.5);
  }

  .md\:bg-yellow-100\/60 {
    background-color: rgb(254 249 195 / 0.6);
  }

  .md\:bg-yellow-100\/70 {
    background-color: rgb(254 249 195 / 0.7);
  }

  .md\:bg-yellow-100\/80 {
    background-color: rgb(254 249 195 / 0.8);
  }

  .md\:bg-yellow-100\/90 {
    background-color: rgb(254 249 195 / 0.9);
  }

  .md\:bg-yellow-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 240 138 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-yellow-200\/10 {
    background-color: rgb(254 240 138 / 0.1);
  }

  .md\:bg-yellow-200\/20 {
    background-color: rgb(254 240 138 / 0.2);
  }

  .md\:bg-yellow-200\/30 {
    background-color: rgb(254 240 138 / 0.3);
  }

  .md\:bg-yellow-200\/40 {
    background-color: rgb(254 240 138 / 0.4);
  }

  .md\:bg-yellow-200\/5 {
    background-color: rgb(254 240 138 / 0.05);
  }

  .md\:bg-yellow-200\/50 {
    background-color: rgb(254 240 138 / 0.5);
  }

  .md\:bg-yellow-200\/60 {
    background-color: rgb(254 240 138 / 0.6);
  }

  .md\:bg-yellow-200\/70 {
    background-color: rgb(254 240 138 / 0.7);
  }

  .md\:bg-yellow-200\/80 {
    background-color: rgb(254 240 138 / 0.8);
  }

  .md\:bg-yellow-200\/90 {
    background-color: rgb(254 240 138 / 0.9);
  }

  .md\:bg-yellow-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(253 224 71 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-yellow-300\/10 {
    background-color: rgb(253 224 71 / 0.1);
  }

  .md\:bg-yellow-300\/20 {
    background-color: rgb(253 224 71 / 0.2);
  }

  .md\:bg-yellow-300\/30 {
    background-color: rgb(253 224 71 / 0.3);
  }

  .md\:bg-yellow-300\/40 {
    background-color: rgb(253 224 71 / 0.4);
  }

  .md\:bg-yellow-300\/5 {
    background-color: rgb(253 224 71 / 0.05);
  }

  .md\:bg-yellow-300\/50 {
    background-color: rgb(253 224 71 / 0.5);
  }

  .md\:bg-yellow-300\/60 {
    background-color: rgb(253 224 71 / 0.6);
  }

  .md\:bg-yellow-300\/70 {
    background-color: rgb(253 224 71 / 0.7);
  }

  .md\:bg-yellow-300\/80 {
    background-color: rgb(253 224 71 / 0.8);
  }

  .md\:bg-yellow-300\/90 {
    background-color: rgb(253 224 71 / 0.9);
  }

  .md\:bg-yellow-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 204 21 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-yellow-400\/10 {
    background-color: rgb(250 204 21 / 0.1);
  }

  .md\:bg-yellow-400\/20 {
    background-color: rgb(250 204 21 / 0.2);
  }

  .md\:bg-yellow-400\/30 {
    background-color: rgb(250 204 21 / 0.3);
  }

  .md\:bg-yellow-400\/40 {
    background-color: rgb(250 204 21 / 0.4);
  }

  .md\:bg-yellow-400\/5 {
    background-color: rgb(250 204 21 / 0.05);
  }

  .md\:bg-yellow-400\/50 {
    background-color: rgb(250 204 21 / 0.5);
  }

  .md\:bg-yellow-400\/60 {
    background-color: rgb(250 204 21 / 0.6);
  }

  .md\:bg-yellow-400\/70 {
    background-color: rgb(250 204 21 / 0.7);
  }

  .md\:bg-yellow-400\/80 {
    background-color: rgb(250 204 21 / 0.8);
  }

  .md\:bg-yellow-400\/90 {
    background-color: rgb(250 204 21 / 0.9);
  }

  .md\:bg-yellow-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-yellow-50\/10 {
    background-color: rgb(254 252 232 / 0.1);
  }

  .md\:bg-yellow-50\/20 {
    background-color: rgb(254 252 232 / 0.2);
  }

  .md\:bg-yellow-50\/30 {
    background-color: rgb(254 252 232 / 0.3);
  }

  .md\:bg-yellow-50\/40 {
    background-color: rgb(254 252 232 / 0.4);
  }

  .md\:bg-yellow-50\/5 {
    background-color: rgb(254 252 232 / 0.05);
  }

  .md\:bg-yellow-50\/50 {
    background-color: rgb(254 252 232 / 0.5);
  }

  .md\:bg-yellow-50\/60 {
    background-color: rgb(254 252 232 / 0.6);
  }

  .md\:bg-yellow-50\/70 {
    background-color: rgb(254 252 232 / 0.7);
  }

  .md\:bg-yellow-50\/80 {
    background-color: rgb(254 252 232 / 0.8);
  }

  .md\:bg-yellow-50\/90 {
    background-color: rgb(254 252 232 / 0.9);
  }

  .md\:bg-yellow-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(234 179 8 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-yellow-500\/10 {
    background-color: rgb(234 179 8 / 0.1);
  }

  .md\:bg-yellow-500\/20 {
    background-color: rgb(234 179 8 / 0.2);
  }

  .md\:bg-yellow-500\/30 {
    background-color: rgb(234 179 8 / 0.3);
  }

  .md\:bg-yellow-500\/40 {
    background-color: rgb(234 179 8 / 0.4);
  }

  .md\:bg-yellow-500\/5 {
    background-color: rgb(234 179 8 / 0.05);
  }

  .md\:bg-yellow-500\/50 {
    background-color: rgb(234 179 8 / 0.5);
  }

  .md\:bg-yellow-500\/60 {
    background-color: rgb(234 179 8 / 0.6);
  }

  .md\:bg-yellow-500\/70 {
    background-color: rgb(234 179 8 / 0.7);
  }

  .md\:bg-yellow-500\/80 {
    background-color: rgb(234 179 8 / 0.8);
  }

  .md\:bg-yellow-500\/90 {
    background-color: rgb(234 179 8 / 0.9);
  }

  .md\:bg-yellow-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(202 138 4 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-yellow-600\/10 {
    background-color: rgb(202 138 4 / 0.1);
  }

  .md\:bg-yellow-600\/20 {
    background-color: rgb(202 138 4 / 0.2);
  }

  .md\:bg-yellow-600\/30 {
    background-color: rgb(202 138 4 / 0.3);
  }

  .md\:bg-yellow-600\/40 {
    background-color: rgb(202 138 4 / 0.4);
  }

  .md\:bg-yellow-600\/5 {
    background-color: rgb(202 138 4 / 0.05);
  }

  .md\:bg-yellow-600\/50 {
    background-color: rgb(202 138 4 / 0.5);
  }

  .md\:bg-yellow-600\/60 {
    background-color: rgb(202 138 4 / 0.6);
  }

  .md\:bg-yellow-600\/70 {
    background-color: rgb(202 138 4 / 0.7);
  }

  .md\:bg-yellow-600\/80 {
    background-color: rgb(202 138 4 / 0.8);
  }

  .md\:bg-yellow-600\/90 {
    background-color: rgb(202 138 4 / 0.9);
  }

  .md\:bg-yellow-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(161 98 7 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-yellow-700\/10 {
    background-color: rgb(161 98 7 / 0.1);
  }

  .md\:bg-yellow-700\/20 {
    background-color: rgb(161 98 7 / 0.2);
  }

  .md\:bg-yellow-700\/30 {
    background-color: rgb(161 98 7 / 0.3);
  }

  .md\:bg-yellow-700\/40 {
    background-color: rgb(161 98 7 / 0.4);
  }

  .md\:bg-yellow-700\/5 {
    background-color: rgb(161 98 7 / 0.05);
  }

  .md\:bg-yellow-700\/50 {
    background-color: rgb(161 98 7 / 0.5);
  }

  .md\:bg-yellow-700\/60 {
    background-color: rgb(161 98 7 / 0.6);
  }

  .md\:bg-yellow-700\/70 {
    background-color: rgb(161 98 7 / 0.7);
  }

  .md\:bg-yellow-700\/80 {
    background-color: rgb(161 98 7 / 0.8);
  }

  .md\:bg-yellow-700\/90 {
    background-color: rgb(161 98 7 / 0.9);
  }

  .md\:bg-yellow-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(133 77 14 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-yellow-800\/10 {
    background-color: rgb(133 77 14 / 0.1);
  }

  .md\:bg-yellow-800\/20 {
    background-color: rgb(133 77 14 / 0.2);
  }

  .md\:bg-yellow-800\/30 {
    background-color: rgb(133 77 14 / 0.3);
  }

  .md\:bg-yellow-800\/40 {
    background-color: rgb(133 77 14 / 0.4);
  }

  .md\:bg-yellow-800\/5 {
    background-color: rgb(133 77 14 / 0.05);
  }

  .md\:bg-yellow-800\/50 {
    background-color: rgb(133 77 14 / 0.5);
  }

  .md\:bg-yellow-800\/60 {
    background-color: rgb(133 77 14 / 0.6);
  }

  .md\:bg-yellow-800\/70 {
    background-color: rgb(133 77 14 / 0.7);
  }

  .md\:bg-yellow-800\/80 {
    background-color: rgb(133 77 14 / 0.8);
  }

  .md\:bg-yellow-800\/90 {
    background-color: rgb(133 77 14 / 0.9);
  }

  .md\:bg-yellow-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(113 63 18 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-yellow-900\/10 {
    background-color: rgb(113 63 18 / 0.1);
  }

  .md\:bg-yellow-900\/20 {
    background-color: rgb(113 63 18 / 0.2);
  }

  .md\:bg-yellow-900\/30 {
    background-color: rgb(113 63 18 / 0.3);
  }

  .md\:bg-yellow-900\/40 {
    background-color: rgb(113 63 18 / 0.4);
  }

  .md\:bg-yellow-900\/5 {
    background-color: rgb(113 63 18 / 0.05);
  }

  .md\:bg-yellow-900\/50 {
    background-color: rgb(113 63 18 / 0.5);
  }

  .md\:bg-yellow-900\/60 {
    background-color: rgb(113 63 18 / 0.6);
  }

  .md\:bg-yellow-900\/70 {
    background-color: rgb(113 63 18 / 0.7);
  }

  .md\:bg-yellow-900\/80 {
    background-color: rgb(113 63 18 / 0.8);
  }

  .md\:bg-yellow-900\/90 {
    background-color: rgb(113 63 18 / 0.9);
  }

  .md\:bg-yellow-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(66 32 6 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-yellow-950\/10 {
    background-color: rgb(66 32 6 / 0.1);
  }

  .md\:bg-yellow-950\/20 {
    background-color: rgb(66 32 6 / 0.2);
  }

  .md\:bg-yellow-950\/30 {
    background-color: rgb(66 32 6 / 0.3);
  }

  .md\:bg-yellow-950\/40 {
    background-color: rgb(66 32 6 / 0.4);
  }

  .md\:bg-yellow-950\/5 {
    background-color: rgb(66 32 6 / 0.05);
  }

  .md\:bg-yellow-950\/50 {
    background-color: rgb(66 32 6 / 0.5);
  }

  .md\:bg-yellow-950\/60 {
    background-color: rgb(66 32 6 / 0.6);
  }

  .md\:bg-yellow-950\/70 {
    background-color: rgb(66 32 6 / 0.7);
  }

  .md\:bg-yellow-950\/80 {
    background-color: rgb(66 32 6 / 0.8);
  }

  .md\:bg-yellow-950\/90 {
    background-color: rgb(66 32 6 / 0.9);
  }

  .md\:bg-zinc-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(244 244 245 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-zinc-100\/10 {
    background-color: rgb(244 244 245 / 0.1);
  }

  .md\:bg-zinc-100\/20 {
    background-color: rgb(244 244 245 / 0.2);
  }

  .md\:bg-zinc-100\/30 {
    background-color: rgb(244 244 245 / 0.3);
  }

  .md\:bg-zinc-100\/40 {
    background-color: rgb(244 244 245 / 0.4);
  }

  .md\:bg-zinc-100\/5 {
    background-color: rgb(244 244 245 / 0.05);
  }

  .md\:bg-zinc-100\/50 {
    background-color: rgb(244 244 245 / 0.5);
  }

  .md\:bg-zinc-100\/60 {
    background-color: rgb(244 244 245 / 0.6);
  }

  .md\:bg-zinc-100\/70 {
    background-color: rgb(244 244 245 / 0.7);
  }

  .md\:bg-zinc-100\/80 {
    background-color: rgb(244 244 245 / 0.8);
  }

  .md\:bg-zinc-100\/90 {
    background-color: rgb(244 244 245 / 0.9);
  }

  .md\:bg-zinc-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(228 228 231 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-zinc-200\/10 {
    background-color: rgb(228 228 231 / 0.1);
  }

  .md\:bg-zinc-200\/20 {
    background-color: rgb(228 228 231 / 0.2);
  }

  .md\:bg-zinc-200\/30 {
    background-color: rgb(228 228 231 / 0.3);
  }

  .md\:bg-zinc-200\/40 {
    background-color: rgb(228 228 231 / 0.4);
  }

  .md\:bg-zinc-200\/5 {
    background-color: rgb(228 228 231 / 0.05);
  }

  .md\:bg-zinc-200\/50 {
    background-color: rgb(228 228 231 / 0.5);
  }

  .md\:bg-zinc-200\/60 {
    background-color: rgb(228 228 231 / 0.6);
  }

  .md\:bg-zinc-200\/70 {
    background-color: rgb(228 228 231 / 0.7);
  }

  .md\:bg-zinc-200\/80 {
    background-color: rgb(228 228 231 / 0.8);
  }

  .md\:bg-zinc-200\/90 {
    background-color: rgb(228 228 231 / 0.9);
  }

  .md\:bg-zinc-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(212 212 216 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-zinc-300\/10 {
    background-color: rgb(212 212 216 / 0.1);
  }

  .md\:bg-zinc-300\/20 {
    background-color: rgb(212 212 216 / 0.2);
  }

  .md\:bg-zinc-300\/30 {
    background-color: rgb(212 212 216 / 0.3);
  }

  .md\:bg-zinc-300\/40 {
    background-color: rgb(212 212 216 / 0.4);
  }

  .md\:bg-zinc-300\/5 {
    background-color: rgb(212 212 216 / 0.05);
  }

  .md\:bg-zinc-300\/50 {
    background-color: rgb(212 212 216 / 0.5);
  }

  .md\:bg-zinc-300\/60 {
    background-color: rgb(212 212 216 / 0.6);
  }

  .md\:bg-zinc-300\/70 {
    background-color: rgb(212 212 216 / 0.7);
  }

  .md\:bg-zinc-300\/80 {
    background-color: rgb(212 212 216 / 0.8);
  }

  .md\:bg-zinc-300\/90 {
    background-color: rgb(212 212 216 / 0.9);
  }

  .md\:bg-zinc-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(161 161 170 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-zinc-400\/10 {
    background-color: rgb(161 161 170 / 0.1);
  }

  .md\:bg-zinc-400\/20 {
    background-color: rgb(161 161 170 / 0.2);
  }

  .md\:bg-zinc-400\/30 {
    background-color: rgb(161 161 170 / 0.3);
  }

  .md\:bg-zinc-400\/40 {
    background-color: rgb(161 161 170 / 0.4);
  }

  .md\:bg-zinc-400\/5 {
    background-color: rgb(161 161 170 / 0.05);
  }

  .md\:bg-zinc-400\/50 {
    background-color: rgb(161 161 170 / 0.5);
  }

  .md\:bg-zinc-400\/60 {
    background-color: rgb(161 161 170 / 0.6);
  }

  .md\:bg-zinc-400\/70 {
    background-color: rgb(161 161 170 / 0.7);
  }

  .md\:bg-zinc-400\/80 {
    background-color: rgb(161 161 170 / 0.8);
  }

  .md\:bg-zinc-400\/90 {
    background-color: rgb(161 161 170 / 0.9);
  }

  .md\:bg-zinc-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-zinc-50\/10 {
    background-color: rgb(250 250 250 / 0.1);
  }

  .md\:bg-zinc-50\/20 {
    background-color: rgb(250 250 250 / 0.2);
  }

  .md\:bg-zinc-50\/30 {
    background-color: rgb(250 250 250 / 0.3);
  }

  .md\:bg-zinc-50\/40 {
    background-color: rgb(250 250 250 / 0.4);
  }

  .md\:bg-zinc-50\/5 {
    background-color: rgb(250 250 250 / 0.05);
  }

  .md\:bg-zinc-50\/50 {
    background-color: rgb(250 250 250 / 0.5);
  }

  .md\:bg-zinc-50\/60 {
    background-color: rgb(250 250 250 / 0.6);
  }

  .md\:bg-zinc-50\/70 {
    background-color: rgb(250 250 250 / 0.7);
  }

  .md\:bg-zinc-50\/80 {
    background-color: rgb(250 250 250 / 0.8);
  }

  .md\:bg-zinc-50\/90 {
    background-color: rgb(250 250 250 / 0.9);
  }

  .md\:bg-zinc-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(113 113 122 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-zinc-500\/10 {
    background-color: rgb(113 113 122 / 0.1);
  }

  .md\:bg-zinc-500\/20 {
    background-color: rgb(113 113 122 / 0.2);
  }

  .md\:bg-zinc-500\/30 {
    background-color: rgb(113 113 122 / 0.3);
  }

  .md\:bg-zinc-500\/40 {
    background-color: rgb(113 113 122 / 0.4);
  }

  .md\:bg-zinc-500\/5 {
    background-color: rgb(113 113 122 / 0.05);
  }

  .md\:bg-zinc-500\/50 {
    background-color: rgb(113 113 122 / 0.5);
  }

  .md\:bg-zinc-500\/60 {
    background-color: rgb(113 113 122 / 0.6);
  }

  .md\:bg-zinc-500\/70 {
    background-color: rgb(113 113 122 / 0.7);
  }

  .md\:bg-zinc-500\/80 {
    background-color: rgb(113 113 122 / 0.8);
  }

  .md\:bg-zinc-500\/90 {
    background-color: rgb(113 113 122 / 0.9);
  }

  .md\:bg-zinc-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(82 82 91 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-zinc-600\/10 {
    background-color: rgb(82 82 91 / 0.1);
  }

  .md\:bg-zinc-600\/20 {
    background-color: rgb(82 82 91 / 0.2);
  }

  .md\:bg-zinc-600\/30 {
    background-color: rgb(82 82 91 / 0.3);
  }

  .md\:bg-zinc-600\/40 {
    background-color: rgb(82 82 91 / 0.4);
  }

  .md\:bg-zinc-600\/5 {
    background-color: rgb(82 82 91 / 0.05);
  }

  .md\:bg-zinc-600\/50 {
    background-color: rgb(82 82 91 / 0.5);
  }

  .md\:bg-zinc-600\/60 {
    background-color: rgb(82 82 91 / 0.6);
  }

  .md\:bg-zinc-600\/70 {
    background-color: rgb(82 82 91 / 0.7);
  }

  .md\:bg-zinc-600\/80 {
    background-color: rgb(82 82 91 / 0.8);
  }

  .md\:bg-zinc-600\/90 {
    background-color: rgb(82 82 91 / 0.9);
  }

  .md\:bg-zinc-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(63 63 70 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-zinc-700\/10 {
    background-color: rgb(63 63 70 / 0.1);
  }

  .md\:bg-zinc-700\/20 {
    background-color: rgb(63 63 70 / 0.2);
  }

  .md\:bg-zinc-700\/30 {
    background-color: rgb(63 63 70 / 0.3);
  }

  .md\:bg-zinc-700\/40 {
    background-color: rgb(63 63 70 / 0.4);
  }

  .md\:bg-zinc-700\/5 {
    background-color: rgb(63 63 70 / 0.05);
  }

  .md\:bg-zinc-700\/50 {
    background-color: rgb(63 63 70 / 0.5);
  }

  .md\:bg-zinc-700\/60 {
    background-color: rgb(63 63 70 / 0.6);
  }

  .md\:bg-zinc-700\/70 {
    background-color: rgb(63 63 70 / 0.7);
  }

  .md\:bg-zinc-700\/80 {
    background-color: rgb(63 63 70 / 0.8);
  }

  .md\:bg-zinc-700\/90 {
    background-color: rgb(63 63 70 / 0.9);
  }

  .md\:bg-zinc-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(39 39 42 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-zinc-800\/10 {
    background-color: rgb(39 39 42 / 0.1);
  }

  .md\:bg-zinc-800\/20 {
    background-color: rgb(39 39 42 / 0.2);
  }

  .md\:bg-zinc-800\/30 {
    background-color: rgb(39 39 42 / 0.3);
  }

  .md\:bg-zinc-800\/40 {
    background-color: rgb(39 39 42 / 0.4);
  }

  .md\:bg-zinc-800\/5 {
    background-color: rgb(39 39 42 / 0.05);
  }

  .md\:bg-zinc-800\/50 {
    background-color: rgb(39 39 42 / 0.5);
  }

  .md\:bg-zinc-800\/60 {
    background-color: rgb(39 39 42 / 0.6);
  }

  .md\:bg-zinc-800\/70 {
    background-color: rgb(39 39 42 / 0.7);
  }

  .md\:bg-zinc-800\/80 {
    background-color: rgb(39 39 42 / 0.8);
  }

  .md\:bg-zinc-800\/90 {
    background-color: rgb(39 39 42 / 0.9);
  }

  .md\:bg-zinc-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(24 24 27 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-zinc-900\/10 {
    background-color: rgb(24 24 27 / 0.1);
  }

  .md\:bg-zinc-900\/20 {
    background-color: rgb(24 24 27 / 0.2);
  }

  .md\:bg-zinc-900\/30 {
    background-color: rgb(24 24 27 / 0.3);
  }

  .md\:bg-zinc-900\/40 {
    background-color: rgb(24 24 27 / 0.4);
  }

  .md\:bg-zinc-900\/5 {
    background-color: rgb(24 24 27 / 0.05);
  }

  .md\:bg-zinc-900\/50 {
    background-color: rgb(24 24 27 / 0.5);
  }

  .md\:bg-zinc-900\/60 {
    background-color: rgb(24 24 27 / 0.6);
  }

  .md\:bg-zinc-900\/70 {
    background-color: rgb(24 24 27 / 0.7);
  }

  .md\:bg-zinc-900\/80 {
    background-color: rgb(24 24 27 / 0.8);
  }

  .md\:bg-zinc-900\/90 {
    background-color: rgb(24 24 27 / 0.9);
  }

  .md\:bg-zinc-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(9 9 11 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-zinc-950\/10 {
    background-color: rgb(9 9 11 / 0.1);
  }

  .md\:bg-zinc-950\/20 {
    background-color: rgb(9 9 11 / 0.2);
  }

  .md\:bg-zinc-950\/30 {
    background-color: rgb(9 9 11 / 0.3);
  }

  .md\:bg-zinc-950\/40 {
    background-color: rgb(9 9 11 / 0.4);
  }

  .md\:bg-zinc-950\/5 {
    background-color: rgb(9 9 11 / 0.05);
  }

  .md\:bg-zinc-950\/50 {
    background-color: rgb(9 9 11 / 0.5);
  }

  .md\:bg-zinc-950\/60 {
    background-color: rgb(9 9 11 / 0.6);
  }

  .md\:bg-zinc-950\/70 {
    background-color: rgb(9 9 11 / 0.7);
  }

  .md\:bg-zinc-950\/80 {
    background-color: rgb(9 9 11 / 0.8);
  }

  .md\:bg-zinc-950\/90 {
    background-color: rgb(9 9 11 / 0.9);
  }

  .md\:p-0 {
    padding: 0px;
  }

  .md\:p-1 {
    padding: 0.25rem;
  }

  .md\:p-10 {
    padding: 2.5rem;
  }

  .md\:p-11 {
    padding: 2.75rem;
  }

  .md\:p-12 {
    padding: 3rem;
  }

  .md\:p-14 {
    padding: 3.5rem;
  }

  .md\:p-16 {
    padding: 4rem;
  }

  .md\:p-2 {
    padding: 0.5rem;
  }

  .md\:p-20 {
    padding: 5rem;
  }

  .md\:p-24 {
    padding: 6rem;
  }

  .md\:p-28 {
    padding: 7rem;
  }

  .md\:p-3 {
    padding: 0.75rem;
  }

  .md\:p-32 {
    padding: 8rem;
  }

  .md\:p-36 {
    padding: 9rem;
  }

  .md\:p-4 {
    padding: 1rem;
  }

  .md\:p-40 {
    padding: 10rem;
  }

  .md\:p-44 {
    padding: 11rem;
  }

  .md\:p-48 {
    padding: 12rem;
  }

  .md\:p-5 {
    padding: 1.25rem;
  }

  .md\:p-52 {
    padding: 13rem;
  }

  .md\:p-56 {
    padding: 14rem;
  }

  .md\:p-6 {
    padding: 1.5rem;
  }

  .md\:p-60 {
    padding: 15rem;
  }

  .md\:p-64 {
    padding: 16rem;
  }

  .md\:p-7 {
    padding: 1.75rem;
  }

  .md\:p-72 {
    padding: 18rem;
  }

  .md\:p-8 {
    padding: 2rem;
  }

  .md\:p-80 {
    padding: 20rem;
  }

  .md\:p-9 {
    padding: 2.25rem;
  }

  .md\:p-96 {
    padding: 24rem;
  }

  .md\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .md\:px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .md\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .md\:px-11 {
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }

  .md\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .md\:px-14 {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .md\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .md\:px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .md\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .md\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .md\:px-28 {
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .md\:px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .md\:px-32 {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .md\:px-36 {
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .md\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .md\:px-40 {
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .md\:px-44 {
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .md\:px-48 {
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .md\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .md\:px-52 {
    padding-left: 13rem;
    padding-right: 13rem;
  }

  .md\:px-56 {
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .md\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .md\:px-60 {
    padding-left: 15rem;
    padding-right: 15rem;
  }

  .md\:px-64 {
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .md\:px-7 {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .md\:px-72 {
    padding-left: 18rem;
    padding-right: 18rem;
  }

  .md\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .md\:px-80 {
    padding-left: 20rem;
    padding-right: 20rem;
  }

  .md\:px-9 {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .md\:px-96 {
    padding-left: 24rem;
    padding-right: 24rem;
  }

  .md\:py-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .md\:py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .md\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .md\:py-11 {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .md\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .md\:py-14 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .md\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .md\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .md\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .md\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .md\:py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .md\:py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .md\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .md\:py-36 {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .md\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .md\:py-40 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .md\:py-44 {
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .md\:py-48 {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .md\:py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .md\:py-52 {
    padding-top: 13rem;
    padding-bottom: 13rem;
  }

  .md\:py-56 {
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .md\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .md\:py-60 {
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .md\:py-64 {
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .md\:py-7 {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .md\:py-72 {
    padding-top: 18rem;
    padding-bottom: 18rem;
  }

  .md\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .md\:py-80 {
    padding-top: 20rem;
    padding-bottom: 20rem;
  }

  .md\:py-9 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .md\:py-96 {
    padding-top: 24rem;
    padding-bottom: 24rem;
  }

  .md\:pb-0 {
    padding-bottom: 0px;
  }

  .md\:pb-1 {
    padding-bottom: 0.25rem;
  }

  .md\:pb-10 {
    padding-bottom: 2.5rem;
  }

  .md\:pb-11 {
    padding-bottom: 2.75rem;
  }

  .md\:pb-12 {
    padding-bottom: 3rem;
  }

  .md\:pb-14 {
    padding-bottom: 3.5rem;
  }

  .md\:pb-16 {
    padding-bottom: 4rem;
  }

  .md\:pb-2 {
    padding-bottom: 0.5rem;
  }

  .md\:pb-20 {
    padding-bottom: 5rem;
  }

  .md\:pb-24 {
    padding-bottom: 6rem;
  }

  .md\:pb-28 {
    padding-bottom: 7rem;
  }

  .md\:pb-3 {
    padding-bottom: 0.75rem;
  }

  .md\:pb-32 {
    padding-bottom: 8rem;
  }

  .md\:pb-36 {
    padding-bottom: 9rem;
  }

  .md\:pb-4 {
    padding-bottom: 1rem;
  }

  .md\:pb-40 {
    padding-bottom: 10rem;
  }

  .md\:pb-44 {
    padding-bottom: 11rem;
  }

  .md\:pb-48 {
    padding-bottom: 12rem;
  }

  .md\:pb-5 {
    padding-bottom: 1.25rem;
  }

  .md\:pb-52 {
    padding-bottom: 13rem;
  }

  .md\:pb-56 {
    padding-bottom: 14rem;
  }

  .md\:pb-6 {
    padding-bottom: 1.5rem;
  }

  .md\:pb-60 {
    padding-bottom: 15rem;
  }

  .md\:pb-64 {
    padding-bottom: 16rem;
  }

  .md\:pb-7 {
    padding-bottom: 1.75rem;
  }

  .md\:pb-72 {
    padding-bottom: 18rem;
  }

  .md\:pb-8 {
    padding-bottom: 2rem;
  }

  .md\:pb-80 {
    padding-bottom: 20rem;
  }

  .md\:pb-9 {
    padding-bottom: 2.25rem;
  }

  .md\:pb-96 {
    padding-bottom: 24rem;
  }

  .md\:pl-0 {
    padding-left: 0px;
  }

  .md\:pl-1 {
    padding-left: 0.25rem;
  }

  .md\:pl-10 {
    padding-left: 2.5rem;
  }

  .md\:pl-11 {
    padding-left: 2.75rem;
  }

  .md\:pl-12 {
    padding-left: 3rem;
  }

  .md\:pl-14 {
    padding-left: 3.5rem;
  }

  .md\:pl-16 {
    padding-left: 4rem;
  }

  .md\:pl-2 {
    padding-left: 0.5rem;
  }

  .md\:pl-20 {
    padding-left: 5rem;
  }

  .md\:pl-24 {
    padding-left: 6rem;
  }

  .md\:pl-28 {
    padding-left: 7rem;
  }

  .md\:pl-3 {
    padding-left: 0.75rem;
  }

  .md\:pl-32 {
    padding-left: 8rem;
  }

  .md\:pl-36 {
    padding-left: 9rem;
  }

  .md\:pl-4 {
    padding-left: 1rem;
  }

  .md\:pl-40 {
    padding-left: 10rem;
  }

  .md\:pl-44 {
    padding-left: 11rem;
  }

  .md\:pl-48 {
    padding-left: 12rem;
  }

  .md\:pl-5 {
    padding-left: 1.25rem;
  }

  .md\:pl-52 {
    padding-left: 13rem;
  }

  .md\:pl-56 {
    padding-left: 14rem;
  }

  .md\:pl-6 {
    padding-left: 1.5rem;
  }

  .md\:pl-60 {
    padding-left: 15rem;
  }

  .md\:pl-64 {
    padding-left: 16rem;
  }

  .md\:pl-7 {
    padding-left: 1.75rem;
  }

  .md\:pl-72 {
    padding-left: 18rem;
  }

  .md\:pl-8 {
    padding-left: 2rem;
  }

  .md\:pl-80 {
    padding-left: 20rem;
  }

  .md\:pl-9 {
    padding-left: 2.25rem;
  }

  .md\:pl-96 {
    padding-left: 24rem;
  }

  .md\:pr-0 {
    padding-right: 0px;
  }

  .md\:pr-1 {
    padding-right: 0.25rem;
  }

  .md\:pr-10 {
    padding-right: 2.5rem;
  }

  .md\:pr-11 {
    padding-right: 2.75rem;
  }

  .md\:pr-12 {
    padding-right: 3rem;
  }

  .md\:pr-14 {
    padding-right: 3.5rem;
  }

  .md\:pr-16 {
    padding-right: 4rem;
  }

  .md\:pr-2 {
    padding-right: 0.5rem;
  }

  .md\:pr-20 {
    padding-right: 5rem;
  }

  .md\:pr-24 {
    padding-right: 6rem;
  }

  .md\:pr-28 {
    padding-right: 7rem;
  }

  .md\:pr-3 {
    padding-right: 0.75rem;
  }

  .md\:pr-32 {
    padding-right: 8rem;
  }

  .md\:pr-36 {
    padding-right: 9rem;
  }

  .md\:pr-4 {
    padding-right: 1rem;
  }

  .md\:pr-40 {
    padding-right: 10rem;
  }

  .md\:pr-44 {
    padding-right: 11rem;
  }

  .md\:pr-48 {
    padding-right: 12rem;
  }

  .md\:pr-5 {
    padding-right: 1.25rem;
  }

  .md\:pr-52 {
    padding-right: 13rem;
  }

  .md\:pr-56 {
    padding-right: 14rem;
  }

  .md\:pr-6 {
    padding-right: 1.5rem;
  }

  .md\:pr-60 {
    padding-right: 15rem;
  }

  .md\:pr-64 {
    padding-right: 16rem;
  }

  .md\:pr-7 {
    padding-right: 1.75rem;
  }

  .md\:pr-72 {
    padding-right: 18rem;
  }

  .md\:pr-8 {
    padding-right: 2rem;
  }

  .md\:pr-80 {
    padding-right: 20rem;
  }

  .md\:pr-9 {
    padding-right: 2.25rem;
  }

  .md\:pr-96 {
    padding-right: 24rem;
  }

  .md\:pt-0 {
    padding-top: 0px;
  }

  .md\:pt-1 {
    padding-top: 0.25rem;
  }

  .md\:pt-10 {
    padding-top: 2.5rem;
  }

  .md\:pt-11 {
    padding-top: 2.75rem;
  }

  .md\:pt-12 {
    padding-top: 3rem;
  }

  .md\:pt-14 {
    padding-top: 3.5rem;
  }

  .md\:pt-16 {
    padding-top: 4rem;
  }

  .md\:pt-2 {
    padding-top: 0.5rem;
  }

  .md\:pt-20 {
    padding-top: 5rem;
  }

  .md\:pt-24 {
    padding-top: 6rem;
  }

  .md\:pt-28 {
    padding-top: 7rem;
  }

  .md\:pt-3 {
    padding-top: 0.75rem;
  }

  .md\:pt-32 {
    padding-top: 8rem;
  }

  .md\:pt-36 {
    padding-top: 9rem;
  }

  .md\:pt-4 {
    padding-top: 1rem;
  }

  .md\:pt-40 {
    padding-top: 10rem;
  }

  .md\:pt-44 {
    padding-top: 11rem;
  }

  .md\:pt-48 {
    padding-top: 12rem;
  }

  .md\:pt-5 {
    padding-top: 1.25rem;
  }

  .md\:pt-52 {
    padding-top: 13rem;
  }

  .md\:pt-56 {
    padding-top: 14rem;
  }

  .md\:pt-6 {
    padding-top: 1.5rem;
  }

  .md\:pt-60 {
    padding-top: 15rem;
  }

  .md\:pt-64 {
    padding-top: 16rem;
  }

  .md\:pt-7 {
    padding-top: 1.75rem;
  }

  .md\:pt-72 {
    padding-top: 18rem;
  }

  .md\:pt-8 {
    padding-top: 2rem;
  }

  .md\:pt-80 {
    padding-top: 20rem;
  }

  .md\:pt-9 {
    padding-top: 2.25rem;
  }

  .md\:pt-96 {
    padding-top: 24rem;
  }

  .md\:font-arial {
    font-family: Arial, Helvetica, sans-serif;
  }

  .md\:font-assistant {
    font-family: Assistant, sans-serif;
  }

  .md\:font-dancingscript {
    font-family: Dancing Script, cursive;
  }

  .md\:font-firacode {
    font-family: Fira Code, monospace;
  }

  .md\:font-frankRuhlLibre {
    font-family: Frank Ruhl Libre, serif;
  }

  .md\:font-jetbrains {
    font-family: JetBrains Mono, monospace;
  }

  .md\:font-lato {
    font-family: Lato, sans-serif;
  }

  .md\:font-lobster {
    font-family: Lobster, cursive;
  }

  .md\:font-lobsterTwo {
    font-family: Lobster Two, cursive;
  }

  .md\:font-lora {
    font-family: Lora, serif;
  }

  .md\:font-montserrat {
    font-family: Montserrat, sans-serif;
  }

  .md\:font-opensans {
    font-family: Open Sans, sans-serif;
  }

  .md\:font-oswald {
    font-family: Oswald, sans-serif;
  }

  .md\:font-pacifico {
    font-family: Pacifico, cursive;
  }

  .md\:font-poppins {
    font-family: Poppins, sans-serif;
  }

  .md\:font-raleway {
    font-family: Raleway, sans-serif;
  }

  .md\:font-roboto {
    font-family: Roboto, sans-serif;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
  }

  .md\:text-6xl {
    font-size: 4rem;
  }

  .md\:text-lg {
    font-size: 1.125rem;
  }

  .md\:text-sm {
    font-size: .875rem;
  }

  .md\:text-amber-100 {
    --tw-text-opacity: 1;
    color: rgb(254 243 199 / var(--tw-text-opacity, 1));
  }

  .md\:text-amber-200 {
    --tw-text-opacity: 1;
    color: rgb(253 230 138 / var(--tw-text-opacity, 1));
  }

  .md\:text-amber-300 {
    --tw-text-opacity: 1;
    color: rgb(252 211 77 / var(--tw-text-opacity, 1));
  }

  .md\:text-amber-400 {
    --tw-text-opacity: 1;
    color: rgb(251 191 36 / var(--tw-text-opacity, 1));
  }

  .md\:text-amber-50 {
    --tw-text-opacity: 1;
    color: rgb(255 251 235 / var(--tw-text-opacity, 1));
  }

  .md\:text-amber-500 {
    --tw-text-opacity: 1;
    color: rgb(245 158 11 / var(--tw-text-opacity, 1));
  }

  .md\:text-amber-600 {
    --tw-text-opacity: 1;
    color: rgb(217 119 6 / var(--tw-text-opacity, 1));
  }

  .md\:text-amber-700 {
    --tw-text-opacity: 1;
    color: rgb(180 83 9 / var(--tw-text-opacity, 1));
  }

  .md\:text-amber-800 {
    --tw-text-opacity: 1;
    color: rgb(146 64 14 / var(--tw-text-opacity, 1));
  }

  .md\:text-amber-900 {
    --tw-text-opacity: 1;
    color: rgb(120 53 15 / var(--tw-text-opacity, 1));
  }

  .md\:text-amber-950 {
    --tw-text-opacity: 1;
    color: rgb(69 26 3 / var(--tw-text-opacity, 1));
  }

  .md\:text-blue-100 {
    --tw-text-opacity: 1;
    color: rgb(219 234 254 / var(--tw-text-opacity, 1));
  }

  .md\:text-blue-200 {
    --tw-text-opacity: 1;
    color: rgb(191 219 254 / var(--tw-text-opacity, 1));
  }

  .md\:text-blue-300 {
    --tw-text-opacity: 1;
    color: rgb(147 197 253 / var(--tw-text-opacity, 1));
  }

  .md\:text-blue-400 {
    --tw-text-opacity: 1;
    color: rgb(96 165 250 / var(--tw-text-opacity, 1));
  }

  .md\:text-blue-50 {
    --tw-text-opacity: 1;
    color: rgb(239 246 255 / var(--tw-text-opacity, 1));
  }

  .md\:text-blue-500 {
    --tw-text-opacity: 1;
    color: rgb(59 130 246 / var(--tw-text-opacity, 1));
  }

  .md\:text-blue-600 {
    --tw-text-opacity: 1;
    color: rgb(37 99 235 / var(--tw-text-opacity, 1));
  }

  .md\:text-blue-700 {
    --tw-text-opacity: 1;
    color: rgb(29 78 216 / var(--tw-text-opacity, 1));
  }

  .md\:text-blue-800 {
    --tw-text-opacity: 1;
    color: rgb(30 64 175 / var(--tw-text-opacity, 1));
  }

  .md\:text-blue-900 {
    --tw-text-opacity: 1;
    color: rgb(30 58 138 / var(--tw-text-opacity, 1));
  }

  .md\:text-blue-950 {
    --tw-text-opacity: 1;
    color: rgb(23 37 84 / var(--tw-text-opacity, 1));
  }

  .md\:text-cyan-100 {
    --tw-text-opacity: 1;
    color: rgb(207 250 254 / var(--tw-text-opacity, 1));
  }

  .md\:text-cyan-200 {
    --tw-text-opacity: 1;
    color: rgb(165 243 252 / var(--tw-text-opacity, 1));
  }

  .md\:text-cyan-300 {
    --tw-text-opacity: 1;
    color: rgb(103 232 249 / var(--tw-text-opacity, 1));
  }

  .md\:text-cyan-400 {
    --tw-text-opacity: 1;
    color: rgb(34 211 238 / var(--tw-text-opacity, 1));
  }

  .md\:text-cyan-50 {
    --tw-text-opacity: 1;
    color: rgb(236 254 255 / var(--tw-text-opacity, 1));
  }

  .md\:text-cyan-500 {
    --tw-text-opacity: 1;
    color: rgb(6 182 212 / var(--tw-text-opacity, 1));
  }

  .md\:text-cyan-600 {
    --tw-text-opacity: 1;
    color: rgb(8 145 178 / var(--tw-text-opacity, 1));
  }

  .md\:text-cyan-700 {
    --tw-text-opacity: 1;
    color: rgb(14 116 144 / var(--tw-text-opacity, 1));
  }

  .md\:text-cyan-800 {
    --tw-text-opacity: 1;
    color: rgb(21 94 117 / var(--tw-text-opacity, 1));
  }

  .md\:text-cyan-900 {
    --tw-text-opacity: 1;
    color: rgb(22 78 99 / var(--tw-text-opacity, 1));
  }

  .md\:text-cyan-950 {
    --tw-text-opacity: 1;
    color: rgb(8 51 68 / var(--tw-text-opacity, 1));
  }

  .md\:text-emerald-100 {
    --tw-text-opacity: 1;
    color: rgb(209 250 229 / var(--tw-text-opacity, 1));
  }

  .md\:text-emerald-200 {
    --tw-text-opacity: 1;
    color: rgb(167 243 208 / var(--tw-text-opacity, 1));
  }

  .md\:text-emerald-300 {
    --tw-text-opacity: 1;
    color: rgb(110 231 183 / var(--tw-text-opacity, 1));
  }

  .md\:text-emerald-400 {
    --tw-text-opacity: 1;
    color: rgb(52 211 153 / var(--tw-text-opacity, 1));
  }

  .md\:text-emerald-50 {
    --tw-text-opacity: 1;
    color: rgb(236 253 245 / var(--tw-text-opacity, 1));
  }

  .md\:text-emerald-500 {
    --tw-text-opacity: 1;
    color: rgb(16 185 129 / var(--tw-text-opacity, 1));
  }

  .md\:text-emerald-600 {
    --tw-text-opacity: 1;
    color: rgb(5 150 105 / var(--tw-text-opacity, 1));
  }

  .md\:text-emerald-700 {
    --tw-text-opacity: 1;
    color: rgb(4 120 87 / var(--tw-text-opacity, 1));
  }

  .md\:text-emerald-800 {
    --tw-text-opacity: 1;
    color: rgb(6 95 70 / var(--tw-text-opacity, 1));
  }

  .md\:text-emerald-900 {
    --tw-text-opacity: 1;
    color: rgb(6 78 59 / var(--tw-text-opacity, 1));
  }

  .md\:text-emerald-950 {
    --tw-text-opacity: 1;
    color: rgb(2 44 34 / var(--tw-text-opacity, 1));
  }

  .md\:text-fuchsia-100 {
    --tw-text-opacity: 1;
    color: rgb(250 232 255 / var(--tw-text-opacity, 1));
  }

  .md\:text-fuchsia-200 {
    --tw-text-opacity: 1;
    color: rgb(245 208 254 / var(--tw-text-opacity, 1));
  }

  .md\:text-fuchsia-300 {
    --tw-text-opacity: 1;
    color: rgb(240 171 252 / var(--tw-text-opacity, 1));
  }

  .md\:text-fuchsia-400 {
    --tw-text-opacity: 1;
    color: rgb(232 121 249 / var(--tw-text-opacity, 1));
  }

  .md\:text-fuchsia-50 {
    --tw-text-opacity: 1;
    color: rgb(253 244 255 / var(--tw-text-opacity, 1));
  }

  .md\:text-fuchsia-500 {
    --tw-text-opacity: 1;
    color: rgb(217 70 239 / var(--tw-text-opacity, 1));
  }

  .md\:text-fuchsia-600 {
    --tw-text-opacity: 1;
    color: rgb(192 38 211 / var(--tw-text-opacity, 1));
  }

  .md\:text-fuchsia-700 {
    --tw-text-opacity: 1;
    color: rgb(162 28 175 / var(--tw-text-opacity, 1));
  }

  .md\:text-fuchsia-800 {
    --tw-text-opacity: 1;
    color: rgb(134 25 143 / var(--tw-text-opacity, 1));
  }

  .md\:text-fuchsia-900 {
    --tw-text-opacity: 1;
    color: rgb(112 26 117 / var(--tw-text-opacity, 1));
  }

  .md\:text-fuchsia-950 {
    --tw-text-opacity: 1;
    color: rgb(74 4 78 / var(--tw-text-opacity, 1));
  }

  .md\:text-gray-100 {
    --tw-text-opacity: 1;
    color: rgb(243 244 246 / var(--tw-text-opacity, 1));
  }

  .md\:text-gray-200 {
    --tw-text-opacity: 1;
    color: rgb(229 231 235 / var(--tw-text-opacity, 1));
  }

  .md\:text-gray-300 {
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity, 1));
  }

  .md\:text-gray-400 {
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
  }

  .md\:text-gray-50 {
    --tw-text-opacity: 1;
    color: rgb(249 250 251 / var(--tw-text-opacity, 1));
  }

  .md\:text-gray-500 {
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }

  .md\:text-gray-600 {
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }

  .md\:text-gray-700 {
    --tw-text-opacity: 1;
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
  }

  .md\:text-gray-800 {
    --tw-text-opacity: 1;
    color: rgb(31 41 55 / var(--tw-text-opacity, 1));
  }

  .md\:text-gray-900 {
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }

  .md\:text-gray-950 {
    --tw-text-opacity: 1;
    color: rgb(3 7 18 / var(--tw-text-opacity, 1));
  }

  .md\:text-green-100 {
    --tw-text-opacity: 1;
    color: rgb(220 252 231 / var(--tw-text-opacity, 1));
  }

  .md\:text-green-200 {
    --tw-text-opacity: 1;
    color: rgb(187 247 208 / var(--tw-text-opacity, 1));
  }

  .md\:text-green-300 {
    --tw-text-opacity: 1;
    color: rgb(134 239 172 / var(--tw-text-opacity, 1));
  }

  .md\:text-green-400 {
    --tw-text-opacity: 1;
    color: rgb(74 222 128 / var(--tw-text-opacity, 1));
  }

  .md\:text-green-50 {
    --tw-text-opacity: 1;
    color: rgb(240 253 244 / var(--tw-text-opacity, 1));
  }

  .md\:text-green-500 {
    --tw-text-opacity: 1;
    color: rgb(34 197 94 / var(--tw-text-opacity, 1));
  }

  .md\:text-green-600 {
    --tw-text-opacity: 1;
    color: rgb(22 163 74 / var(--tw-text-opacity, 1));
  }

  .md\:text-green-700 {
    --tw-text-opacity: 1;
    color: rgb(21 128 61 / var(--tw-text-opacity, 1));
  }

  .md\:text-green-800 {
    --tw-text-opacity: 1;
    color: rgb(22 101 52 / var(--tw-text-opacity, 1));
  }

  .md\:text-green-900 {
    --tw-text-opacity: 1;
    color: rgb(20 83 45 / var(--tw-text-opacity, 1));
  }

  .md\:text-green-950 {
    --tw-text-opacity: 1;
    color: rgb(5 46 22 / var(--tw-text-opacity, 1));
  }

  .md\:text-indigo-100 {
    --tw-text-opacity: 1;
    color: rgb(224 231 255 / var(--tw-text-opacity, 1));
  }

  .md\:text-indigo-200 {
    --tw-text-opacity: 1;
    color: rgb(199 210 254 / var(--tw-text-opacity, 1));
  }

  .md\:text-indigo-300 {
    --tw-text-opacity: 1;
    color: rgb(165 180 252 / var(--tw-text-opacity, 1));
  }

  .md\:text-indigo-400 {
    --tw-text-opacity: 1;
    color: rgb(129 140 248 / var(--tw-text-opacity, 1));
  }

  .md\:text-indigo-50 {
    --tw-text-opacity: 1;
    color: rgb(238 242 255 / var(--tw-text-opacity, 1));
  }

  .md\:text-indigo-500 {
    --tw-text-opacity: 1;
    color: rgb(99 102 241 / var(--tw-text-opacity, 1));
  }

  .md\:text-indigo-600 {
    --tw-text-opacity: 1;
    color: rgb(79 70 229 / var(--tw-text-opacity, 1));
  }

  .md\:text-indigo-700 {
    --tw-text-opacity: 1;
    color: rgb(67 56 202 / var(--tw-text-opacity, 1));
  }

  .md\:text-indigo-800 {
    --tw-text-opacity: 1;
    color: rgb(55 48 163 / var(--tw-text-opacity, 1));
  }

  .md\:text-indigo-900 {
    --tw-text-opacity: 1;
    color: rgb(49 46 129 / var(--tw-text-opacity, 1));
  }

  .md\:text-indigo-950 {
    --tw-text-opacity: 1;
    color: rgb(30 27 75 / var(--tw-text-opacity, 1));
  }

  .md\:text-lime-100 {
    --tw-text-opacity: 1;
    color: rgb(236 252 203 / var(--tw-text-opacity, 1));
  }

  .md\:text-lime-200 {
    --tw-text-opacity: 1;
    color: rgb(217 249 157 / var(--tw-text-opacity, 1));
  }

  .md\:text-lime-300 {
    --tw-text-opacity: 1;
    color: rgb(190 242 100 / var(--tw-text-opacity, 1));
  }

  .md\:text-lime-400 {
    --tw-text-opacity: 1;
    color: rgb(163 230 53 / var(--tw-text-opacity, 1));
  }

  .md\:text-lime-50 {
    --tw-text-opacity: 1;
    color: rgb(247 254 231 / var(--tw-text-opacity, 1));
  }

  .md\:text-lime-500 {
    --tw-text-opacity: 1;
    color: rgb(132 204 22 / var(--tw-text-opacity, 1));
  }

  .md\:text-lime-600 {
    --tw-text-opacity: 1;
    color: rgb(101 163 13 / var(--tw-text-opacity, 1));
  }

  .md\:text-lime-700 {
    --tw-text-opacity: 1;
    color: rgb(77 124 15 / var(--tw-text-opacity, 1));
  }

  .md\:text-lime-800 {
    --tw-text-opacity: 1;
    color: rgb(63 98 18 / var(--tw-text-opacity, 1));
  }

  .md\:text-lime-900 {
    --tw-text-opacity: 1;
    color: rgb(54 83 20 / var(--tw-text-opacity, 1));
  }

  .md\:text-lime-950 {
    --tw-text-opacity: 1;
    color: rgb(26 46 5 / var(--tw-text-opacity, 1));
  }

  .md\:text-neutral-100 {
    --tw-text-opacity: 1;
    color: rgb(245 245 245 / var(--tw-text-opacity, 1));
  }

  .md\:text-neutral-200 {
    --tw-text-opacity: 1;
    color: rgb(229 229 229 / var(--tw-text-opacity, 1));
  }

  .md\:text-neutral-300 {
    --tw-text-opacity: 1;
    color: rgb(212 212 212 / var(--tw-text-opacity, 1));
  }

  .md\:text-neutral-400 {
    --tw-text-opacity: 1;
    color: rgb(163 163 163 / var(--tw-text-opacity, 1));
  }

  .md\:text-neutral-50 {
    --tw-text-opacity: 1;
    color: rgb(250 250 250 / var(--tw-text-opacity, 1));
  }

  .md\:text-neutral-500 {
    --tw-text-opacity: 1;
    color: rgb(115 115 115 / var(--tw-text-opacity, 1));
  }

  .md\:text-neutral-600 {
    --tw-text-opacity: 1;
    color: rgb(82 82 82 / var(--tw-text-opacity, 1));
  }

  .md\:text-neutral-700 {
    --tw-text-opacity: 1;
    color: rgb(64 64 64 / var(--tw-text-opacity, 1));
  }

  .md\:text-neutral-800 {
    --tw-text-opacity: 1;
    color: rgb(38 38 38 / var(--tw-text-opacity, 1));
  }

  .md\:text-neutral-900 {
    --tw-text-opacity: 1;
    color: rgb(23 23 23 / var(--tw-text-opacity, 1));
  }

  .md\:text-neutral-950 {
    --tw-text-opacity: 1;
    color: rgb(10 10 10 / var(--tw-text-opacity, 1));
  }

  .md\:text-orange-100 {
    --tw-text-opacity: 1;
    color: rgb(255 237 213 / var(--tw-text-opacity, 1));
  }

  .md\:text-orange-200 {
    --tw-text-opacity: 1;
    color: rgb(254 215 170 / var(--tw-text-opacity, 1));
  }

  .md\:text-orange-300 {
    --tw-text-opacity: 1;
    color: rgb(253 186 116 / var(--tw-text-opacity, 1));
  }

  .md\:text-orange-400 {
    --tw-text-opacity: 1;
    color: rgb(251 146 60 / var(--tw-text-opacity, 1));
  }

  .md\:text-orange-50 {
    --tw-text-opacity: 1;
    color: rgb(255 247 237 / var(--tw-text-opacity, 1));
  }

  .md\:text-orange-500 {
    --tw-text-opacity: 1;
    color: rgb(249 115 22 / var(--tw-text-opacity, 1));
  }

  .md\:text-orange-600 {
    --tw-text-opacity: 1;
    color: rgb(234 88 12 / var(--tw-text-opacity, 1));
  }

  .md\:text-orange-700 {
    --tw-text-opacity: 1;
    color: rgb(194 65 12 / var(--tw-text-opacity, 1));
  }

  .md\:text-orange-800 {
    --tw-text-opacity: 1;
    color: rgb(154 52 18 / var(--tw-text-opacity, 1));
  }

  .md\:text-orange-900 {
    --tw-text-opacity: 1;
    color: rgb(124 45 18 / var(--tw-text-opacity, 1));
  }

  .md\:text-orange-950 {
    --tw-text-opacity: 1;
    color: rgb(67 20 7 / var(--tw-text-opacity, 1));
  }

  .md\:text-pink-100 {
    --tw-text-opacity: 1;
    color: rgb(252 231 243 / var(--tw-text-opacity, 1));
  }

  .md\:text-pink-200 {
    --tw-text-opacity: 1;
    color: rgb(251 207 232 / var(--tw-text-opacity, 1));
  }

  .md\:text-pink-300 {
    --tw-text-opacity: 1;
    color: rgb(249 168 212 / var(--tw-text-opacity, 1));
  }

  .md\:text-pink-400 {
    --tw-text-opacity: 1;
    color: rgb(244 114 182 / var(--tw-text-opacity, 1));
  }

  .md\:text-pink-50 {
    --tw-text-opacity: 1;
    color: rgb(253 242 248 / var(--tw-text-opacity, 1));
  }

  .md\:text-pink-500 {
    --tw-text-opacity: 1;
    color: rgb(236 72 153 / var(--tw-text-opacity, 1));
  }

  .md\:text-pink-600 {
    --tw-text-opacity: 1;
    color: rgb(219 39 119 / var(--tw-text-opacity, 1));
  }

  .md\:text-pink-700 {
    --tw-text-opacity: 1;
    color: rgb(190 24 93 / var(--tw-text-opacity, 1));
  }

  .md\:text-pink-800 {
    --tw-text-opacity: 1;
    color: rgb(157 23 77 / var(--tw-text-opacity, 1));
  }

  .md\:text-pink-900 {
    --tw-text-opacity: 1;
    color: rgb(131 24 67 / var(--tw-text-opacity, 1));
  }

  .md\:text-pink-950 {
    --tw-text-opacity: 1;
    color: rgb(80 7 36 / var(--tw-text-opacity, 1));
  }

  .md\:text-purple-100 {
    --tw-text-opacity: 1;
    color: rgb(243 232 255 / var(--tw-text-opacity, 1));
  }

  .md\:text-purple-200 {
    --tw-text-opacity: 1;
    color: rgb(233 213 255 / var(--tw-text-opacity, 1));
  }

  .md\:text-purple-300 {
    --tw-text-opacity: 1;
    color: rgb(216 180 254 / var(--tw-text-opacity, 1));
  }

  .md\:text-purple-400 {
    --tw-text-opacity: 1;
    color: rgb(192 132 252 / var(--tw-text-opacity, 1));
  }

  .md\:text-purple-50 {
    --tw-text-opacity: 1;
    color: rgb(250 245 255 / var(--tw-text-opacity, 1));
  }

  .md\:text-purple-500 {
    --tw-text-opacity: 1;
    color: rgb(168 85 247 / var(--tw-text-opacity, 1));
  }

  .md\:text-purple-600 {
    --tw-text-opacity: 1;
    color: rgb(147 51 234 / var(--tw-text-opacity, 1));
  }

  .md\:text-purple-700 {
    --tw-text-opacity: 1;
    color: rgb(126 34 206 / var(--tw-text-opacity, 1));
  }

  .md\:text-purple-800 {
    --tw-text-opacity: 1;
    color: rgb(107 33 168 / var(--tw-text-opacity, 1));
  }

  .md\:text-purple-900 {
    --tw-text-opacity: 1;
    color: rgb(88 28 135 / var(--tw-text-opacity, 1));
  }

  .md\:text-purple-950 {
    --tw-text-opacity: 1;
    color: rgb(59 7 100 / var(--tw-text-opacity, 1));
  }

  .md\:text-red-100 {
    --tw-text-opacity: 1;
    color: rgb(254 226 226 / var(--tw-text-opacity, 1));
  }

  .md\:text-red-200 {
    --tw-text-opacity: 1;
    color: rgb(254 202 202 / var(--tw-text-opacity, 1));
  }

  .md\:text-red-300 {
    --tw-text-opacity: 1;
    color: rgb(252 165 165 / var(--tw-text-opacity, 1));
  }

  .md\:text-red-400 {
    --tw-text-opacity: 1;
    color: rgb(248 113 113 / var(--tw-text-opacity, 1));
  }

  .md\:text-red-50 {
    --tw-text-opacity: 1;
    color: rgb(254 242 242 / var(--tw-text-opacity, 1));
  }

  .md\:text-red-500 {
    --tw-text-opacity: 1;
    color: rgb(239 68 68 / var(--tw-text-opacity, 1));
  }

  .md\:text-red-600 {
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity, 1));
  }

  .md\:text-red-700 {
    --tw-text-opacity: 1;
    color: rgb(185 28 28 / var(--tw-text-opacity, 1));
  }

  .md\:text-red-800 {
    --tw-text-opacity: 1;
    color: rgb(153 27 27 / var(--tw-text-opacity, 1));
  }

  .md\:text-red-900 {
    --tw-text-opacity: 1;
    color: rgb(127 29 29 / var(--tw-text-opacity, 1));
  }

  .md\:text-red-950 {
    --tw-text-opacity: 1;
    color: rgb(69 10 10 / var(--tw-text-opacity, 1));
  }

  .md\:text-rose-100 {
    --tw-text-opacity: 1;
    color: rgb(255 228 230 / var(--tw-text-opacity, 1));
  }

  .md\:text-rose-200 {
    --tw-text-opacity: 1;
    color: rgb(254 205 211 / var(--tw-text-opacity, 1));
  }

  .md\:text-rose-300 {
    --tw-text-opacity: 1;
    color: rgb(253 164 175 / var(--tw-text-opacity, 1));
  }

  .md\:text-rose-400 {
    --tw-text-opacity: 1;
    color: rgb(251 113 133 / var(--tw-text-opacity, 1));
  }

  .md\:text-rose-50 {
    --tw-text-opacity: 1;
    color: rgb(255 241 242 / var(--tw-text-opacity, 1));
  }

  .md\:text-rose-500 {
    --tw-text-opacity: 1;
    color: rgb(244 63 94 / var(--tw-text-opacity, 1));
  }

  .md\:text-rose-600 {
    --tw-text-opacity: 1;
    color: rgb(225 29 72 / var(--tw-text-opacity, 1));
  }

  .md\:text-rose-700 {
    --tw-text-opacity: 1;
    color: rgb(190 18 60 / var(--tw-text-opacity, 1));
  }

  .md\:text-rose-800 {
    --tw-text-opacity: 1;
    color: rgb(159 18 57 / var(--tw-text-opacity, 1));
  }

  .md\:text-rose-900 {
    --tw-text-opacity: 1;
    color: rgb(136 19 55 / var(--tw-text-opacity, 1));
  }

  .md\:text-rose-950 {
    --tw-text-opacity: 1;
    color: rgb(76 5 25 / var(--tw-text-opacity, 1));
  }

  .md\:text-sky-100 {
    --tw-text-opacity: 1;
    color: rgb(224 242 254 / var(--tw-text-opacity, 1));
  }

  .md\:text-sky-200 {
    --tw-text-opacity: 1;
    color: rgb(186 230 253 / var(--tw-text-opacity, 1));
  }

  .md\:text-sky-300 {
    --tw-text-opacity: 1;
    color: rgb(125 211 252 / var(--tw-text-opacity, 1));
  }

  .md\:text-sky-400 {
    --tw-text-opacity: 1;
    color: rgb(56 189 248 / var(--tw-text-opacity, 1));
  }

  .md\:text-sky-50 {
    --tw-text-opacity: 1;
    color: rgb(240 249 255 / var(--tw-text-opacity, 1));
  }

  .md\:text-sky-500 {
    --tw-text-opacity: 1;
    color: rgb(14 165 233 / var(--tw-text-opacity, 1));
  }

  .md\:text-sky-600 {
    --tw-text-opacity: 1;
    color: rgb(2 132 199 / var(--tw-text-opacity, 1));
  }

  .md\:text-sky-700 {
    --tw-text-opacity: 1;
    color: rgb(3 105 161 / var(--tw-text-opacity, 1));
  }

  .md\:text-sky-800 {
    --tw-text-opacity: 1;
    color: rgb(7 89 133 / var(--tw-text-opacity, 1));
  }

  .md\:text-sky-900 {
    --tw-text-opacity: 1;
    color: rgb(12 74 110 / var(--tw-text-opacity, 1));
  }

  .md\:text-sky-950 {
    --tw-text-opacity: 1;
    color: rgb(8 47 73 / var(--tw-text-opacity, 1));
  }

  .md\:text-slate-100 {
    --tw-text-opacity: 1;
    color: rgb(241 245 249 / var(--tw-text-opacity, 1));
  }

  .md\:text-slate-200 {
    --tw-text-opacity: 1;
    color: rgb(226 232 240 / var(--tw-text-opacity, 1));
  }

  .md\:text-slate-300 {
    --tw-text-opacity: 1;
    color: rgb(203 213 225 / var(--tw-text-opacity, 1));
  }

  .md\:text-slate-400 {
    --tw-text-opacity: 1;
    color: rgb(148 163 184 / var(--tw-text-opacity, 1));
  }

  .md\:text-slate-50 {
    --tw-text-opacity: 1;
    color: rgb(248 250 252 / var(--tw-text-opacity, 1));
  }

  .md\:text-slate-500 {
    --tw-text-opacity: 1;
    color: rgb(100 116 139 / var(--tw-text-opacity, 1));
  }

  .md\:text-slate-600 {
    --tw-text-opacity: 1;
    color: rgb(71 85 105 / var(--tw-text-opacity, 1));
  }

  .md\:text-slate-700 {
    --tw-text-opacity: 1;
    color: rgb(51 65 85 / var(--tw-text-opacity, 1));
  }

  .md\:text-slate-800 {
    --tw-text-opacity: 1;
    color: rgb(30 41 59 / var(--tw-text-opacity, 1));
  }

  .md\:text-slate-900 {
    --tw-text-opacity: 1;
    color: rgb(15 23 42 / var(--tw-text-opacity, 1));
  }

  .md\:text-slate-950 {
    --tw-text-opacity: 1;
    color: rgb(2 6 23 / var(--tw-text-opacity, 1));
  }

  .md\:text-stone-100 {
    --tw-text-opacity: 1;
    color: rgb(245 245 244 / var(--tw-text-opacity, 1));
  }

  .md\:text-stone-200 {
    --tw-text-opacity: 1;
    color: rgb(231 229 228 / var(--tw-text-opacity, 1));
  }

  .md\:text-stone-300 {
    --tw-text-opacity: 1;
    color: rgb(214 211 209 / var(--tw-text-opacity, 1));
  }

  .md\:text-stone-400 {
    --tw-text-opacity: 1;
    color: rgb(168 162 158 / var(--tw-text-opacity, 1));
  }

  .md\:text-stone-50 {
    --tw-text-opacity: 1;
    color: rgb(250 250 249 / var(--tw-text-opacity, 1));
  }

  .md\:text-stone-500 {
    --tw-text-opacity: 1;
    color: rgb(120 113 108 / var(--tw-text-opacity, 1));
  }

  .md\:text-stone-600 {
    --tw-text-opacity: 1;
    color: rgb(87 83 78 / var(--tw-text-opacity, 1));
  }

  .md\:text-stone-700 {
    --tw-text-opacity: 1;
    color: rgb(68 64 60 / var(--tw-text-opacity, 1));
  }

  .md\:text-stone-800 {
    --tw-text-opacity: 1;
    color: rgb(41 37 36 / var(--tw-text-opacity, 1));
  }

  .md\:text-stone-900 {
    --tw-text-opacity: 1;
    color: rgb(28 25 23 / var(--tw-text-opacity, 1));
  }

  .md\:text-stone-950 {
    --tw-text-opacity: 1;
    color: rgb(12 10 9 / var(--tw-text-opacity, 1));
  }

  .md\:text-teal-100 {
    --tw-text-opacity: 1;
    color: rgb(204 251 241 / var(--tw-text-opacity, 1));
  }

  .md\:text-teal-200 {
    --tw-text-opacity: 1;
    color: rgb(153 246 228 / var(--tw-text-opacity, 1));
  }

  .md\:text-teal-300 {
    --tw-text-opacity: 1;
    color: rgb(94 234 212 / var(--tw-text-opacity, 1));
  }

  .md\:text-teal-400 {
    --tw-text-opacity: 1;
    color: rgb(45 212 191 / var(--tw-text-opacity, 1));
  }

  .md\:text-teal-50 {
    --tw-text-opacity: 1;
    color: rgb(240 253 250 / var(--tw-text-opacity, 1));
  }

  .md\:text-teal-500 {
    --tw-text-opacity: 1;
    color: rgb(20 184 166 / var(--tw-text-opacity, 1));
  }

  .md\:text-teal-600 {
    --tw-text-opacity: 1;
    color: rgb(13 148 136 / var(--tw-text-opacity, 1));
  }

  .md\:text-teal-700 {
    --tw-text-opacity: 1;
    color: rgb(15 118 110 / var(--tw-text-opacity, 1));
  }

  .md\:text-teal-800 {
    --tw-text-opacity: 1;
    color: rgb(17 94 89 / var(--tw-text-opacity, 1));
  }

  .md\:text-teal-900 {
    --tw-text-opacity: 1;
    color: rgb(19 78 74 / var(--tw-text-opacity, 1));
  }

  .md\:text-teal-950 {
    --tw-text-opacity: 1;
    color: rgb(4 47 46 / var(--tw-text-opacity, 1));
  }

  .md\:text-violet-100 {
    --tw-text-opacity: 1;
    color: rgb(237 233 254 / var(--tw-text-opacity, 1));
  }

  .md\:text-violet-200 {
    --tw-text-opacity: 1;
    color: rgb(221 214 254 / var(--tw-text-opacity, 1));
  }

  .md\:text-violet-300 {
    --tw-text-opacity: 1;
    color: rgb(196 181 253 / var(--tw-text-opacity, 1));
  }

  .md\:text-violet-400 {
    --tw-text-opacity: 1;
    color: rgb(167 139 250 / var(--tw-text-opacity, 1));
  }

  .md\:text-violet-50 {
    --tw-text-opacity: 1;
    color: rgb(245 243 255 / var(--tw-text-opacity, 1));
  }

  .md\:text-violet-500 {
    --tw-text-opacity: 1;
    color: rgb(139 92 246 / var(--tw-text-opacity, 1));
  }

  .md\:text-violet-600 {
    --tw-text-opacity: 1;
    color: rgb(124 58 237 / var(--tw-text-opacity, 1));
  }

  .md\:text-violet-700 {
    --tw-text-opacity: 1;
    color: rgb(109 40 217 / var(--tw-text-opacity, 1));
  }

  .md\:text-violet-800 {
    --tw-text-opacity: 1;
    color: rgb(91 33 182 / var(--tw-text-opacity, 1));
  }

  .md\:text-violet-900 {
    --tw-text-opacity: 1;
    color: rgb(76 29 149 / var(--tw-text-opacity, 1));
  }

  .md\:text-violet-950 {
    --tw-text-opacity: 1;
    color: rgb(46 16 101 / var(--tw-text-opacity, 1));
  }

  .md\:text-yellow-100 {
    --tw-text-opacity: 1;
    color: rgb(254 249 195 / var(--tw-text-opacity, 1));
  }

  .md\:text-yellow-200 {
    --tw-text-opacity: 1;
    color: rgb(254 240 138 / var(--tw-text-opacity, 1));
  }

  .md\:text-yellow-300 {
    --tw-text-opacity: 1;
    color: rgb(253 224 71 / var(--tw-text-opacity, 1));
  }

  .md\:text-yellow-400 {
    --tw-text-opacity: 1;
    color: rgb(250 204 21 / var(--tw-text-opacity, 1));
  }

  .md\:text-yellow-50 {
    --tw-text-opacity: 1;
    color: rgb(254 252 232 / var(--tw-text-opacity, 1));
  }

  .md\:text-yellow-500 {
    --tw-text-opacity: 1;
    color: rgb(234 179 8 / var(--tw-text-opacity, 1));
  }

  .md\:text-yellow-600 {
    --tw-text-opacity: 1;
    color: rgb(202 138 4 / var(--tw-text-opacity, 1));
  }

  .md\:text-yellow-700 {
    --tw-text-opacity: 1;
    color: rgb(161 98 7 / var(--tw-text-opacity, 1));
  }

  .md\:text-yellow-800 {
    --tw-text-opacity: 1;
    color: rgb(133 77 14 / var(--tw-text-opacity, 1));
  }

  .md\:text-yellow-900 {
    --tw-text-opacity: 1;
    color: rgb(113 63 18 / var(--tw-text-opacity, 1));
  }

  .md\:text-yellow-950 {
    --tw-text-opacity: 1;
    color: rgb(66 32 6 / var(--tw-text-opacity, 1));
  }

  .md\:text-zinc-100 {
    --tw-text-opacity: 1;
    color: rgb(244 244 245 / var(--tw-text-opacity, 1));
  }

  .md\:text-zinc-200 {
    --tw-text-opacity: 1;
    color: rgb(228 228 231 / var(--tw-text-opacity, 1));
  }

  .md\:text-zinc-300 {
    --tw-text-opacity: 1;
    color: rgb(212 212 216 / var(--tw-text-opacity, 1));
  }

  .md\:text-zinc-400 {
    --tw-text-opacity: 1;
    color: rgb(161 161 170 / var(--tw-text-opacity, 1));
  }

  .md\:text-zinc-50 {
    --tw-text-opacity: 1;
    color: rgb(250 250 250 / var(--tw-text-opacity, 1));
  }

  .md\:text-zinc-500 {
    --tw-text-opacity: 1;
    color: rgb(113 113 122 / var(--tw-text-opacity, 1));
  }

  .md\:text-zinc-600 {
    --tw-text-opacity: 1;
    color: rgb(82 82 91 / var(--tw-text-opacity, 1));
  }

  .md\:text-zinc-700 {
    --tw-text-opacity: 1;
    color: rgb(63 63 70 / var(--tw-text-opacity, 1));
  }

  .md\:text-zinc-800 {
    --tw-text-opacity: 1;
    color: rgb(39 39 42 / var(--tw-text-opacity, 1));
  }

  .md\:text-zinc-900 {
    --tw-text-opacity: 1;
    color: rgb(24 24 27 / var(--tw-text-opacity, 1));
  }

  .md\:text-zinc-950 {
    --tw-text-opacity: 1;
    color: rgb(9 9 11 / var(--tw-text-opacity, 1));
  }

  .md\:shadow-lg {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .md\:shadow-md {
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .md\:shadow-sm {
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .md\:shadow-amber-100 {
    --tw-shadow-color: #fef3c7;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-100\/10 {
    --tw-shadow-color: rgb(254 243 199 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-100\/20 {
    --tw-shadow-color: rgb(254 243 199 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-100\/30 {
    --tw-shadow-color: rgb(254 243 199 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-100\/40 {
    --tw-shadow-color: rgb(254 243 199 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-100\/5 {
    --tw-shadow-color: rgb(254 243 199 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-100\/50 {
    --tw-shadow-color: rgb(254 243 199 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-100\/60 {
    --tw-shadow-color: rgb(254 243 199 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-100\/70 {
    --tw-shadow-color: rgb(254 243 199 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-100\/80 {
    --tw-shadow-color: rgb(254 243 199 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-100\/90 {
    --tw-shadow-color: rgb(254 243 199 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-200 {
    --tw-shadow-color: #fde68a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-200\/10 {
    --tw-shadow-color: rgb(253 230 138 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-200\/20 {
    --tw-shadow-color: rgb(253 230 138 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-200\/30 {
    --tw-shadow-color: rgb(253 230 138 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-200\/40 {
    --tw-shadow-color: rgb(253 230 138 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-200\/5 {
    --tw-shadow-color: rgb(253 230 138 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-200\/50 {
    --tw-shadow-color: rgb(253 230 138 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-200\/60 {
    --tw-shadow-color: rgb(253 230 138 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-200\/70 {
    --tw-shadow-color: rgb(253 230 138 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-200\/80 {
    --tw-shadow-color: rgb(253 230 138 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-200\/90 {
    --tw-shadow-color: rgb(253 230 138 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-300 {
    --tw-shadow-color: #fcd34d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-300\/10 {
    --tw-shadow-color: rgb(252 211 77 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-300\/20 {
    --tw-shadow-color: rgb(252 211 77 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-300\/30 {
    --tw-shadow-color: rgb(252 211 77 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-300\/40 {
    --tw-shadow-color: rgb(252 211 77 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-300\/5 {
    --tw-shadow-color: rgb(252 211 77 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-300\/50 {
    --tw-shadow-color: rgb(252 211 77 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-300\/60 {
    --tw-shadow-color: rgb(252 211 77 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-300\/70 {
    --tw-shadow-color: rgb(252 211 77 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-300\/80 {
    --tw-shadow-color: rgb(252 211 77 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-300\/90 {
    --tw-shadow-color: rgb(252 211 77 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-400 {
    --tw-shadow-color: #fbbf24;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-400\/10 {
    --tw-shadow-color: rgb(251 191 36 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-400\/20 {
    --tw-shadow-color: rgb(251 191 36 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-400\/30 {
    --tw-shadow-color: rgb(251 191 36 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-400\/40 {
    --tw-shadow-color: rgb(251 191 36 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-400\/5 {
    --tw-shadow-color: rgb(251 191 36 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-400\/50 {
    --tw-shadow-color: rgb(251 191 36 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-400\/60 {
    --tw-shadow-color: rgb(251 191 36 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-400\/70 {
    --tw-shadow-color: rgb(251 191 36 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-400\/80 {
    --tw-shadow-color: rgb(251 191 36 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-400\/90 {
    --tw-shadow-color: rgb(251 191 36 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-50 {
    --tw-shadow-color: #fffbeb;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-50\/10 {
    --tw-shadow-color: rgb(255 251 235 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-50\/20 {
    --tw-shadow-color: rgb(255 251 235 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-50\/30 {
    --tw-shadow-color: rgb(255 251 235 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-50\/40 {
    --tw-shadow-color: rgb(255 251 235 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-50\/5 {
    --tw-shadow-color: rgb(255 251 235 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-50\/50 {
    --tw-shadow-color: rgb(255 251 235 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-50\/60 {
    --tw-shadow-color: rgb(255 251 235 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-50\/70 {
    --tw-shadow-color: rgb(255 251 235 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-50\/80 {
    --tw-shadow-color: rgb(255 251 235 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-50\/90 {
    --tw-shadow-color: rgb(255 251 235 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-500 {
    --tw-shadow-color: #f59e0b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-500\/10 {
    --tw-shadow-color: rgb(245 158 11 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-500\/20 {
    --tw-shadow-color: rgb(245 158 11 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-500\/30 {
    --tw-shadow-color: rgb(245 158 11 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-500\/40 {
    --tw-shadow-color: rgb(245 158 11 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-500\/5 {
    --tw-shadow-color: rgb(245 158 11 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-500\/50 {
    --tw-shadow-color: rgb(245 158 11 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-500\/60 {
    --tw-shadow-color: rgb(245 158 11 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-500\/70 {
    --tw-shadow-color: rgb(245 158 11 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-500\/80 {
    --tw-shadow-color: rgb(245 158 11 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-500\/90 {
    --tw-shadow-color: rgb(245 158 11 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-600 {
    --tw-shadow-color: #d97706;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-600\/10 {
    --tw-shadow-color: rgb(217 119 6 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-600\/20 {
    --tw-shadow-color: rgb(217 119 6 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-600\/30 {
    --tw-shadow-color: rgb(217 119 6 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-600\/40 {
    --tw-shadow-color: rgb(217 119 6 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-600\/5 {
    --tw-shadow-color: rgb(217 119 6 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-600\/50 {
    --tw-shadow-color: rgb(217 119 6 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-600\/60 {
    --tw-shadow-color: rgb(217 119 6 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-600\/70 {
    --tw-shadow-color: rgb(217 119 6 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-600\/80 {
    --tw-shadow-color: rgb(217 119 6 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-600\/90 {
    --tw-shadow-color: rgb(217 119 6 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-700 {
    --tw-shadow-color: #b45309;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-700\/10 {
    --tw-shadow-color: rgb(180 83 9 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-700\/20 {
    --tw-shadow-color: rgb(180 83 9 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-700\/30 {
    --tw-shadow-color: rgb(180 83 9 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-700\/40 {
    --tw-shadow-color: rgb(180 83 9 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-700\/5 {
    --tw-shadow-color: rgb(180 83 9 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-700\/50 {
    --tw-shadow-color: rgb(180 83 9 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-700\/60 {
    --tw-shadow-color: rgb(180 83 9 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-700\/70 {
    --tw-shadow-color: rgb(180 83 9 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-700\/80 {
    --tw-shadow-color: rgb(180 83 9 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-700\/90 {
    --tw-shadow-color: rgb(180 83 9 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-800 {
    --tw-shadow-color: #92400e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-800\/10 {
    --tw-shadow-color: rgb(146 64 14 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-800\/20 {
    --tw-shadow-color: rgb(146 64 14 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-800\/30 {
    --tw-shadow-color: rgb(146 64 14 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-800\/40 {
    --tw-shadow-color: rgb(146 64 14 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-800\/5 {
    --tw-shadow-color: rgb(146 64 14 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-800\/50 {
    --tw-shadow-color: rgb(146 64 14 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-800\/60 {
    --tw-shadow-color: rgb(146 64 14 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-800\/70 {
    --tw-shadow-color: rgb(146 64 14 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-800\/80 {
    --tw-shadow-color: rgb(146 64 14 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-800\/90 {
    --tw-shadow-color: rgb(146 64 14 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-900 {
    --tw-shadow-color: #78350f;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-900\/10 {
    --tw-shadow-color: rgb(120 53 15 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-900\/20 {
    --tw-shadow-color: rgb(120 53 15 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-900\/30 {
    --tw-shadow-color: rgb(120 53 15 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-900\/40 {
    --tw-shadow-color: rgb(120 53 15 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-900\/5 {
    --tw-shadow-color: rgb(120 53 15 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-900\/50 {
    --tw-shadow-color: rgb(120 53 15 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-900\/60 {
    --tw-shadow-color: rgb(120 53 15 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-900\/70 {
    --tw-shadow-color: rgb(120 53 15 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-900\/80 {
    --tw-shadow-color: rgb(120 53 15 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-900\/90 {
    --tw-shadow-color: rgb(120 53 15 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-950 {
    --tw-shadow-color: #451a03;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-950\/10 {
    --tw-shadow-color: rgb(69 26 3 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-950\/20 {
    --tw-shadow-color: rgb(69 26 3 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-950\/30 {
    --tw-shadow-color: rgb(69 26 3 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-950\/40 {
    --tw-shadow-color: rgb(69 26 3 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-950\/5 {
    --tw-shadow-color: rgb(69 26 3 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-950\/50 {
    --tw-shadow-color: rgb(69 26 3 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-950\/60 {
    --tw-shadow-color: rgb(69 26 3 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-950\/70 {
    --tw-shadow-color: rgb(69 26 3 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-950\/80 {
    --tw-shadow-color: rgb(69 26 3 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-amber-950\/90 {
    --tw-shadow-color: rgb(69 26 3 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-100 {
    --tw-shadow-color: #dbeafe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-100\/10 {
    --tw-shadow-color: rgb(219 234 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-100\/20 {
    --tw-shadow-color: rgb(219 234 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-100\/30 {
    --tw-shadow-color: rgb(219 234 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-100\/40 {
    --tw-shadow-color: rgb(219 234 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-100\/5 {
    --tw-shadow-color: rgb(219 234 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-100\/50 {
    --tw-shadow-color: rgb(219 234 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-100\/60 {
    --tw-shadow-color: rgb(219 234 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-100\/70 {
    --tw-shadow-color: rgb(219 234 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-100\/80 {
    --tw-shadow-color: rgb(219 234 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-100\/90 {
    --tw-shadow-color: rgb(219 234 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-200 {
    --tw-shadow-color: #bfdbfe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-200\/10 {
    --tw-shadow-color: rgb(191 219 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-200\/20 {
    --tw-shadow-color: rgb(191 219 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-200\/30 {
    --tw-shadow-color: rgb(191 219 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-200\/40 {
    --tw-shadow-color: rgb(191 219 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-200\/5 {
    --tw-shadow-color: rgb(191 219 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-200\/50 {
    --tw-shadow-color: rgb(191 219 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-200\/60 {
    --tw-shadow-color: rgb(191 219 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-200\/70 {
    --tw-shadow-color: rgb(191 219 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-200\/80 {
    --tw-shadow-color: rgb(191 219 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-200\/90 {
    --tw-shadow-color: rgb(191 219 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-300 {
    --tw-shadow-color: #93c5fd;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-300\/10 {
    --tw-shadow-color: rgb(147 197 253 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-300\/20 {
    --tw-shadow-color: rgb(147 197 253 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-300\/30 {
    --tw-shadow-color: rgb(147 197 253 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-300\/40 {
    --tw-shadow-color: rgb(147 197 253 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-300\/5 {
    --tw-shadow-color: rgb(147 197 253 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-300\/50 {
    --tw-shadow-color: rgb(147 197 253 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-300\/60 {
    --tw-shadow-color: rgb(147 197 253 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-300\/70 {
    --tw-shadow-color: rgb(147 197 253 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-300\/80 {
    --tw-shadow-color: rgb(147 197 253 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-300\/90 {
    --tw-shadow-color: rgb(147 197 253 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-400 {
    --tw-shadow-color: #60a5fa;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-400\/10 {
    --tw-shadow-color: rgb(96 165 250 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-400\/20 {
    --tw-shadow-color: rgb(96 165 250 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-400\/30 {
    --tw-shadow-color: rgb(96 165 250 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-400\/40 {
    --tw-shadow-color: rgb(96 165 250 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-400\/5 {
    --tw-shadow-color: rgb(96 165 250 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-400\/50 {
    --tw-shadow-color: rgb(96 165 250 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-400\/60 {
    --tw-shadow-color: rgb(96 165 250 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-400\/70 {
    --tw-shadow-color: rgb(96 165 250 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-400\/80 {
    --tw-shadow-color: rgb(96 165 250 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-400\/90 {
    --tw-shadow-color: rgb(96 165 250 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-50 {
    --tw-shadow-color: #eff6ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-50\/10 {
    --tw-shadow-color: rgb(239 246 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-50\/20 {
    --tw-shadow-color: rgb(239 246 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-50\/30 {
    --tw-shadow-color: rgb(239 246 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-50\/40 {
    --tw-shadow-color: rgb(239 246 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-50\/5 {
    --tw-shadow-color: rgb(239 246 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-50\/50 {
    --tw-shadow-color: rgb(239 246 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-50\/60 {
    --tw-shadow-color: rgb(239 246 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-50\/70 {
    --tw-shadow-color: rgb(239 246 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-50\/80 {
    --tw-shadow-color: rgb(239 246 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-50\/90 {
    --tw-shadow-color: rgb(239 246 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-500 {
    --tw-shadow-color: #3b82f6;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-500\/10 {
    --tw-shadow-color: rgb(59 130 246 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-500\/20 {
    --tw-shadow-color: rgb(59 130 246 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-500\/30 {
    --tw-shadow-color: rgb(59 130 246 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-500\/40 {
    --tw-shadow-color: rgb(59 130 246 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-500\/5 {
    --tw-shadow-color: rgb(59 130 246 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-500\/50 {
    --tw-shadow-color: rgb(59 130 246 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-500\/60 {
    --tw-shadow-color: rgb(59 130 246 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-500\/70 {
    --tw-shadow-color: rgb(59 130 246 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-500\/80 {
    --tw-shadow-color: rgb(59 130 246 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-500\/90 {
    --tw-shadow-color: rgb(59 130 246 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-600 {
    --tw-shadow-color: #2563eb;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-600\/10 {
    --tw-shadow-color: rgb(37 99 235 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-600\/20 {
    --tw-shadow-color: rgb(37 99 235 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-600\/30 {
    --tw-shadow-color: rgb(37 99 235 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-600\/40 {
    --tw-shadow-color: rgb(37 99 235 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-600\/5 {
    --tw-shadow-color: rgb(37 99 235 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-600\/50 {
    --tw-shadow-color: rgb(37 99 235 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-600\/60 {
    --tw-shadow-color: rgb(37 99 235 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-600\/70 {
    --tw-shadow-color: rgb(37 99 235 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-600\/80 {
    --tw-shadow-color: rgb(37 99 235 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-600\/90 {
    --tw-shadow-color: rgb(37 99 235 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-700 {
    --tw-shadow-color: #1d4ed8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-700\/10 {
    --tw-shadow-color: rgb(29 78 216 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-700\/20 {
    --tw-shadow-color: rgb(29 78 216 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-700\/30 {
    --tw-shadow-color: rgb(29 78 216 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-700\/40 {
    --tw-shadow-color: rgb(29 78 216 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-700\/5 {
    --tw-shadow-color: rgb(29 78 216 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-700\/50 {
    --tw-shadow-color: rgb(29 78 216 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-700\/60 {
    --tw-shadow-color: rgb(29 78 216 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-700\/70 {
    --tw-shadow-color: rgb(29 78 216 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-700\/80 {
    --tw-shadow-color: rgb(29 78 216 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-700\/90 {
    --tw-shadow-color: rgb(29 78 216 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-800 {
    --tw-shadow-color: #1e40af;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-800\/10 {
    --tw-shadow-color: rgb(30 64 175 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-800\/20 {
    --tw-shadow-color: rgb(30 64 175 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-800\/30 {
    --tw-shadow-color: rgb(30 64 175 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-800\/40 {
    --tw-shadow-color: rgb(30 64 175 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-800\/5 {
    --tw-shadow-color: rgb(30 64 175 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-800\/50 {
    --tw-shadow-color: rgb(30 64 175 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-800\/60 {
    --tw-shadow-color: rgb(30 64 175 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-800\/70 {
    --tw-shadow-color: rgb(30 64 175 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-800\/80 {
    --tw-shadow-color: rgb(30 64 175 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-800\/90 {
    --tw-shadow-color: rgb(30 64 175 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-900 {
    --tw-shadow-color: #1e3a8a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-900\/10 {
    --tw-shadow-color: rgb(30 58 138 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-900\/20 {
    --tw-shadow-color: rgb(30 58 138 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-900\/30 {
    --tw-shadow-color: rgb(30 58 138 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-900\/40 {
    --tw-shadow-color: rgb(30 58 138 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-900\/5 {
    --tw-shadow-color: rgb(30 58 138 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-900\/50 {
    --tw-shadow-color: rgb(30 58 138 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-900\/60 {
    --tw-shadow-color: rgb(30 58 138 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-900\/70 {
    --tw-shadow-color: rgb(30 58 138 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-900\/80 {
    --tw-shadow-color: rgb(30 58 138 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-900\/90 {
    --tw-shadow-color: rgb(30 58 138 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-950 {
    --tw-shadow-color: #172554;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-950\/10 {
    --tw-shadow-color: rgb(23 37 84 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-950\/20 {
    --tw-shadow-color: rgb(23 37 84 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-950\/30 {
    --tw-shadow-color: rgb(23 37 84 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-950\/40 {
    --tw-shadow-color: rgb(23 37 84 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-950\/5 {
    --tw-shadow-color: rgb(23 37 84 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-950\/50 {
    --tw-shadow-color: rgb(23 37 84 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-950\/60 {
    --tw-shadow-color: rgb(23 37 84 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-950\/70 {
    --tw-shadow-color: rgb(23 37 84 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-950\/80 {
    --tw-shadow-color: rgb(23 37 84 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-blue-950\/90 {
    --tw-shadow-color: rgb(23 37 84 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-100 {
    --tw-shadow-color: #cffafe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-100\/10 {
    --tw-shadow-color: rgb(207 250 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-100\/20 {
    --tw-shadow-color: rgb(207 250 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-100\/30 {
    --tw-shadow-color: rgb(207 250 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-100\/40 {
    --tw-shadow-color: rgb(207 250 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-100\/5 {
    --tw-shadow-color: rgb(207 250 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-100\/50 {
    --tw-shadow-color: rgb(207 250 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-100\/60 {
    --tw-shadow-color: rgb(207 250 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-100\/70 {
    --tw-shadow-color: rgb(207 250 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-100\/80 {
    --tw-shadow-color: rgb(207 250 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-100\/90 {
    --tw-shadow-color: rgb(207 250 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-200 {
    --tw-shadow-color: #a5f3fc;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-200\/10 {
    --tw-shadow-color: rgb(165 243 252 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-200\/20 {
    --tw-shadow-color: rgb(165 243 252 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-200\/30 {
    --tw-shadow-color: rgb(165 243 252 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-200\/40 {
    --tw-shadow-color: rgb(165 243 252 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-200\/5 {
    --tw-shadow-color: rgb(165 243 252 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-200\/50 {
    --tw-shadow-color: rgb(165 243 252 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-200\/60 {
    --tw-shadow-color: rgb(165 243 252 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-200\/70 {
    --tw-shadow-color: rgb(165 243 252 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-200\/80 {
    --tw-shadow-color: rgb(165 243 252 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-200\/90 {
    --tw-shadow-color: rgb(165 243 252 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-300 {
    --tw-shadow-color: #67e8f9;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-300\/10 {
    --tw-shadow-color: rgb(103 232 249 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-300\/20 {
    --tw-shadow-color: rgb(103 232 249 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-300\/30 {
    --tw-shadow-color: rgb(103 232 249 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-300\/40 {
    --tw-shadow-color: rgb(103 232 249 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-300\/5 {
    --tw-shadow-color: rgb(103 232 249 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-300\/50 {
    --tw-shadow-color: rgb(103 232 249 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-300\/60 {
    --tw-shadow-color: rgb(103 232 249 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-300\/70 {
    --tw-shadow-color: rgb(103 232 249 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-300\/80 {
    --tw-shadow-color: rgb(103 232 249 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-300\/90 {
    --tw-shadow-color: rgb(103 232 249 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-400 {
    --tw-shadow-color: #22d3ee;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-400\/10 {
    --tw-shadow-color: rgb(34 211 238 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-400\/20 {
    --tw-shadow-color: rgb(34 211 238 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-400\/30 {
    --tw-shadow-color: rgb(34 211 238 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-400\/40 {
    --tw-shadow-color: rgb(34 211 238 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-400\/5 {
    --tw-shadow-color: rgb(34 211 238 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-400\/50 {
    --tw-shadow-color: rgb(34 211 238 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-400\/60 {
    --tw-shadow-color: rgb(34 211 238 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-400\/70 {
    --tw-shadow-color: rgb(34 211 238 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-400\/80 {
    --tw-shadow-color: rgb(34 211 238 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-400\/90 {
    --tw-shadow-color: rgb(34 211 238 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-50 {
    --tw-shadow-color: #ecfeff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-50\/10 {
    --tw-shadow-color: rgb(236 254 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-50\/20 {
    --tw-shadow-color: rgb(236 254 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-50\/30 {
    --tw-shadow-color: rgb(236 254 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-50\/40 {
    --tw-shadow-color: rgb(236 254 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-50\/5 {
    --tw-shadow-color: rgb(236 254 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-50\/50 {
    --tw-shadow-color: rgb(236 254 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-50\/60 {
    --tw-shadow-color: rgb(236 254 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-50\/70 {
    --tw-shadow-color: rgb(236 254 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-50\/80 {
    --tw-shadow-color: rgb(236 254 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-50\/90 {
    --tw-shadow-color: rgb(236 254 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-500 {
    --tw-shadow-color: #06b6d4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-500\/10 {
    --tw-shadow-color: rgb(6 182 212 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-500\/20 {
    --tw-shadow-color: rgb(6 182 212 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-500\/30 {
    --tw-shadow-color: rgb(6 182 212 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-500\/40 {
    --tw-shadow-color: rgb(6 182 212 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-500\/5 {
    --tw-shadow-color: rgb(6 182 212 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-500\/50 {
    --tw-shadow-color: rgb(6 182 212 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-500\/60 {
    --tw-shadow-color: rgb(6 182 212 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-500\/70 {
    --tw-shadow-color: rgb(6 182 212 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-500\/80 {
    --tw-shadow-color: rgb(6 182 212 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-500\/90 {
    --tw-shadow-color: rgb(6 182 212 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-600 {
    --tw-shadow-color: #0891b2;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-600\/10 {
    --tw-shadow-color: rgb(8 145 178 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-600\/20 {
    --tw-shadow-color: rgb(8 145 178 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-600\/30 {
    --tw-shadow-color: rgb(8 145 178 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-600\/40 {
    --tw-shadow-color: rgb(8 145 178 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-600\/5 {
    --tw-shadow-color: rgb(8 145 178 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-600\/50 {
    --tw-shadow-color: rgb(8 145 178 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-600\/60 {
    --tw-shadow-color: rgb(8 145 178 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-600\/70 {
    --tw-shadow-color: rgb(8 145 178 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-600\/80 {
    --tw-shadow-color: rgb(8 145 178 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-600\/90 {
    --tw-shadow-color: rgb(8 145 178 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-700 {
    --tw-shadow-color: #0e7490;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-700\/10 {
    --tw-shadow-color: rgb(14 116 144 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-700\/20 {
    --tw-shadow-color: rgb(14 116 144 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-700\/30 {
    --tw-shadow-color: rgb(14 116 144 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-700\/40 {
    --tw-shadow-color: rgb(14 116 144 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-700\/5 {
    --tw-shadow-color: rgb(14 116 144 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-700\/50 {
    --tw-shadow-color: rgb(14 116 144 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-700\/60 {
    --tw-shadow-color: rgb(14 116 144 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-700\/70 {
    --tw-shadow-color: rgb(14 116 144 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-700\/80 {
    --tw-shadow-color: rgb(14 116 144 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-700\/90 {
    --tw-shadow-color: rgb(14 116 144 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-800 {
    --tw-shadow-color: #155e75;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-800\/10 {
    --tw-shadow-color: rgb(21 94 117 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-800\/20 {
    --tw-shadow-color: rgb(21 94 117 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-800\/30 {
    --tw-shadow-color: rgb(21 94 117 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-800\/40 {
    --tw-shadow-color: rgb(21 94 117 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-800\/5 {
    --tw-shadow-color: rgb(21 94 117 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-800\/50 {
    --tw-shadow-color: rgb(21 94 117 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-800\/60 {
    --tw-shadow-color: rgb(21 94 117 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-800\/70 {
    --tw-shadow-color: rgb(21 94 117 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-800\/80 {
    --tw-shadow-color: rgb(21 94 117 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-800\/90 {
    --tw-shadow-color: rgb(21 94 117 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-900 {
    --tw-shadow-color: #164e63;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-900\/10 {
    --tw-shadow-color: rgb(22 78 99 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-900\/20 {
    --tw-shadow-color: rgb(22 78 99 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-900\/30 {
    --tw-shadow-color: rgb(22 78 99 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-900\/40 {
    --tw-shadow-color: rgb(22 78 99 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-900\/5 {
    --tw-shadow-color: rgb(22 78 99 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-900\/50 {
    --tw-shadow-color: rgb(22 78 99 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-900\/60 {
    --tw-shadow-color: rgb(22 78 99 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-900\/70 {
    --tw-shadow-color: rgb(22 78 99 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-900\/80 {
    --tw-shadow-color: rgb(22 78 99 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-900\/90 {
    --tw-shadow-color: rgb(22 78 99 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-950 {
    --tw-shadow-color: #083344;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-950\/10 {
    --tw-shadow-color: rgb(8 51 68 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-950\/20 {
    --tw-shadow-color: rgb(8 51 68 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-950\/30 {
    --tw-shadow-color: rgb(8 51 68 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-950\/40 {
    --tw-shadow-color: rgb(8 51 68 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-950\/5 {
    --tw-shadow-color: rgb(8 51 68 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-950\/50 {
    --tw-shadow-color: rgb(8 51 68 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-950\/60 {
    --tw-shadow-color: rgb(8 51 68 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-950\/70 {
    --tw-shadow-color: rgb(8 51 68 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-950\/80 {
    --tw-shadow-color: rgb(8 51 68 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-cyan-950\/90 {
    --tw-shadow-color: rgb(8 51 68 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-100 {
    --tw-shadow-color: #d1fae5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-100\/10 {
    --tw-shadow-color: rgb(209 250 229 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-100\/20 {
    --tw-shadow-color: rgb(209 250 229 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-100\/30 {
    --tw-shadow-color: rgb(209 250 229 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-100\/40 {
    --tw-shadow-color: rgb(209 250 229 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-100\/5 {
    --tw-shadow-color: rgb(209 250 229 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-100\/50 {
    --tw-shadow-color: rgb(209 250 229 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-100\/60 {
    --tw-shadow-color: rgb(209 250 229 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-100\/70 {
    --tw-shadow-color: rgb(209 250 229 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-100\/80 {
    --tw-shadow-color: rgb(209 250 229 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-100\/90 {
    --tw-shadow-color: rgb(209 250 229 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-200 {
    --tw-shadow-color: #a7f3d0;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-200\/10 {
    --tw-shadow-color: rgb(167 243 208 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-200\/20 {
    --tw-shadow-color: rgb(167 243 208 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-200\/30 {
    --tw-shadow-color: rgb(167 243 208 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-200\/40 {
    --tw-shadow-color: rgb(167 243 208 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-200\/5 {
    --tw-shadow-color: rgb(167 243 208 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-200\/50 {
    --tw-shadow-color: rgb(167 243 208 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-200\/60 {
    --tw-shadow-color: rgb(167 243 208 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-200\/70 {
    --tw-shadow-color: rgb(167 243 208 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-200\/80 {
    --tw-shadow-color: rgb(167 243 208 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-200\/90 {
    --tw-shadow-color: rgb(167 243 208 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-300 {
    --tw-shadow-color: #6ee7b7;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-300\/10 {
    --tw-shadow-color: rgb(110 231 183 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-300\/20 {
    --tw-shadow-color: rgb(110 231 183 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-300\/30 {
    --tw-shadow-color: rgb(110 231 183 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-300\/40 {
    --tw-shadow-color: rgb(110 231 183 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-300\/5 {
    --tw-shadow-color: rgb(110 231 183 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-300\/50 {
    --tw-shadow-color: rgb(110 231 183 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-300\/60 {
    --tw-shadow-color: rgb(110 231 183 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-300\/70 {
    --tw-shadow-color: rgb(110 231 183 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-300\/80 {
    --tw-shadow-color: rgb(110 231 183 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-300\/90 {
    --tw-shadow-color: rgb(110 231 183 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-400 {
    --tw-shadow-color: #34d399;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-400\/10 {
    --tw-shadow-color: rgb(52 211 153 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-400\/20 {
    --tw-shadow-color: rgb(52 211 153 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-400\/30 {
    --tw-shadow-color: rgb(52 211 153 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-400\/40 {
    --tw-shadow-color: rgb(52 211 153 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-400\/5 {
    --tw-shadow-color: rgb(52 211 153 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-400\/50 {
    --tw-shadow-color: rgb(52 211 153 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-400\/60 {
    --tw-shadow-color: rgb(52 211 153 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-400\/70 {
    --tw-shadow-color: rgb(52 211 153 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-400\/80 {
    --tw-shadow-color: rgb(52 211 153 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-400\/90 {
    --tw-shadow-color: rgb(52 211 153 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-50 {
    --tw-shadow-color: #ecfdf5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-50\/10 {
    --tw-shadow-color: rgb(236 253 245 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-50\/20 {
    --tw-shadow-color: rgb(236 253 245 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-50\/30 {
    --tw-shadow-color: rgb(236 253 245 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-50\/40 {
    --tw-shadow-color: rgb(236 253 245 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-50\/5 {
    --tw-shadow-color: rgb(236 253 245 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-50\/50 {
    --tw-shadow-color: rgb(236 253 245 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-50\/60 {
    --tw-shadow-color: rgb(236 253 245 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-50\/70 {
    --tw-shadow-color: rgb(236 253 245 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-50\/80 {
    --tw-shadow-color: rgb(236 253 245 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-50\/90 {
    --tw-shadow-color: rgb(236 253 245 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-500 {
    --tw-shadow-color: #10b981;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-500\/10 {
    --tw-shadow-color: rgb(16 185 129 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-500\/20 {
    --tw-shadow-color: rgb(16 185 129 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-500\/30 {
    --tw-shadow-color: rgb(16 185 129 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-500\/40 {
    --tw-shadow-color: rgb(16 185 129 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-500\/5 {
    --tw-shadow-color: rgb(16 185 129 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-500\/50 {
    --tw-shadow-color: rgb(16 185 129 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-500\/60 {
    --tw-shadow-color: rgb(16 185 129 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-500\/70 {
    --tw-shadow-color: rgb(16 185 129 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-500\/80 {
    --tw-shadow-color: rgb(16 185 129 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-500\/90 {
    --tw-shadow-color: rgb(16 185 129 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-600 {
    --tw-shadow-color: #059669;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-600\/10 {
    --tw-shadow-color: rgb(5 150 105 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-600\/20 {
    --tw-shadow-color: rgb(5 150 105 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-600\/30 {
    --tw-shadow-color: rgb(5 150 105 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-600\/40 {
    --tw-shadow-color: rgb(5 150 105 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-600\/5 {
    --tw-shadow-color: rgb(5 150 105 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-600\/50 {
    --tw-shadow-color: rgb(5 150 105 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-600\/60 {
    --tw-shadow-color: rgb(5 150 105 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-600\/70 {
    --tw-shadow-color: rgb(5 150 105 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-600\/80 {
    --tw-shadow-color: rgb(5 150 105 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-600\/90 {
    --tw-shadow-color: rgb(5 150 105 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-700 {
    --tw-shadow-color: #047857;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-700\/10 {
    --tw-shadow-color: rgb(4 120 87 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-700\/20 {
    --tw-shadow-color: rgb(4 120 87 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-700\/30 {
    --tw-shadow-color: rgb(4 120 87 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-700\/40 {
    --tw-shadow-color: rgb(4 120 87 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-700\/5 {
    --tw-shadow-color: rgb(4 120 87 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-700\/50 {
    --tw-shadow-color: rgb(4 120 87 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-700\/60 {
    --tw-shadow-color: rgb(4 120 87 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-700\/70 {
    --tw-shadow-color: rgb(4 120 87 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-700\/80 {
    --tw-shadow-color: rgb(4 120 87 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-700\/90 {
    --tw-shadow-color: rgb(4 120 87 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-800 {
    --tw-shadow-color: #065f46;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-800\/10 {
    --tw-shadow-color: rgb(6 95 70 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-800\/20 {
    --tw-shadow-color: rgb(6 95 70 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-800\/30 {
    --tw-shadow-color: rgb(6 95 70 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-800\/40 {
    --tw-shadow-color: rgb(6 95 70 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-800\/5 {
    --tw-shadow-color: rgb(6 95 70 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-800\/50 {
    --tw-shadow-color: rgb(6 95 70 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-800\/60 {
    --tw-shadow-color: rgb(6 95 70 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-800\/70 {
    --tw-shadow-color: rgb(6 95 70 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-800\/80 {
    --tw-shadow-color: rgb(6 95 70 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-800\/90 {
    --tw-shadow-color: rgb(6 95 70 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-900 {
    --tw-shadow-color: #064e3b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-900\/10 {
    --tw-shadow-color: rgb(6 78 59 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-900\/20 {
    --tw-shadow-color: rgb(6 78 59 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-900\/30 {
    --tw-shadow-color: rgb(6 78 59 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-900\/40 {
    --tw-shadow-color: rgb(6 78 59 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-900\/5 {
    --tw-shadow-color: rgb(6 78 59 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-900\/50 {
    --tw-shadow-color: rgb(6 78 59 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-900\/60 {
    --tw-shadow-color: rgb(6 78 59 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-900\/70 {
    --tw-shadow-color: rgb(6 78 59 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-900\/80 {
    --tw-shadow-color: rgb(6 78 59 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-900\/90 {
    --tw-shadow-color: rgb(6 78 59 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-950 {
    --tw-shadow-color: #022c22;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-950\/10 {
    --tw-shadow-color: rgb(2 44 34 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-950\/20 {
    --tw-shadow-color: rgb(2 44 34 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-950\/30 {
    --tw-shadow-color: rgb(2 44 34 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-950\/40 {
    --tw-shadow-color: rgb(2 44 34 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-950\/5 {
    --tw-shadow-color: rgb(2 44 34 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-950\/50 {
    --tw-shadow-color: rgb(2 44 34 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-950\/60 {
    --tw-shadow-color: rgb(2 44 34 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-950\/70 {
    --tw-shadow-color: rgb(2 44 34 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-950\/80 {
    --tw-shadow-color: rgb(2 44 34 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-emerald-950\/90 {
    --tw-shadow-color: rgb(2 44 34 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-100 {
    --tw-shadow-color: #fae8ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-100\/10 {
    --tw-shadow-color: rgb(250 232 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-100\/20 {
    --tw-shadow-color: rgb(250 232 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-100\/30 {
    --tw-shadow-color: rgb(250 232 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-100\/40 {
    --tw-shadow-color: rgb(250 232 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-100\/5 {
    --tw-shadow-color: rgb(250 232 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-100\/50 {
    --tw-shadow-color: rgb(250 232 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-100\/60 {
    --tw-shadow-color: rgb(250 232 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-100\/70 {
    --tw-shadow-color: rgb(250 232 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-100\/80 {
    --tw-shadow-color: rgb(250 232 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-100\/90 {
    --tw-shadow-color: rgb(250 232 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-200 {
    --tw-shadow-color: #f5d0fe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-200\/10 {
    --tw-shadow-color: rgb(245 208 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-200\/20 {
    --tw-shadow-color: rgb(245 208 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-200\/30 {
    --tw-shadow-color: rgb(245 208 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-200\/40 {
    --tw-shadow-color: rgb(245 208 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-200\/5 {
    --tw-shadow-color: rgb(245 208 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-200\/50 {
    --tw-shadow-color: rgb(245 208 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-200\/60 {
    --tw-shadow-color: rgb(245 208 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-200\/70 {
    --tw-shadow-color: rgb(245 208 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-200\/80 {
    --tw-shadow-color: rgb(245 208 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-200\/90 {
    --tw-shadow-color: rgb(245 208 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-300 {
    --tw-shadow-color: #f0abfc;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-300\/10 {
    --tw-shadow-color: rgb(240 171 252 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-300\/20 {
    --tw-shadow-color: rgb(240 171 252 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-300\/30 {
    --tw-shadow-color: rgb(240 171 252 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-300\/40 {
    --tw-shadow-color: rgb(240 171 252 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-300\/5 {
    --tw-shadow-color: rgb(240 171 252 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-300\/50 {
    --tw-shadow-color: rgb(240 171 252 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-300\/60 {
    --tw-shadow-color: rgb(240 171 252 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-300\/70 {
    --tw-shadow-color: rgb(240 171 252 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-300\/80 {
    --tw-shadow-color: rgb(240 171 252 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-300\/90 {
    --tw-shadow-color: rgb(240 171 252 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-400 {
    --tw-shadow-color: #e879f9;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-400\/10 {
    --tw-shadow-color: rgb(232 121 249 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-400\/20 {
    --tw-shadow-color: rgb(232 121 249 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-400\/30 {
    --tw-shadow-color: rgb(232 121 249 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-400\/40 {
    --tw-shadow-color: rgb(232 121 249 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-400\/5 {
    --tw-shadow-color: rgb(232 121 249 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-400\/50 {
    --tw-shadow-color: rgb(232 121 249 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-400\/60 {
    --tw-shadow-color: rgb(232 121 249 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-400\/70 {
    --tw-shadow-color: rgb(232 121 249 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-400\/80 {
    --tw-shadow-color: rgb(232 121 249 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-400\/90 {
    --tw-shadow-color: rgb(232 121 249 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-50 {
    --tw-shadow-color: #fdf4ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-50\/10 {
    --tw-shadow-color: rgb(253 244 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-50\/20 {
    --tw-shadow-color: rgb(253 244 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-50\/30 {
    --tw-shadow-color: rgb(253 244 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-50\/40 {
    --tw-shadow-color: rgb(253 244 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-50\/5 {
    --tw-shadow-color: rgb(253 244 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-50\/50 {
    --tw-shadow-color: rgb(253 244 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-50\/60 {
    --tw-shadow-color: rgb(253 244 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-50\/70 {
    --tw-shadow-color: rgb(253 244 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-50\/80 {
    --tw-shadow-color: rgb(253 244 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-50\/90 {
    --tw-shadow-color: rgb(253 244 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-500 {
    --tw-shadow-color: #d946ef;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-500\/10 {
    --tw-shadow-color: rgb(217 70 239 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-500\/20 {
    --tw-shadow-color: rgb(217 70 239 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-500\/30 {
    --tw-shadow-color: rgb(217 70 239 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-500\/40 {
    --tw-shadow-color: rgb(217 70 239 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-500\/5 {
    --tw-shadow-color: rgb(217 70 239 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-500\/50 {
    --tw-shadow-color: rgb(217 70 239 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-500\/60 {
    --tw-shadow-color: rgb(217 70 239 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-500\/70 {
    --tw-shadow-color: rgb(217 70 239 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-500\/80 {
    --tw-shadow-color: rgb(217 70 239 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-500\/90 {
    --tw-shadow-color: rgb(217 70 239 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-600 {
    --tw-shadow-color: #c026d3;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-600\/10 {
    --tw-shadow-color: rgb(192 38 211 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-600\/20 {
    --tw-shadow-color: rgb(192 38 211 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-600\/30 {
    --tw-shadow-color: rgb(192 38 211 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-600\/40 {
    --tw-shadow-color: rgb(192 38 211 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-600\/5 {
    --tw-shadow-color: rgb(192 38 211 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-600\/50 {
    --tw-shadow-color: rgb(192 38 211 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-600\/60 {
    --tw-shadow-color: rgb(192 38 211 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-600\/70 {
    --tw-shadow-color: rgb(192 38 211 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-600\/80 {
    --tw-shadow-color: rgb(192 38 211 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-600\/90 {
    --tw-shadow-color: rgb(192 38 211 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-700 {
    --tw-shadow-color: #a21caf;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-700\/10 {
    --tw-shadow-color: rgb(162 28 175 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-700\/20 {
    --tw-shadow-color: rgb(162 28 175 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-700\/30 {
    --tw-shadow-color: rgb(162 28 175 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-700\/40 {
    --tw-shadow-color: rgb(162 28 175 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-700\/5 {
    --tw-shadow-color: rgb(162 28 175 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-700\/50 {
    --tw-shadow-color: rgb(162 28 175 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-700\/60 {
    --tw-shadow-color: rgb(162 28 175 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-700\/70 {
    --tw-shadow-color: rgb(162 28 175 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-700\/80 {
    --tw-shadow-color: rgb(162 28 175 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-700\/90 {
    --tw-shadow-color: rgb(162 28 175 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-800 {
    --tw-shadow-color: #86198f;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-800\/10 {
    --tw-shadow-color: rgb(134 25 143 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-800\/20 {
    --tw-shadow-color: rgb(134 25 143 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-800\/30 {
    --tw-shadow-color: rgb(134 25 143 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-800\/40 {
    --tw-shadow-color: rgb(134 25 143 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-800\/5 {
    --tw-shadow-color: rgb(134 25 143 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-800\/50 {
    --tw-shadow-color: rgb(134 25 143 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-800\/60 {
    --tw-shadow-color: rgb(134 25 143 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-800\/70 {
    --tw-shadow-color: rgb(134 25 143 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-800\/80 {
    --tw-shadow-color: rgb(134 25 143 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-800\/90 {
    --tw-shadow-color: rgb(134 25 143 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-900 {
    --tw-shadow-color: #701a75;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-900\/10 {
    --tw-shadow-color: rgb(112 26 117 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-900\/20 {
    --tw-shadow-color: rgb(112 26 117 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-900\/30 {
    --tw-shadow-color: rgb(112 26 117 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-900\/40 {
    --tw-shadow-color: rgb(112 26 117 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-900\/5 {
    --tw-shadow-color: rgb(112 26 117 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-900\/50 {
    --tw-shadow-color: rgb(112 26 117 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-900\/60 {
    --tw-shadow-color: rgb(112 26 117 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-900\/70 {
    --tw-shadow-color: rgb(112 26 117 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-900\/80 {
    --tw-shadow-color: rgb(112 26 117 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-900\/90 {
    --tw-shadow-color: rgb(112 26 117 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-950 {
    --tw-shadow-color: #4a044e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-950\/10 {
    --tw-shadow-color: rgb(74 4 78 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-950\/20 {
    --tw-shadow-color: rgb(74 4 78 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-950\/30 {
    --tw-shadow-color: rgb(74 4 78 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-950\/40 {
    --tw-shadow-color: rgb(74 4 78 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-950\/5 {
    --tw-shadow-color: rgb(74 4 78 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-950\/50 {
    --tw-shadow-color: rgb(74 4 78 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-950\/60 {
    --tw-shadow-color: rgb(74 4 78 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-950\/70 {
    --tw-shadow-color: rgb(74 4 78 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-950\/80 {
    --tw-shadow-color: rgb(74 4 78 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-fuchsia-950\/90 {
    --tw-shadow-color: rgb(74 4 78 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-100 {
    --tw-shadow-color: #f3f4f6;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-100\/10 {
    --tw-shadow-color: rgb(243 244 246 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-100\/20 {
    --tw-shadow-color: rgb(243 244 246 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-100\/30 {
    --tw-shadow-color: rgb(243 244 246 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-100\/40 {
    --tw-shadow-color: rgb(243 244 246 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-100\/5 {
    --tw-shadow-color: rgb(243 244 246 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-100\/50 {
    --tw-shadow-color: rgb(243 244 246 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-100\/60 {
    --tw-shadow-color: rgb(243 244 246 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-100\/70 {
    --tw-shadow-color: rgb(243 244 246 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-100\/80 {
    --tw-shadow-color: rgb(243 244 246 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-100\/90 {
    --tw-shadow-color: rgb(243 244 246 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-200 {
    --tw-shadow-color: #e5e7eb;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-200\/10 {
    --tw-shadow-color: rgb(229 231 235 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-200\/20 {
    --tw-shadow-color: rgb(229 231 235 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-200\/30 {
    --tw-shadow-color: rgb(229 231 235 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-200\/40 {
    --tw-shadow-color: rgb(229 231 235 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-200\/5 {
    --tw-shadow-color: rgb(229 231 235 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-200\/50 {
    --tw-shadow-color: rgb(229 231 235 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-200\/60 {
    --tw-shadow-color: rgb(229 231 235 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-200\/70 {
    --tw-shadow-color: rgb(229 231 235 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-200\/80 {
    --tw-shadow-color: rgb(229 231 235 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-200\/90 {
    --tw-shadow-color: rgb(229 231 235 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-300 {
    --tw-shadow-color: #d1d5db;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-300\/10 {
    --tw-shadow-color: rgb(209 213 219 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-300\/20 {
    --tw-shadow-color: rgb(209 213 219 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-300\/30 {
    --tw-shadow-color: rgb(209 213 219 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-300\/40 {
    --tw-shadow-color: rgb(209 213 219 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-300\/5 {
    --tw-shadow-color: rgb(209 213 219 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-300\/50 {
    --tw-shadow-color: rgb(209 213 219 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-300\/60 {
    --tw-shadow-color: rgb(209 213 219 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-300\/70 {
    --tw-shadow-color: rgb(209 213 219 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-300\/80 {
    --tw-shadow-color: rgb(209 213 219 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-300\/90 {
    --tw-shadow-color: rgb(209 213 219 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-400 {
    --tw-shadow-color: #9ca3af;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-400\/10 {
    --tw-shadow-color: rgb(156 163 175 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-400\/20 {
    --tw-shadow-color: rgb(156 163 175 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-400\/30 {
    --tw-shadow-color: rgb(156 163 175 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-400\/40 {
    --tw-shadow-color: rgb(156 163 175 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-400\/5 {
    --tw-shadow-color: rgb(156 163 175 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-400\/50 {
    --tw-shadow-color: rgb(156 163 175 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-400\/60 {
    --tw-shadow-color: rgb(156 163 175 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-400\/70 {
    --tw-shadow-color: rgb(156 163 175 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-400\/80 {
    --tw-shadow-color: rgb(156 163 175 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-400\/90 {
    --tw-shadow-color: rgb(156 163 175 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-50 {
    --tw-shadow-color: #f9fafb;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-50\/10 {
    --tw-shadow-color: rgb(249 250 251 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-50\/20 {
    --tw-shadow-color: rgb(249 250 251 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-50\/30 {
    --tw-shadow-color: rgb(249 250 251 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-50\/40 {
    --tw-shadow-color: rgb(249 250 251 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-50\/5 {
    --tw-shadow-color: rgb(249 250 251 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-50\/50 {
    --tw-shadow-color: rgb(249 250 251 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-50\/60 {
    --tw-shadow-color: rgb(249 250 251 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-50\/70 {
    --tw-shadow-color: rgb(249 250 251 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-50\/80 {
    --tw-shadow-color: rgb(249 250 251 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-50\/90 {
    --tw-shadow-color: rgb(249 250 251 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-500 {
    --tw-shadow-color: #6b7280;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-500\/10 {
    --tw-shadow-color: rgb(107 114 128 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-500\/20 {
    --tw-shadow-color: rgb(107 114 128 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-500\/30 {
    --tw-shadow-color: rgb(107 114 128 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-500\/40 {
    --tw-shadow-color: rgb(107 114 128 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-500\/5 {
    --tw-shadow-color: rgb(107 114 128 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-500\/50 {
    --tw-shadow-color: rgb(107 114 128 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-500\/60 {
    --tw-shadow-color: rgb(107 114 128 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-500\/70 {
    --tw-shadow-color: rgb(107 114 128 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-500\/80 {
    --tw-shadow-color: rgb(107 114 128 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-500\/90 {
    --tw-shadow-color: rgb(107 114 128 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-600 {
    --tw-shadow-color: #4b5563;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-600\/10 {
    --tw-shadow-color: rgb(75 85 99 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-600\/20 {
    --tw-shadow-color: rgb(75 85 99 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-600\/30 {
    --tw-shadow-color: rgb(75 85 99 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-600\/40 {
    --tw-shadow-color: rgb(75 85 99 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-600\/5 {
    --tw-shadow-color: rgb(75 85 99 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-600\/50 {
    --tw-shadow-color: rgb(75 85 99 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-600\/60 {
    --tw-shadow-color: rgb(75 85 99 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-600\/70 {
    --tw-shadow-color: rgb(75 85 99 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-600\/80 {
    --tw-shadow-color: rgb(75 85 99 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-600\/90 {
    --tw-shadow-color: rgb(75 85 99 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-700 {
    --tw-shadow-color: #374151;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-700\/10 {
    --tw-shadow-color: rgb(55 65 81 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-700\/20 {
    --tw-shadow-color: rgb(55 65 81 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-700\/30 {
    --tw-shadow-color: rgb(55 65 81 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-700\/40 {
    --tw-shadow-color: rgb(55 65 81 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-700\/5 {
    --tw-shadow-color: rgb(55 65 81 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-700\/50 {
    --tw-shadow-color: rgb(55 65 81 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-700\/60 {
    --tw-shadow-color: rgb(55 65 81 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-700\/70 {
    --tw-shadow-color: rgb(55 65 81 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-700\/80 {
    --tw-shadow-color: rgb(55 65 81 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-700\/90 {
    --tw-shadow-color: rgb(55 65 81 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-800 {
    --tw-shadow-color: #1f2937;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-800\/10 {
    --tw-shadow-color: rgb(31 41 55 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-800\/20 {
    --tw-shadow-color: rgb(31 41 55 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-800\/30 {
    --tw-shadow-color: rgb(31 41 55 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-800\/40 {
    --tw-shadow-color: rgb(31 41 55 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-800\/5 {
    --tw-shadow-color: rgb(31 41 55 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-800\/50 {
    --tw-shadow-color: rgb(31 41 55 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-800\/60 {
    --tw-shadow-color: rgb(31 41 55 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-800\/70 {
    --tw-shadow-color: rgb(31 41 55 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-800\/80 {
    --tw-shadow-color: rgb(31 41 55 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-800\/90 {
    --tw-shadow-color: rgb(31 41 55 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-900 {
    --tw-shadow-color: #111827;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-900\/10 {
    --tw-shadow-color: rgb(17 24 39 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-900\/20 {
    --tw-shadow-color: rgb(17 24 39 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-900\/30 {
    --tw-shadow-color: rgb(17 24 39 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-900\/40 {
    --tw-shadow-color: rgb(17 24 39 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-900\/5 {
    --tw-shadow-color: rgb(17 24 39 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-900\/50 {
    --tw-shadow-color: rgb(17 24 39 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-900\/60 {
    --tw-shadow-color: rgb(17 24 39 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-900\/70 {
    --tw-shadow-color: rgb(17 24 39 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-900\/80 {
    --tw-shadow-color: rgb(17 24 39 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-900\/90 {
    --tw-shadow-color: rgb(17 24 39 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-950 {
    --tw-shadow-color: #030712;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-950\/10 {
    --tw-shadow-color: rgb(3 7 18 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-950\/20 {
    --tw-shadow-color: rgb(3 7 18 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-950\/30 {
    --tw-shadow-color: rgb(3 7 18 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-950\/40 {
    --tw-shadow-color: rgb(3 7 18 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-950\/5 {
    --tw-shadow-color: rgb(3 7 18 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-950\/50 {
    --tw-shadow-color: rgb(3 7 18 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-950\/60 {
    --tw-shadow-color: rgb(3 7 18 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-950\/70 {
    --tw-shadow-color: rgb(3 7 18 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-950\/80 {
    --tw-shadow-color: rgb(3 7 18 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-gray-950\/90 {
    --tw-shadow-color: rgb(3 7 18 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-100 {
    --tw-shadow-color: #dcfce7;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-100\/10 {
    --tw-shadow-color: rgb(220 252 231 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-100\/20 {
    --tw-shadow-color: rgb(220 252 231 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-100\/30 {
    --tw-shadow-color: rgb(220 252 231 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-100\/40 {
    --tw-shadow-color: rgb(220 252 231 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-100\/5 {
    --tw-shadow-color: rgb(220 252 231 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-100\/50 {
    --tw-shadow-color: rgb(220 252 231 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-100\/60 {
    --tw-shadow-color: rgb(220 252 231 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-100\/70 {
    --tw-shadow-color: rgb(220 252 231 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-100\/80 {
    --tw-shadow-color: rgb(220 252 231 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-100\/90 {
    --tw-shadow-color: rgb(220 252 231 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-200 {
    --tw-shadow-color: #bbf7d0;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-200\/10 {
    --tw-shadow-color: rgb(187 247 208 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-200\/20 {
    --tw-shadow-color: rgb(187 247 208 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-200\/30 {
    --tw-shadow-color: rgb(187 247 208 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-200\/40 {
    --tw-shadow-color: rgb(187 247 208 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-200\/5 {
    --tw-shadow-color: rgb(187 247 208 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-200\/50 {
    --tw-shadow-color: rgb(187 247 208 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-200\/60 {
    --tw-shadow-color: rgb(187 247 208 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-200\/70 {
    --tw-shadow-color: rgb(187 247 208 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-200\/80 {
    --tw-shadow-color: rgb(187 247 208 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-200\/90 {
    --tw-shadow-color: rgb(187 247 208 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-300 {
    --tw-shadow-color: #86efac;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-300\/10 {
    --tw-shadow-color: rgb(134 239 172 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-300\/20 {
    --tw-shadow-color: rgb(134 239 172 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-300\/30 {
    --tw-shadow-color: rgb(134 239 172 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-300\/40 {
    --tw-shadow-color: rgb(134 239 172 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-300\/5 {
    --tw-shadow-color: rgb(134 239 172 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-300\/50 {
    --tw-shadow-color: rgb(134 239 172 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-300\/60 {
    --tw-shadow-color: rgb(134 239 172 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-300\/70 {
    --tw-shadow-color: rgb(134 239 172 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-300\/80 {
    --tw-shadow-color: rgb(134 239 172 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-300\/90 {
    --tw-shadow-color: rgb(134 239 172 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-400 {
    --tw-shadow-color: #4ade80;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-400\/10 {
    --tw-shadow-color: rgb(74 222 128 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-400\/20 {
    --tw-shadow-color: rgb(74 222 128 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-400\/30 {
    --tw-shadow-color: rgb(74 222 128 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-400\/40 {
    --tw-shadow-color: rgb(74 222 128 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-400\/5 {
    --tw-shadow-color: rgb(74 222 128 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-400\/50 {
    --tw-shadow-color: rgb(74 222 128 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-400\/60 {
    --tw-shadow-color: rgb(74 222 128 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-400\/70 {
    --tw-shadow-color: rgb(74 222 128 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-400\/80 {
    --tw-shadow-color: rgb(74 222 128 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-400\/90 {
    --tw-shadow-color: rgb(74 222 128 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-50 {
    --tw-shadow-color: #f0fdf4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-50\/10 {
    --tw-shadow-color: rgb(240 253 244 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-50\/20 {
    --tw-shadow-color: rgb(240 253 244 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-50\/30 {
    --tw-shadow-color: rgb(240 253 244 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-50\/40 {
    --tw-shadow-color: rgb(240 253 244 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-50\/5 {
    --tw-shadow-color: rgb(240 253 244 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-50\/50 {
    --tw-shadow-color: rgb(240 253 244 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-50\/60 {
    --tw-shadow-color: rgb(240 253 244 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-50\/70 {
    --tw-shadow-color: rgb(240 253 244 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-50\/80 {
    --tw-shadow-color: rgb(240 253 244 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-50\/90 {
    --tw-shadow-color: rgb(240 253 244 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-500 {
    --tw-shadow-color: #22c55e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-500\/10 {
    --tw-shadow-color: rgb(34 197 94 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-500\/20 {
    --tw-shadow-color: rgb(34 197 94 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-500\/30 {
    --tw-shadow-color: rgb(34 197 94 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-500\/40 {
    --tw-shadow-color: rgb(34 197 94 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-500\/5 {
    --tw-shadow-color: rgb(34 197 94 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-500\/50 {
    --tw-shadow-color: rgb(34 197 94 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-500\/60 {
    --tw-shadow-color: rgb(34 197 94 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-500\/70 {
    --tw-shadow-color: rgb(34 197 94 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-500\/80 {
    --tw-shadow-color: rgb(34 197 94 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-500\/90 {
    --tw-shadow-color: rgb(34 197 94 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-600 {
    --tw-shadow-color: #16a34a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-600\/10 {
    --tw-shadow-color: rgb(22 163 74 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-600\/20 {
    --tw-shadow-color: rgb(22 163 74 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-600\/30 {
    --tw-shadow-color: rgb(22 163 74 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-600\/40 {
    --tw-shadow-color: rgb(22 163 74 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-600\/5 {
    --tw-shadow-color: rgb(22 163 74 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-600\/50 {
    --tw-shadow-color: rgb(22 163 74 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-600\/60 {
    --tw-shadow-color: rgb(22 163 74 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-600\/70 {
    --tw-shadow-color: rgb(22 163 74 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-600\/80 {
    --tw-shadow-color: rgb(22 163 74 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-600\/90 {
    --tw-shadow-color: rgb(22 163 74 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-700 {
    --tw-shadow-color: #15803d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-700\/10 {
    --tw-shadow-color: rgb(21 128 61 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-700\/20 {
    --tw-shadow-color: rgb(21 128 61 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-700\/30 {
    --tw-shadow-color: rgb(21 128 61 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-700\/40 {
    --tw-shadow-color: rgb(21 128 61 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-700\/5 {
    --tw-shadow-color: rgb(21 128 61 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-700\/50 {
    --tw-shadow-color: rgb(21 128 61 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-700\/60 {
    --tw-shadow-color: rgb(21 128 61 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-700\/70 {
    --tw-shadow-color: rgb(21 128 61 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-700\/80 {
    --tw-shadow-color: rgb(21 128 61 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-700\/90 {
    --tw-shadow-color: rgb(21 128 61 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-800 {
    --tw-shadow-color: #166534;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-800\/10 {
    --tw-shadow-color: rgb(22 101 52 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-800\/20 {
    --tw-shadow-color: rgb(22 101 52 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-800\/30 {
    --tw-shadow-color: rgb(22 101 52 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-800\/40 {
    --tw-shadow-color: rgb(22 101 52 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-800\/5 {
    --tw-shadow-color: rgb(22 101 52 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-800\/50 {
    --tw-shadow-color: rgb(22 101 52 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-800\/60 {
    --tw-shadow-color: rgb(22 101 52 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-800\/70 {
    --tw-shadow-color: rgb(22 101 52 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-800\/80 {
    --tw-shadow-color: rgb(22 101 52 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-800\/90 {
    --tw-shadow-color: rgb(22 101 52 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-900 {
    --tw-shadow-color: #14532d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-900\/10 {
    --tw-shadow-color: rgb(20 83 45 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-900\/20 {
    --tw-shadow-color: rgb(20 83 45 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-900\/30 {
    --tw-shadow-color: rgb(20 83 45 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-900\/40 {
    --tw-shadow-color: rgb(20 83 45 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-900\/5 {
    --tw-shadow-color: rgb(20 83 45 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-900\/50 {
    --tw-shadow-color: rgb(20 83 45 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-900\/60 {
    --tw-shadow-color: rgb(20 83 45 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-900\/70 {
    --tw-shadow-color: rgb(20 83 45 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-900\/80 {
    --tw-shadow-color: rgb(20 83 45 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-900\/90 {
    --tw-shadow-color: rgb(20 83 45 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-950 {
    --tw-shadow-color: #052e16;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-950\/10 {
    --tw-shadow-color: rgb(5 46 22 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-950\/20 {
    --tw-shadow-color: rgb(5 46 22 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-950\/30 {
    --tw-shadow-color: rgb(5 46 22 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-950\/40 {
    --tw-shadow-color: rgb(5 46 22 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-950\/5 {
    --tw-shadow-color: rgb(5 46 22 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-950\/50 {
    --tw-shadow-color: rgb(5 46 22 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-950\/60 {
    --tw-shadow-color: rgb(5 46 22 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-950\/70 {
    --tw-shadow-color: rgb(5 46 22 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-950\/80 {
    --tw-shadow-color: rgb(5 46 22 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-green-950\/90 {
    --tw-shadow-color: rgb(5 46 22 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-100 {
    --tw-shadow-color: #e0e7ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-100\/10 {
    --tw-shadow-color: rgb(224 231 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-100\/20 {
    --tw-shadow-color: rgb(224 231 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-100\/30 {
    --tw-shadow-color: rgb(224 231 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-100\/40 {
    --tw-shadow-color: rgb(224 231 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-100\/5 {
    --tw-shadow-color: rgb(224 231 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-100\/50 {
    --tw-shadow-color: rgb(224 231 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-100\/60 {
    --tw-shadow-color: rgb(224 231 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-100\/70 {
    --tw-shadow-color: rgb(224 231 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-100\/80 {
    --tw-shadow-color: rgb(224 231 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-100\/90 {
    --tw-shadow-color: rgb(224 231 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-200 {
    --tw-shadow-color: #c7d2fe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-200\/10 {
    --tw-shadow-color: rgb(199 210 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-200\/20 {
    --tw-shadow-color: rgb(199 210 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-200\/30 {
    --tw-shadow-color: rgb(199 210 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-200\/40 {
    --tw-shadow-color: rgb(199 210 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-200\/5 {
    --tw-shadow-color: rgb(199 210 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-200\/50 {
    --tw-shadow-color: rgb(199 210 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-200\/60 {
    --tw-shadow-color: rgb(199 210 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-200\/70 {
    --tw-shadow-color: rgb(199 210 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-200\/80 {
    --tw-shadow-color: rgb(199 210 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-200\/90 {
    --tw-shadow-color: rgb(199 210 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-300 {
    --tw-shadow-color: #a5b4fc;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-300\/10 {
    --tw-shadow-color: rgb(165 180 252 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-300\/20 {
    --tw-shadow-color: rgb(165 180 252 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-300\/30 {
    --tw-shadow-color: rgb(165 180 252 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-300\/40 {
    --tw-shadow-color: rgb(165 180 252 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-300\/5 {
    --tw-shadow-color: rgb(165 180 252 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-300\/50 {
    --tw-shadow-color: rgb(165 180 252 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-300\/60 {
    --tw-shadow-color: rgb(165 180 252 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-300\/70 {
    --tw-shadow-color: rgb(165 180 252 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-300\/80 {
    --tw-shadow-color: rgb(165 180 252 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-300\/90 {
    --tw-shadow-color: rgb(165 180 252 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-400 {
    --tw-shadow-color: #818cf8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-400\/10 {
    --tw-shadow-color: rgb(129 140 248 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-400\/20 {
    --tw-shadow-color: rgb(129 140 248 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-400\/30 {
    --tw-shadow-color: rgb(129 140 248 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-400\/40 {
    --tw-shadow-color: rgb(129 140 248 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-400\/5 {
    --tw-shadow-color: rgb(129 140 248 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-400\/50 {
    --tw-shadow-color: rgb(129 140 248 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-400\/60 {
    --tw-shadow-color: rgb(129 140 248 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-400\/70 {
    --tw-shadow-color: rgb(129 140 248 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-400\/80 {
    --tw-shadow-color: rgb(129 140 248 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-400\/90 {
    --tw-shadow-color: rgb(129 140 248 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-50 {
    --tw-shadow-color: #eef2ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-50\/10 {
    --tw-shadow-color: rgb(238 242 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-50\/20 {
    --tw-shadow-color: rgb(238 242 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-50\/30 {
    --tw-shadow-color: rgb(238 242 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-50\/40 {
    --tw-shadow-color: rgb(238 242 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-50\/5 {
    --tw-shadow-color: rgb(238 242 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-50\/50 {
    --tw-shadow-color: rgb(238 242 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-50\/60 {
    --tw-shadow-color: rgb(238 242 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-50\/70 {
    --tw-shadow-color: rgb(238 242 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-50\/80 {
    --tw-shadow-color: rgb(238 242 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-50\/90 {
    --tw-shadow-color: rgb(238 242 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-500 {
    --tw-shadow-color: #6366f1;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-500\/10 {
    --tw-shadow-color: rgb(99 102 241 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-500\/20 {
    --tw-shadow-color: rgb(99 102 241 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-500\/30 {
    --tw-shadow-color: rgb(99 102 241 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-500\/40 {
    --tw-shadow-color: rgb(99 102 241 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-500\/5 {
    --tw-shadow-color: rgb(99 102 241 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-500\/50 {
    --tw-shadow-color: rgb(99 102 241 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-500\/60 {
    --tw-shadow-color: rgb(99 102 241 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-500\/70 {
    --tw-shadow-color: rgb(99 102 241 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-500\/80 {
    --tw-shadow-color: rgb(99 102 241 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-500\/90 {
    --tw-shadow-color: rgb(99 102 241 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-600 {
    --tw-shadow-color: #4f46e5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-600\/10 {
    --tw-shadow-color: rgb(79 70 229 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-600\/20 {
    --tw-shadow-color: rgb(79 70 229 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-600\/30 {
    --tw-shadow-color: rgb(79 70 229 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-600\/40 {
    --tw-shadow-color: rgb(79 70 229 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-600\/5 {
    --tw-shadow-color: rgb(79 70 229 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-600\/50 {
    --tw-shadow-color: rgb(79 70 229 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-600\/60 {
    --tw-shadow-color: rgb(79 70 229 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-600\/70 {
    --tw-shadow-color: rgb(79 70 229 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-600\/80 {
    --tw-shadow-color: rgb(79 70 229 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-600\/90 {
    --tw-shadow-color: rgb(79 70 229 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-700 {
    --tw-shadow-color: #4338ca;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-700\/10 {
    --tw-shadow-color: rgb(67 56 202 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-700\/20 {
    --tw-shadow-color: rgb(67 56 202 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-700\/30 {
    --tw-shadow-color: rgb(67 56 202 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-700\/40 {
    --tw-shadow-color: rgb(67 56 202 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-700\/5 {
    --tw-shadow-color: rgb(67 56 202 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-700\/50 {
    --tw-shadow-color: rgb(67 56 202 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-700\/60 {
    --tw-shadow-color: rgb(67 56 202 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-700\/70 {
    --tw-shadow-color: rgb(67 56 202 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-700\/80 {
    --tw-shadow-color: rgb(67 56 202 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-700\/90 {
    --tw-shadow-color: rgb(67 56 202 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-800 {
    --tw-shadow-color: #3730a3;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-800\/10 {
    --tw-shadow-color: rgb(55 48 163 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-800\/20 {
    --tw-shadow-color: rgb(55 48 163 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-800\/30 {
    --tw-shadow-color: rgb(55 48 163 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-800\/40 {
    --tw-shadow-color: rgb(55 48 163 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-800\/5 {
    --tw-shadow-color: rgb(55 48 163 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-800\/50 {
    --tw-shadow-color: rgb(55 48 163 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-800\/60 {
    --tw-shadow-color: rgb(55 48 163 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-800\/70 {
    --tw-shadow-color: rgb(55 48 163 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-800\/80 {
    --tw-shadow-color: rgb(55 48 163 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-800\/90 {
    --tw-shadow-color: rgb(55 48 163 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-900 {
    --tw-shadow-color: #312e81;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-900\/10 {
    --tw-shadow-color: rgb(49 46 129 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-900\/20 {
    --tw-shadow-color: rgb(49 46 129 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-900\/30 {
    --tw-shadow-color: rgb(49 46 129 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-900\/40 {
    --tw-shadow-color: rgb(49 46 129 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-900\/5 {
    --tw-shadow-color: rgb(49 46 129 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-900\/50 {
    --tw-shadow-color: rgb(49 46 129 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-900\/60 {
    --tw-shadow-color: rgb(49 46 129 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-900\/70 {
    --tw-shadow-color: rgb(49 46 129 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-900\/80 {
    --tw-shadow-color: rgb(49 46 129 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-900\/90 {
    --tw-shadow-color: rgb(49 46 129 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-950 {
    --tw-shadow-color: #1e1b4b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-950\/10 {
    --tw-shadow-color: rgb(30 27 75 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-950\/20 {
    --tw-shadow-color: rgb(30 27 75 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-950\/30 {
    --tw-shadow-color: rgb(30 27 75 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-950\/40 {
    --tw-shadow-color: rgb(30 27 75 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-950\/5 {
    --tw-shadow-color: rgb(30 27 75 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-950\/50 {
    --tw-shadow-color: rgb(30 27 75 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-950\/60 {
    --tw-shadow-color: rgb(30 27 75 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-950\/70 {
    --tw-shadow-color: rgb(30 27 75 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-950\/80 {
    --tw-shadow-color: rgb(30 27 75 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-indigo-950\/90 {
    --tw-shadow-color: rgb(30 27 75 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-100 {
    --tw-shadow-color: #ecfccb;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-100\/10 {
    --tw-shadow-color: rgb(236 252 203 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-100\/20 {
    --tw-shadow-color: rgb(236 252 203 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-100\/30 {
    --tw-shadow-color: rgb(236 252 203 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-100\/40 {
    --tw-shadow-color: rgb(236 252 203 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-100\/5 {
    --tw-shadow-color: rgb(236 252 203 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-100\/50 {
    --tw-shadow-color: rgb(236 252 203 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-100\/60 {
    --tw-shadow-color: rgb(236 252 203 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-100\/70 {
    --tw-shadow-color: rgb(236 252 203 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-100\/80 {
    --tw-shadow-color: rgb(236 252 203 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-100\/90 {
    --tw-shadow-color: rgb(236 252 203 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-200 {
    --tw-shadow-color: #d9f99d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-200\/10 {
    --tw-shadow-color: rgb(217 249 157 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-200\/20 {
    --tw-shadow-color: rgb(217 249 157 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-200\/30 {
    --tw-shadow-color: rgb(217 249 157 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-200\/40 {
    --tw-shadow-color: rgb(217 249 157 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-200\/5 {
    --tw-shadow-color: rgb(217 249 157 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-200\/50 {
    --tw-shadow-color: rgb(217 249 157 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-200\/60 {
    --tw-shadow-color: rgb(217 249 157 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-200\/70 {
    --tw-shadow-color: rgb(217 249 157 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-200\/80 {
    --tw-shadow-color: rgb(217 249 157 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-200\/90 {
    --tw-shadow-color: rgb(217 249 157 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-300 {
    --tw-shadow-color: #bef264;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-300\/10 {
    --tw-shadow-color: rgb(190 242 100 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-300\/20 {
    --tw-shadow-color: rgb(190 242 100 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-300\/30 {
    --tw-shadow-color: rgb(190 242 100 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-300\/40 {
    --tw-shadow-color: rgb(190 242 100 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-300\/5 {
    --tw-shadow-color: rgb(190 242 100 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-300\/50 {
    --tw-shadow-color: rgb(190 242 100 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-300\/60 {
    --tw-shadow-color: rgb(190 242 100 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-300\/70 {
    --tw-shadow-color: rgb(190 242 100 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-300\/80 {
    --tw-shadow-color: rgb(190 242 100 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-300\/90 {
    --tw-shadow-color: rgb(190 242 100 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-400 {
    --tw-shadow-color: #a3e635;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-400\/10 {
    --tw-shadow-color: rgb(163 230 53 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-400\/20 {
    --tw-shadow-color: rgb(163 230 53 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-400\/30 {
    --tw-shadow-color: rgb(163 230 53 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-400\/40 {
    --tw-shadow-color: rgb(163 230 53 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-400\/5 {
    --tw-shadow-color: rgb(163 230 53 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-400\/50 {
    --tw-shadow-color: rgb(163 230 53 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-400\/60 {
    --tw-shadow-color: rgb(163 230 53 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-400\/70 {
    --tw-shadow-color: rgb(163 230 53 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-400\/80 {
    --tw-shadow-color: rgb(163 230 53 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-400\/90 {
    --tw-shadow-color: rgb(163 230 53 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-50 {
    --tw-shadow-color: #f7fee7;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-50\/10 {
    --tw-shadow-color: rgb(247 254 231 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-50\/20 {
    --tw-shadow-color: rgb(247 254 231 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-50\/30 {
    --tw-shadow-color: rgb(247 254 231 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-50\/40 {
    --tw-shadow-color: rgb(247 254 231 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-50\/5 {
    --tw-shadow-color: rgb(247 254 231 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-50\/50 {
    --tw-shadow-color: rgb(247 254 231 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-50\/60 {
    --tw-shadow-color: rgb(247 254 231 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-50\/70 {
    --tw-shadow-color: rgb(247 254 231 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-50\/80 {
    --tw-shadow-color: rgb(247 254 231 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-50\/90 {
    --tw-shadow-color: rgb(247 254 231 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-500 {
    --tw-shadow-color: #84cc16;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-500\/10 {
    --tw-shadow-color: rgb(132 204 22 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-500\/20 {
    --tw-shadow-color: rgb(132 204 22 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-500\/30 {
    --tw-shadow-color: rgb(132 204 22 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-500\/40 {
    --tw-shadow-color: rgb(132 204 22 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-500\/5 {
    --tw-shadow-color: rgb(132 204 22 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-500\/50 {
    --tw-shadow-color: rgb(132 204 22 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-500\/60 {
    --tw-shadow-color: rgb(132 204 22 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-500\/70 {
    --tw-shadow-color: rgb(132 204 22 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-500\/80 {
    --tw-shadow-color: rgb(132 204 22 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-500\/90 {
    --tw-shadow-color: rgb(132 204 22 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-600 {
    --tw-shadow-color: #65a30d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-600\/10 {
    --tw-shadow-color: rgb(101 163 13 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-600\/20 {
    --tw-shadow-color: rgb(101 163 13 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-600\/30 {
    --tw-shadow-color: rgb(101 163 13 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-600\/40 {
    --tw-shadow-color: rgb(101 163 13 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-600\/5 {
    --tw-shadow-color: rgb(101 163 13 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-600\/50 {
    --tw-shadow-color: rgb(101 163 13 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-600\/60 {
    --tw-shadow-color: rgb(101 163 13 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-600\/70 {
    --tw-shadow-color: rgb(101 163 13 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-600\/80 {
    --tw-shadow-color: rgb(101 163 13 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-600\/90 {
    --tw-shadow-color: rgb(101 163 13 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-700 {
    --tw-shadow-color: #4d7c0f;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-700\/10 {
    --tw-shadow-color: rgb(77 124 15 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-700\/20 {
    --tw-shadow-color: rgb(77 124 15 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-700\/30 {
    --tw-shadow-color: rgb(77 124 15 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-700\/40 {
    --tw-shadow-color: rgb(77 124 15 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-700\/5 {
    --tw-shadow-color: rgb(77 124 15 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-700\/50 {
    --tw-shadow-color: rgb(77 124 15 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-700\/60 {
    --tw-shadow-color: rgb(77 124 15 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-700\/70 {
    --tw-shadow-color: rgb(77 124 15 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-700\/80 {
    --tw-shadow-color: rgb(77 124 15 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-700\/90 {
    --tw-shadow-color: rgb(77 124 15 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-800 {
    --tw-shadow-color: #3f6212;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-800\/10 {
    --tw-shadow-color: rgb(63 98 18 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-800\/20 {
    --tw-shadow-color: rgb(63 98 18 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-800\/30 {
    --tw-shadow-color: rgb(63 98 18 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-800\/40 {
    --tw-shadow-color: rgb(63 98 18 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-800\/5 {
    --tw-shadow-color: rgb(63 98 18 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-800\/50 {
    --tw-shadow-color: rgb(63 98 18 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-800\/60 {
    --tw-shadow-color: rgb(63 98 18 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-800\/70 {
    --tw-shadow-color: rgb(63 98 18 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-800\/80 {
    --tw-shadow-color: rgb(63 98 18 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-800\/90 {
    --tw-shadow-color: rgb(63 98 18 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-900 {
    --tw-shadow-color: #365314;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-900\/10 {
    --tw-shadow-color: rgb(54 83 20 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-900\/20 {
    --tw-shadow-color: rgb(54 83 20 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-900\/30 {
    --tw-shadow-color: rgb(54 83 20 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-900\/40 {
    --tw-shadow-color: rgb(54 83 20 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-900\/5 {
    --tw-shadow-color: rgb(54 83 20 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-900\/50 {
    --tw-shadow-color: rgb(54 83 20 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-900\/60 {
    --tw-shadow-color: rgb(54 83 20 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-900\/70 {
    --tw-shadow-color: rgb(54 83 20 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-900\/80 {
    --tw-shadow-color: rgb(54 83 20 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-900\/90 {
    --tw-shadow-color: rgb(54 83 20 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-950 {
    --tw-shadow-color: #1a2e05;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-950\/10 {
    --tw-shadow-color: rgb(26 46 5 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-950\/20 {
    --tw-shadow-color: rgb(26 46 5 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-950\/30 {
    --tw-shadow-color: rgb(26 46 5 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-950\/40 {
    --tw-shadow-color: rgb(26 46 5 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-950\/5 {
    --tw-shadow-color: rgb(26 46 5 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-950\/50 {
    --tw-shadow-color: rgb(26 46 5 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-950\/60 {
    --tw-shadow-color: rgb(26 46 5 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-950\/70 {
    --tw-shadow-color: rgb(26 46 5 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-950\/80 {
    --tw-shadow-color: rgb(26 46 5 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-lime-950\/90 {
    --tw-shadow-color: rgb(26 46 5 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-100 {
    --tw-shadow-color: #f5f5f5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-100\/10 {
    --tw-shadow-color: rgb(245 245 245 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-100\/20 {
    --tw-shadow-color: rgb(245 245 245 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-100\/30 {
    --tw-shadow-color: rgb(245 245 245 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-100\/40 {
    --tw-shadow-color: rgb(245 245 245 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-100\/5 {
    --tw-shadow-color: rgb(245 245 245 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-100\/50 {
    --tw-shadow-color: rgb(245 245 245 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-100\/60 {
    --tw-shadow-color: rgb(245 245 245 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-100\/70 {
    --tw-shadow-color: rgb(245 245 245 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-100\/80 {
    --tw-shadow-color: rgb(245 245 245 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-100\/90 {
    --tw-shadow-color: rgb(245 245 245 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-200 {
    --tw-shadow-color: #e5e5e5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-200\/10 {
    --tw-shadow-color: rgb(229 229 229 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-200\/20 {
    --tw-shadow-color: rgb(229 229 229 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-200\/30 {
    --tw-shadow-color: rgb(229 229 229 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-200\/40 {
    --tw-shadow-color: rgb(229 229 229 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-200\/5 {
    --tw-shadow-color: rgb(229 229 229 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-200\/50 {
    --tw-shadow-color: rgb(229 229 229 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-200\/60 {
    --tw-shadow-color: rgb(229 229 229 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-200\/70 {
    --tw-shadow-color: rgb(229 229 229 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-200\/80 {
    --tw-shadow-color: rgb(229 229 229 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-200\/90 {
    --tw-shadow-color: rgb(229 229 229 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-300 {
    --tw-shadow-color: #d4d4d4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-300\/10 {
    --tw-shadow-color: rgb(212 212 212 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-300\/20 {
    --tw-shadow-color: rgb(212 212 212 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-300\/30 {
    --tw-shadow-color: rgb(212 212 212 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-300\/40 {
    --tw-shadow-color: rgb(212 212 212 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-300\/5 {
    --tw-shadow-color: rgb(212 212 212 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-300\/50 {
    --tw-shadow-color: rgb(212 212 212 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-300\/60 {
    --tw-shadow-color: rgb(212 212 212 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-300\/70 {
    --tw-shadow-color: rgb(212 212 212 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-300\/80 {
    --tw-shadow-color: rgb(212 212 212 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-300\/90 {
    --tw-shadow-color: rgb(212 212 212 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-400 {
    --tw-shadow-color: #a3a3a3;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-400\/10 {
    --tw-shadow-color: rgb(163 163 163 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-400\/20 {
    --tw-shadow-color: rgb(163 163 163 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-400\/30 {
    --tw-shadow-color: rgb(163 163 163 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-400\/40 {
    --tw-shadow-color: rgb(163 163 163 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-400\/5 {
    --tw-shadow-color: rgb(163 163 163 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-400\/50 {
    --tw-shadow-color: rgb(163 163 163 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-400\/60 {
    --tw-shadow-color: rgb(163 163 163 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-400\/70 {
    --tw-shadow-color: rgb(163 163 163 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-400\/80 {
    --tw-shadow-color: rgb(163 163 163 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-400\/90 {
    --tw-shadow-color: rgb(163 163 163 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-50 {
    --tw-shadow-color: #fafafa;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-50\/10 {
    --tw-shadow-color: rgb(250 250 250 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-50\/20 {
    --tw-shadow-color: rgb(250 250 250 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-50\/30 {
    --tw-shadow-color: rgb(250 250 250 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-50\/40 {
    --tw-shadow-color: rgb(250 250 250 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-50\/5 {
    --tw-shadow-color: rgb(250 250 250 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-50\/50 {
    --tw-shadow-color: rgb(250 250 250 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-50\/60 {
    --tw-shadow-color: rgb(250 250 250 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-50\/70 {
    --tw-shadow-color: rgb(250 250 250 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-50\/80 {
    --tw-shadow-color: rgb(250 250 250 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-50\/90 {
    --tw-shadow-color: rgb(250 250 250 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-500 {
    --tw-shadow-color: #737373;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-500\/10 {
    --tw-shadow-color: rgb(115 115 115 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-500\/20 {
    --tw-shadow-color: rgb(115 115 115 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-500\/30 {
    --tw-shadow-color: rgb(115 115 115 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-500\/40 {
    --tw-shadow-color: rgb(115 115 115 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-500\/5 {
    --tw-shadow-color: rgb(115 115 115 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-500\/50 {
    --tw-shadow-color: rgb(115 115 115 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-500\/60 {
    --tw-shadow-color: rgb(115 115 115 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-500\/70 {
    --tw-shadow-color: rgb(115 115 115 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-500\/80 {
    --tw-shadow-color: rgb(115 115 115 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-500\/90 {
    --tw-shadow-color: rgb(115 115 115 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-600 {
    --tw-shadow-color: #525252;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-600\/10 {
    --tw-shadow-color: rgb(82 82 82 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-600\/20 {
    --tw-shadow-color: rgb(82 82 82 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-600\/30 {
    --tw-shadow-color: rgb(82 82 82 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-600\/40 {
    --tw-shadow-color: rgb(82 82 82 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-600\/5 {
    --tw-shadow-color: rgb(82 82 82 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-600\/50 {
    --tw-shadow-color: rgb(82 82 82 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-600\/60 {
    --tw-shadow-color: rgb(82 82 82 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-600\/70 {
    --tw-shadow-color: rgb(82 82 82 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-600\/80 {
    --tw-shadow-color: rgb(82 82 82 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-600\/90 {
    --tw-shadow-color: rgb(82 82 82 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-700 {
    --tw-shadow-color: #404040;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-700\/10 {
    --tw-shadow-color: rgb(64 64 64 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-700\/20 {
    --tw-shadow-color: rgb(64 64 64 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-700\/30 {
    --tw-shadow-color: rgb(64 64 64 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-700\/40 {
    --tw-shadow-color: rgb(64 64 64 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-700\/5 {
    --tw-shadow-color: rgb(64 64 64 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-700\/50 {
    --tw-shadow-color: rgb(64 64 64 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-700\/60 {
    --tw-shadow-color: rgb(64 64 64 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-700\/70 {
    --tw-shadow-color: rgb(64 64 64 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-700\/80 {
    --tw-shadow-color: rgb(64 64 64 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-700\/90 {
    --tw-shadow-color: rgb(64 64 64 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-800 {
    --tw-shadow-color: #262626;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-800\/10 {
    --tw-shadow-color: rgb(38 38 38 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-800\/20 {
    --tw-shadow-color: rgb(38 38 38 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-800\/30 {
    --tw-shadow-color: rgb(38 38 38 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-800\/40 {
    --tw-shadow-color: rgb(38 38 38 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-800\/5 {
    --tw-shadow-color: rgb(38 38 38 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-800\/50 {
    --tw-shadow-color: rgb(38 38 38 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-800\/60 {
    --tw-shadow-color: rgb(38 38 38 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-800\/70 {
    --tw-shadow-color: rgb(38 38 38 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-800\/80 {
    --tw-shadow-color: rgb(38 38 38 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-800\/90 {
    --tw-shadow-color: rgb(38 38 38 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-900 {
    --tw-shadow-color: #171717;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-900\/10 {
    --tw-shadow-color: rgb(23 23 23 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-900\/20 {
    --tw-shadow-color: rgb(23 23 23 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-900\/30 {
    --tw-shadow-color: rgb(23 23 23 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-900\/40 {
    --tw-shadow-color: rgb(23 23 23 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-900\/5 {
    --tw-shadow-color: rgb(23 23 23 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-900\/50 {
    --tw-shadow-color: rgb(23 23 23 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-900\/60 {
    --tw-shadow-color: rgb(23 23 23 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-900\/70 {
    --tw-shadow-color: rgb(23 23 23 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-900\/80 {
    --tw-shadow-color: rgb(23 23 23 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-900\/90 {
    --tw-shadow-color: rgb(23 23 23 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-950 {
    --tw-shadow-color: #0a0a0a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-950\/10 {
    --tw-shadow-color: rgb(10 10 10 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-950\/20 {
    --tw-shadow-color: rgb(10 10 10 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-950\/30 {
    --tw-shadow-color: rgb(10 10 10 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-950\/40 {
    --tw-shadow-color: rgb(10 10 10 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-950\/5 {
    --tw-shadow-color: rgb(10 10 10 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-950\/50 {
    --tw-shadow-color: rgb(10 10 10 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-950\/60 {
    --tw-shadow-color: rgb(10 10 10 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-950\/70 {
    --tw-shadow-color: rgb(10 10 10 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-950\/80 {
    --tw-shadow-color: rgb(10 10 10 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-neutral-950\/90 {
    --tw-shadow-color: rgb(10 10 10 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-100 {
    --tw-shadow-color: #ffedd5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-100\/10 {
    --tw-shadow-color: rgb(255 237 213 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-100\/20 {
    --tw-shadow-color: rgb(255 237 213 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-100\/30 {
    --tw-shadow-color: rgb(255 237 213 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-100\/40 {
    --tw-shadow-color: rgb(255 237 213 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-100\/5 {
    --tw-shadow-color: rgb(255 237 213 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-100\/50 {
    --tw-shadow-color: rgb(255 237 213 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-100\/60 {
    --tw-shadow-color: rgb(255 237 213 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-100\/70 {
    --tw-shadow-color: rgb(255 237 213 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-100\/80 {
    --tw-shadow-color: rgb(255 237 213 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-100\/90 {
    --tw-shadow-color: rgb(255 237 213 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-200 {
    --tw-shadow-color: #fed7aa;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-200\/10 {
    --tw-shadow-color: rgb(254 215 170 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-200\/20 {
    --tw-shadow-color: rgb(254 215 170 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-200\/30 {
    --tw-shadow-color: rgb(254 215 170 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-200\/40 {
    --tw-shadow-color: rgb(254 215 170 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-200\/5 {
    --tw-shadow-color: rgb(254 215 170 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-200\/50 {
    --tw-shadow-color: rgb(254 215 170 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-200\/60 {
    --tw-shadow-color: rgb(254 215 170 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-200\/70 {
    --tw-shadow-color: rgb(254 215 170 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-200\/80 {
    --tw-shadow-color: rgb(254 215 170 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-200\/90 {
    --tw-shadow-color: rgb(254 215 170 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-300 {
    --tw-shadow-color: #fdba74;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-300\/10 {
    --tw-shadow-color: rgb(253 186 116 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-300\/20 {
    --tw-shadow-color: rgb(253 186 116 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-300\/30 {
    --tw-shadow-color: rgb(253 186 116 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-300\/40 {
    --tw-shadow-color: rgb(253 186 116 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-300\/5 {
    --tw-shadow-color: rgb(253 186 116 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-300\/50 {
    --tw-shadow-color: rgb(253 186 116 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-300\/60 {
    --tw-shadow-color: rgb(253 186 116 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-300\/70 {
    --tw-shadow-color: rgb(253 186 116 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-300\/80 {
    --tw-shadow-color: rgb(253 186 116 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-300\/90 {
    --tw-shadow-color: rgb(253 186 116 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-400 {
    --tw-shadow-color: #fb923c;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-400\/10 {
    --tw-shadow-color: rgb(251 146 60 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-400\/20 {
    --tw-shadow-color: rgb(251 146 60 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-400\/30 {
    --tw-shadow-color: rgb(251 146 60 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-400\/40 {
    --tw-shadow-color: rgb(251 146 60 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-400\/5 {
    --tw-shadow-color: rgb(251 146 60 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-400\/50 {
    --tw-shadow-color: rgb(251 146 60 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-400\/60 {
    --tw-shadow-color: rgb(251 146 60 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-400\/70 {
    --tw-shadow-color: rgb(251 146 60 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-400\/80 {
    --tw-shadow-color: rgb(251 146 60 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-400\/90 {
    --tw-shadow-color: rgb(251 146 60 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-50 {
    --tw-shadow-color: #fff7ed;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-50\/10 {
    --tw-shadow-color: rgb(255 247 237 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-50\/20 {
    --tw-shadow-color: rgb(255 247 237 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-50\/30 {
    --tw-shadow-color: rgb(255 247 237 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-50\/40 {
    --tw-shadow-color: rgb(255 247 237 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-50\/5 {
    --tw-shadow-color: rgb(255 247 237 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-50\/50 {
    --tw-shadow-color: rgb(255 247 237 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-50\/60 {
    --tw-shadow-color: rgb(255 247 237 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-50\/70 {
    --tw-shadow-color: rgb(255 247 237 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-50\/80 {
    --tw-shadow-color: rgb(255 247 237 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-50\/90 {
    --tw-shadow-color: rgb(255 247 237 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-500 {
    --tw-shadow-color: #f97316;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-500\/10 {
    --tw-shadow-color: rgb(249 115 22 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-500\/20 {
    --tw-shadow-color: rgb(249 115 22 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-500\/30 {
    --tw-shadow-color: rgb(249 115 22 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-500\/40 {
    --tw-shadow-color: rgb(249 115 22 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-500\/5 {
    --tw-shadow-color: rgb(249 115 22 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-500\/50 {
    --tw-shadow-color: rgb(249 115 22 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-500\/60 {
    --tw-shadow-color: rgb(249 115 22 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-500\/70 {
    --tw-shadow-color: rgb(249 115 22 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-500\/80 {
    --tw-shadow-color: rgb(249 115 22 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-500\/90 {
    --tw-shadow-color: rgb(249 115 22 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-600 {
    --tw-shadow-color: #ea580c;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-600\/10 {
    --tw-shadow-color: rgb(234 88 12 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-600\/20 {
    --tw-shadow-color: rgb(234 88 12 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-600\/30 {
    --tw-shadow-color: rgb(234 88 12 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-600\/40 {
    --tw-shadow-color: rgb(234 88 12 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-600\/5 {
    --tw-shadow-color: rgb(234 88 12 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-600\/50 {
    --tw-shadow-color: rgb(234 88 12 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-600\/60 {
    --tw-shadow-color: rgb(234 88 12 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-600\/70 {
    --tw-shadow-color: rgb(234 88 12 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-600\/80 {
    --tw-shadow-color: rgb(234 88 12 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-600\/90 {
    --tw-shadow-color: rgb(234 88 12 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-700 {
    --tw-shadow-color: #c2410c;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-700\/10 {
    --tw-shadow-color: rgb(194 65 12 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-700\/20 {
    --tw-shadow-color: rgb(194 65 12 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-700\/30 {
    --tw-shadow-color: rgb(194 65 12 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-700\/40 {
    --tw-shadow-color: rgb(194 65 12 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-700\/5 {
    --tw-shadow-color: rgb(194 65 12 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-700\/50 {
    --tw-shadow-color: rgb(194 65 12 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-700\/60 {
    --tw-shadow-color: rgb(194 65 12 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-700\/70 {
    --tw-shadow-color: rgb(194 65 12 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-700\/80 {
    --tw-shadow-color: rgb(194 65 12 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-700\/90 {
    --tw-shadow-color: rgb(194 65 12 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-800 {
    --tw-shadow-color: #9a3412;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-800\/10 {
    --tw-shadow-color: rgb(154 52 18 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-800\/20 {
    --tw-shadow-color: rgb(154 52 18 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-800\/30 {
    --tw-shadow-color: rgb(154 52 18 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-800\/40 {
    --tw-shadow-color: rgb(154 52 18 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-800\/5 {
    --tw-shadow-color: rgb(154 52 18 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-800\/50 {
    --tw-shadow-color: rgb(154 52 18 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-800\/60 {
    --tw-shadow-color: rgb(154 52 18 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-800\/70 {
    --tw-shadow-color: rgb(154 52 18 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-800\/80 {
    --tw-shadow-color: rgb(154 52 18 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-800\/90 {
    --tw-shadow-color: rgb(154 52 18 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-900 {
    --tw-shadow-color: #7c2d12;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-900\/10 {
    --tw-shadow-color: rgb(124 45 18 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-900\/20 {
    --tw-shadow-color: rgb(124 45 18 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-900\/30 {
    --tw-shadow-color: rgb(124 45 18 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-900\/40 {
    --tw-shadow-color: rgb(124 45 18 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-900\/5 {
    --tw-shadow-color: rgb(124 45 18 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-900\/50 {
    --tw-shadow-color: rgb(124 45 18 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-900\/60 {
    --tw-shadow-color: rgb(124 45 18 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-900\/70 {
    --tw-shadow-color: rgb(124 45 18 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-900\/80 {
    --tw-shadow-color: rgb(124 45 18 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-900\/90 {
    --tw-shadow-color: rgb(124 45 18 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-950 {
    --tw-shadow-color: #431407;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-950\/10 {
    --tw-shadow-color: rgb(67 20 7 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-950\/20 {
    --tw-shadow-color: rgb(67 20 7 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-950\/30 {
    --tw-shadow-color: rgb(67 20 7 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-950\/40 {
    --tw-shadow-color: rgb(67 20 7 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-950\/5 {
    --tw-shadow-color: rgb(67 20 7 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-950\/50 {
    --tw-shadow-color: rgb(67 20 7 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-950\/60 {
    --tw-shadow-color: rgb(67 20 7 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-950\/70 {
    --tw-shadow-color: rgb(67 20 7 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-950\/80 {
    --tw-shadow-color: rgb(67 20 7 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-orange-950\/90 {
    --tw-shadow-color: rgb(67 20 7 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-100 {
    --tw-shadow-color: #fce7f3;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-100\/10 {
    --tw-shadow-color: rgb(252 231 243 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-100\/20 {
    --tw-shadow-color: rgb(252 231 243 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-100\/30 {
    --tw-shadow-color: rgb(252 231 243 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-100\/40 {
    --tw-shadow-color: rgb(252 231 243 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-100\/5 {
    --tw-shadow-color: rgb(252 231 243 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-100\/50 {
    --tw-shadow-color: rgb(252 231 243 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-100\/60 {
    --tw-shadow-color: rgb(252 231 243 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-100\/70 {
    --tw-shadow-color: rgb(252 231 243 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-100\/80 {
    --tw-shadow-color: rgb(252 231 243 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-100\/90 {
    --tw-shadow-color: rgb(252 231 243 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-200 {
    --tw-shadow-color: #fbcfe8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-200\/10 {
    --tw-shadow-color: rgb(251 207 232 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-200\/20 {
    --tw-shadow-color: rgb(251 207 232 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-200\/30 {
    --tw-shadow-color: rgb(251 207 232 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-200\/40 {
    --tw-shadow-color: rgb(251 207 232 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-200\/5 {
    --tw-shadow-color: rgb(251 207 232 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-200\/50 {
    --tw-shadow-color: rgb(251 207 232 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-200\/60 {
    --tw-shadow-color: rgb(251 207 232 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-200\/70 {
    --tw-shadow-color: rgb(251 207 232 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-200\/80 {
    --tw-shadow-color: rgb(251 207 232 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-200\/90 {
    --tw-shadow-color: rgb(251 207 232 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-300 {
    --tw-shadow-color: #f9a8d4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-300\/10 {
    --tw-shadow-color: rgb(249 168 212 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-300\/20 {
    --tw-shadow-color: rgb(249 168 212 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-300\/30 {
    --tw-shadow-color: rgb(249 168 212 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-300\/40 {
    --tw-shadow-color: rgb(249 168 212 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-300\/5 {
    --tw-shadow-color: rgb(249 168 212 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-300\/50 {
    --tw-shadow-color: rgb(249 168 212 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-300\/60 {
    --tw-shadow-color: rgb(249 168 212 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-300\/70 {
    --tw-shadow-color: rgb(249 168 212 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-300\/80 {
    --tw-shadow-color: rgb(249 168 212 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-300\/90 {
    --tw-shadow-color: rgb(249 168 212 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-400 {
    --tw-shadow-color: #f472b6;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-400\/10 {
    --tw-shadow-color: rgb(244 114 182 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-400\/20 {
    --tw-shadow-color: rgb(244 114 182 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-400\/30 {
    --tw-shadow-color: rgb(244 114 182 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-400\/40 {
    --tw-shadow-color: rgb(244 114 182 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-400\/5 {
    --tw-shadow-color: rgb(244 114 182 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-400\/50 {
    --tw-shadow-color: rgb(244 114 182 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-400\/60 {
    --tw-shadow-color: rgb(244 114 182 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-400\/70 {
    --tw-shadow-color: rgb(244 114 182 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-400\/80 {
    --tw-shadow-color: rgb(244 114 182 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-400\/90 {
    --tw-shadow-color: rgb(244 114 182 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-50 {
    --tw-shadow-color: #fdf2f8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-50\/10 {
    --tw-shadow-color: rgb(253 242 248 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-50\/20 {
    --tw-shadow-color: rgb(253 242 248 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-50\/30 {
    --tw-shadow-color: rgb(253 242 248 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-50\/40 {
    --tw-shadow-color: rgb(253 242 248 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-50\/5 {
    --tw-shadow-color: rgb(253 242 248 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-50\/50 {
    --tw-shadow-color: rgb(253 242 248 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-50\/60 {
    --tw-shadow-color: rgb(253 242 248 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-50\/70 {
    --tw-shadow-color: rgb(253 242 248 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-50\/80 {
    --tw-shadow-color: rgb(253 242 248 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-50\/90 {
    --tw-shadow-color: rgb(253 242 248 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-500 {
    --tw-shadow-color: #ec4899;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-500\/10 {
    --tw-shadow-color: rgb(236 72 153 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-500\/20 {
    --tw-shadow-color: rgb(236 72 153 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-500\/30 {
    --tw-shadow-color: rgb(236 72 153 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-500\/40 {
    --tw-shadow-color: rgb(236 72 153 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-500\/5 {
    --tw-shadow-color: rgb(236 72 153 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-500\/50 {
    --tw-shadow-color: rgb(236 72 153 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-500\/60 {
    --tw-shadow-color: rgb(236 72 153 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-500\/70 {
    --tw-shadow-color: rgb(236 72 153 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-500\/80 {
    --tw-shadow-color: rgb(236 72 153 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-500\/90 {
    --tw-shadow-color: rgb(236 72 153 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-600 {
    --tw-shadow-color: #db2777;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-600\/10 {
    --tw-shadow-color: rgb(219 39 119 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-600\/20 {
    --tw-shadow-color: rgb(219 39 119 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-600\/30 {
    --tw-shadow-color: rgb(219 39 119 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-600\/40 {
    --tw-shadow-color: rgb(219 39 119 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-600\/5 {
    --tw-shadow-color: rgb(219 39 119 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-600\/50 {
    --tw-shadow-color: rgb(219 39 119 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-600\/60 {
    --tw-shadow-color: rgb(219 39 119 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-600\/70 {
    --tw-shadow-color: rgb(219 39 119 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-600\/80 {
    --tw-shadow-color: rgb(219 39 119 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-600\/90 {
    --tw-shadow-color: rgb(219 39 119 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-700 {
    --tw-shadow-color: #be185d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-700\/10 {
    --tw-shadow-color: rgb(190 24 93 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-700\/20 {
    --tw-shadow-color: rgb(190 24 93 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-700\/30 {
    --tw-shadow-color: rgb(190 24 93 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-700\/40 {
    --tw-shadow-color: rgb(190 24 93 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-700\/5 {
    --tw-shadow-color: rgb(190 24 93 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-700\/50 {
    --tw-shadow-color: rgb(190 24 93 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-700\/60 {
    --tw-shadow-color: rgb(190 24 93 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-700\/70 {
    --tw-shadow-color: rgb(190 24 93 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-700\/80 {
    --tw-shadow-color: rgb(190 24 93 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-700\/90 {
    --tw-shadow-color: rgb(190 24 93 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-800 {
    --tw-shadow-color: #9d174d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-800\/10 {
    --tw-shadow-color: rgb(157 23 77 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-800\/20 {
    --tw-shadow-color: rgb(157 23 77 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-800\/30 {
    --tw-shadow-color: rgb(157 23 77 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-800\/40 {
    --tw-shadow-color: rgb(157 23 77 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-800\/5 {
    --tw-shadow-color: rgb(157 23 77 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-800\/50 {
    --tw-shadow-color: rgb(157 23 77 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-800\/60 {
    --tw-shadow-color: rgb(157 23 77 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-800\/70 {
    --tw-shadow-color: rgb(157 23 77 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-800\/80 {
    --tw-shadow-color: rgb(157 23 77 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-800\/90 {
    --tw-shadow-color: rgb(157 23 77 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-900 {
    --tw-shadow-color: #831843;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-900\/10 {
    --tw-shadow-color: rgb(131 24 67 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-900\/20 {
    --tw-shadow-color: rgb(131 24 67 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-900\/30 {
    --tw-shadow-color: rgb(131 24 67 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-900\/40 {
    --tw-shadow-color: rgb(131 24 67 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-900\/5 {
    --tw-shadow-color: rgb(131 24 67 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-900\/50 {
    --tw-shadow-color: rgb(131 24 67 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-900\/60 {
    --tw-shadow-color: rgb(131 24 67 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-900\/70 {
    --tw-shadow-color: rgb(131 24 67 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-900\/80 {
    --tw-shadow-color: rgb(131 24 67 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-900\/90 {
    --tw-shadow-color: rgb(131 24 67 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-950 {
    --tw-shadow-color: #500724;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-950\/10 {
    --tw-shadow-color: rgb(80 7 36 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-950\/20 {
    --tw-shadow-color: rgb(80 7 36 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-950\/30 {
    --tw-shadow-color: rgb(80 7 36 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-950\/40 {
    --tw-shadow-color: rgb(80 7 36 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-950\/5 {
    --tw-shadow-color: rgb(80 7 36 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-950\/50 {
    --tw-shadow-color: rgb(80 7 36 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-950\/60 {
    --tw-shadow-color: rgb(80 7 36 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-950\/70 {
    --tw-shadow-color: rgb(80 7 36 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-950\/80 {
    --tw-shadow-color: rgb(80 7 36 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-pink-950\/90 {
    --tw-shadow-color: rgb(80 7 36 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-100 {
    --tw-shadow-color: #f3e8ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-100\/10 {
    --tw-shadow-color: rgb(243 232 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-100\/20 {
    --tw-shadow-color: rgb(243 232 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-100\/30 {
    --tw-shadow-color: rgb(243 232 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-100\/40 {
    --tw-shadow-color: rgb(243 232 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-100\/5 {
    --tw-shadow-color: rgb(243 232 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-100\/50 {
    --tw-shadow-color: rgb(243 232 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-100\/60 {
    --tw-shadow-color: rgb(243 232 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-100\/70 {
    --tw-shadow-color: rgb(243 232 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-100\/80 {
    --tw-shadow-color: rgb(243 232 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-100\/90 {
    --tw-shadow-color: rgb(243 232 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-200 {
    --tw-shadow-color: #e9d5ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-200\/10 {
    --tw-shadow-color: rgb(233 213 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-200\/20 {
    --tw-shadow-color: rgb(233 213 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-200\/30 {
    --tw-shadow-color: rgb(233 213 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-200\/40 {
    --tw-shadow-color: rgb(233 213 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-200\/5 {
    --tw-shadow-color: rgb(233 213 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-200\/50 {
    --tw-shadow-color: rgb(233 213 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-200\/60 {
    --tw-shadow-color: rgb(233 213 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-200\/70 {
    --tw-shadow-color: rgb(233 213 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-200\/80 {
    --tw-shadow-color: rgb(233 213 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-200\/90 {
    --tw-shadow-color: rgb(233 213 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-300 {
    --tw-shadow-color: #d8b4fe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-300\/10 {
    --tw-shadow-color: rgb(216 180 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-300\/20 {
    --tw-shadow-color: rgb(216 180 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-300\/30 {
    --tw-shadow-color: rgb(216 180 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-300\/40 {
    --tw-shadow-color: rgb(216 180 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-300\/5 {
    --tw-shadow-color: rgb(216 180 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-300\/50 {
    --tw-shadow-color: rgb(216 180 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-300\/60 {
    --tw-shadow-color: rgb(216 180 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-300\/70 {
    --tw-shadow-color: rgb(216 180 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-300\/80 {
    --tw-shadow-color: rgb(216 180 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-300\/90 {
    --tw-shadow-color: rgb(216 180 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-400 {
    --tw-shadow-color: #c084fc;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-400\/10 {
    --tw-shadow-color: rgb(192 132 252 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-400\/20 {
    --tw-shadow-color: rgb(192 132 252 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-400\/30 {
    --tw-shadow-color: rgb(192 132 252 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-400\/40 {
    --tw-shadow-color: rgb(192 132 252 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-400\/5 {
    --tw-shadow-color: rgb(192 132 252 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-400\/50 {
    --tw-shadow-color: rgb(192 132 252 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-400\/60 {
    --tw-shadow-color: rgb(192 132 252 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-400\/70 {
    --tw-shadow-color: rgb(192 132 252 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-400\/80 {
    --tw-shadow-color: rgb(192 132 252 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-400\/90 {
    --tw-shadow-color: rgb(192 132 252 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-50 {
    --tw-shadow-color: #faf5ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-50\/10 {
    --tw-shadow-color: rgb(250 245 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-50\/20 {
    --tw-shadow-color: rgb(250 245 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-50\/30 {
    --tw-shadow-color: rgb(250 245 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-50\/40 {
    --tw-shadow-color: rgb(250 245 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-50\/5 {
    --tw-shadow-color: rgb(250 245 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-50\/50 {
    --tw-shadow-color: rgb(250 245 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-50\/60 {
    --tw-shadow-color: rgb(250 245 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-50\/70 {
    --tw-shadow-color: rgb(250 245 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-50\/80 {
    --tw-shadow-color: rgb(250 245 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-50\/90 {
    --tw-shadow-color: rgb(250 245 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-500 {
    --tw-shadow-color: #a855f7;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-500\/10 {
    --tw-shadow-color: rgb(168 85 247 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-500\/20 {
    --tw-shadow-color: rgb(168 85 247 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-500\/30 {
    --tw-shadow-color: rgb(168 85 247 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-500\/40 {
    --tw-shadow-color: rgb(168 85 247 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-500\/5 {
    --tw-shadow-color: rgb(168 85 247 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-500\/50 {
    --tw-shadow-color: rgb(168 85 247 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-500\/60 {
    --tw-shadow-color: rgb(168 85 247 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-500\/70 {
    --tw-shadow-color: rgb(168 85 247 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-500\/80 {
    --tw-shadow-color: rgb(168 85 247 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-500\/90 {
    --tw-shadow-color: rgb(168 85 247 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-600 {
    --tw-shadow-color: #9333ea;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-600\/10 {
    --tw-shadow-color: rgb(147 51 234 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-600\/20 {
    --tw-shadow-color: rgb(147 51 234 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-600\/30 {
    --tw-shadow-color: rgb(147 51 234 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-600\/40 {
    --tw-shadow-color: rgb(147 51 234 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-600\/5 {
    --tw-shadow-color: rgb(147 51 234 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-600\/50 {
    --tw-shadow-color: rgb(147 51 234 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-600\/60 {
    --tw-shadow-color: rgb(147 51 234 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-600\/70 {
    --tw-shadow-color: rgb(147 51 234 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-600\/80 {
    --tw-shadow-color: rgb(147 51 234 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-600\/90 {
    --tw-shadow-color: rgb(147 51 234 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-700 {
    --tw-shadow-color: #7e22ce;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-700\/10 {
    --tw-shadow-color: rgb(126 34 206 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-700\/20 {
    --tw-shadow-color: rgb(126 34 206 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-700\/30 {
    --tw-shadow-color: rgb(126 34 206 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-700\/40 {
    --tw-shadow-color: rgb(126 34 206 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-700\/5 {
    --tw-shadow-color: rgb(126 34 206 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-700\/50 {
    --tw-shadow-color: rgb(126 34 206 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-700\/60 {
    --tw-shadow-color: rgb(126 34 206 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-700\/70 {
    --tw-shadow-color: rgb(126 34 206 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-700\/80 {
    --tw-shadow-color: rgb(126 34 206 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-700\/90 {
    --tw-shadow-color: rgb(126 34 206 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-800 {
    --tw-shadow-color: #6b21a8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-800\/10 {
    --tw-shadow-color: rgb(107 33 168 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-800\/20 {
    --tw-shadow-color: rgb(107 33 168 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-800\/30 {
    --tw-shadow-color: rgb(107 33 168 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-800\/40 {
    --tw-shadow-color: rgb(107 33 168 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-800\/5 {
    --tw-shadow-color: rgb(107 33 168 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-800\/50 {
    --tw-shadow-color: rgb(107 33 168 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-800\/60 {
    --tw-shadow-color: rgb(107 33 168 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-800\/70 {
    --tw-shadow-color: rgb(107 33 168 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-800\/80 {
    --tw-shadow-color: rgb(107 33 168 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-800\/90 {
    --tw-shadow-color: rgb(107 33 168 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-900 {
    --tw-shadow-color: #581c87;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-900\/10 {
    --tw-shadow-color: rgb(88 28 135 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-900\/20 {
    --tw-shadow-color: rgb(88 28 135 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-900\/30 {
    --tw-shadow-color: rgb(88 28 135 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-900\/40 {
    --tw-shadow-color: rgb(88 28 135 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-900\/5 {
    --tw-shadow-color: rgb(88 28 135 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-900\/50 {
    --tw-shadow-color: rgb(88 28 135 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-900\/60 {
    --tw-shadow-color: rgb(88 28 135 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-900\/70 {
    --tw-shadow-color: rgb(88 28 135 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-900\/80 {
    --tw-shadow-color: rgb(88 28 135 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-900\/90 {
    --tw-shadow-color: rgb(88 28 135 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-950 {
    --tw-shadow-color: #3b0764;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-950\/10 {
    --tw-shadow-color: rgb(59 7 100 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-950\/20 {
    --tw-shadow-color: rgb(59 7 100 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-950\/30 {
    --tw-shadow-color: rgb(59 7 100 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-950\/40 {
    --tw-shadow-color: rgb(59 7 100 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-950\/5 {
    --tw-shadow-color: rgb(59 7 100 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-950\/50 {
    --tw-shadow-color: rgb(59 7 100 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-950\/60 {
    --tw-shadow-color: rgb(59 7 100 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-950\/70 {
    --tw-shadow-color: rgb(59 7 100 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-950\/80 {
    --tw-shadow-color: rgb(59 7 100 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-purple-950\/90 {
    --tw-shadow-color: rgb(59 7 100 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-100 {
    --tw-shadow-color: #fee2e2;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-100\/10 {
    --tw-shadow-color: rgb(254 226 226 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-100\/20 {
    --tw-shadow-color: rgb(254 226 226 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-100\/30 {
    --tw-shadow-color: rgb(254 226 226 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-100\/40 {
    --tw-shadow-color: rgb(254 226 226 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-100\/5 {
    --tw-shadow-color: rgb(254 226 226 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-100\/50 {
    --tw-shadow-color: rgb(254 226 226 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-100\/60 {
    --tw-shadow-color: rgb(254 226 226 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-100\/70 {
    --tw-shadow-color: rgb(254 226 226 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-100\/80 {
    --tw-shadow-color: rgb(254 226 226 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-100\/90 {
    --tw-shadow-color: rgb(254 226 226 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-200 {
    --tw-shadow-color: #fecaca;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-200\/10 {
    --tw-shadow-color: rgb(254 202 202 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-200\/20 {
    --tw-shadow-color: rgb(254 202 202 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-200\/30 {
    --tw-shadow-color: rgb(254 202 202 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-200\/40 {
    --tw-shadow-color: rgb(254 202 202 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-200\/5 {
    --tw-shadow-color: rgb(254 202 202 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-200\/50 {
    --tw-shadow-color: rgb(254 202 202 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-200\/60 {
    --tw-shadow-color: rgb(254 202 202 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-200\/70 {
    --tw-shadow-color: rgb(254 202 202 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-200\/80 {
    --tw-shadow-color: rgb(254 202 202 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-200\/90 {
    --tw-shadow-color: rgb(254 202 202 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-300 {
    --tw-shadow-color: #fca5a5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-300\/10 {
    --tw-shadow-color: rgb(252 165 165 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-300\/20 {
    --tw-shadow-color: rgb(252 165 165 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-300\/30 {
    --tw-shadow-color: rgb(252 165 165 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-300\/40 {
    --tw-shadow-color: rgb(252 165 165 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-300\/5 {
    --tw-shadow-color: rgb(252 165 165 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-300\/50 {
    --tw-shadow-color: rgb(252 165 165 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-300\/60 {
    --tw-shadow-color: rgb(252 165 165 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-300\/70 {
    --tw-shadow-color: rgb(252 165 165 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-300\/80 {
    --tw-shadow-color: rgb(252 165 165 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-300\/90 {
    --tw-shadow-color: rgb(252 165 165 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-400 {
    --tw-shadow-color: #f87171;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-400\/10 {
    --tw-shadow-color: rgb(248 113 113 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-400\/20 {
    --tw-shadow-color: rgb(248 113 113 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-400\/30 {
    --tw-shadow-color: rgb(248 113 113 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-400\/40 {
    --tw-shadow-color: rgb(248 113 113 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-400\/5 {
    --tw-shadow-color: rgb(248 113 113 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-400\/50 {
    --tw-shadow-color: rgb(248 113 113 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-400\/60 {
    --tw-shadow-color: rgb(248 113 113 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-400\/70 {
    --tw-shadow-color: rgb(248 113 113 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-400\/80 {
    --tw-shadow-color: rgb(248 113 113 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-400\/90 {
    --tw-shadow-color: rgb(248 113 113 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-50 {
    --tw-shadow-color: #fef2f2;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-50\/10 {
    --tw-shadow-color: rgb(254 242 242 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-50\/20 {
    --tw-shadow-color: rgb(254 242 242 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-50\/30 {
    --tw-shadow-color: rgb(254 242 242 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-50\/40 {
    --tw-shadow-color: rgb(254 242 242 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-50\/5 {
    --tw-shadow-color: rgb(254 242 242 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-50\/50 {
    --tw-shadow-color: rgb(254 242 242 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-50\/60 {
    --tw-shadow-color: rgb(254 242 242 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-50\/70 {
    --tw-shadow-color: rgb(254 242 242 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-50\/80 {
    --tw-shadow-color: rgb(254 242 242 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-50\/90 {
    --tw-shadow-color: rgb(254 242 242 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-500 {
    --tw-shadow-color: #ef4444;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-500\/10 {
    --tw-shadow-color: rgb(239 68 68 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-500\/20 {
    --tw-shadow-color: rgb(239 68 68 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-500\/30 {
    --tw-shadow-color: rgb(239 68 68 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-500\/40 {
    --tw-shadow-color: rgb(239 68 68 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-500\/5 {
    --tw-shadow-color: rgb(239 68 68 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-500\/50 {
    --tw-shadow-color: rgb(239 68 68 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-500\/60 {
    --tw-shadow-color: rgb(239 68 68 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-500\/70 {
    --tw-shadow-color: rgb(239 68 68 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-500\/80 {
    --tw-shadow-color: rgb(239 68 68 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-500\/90 {
    --tw-shadow-color: rgb(239 68 68 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-600 {
    --tw-shadow-color: #dc2626;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-600\/10 {
    --tw-shadow-color: rgb(220 38 38 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-600\/20 {
    --tw-shadow-color: rgb(220 38 38 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-600\/30 {
    --tw-shadow-color: rgb(220 38 38 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-600\/40 {
    --tw-shadow-color: rgb(220 38 38 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-600\/5 {
    --tw-shadow-color: rgb(220 38 38 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-600\/50 {
    --tw-shadow-color: rgb(220 38 38 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-600\/60 {
    --tw-shadow-color: rgb(220 38 38 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-600\/70 {
    --tw-shadow-color: rgb(220 38 38 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-600\/80 {
    --tw-shadow-color: rgb(220 38 38 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-600\/90 {
    --tw-shadow-color: rgb(220 38 38 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-700 {
    --tw-shadow-color: #b91c1c;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-700\/10 {
    --tw-shadow-color: rgb(185 28 28 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-700\/20 {
    --tw-shadow-color: rgb(185 28 28 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-700\/30 {
    --tw-shadow-color: rgb(185 28 28 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-700\/40 {
    --tw-shadow-color: rgb(185 28 28 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-700\/5 {
    --tw-shadow-color: rgb(185 28 28 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-700\/50 {
    --tw-shadow-color: rgb(185 28 28 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-700\/60 {
    --tw-shadow-color: rgb(185 28 28 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-700\/70 {
    --tw-shadow-color: rgb(185 28 28 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-700\/80 {
    --tw-shadow-color: rgb(185 28 28 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-700\/90 {
    --tw-shadow-color: rgb(185 28 28 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-800 {
    --tw-shadow-color: #991b1b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-800\/10 {
    --tw-shadow-color: rgb(153 27 27 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-800\/20 {
    --tw-shadow-color: rgb(153 27 27 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-800\/30 {
    --tw-shadow-color: rgb(153 27 27 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-800\/40 {
    --tw-shadow-color: rgb(153 27 27 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-800\/5 {
    --tw-shadow-color: rgb(153 27 27 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-800\/50 {
    --tw-shadow-color: rgb(153 27 27 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-800\/60 {
    --tw-shadow-color: rgb(153 27 27 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-800\/70 {
    --tw-shadow-color: rgb(153 27 27 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-800\/80 {
    --tw-shadow-color: rgb(153 27 27 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-800\/90 {
    --tw-shadow-color: rgb(153 27 27 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-900 {
    --tw-shadow-color: #7f1d1d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-900\/10 {
    --tw-shadow-color: rgb(127 29 29 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-900\/20 {
    --tw-shadow-color: rgb(127 29 29 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-900\/30 {
    --tw-shadow-color: rgb(127 29 29 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-900\/40 {
    --tw-shadow-color: rgb(127 29 29 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-900\/5 {
    --tw-shadow-color: rgb(127 29 29 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-900\/50 {
    --tw-shadow-color: rgb(127 29 29 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-900\/60 {
    --tw-shadow-color: rgb(127 29 29 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-900\/70 {
    --tw-shadow-color: rgb(127 29 29 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-900\/80 {
    --tw-shadow-color: rgb(127 29 29 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-900\/90 {
    --tw-shadow-color: rgb(127 29 29 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-950 {
    --tw-shadow-color: #450a0a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-950\/10 {
    --tw-shadow-color: rgb(69 10 10 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-950\/20 {
    --tw-shadow-color: rgb(69 10 10 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-950\/30 {
    --tw-shadow-color: rgb(69 10 10 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-950\/40 {
    --tw-shadow-color: rgb(69 10 10 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-950\/5 {
    --tw-shadow-color: rgb(69 10 10 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-950\/50 {
    --tw-shadow-color: rgb(69 10 10 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-950\/60 {
    --tw-shadow-color: rgb(69 10 10 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-950\/70 {
    --tw-shadow-color: rgb(69 10 10 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-950\/80 {
    --tw-shadow-color: rgb(69 10 10 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-red-950\/90 {
    --tw-shadow-color: rgb(69 10 10 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-100 {
    --tw-shadow-color: #ffe4e6;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-100\/10 {
    --tw-shadow-color: rgb(255 228 230 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-100\/20 {
    --tw-shadow-color: rgb(255 228 230 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-100\/30 {
    --tw-shadow-color: rgb(255 228 230 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-100\/40 {
    --tw-shadow-color: rgb(255 228 230 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-100\/5 {
    --tw-shadow-color: rgb(255 228 230 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-100\/50 {
    --tw-shadow-color: rgb(255 228 230 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-100\/60 {
    --tw-shadow-color: rgb(255 228 230 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-100\/70 {
    --tw-shadow-color: rgb(255 228 230 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-100\/80 {
    --tw-shadow-color: rgb(255 228 230 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-100\/90 {
    --tw-shadow-color: rgb(255 228 230 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-200 {
    --tw-shadow-color: #fecdd3;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-200\/10 {
    --tw-shadow-color: rgb(254 205 211 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-200\/20 {
    --tw-shadow-color: rgb(254 205 211 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-200\/30 {
    --tw-shadow-color: rgb(254 205 211 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-200\/40 {
    --tw-shadow-color: rgb(254 205 211 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-200\/5 {
    --tw-shadow-color: rgb(254 205 211 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-200\/50 {
    --tw-shadow-color: rgb(254 205 211 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-200\/60 {
    --tw-shadow-color: rgb(254 205 211 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-200\/70 {
    --tw-shadow-color: rgb(254 205 211 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-200\/80 {
    --tw-shadow-color: rgb(254 205 211 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-200\/90 {
    --tw-shadow-color: rgb(254 205 211 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-300 {
    --tw-shadow-color: #fda4af;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-300\/10 {
    --tw-shadow-color: rgb(253 164 175 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-300\/20 {
    --tw-shadow-color: rgb(253 164 175 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-300\/30 {
    --tw-shadow-color: rgb(253 164 175 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-300\/40 {
    --tw-shadow-color: rgb(253 164 175 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-300\/5 {
    --tw-shadow-color: rgb(253 164 175 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-300\/50 {
    --tw-shadow-color: rgb(253 164 175 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-300\/60 {
    --tw-shadow-color: rgb(253 164 175 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-300\/70 {
    --tw-shadow-color: rgb(253 164 175 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-300\/80 {
    --tw-shadow-color: rgb(253 164 175 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-300\/90 {
    --tw-shadow-color: rgb(253 164 175 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-400 {
    --tw-shadow-color: #fb7185;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-400\/10 {
    --tw-shadow-color: rgb(251 113 133 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-400\/20 {
    --tw-shadow-color: rgb(251 113 133 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-400\/30 {
    --tw-shadow-color: rgb(251 113 133 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-400\/40 {
    --tw-shadow-color: rgb(251 113 133 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-400\/5 {
    --tw-shadow-color: rgb(251 113 133 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-400\/50 {
    --tw-shadow-color: rgb(251 113 133 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-400\/60 {
    --tw-shadow-color: rgb(251 113 133 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-400\/70 {
    --tw-shadow-color: rgb(251 113 133 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-400\/80 {
    --tw-shadow-color: rgb(251 113 133 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-400\/90 {
    --tw-shadow-color: rgb(251 113 133 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-50 {
    --tw-shadow-color: #fff1f2;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-50\/10 {
    --tw-shadow-color: rgb(255 241 242 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-50\/20 {
    --tw-shadow-color: rgb(255 241 242 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-50\/30 {
    --tw-shadow-color: rgb(255 241 242 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-50\/40 {
    --tw-shadow-color: rgb(255 241 242 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-50\/5 {
    --tw-shadow-color: rgb(255 241 242 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-50\/50 {
    --tw-shadow-color: rgb(255 241 242 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-50\/60 {
    --tw-shadow-color: rgb(255 241 242 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-50\/70 {
    --tw-shadow-color: rgb(255 241 242 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-50\/80 {
    --tw-shadow-color: rgb(255 241 242 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-50\/90 {
    --tw-shadow-color: rgb(255 241 242 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-500 {
    --tw-shadow-color: #f43f5e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-500\/10 {
    --tw-shadow-color: rgb(244 63 94 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-500\/20 {
    --tw-shadow-color: rgb(244 63 94 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-500\/30 {
    --tw-shadow-color: rgb(244 63 94 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-500\/40 {
    --tw-shadow-color: rgb(244 63 94 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-500\/5 {
    --tw-shadow-color: rgb(244 63 94 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-500\/50 {
    --tw-shadow-color: rgb(244 63 94 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-500\/60 {
    --tw-shadow-color: rgb(244 63 94 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-500\/70 {
    --tw-shadow-color: rgb(244 63 94 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-500\/80 {
    --tw-shadow-color: rgb(244 63 94 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-500\/90 {
    --tw-shadow-color: rgb(244 63 94 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-600 {
    --tw-shadow-color: #e11d48;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-600\/10 {
    --tw-shadow-color: rgb(225 29 72 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-600\/20 {
    --tw-shadow-color: rgb(225 29 72 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-600\/30 {
    --tw-shadow-color: rgb(225 29 72 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-600\/40 {
    --tw-shadow-color: rgb(225 29 72 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-600\/5 {
    --tw-shadow-color: rgb(225 29 72 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-600\/50 {
    --tw-shadow-color: rgb(225 29 72 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-600\/60 {
    --tw-shadow-color: rgb(225 29 72 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-600\/70 {
    --tw-shadow-color: rgb(225 29 72 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-600\/80 {
    --tw-shadow-color: rgb(225 29 72 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-600\/90 {
    --tw-shadow-color: rgb(225 29 72 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-700 {
    --tw-shadow-color: #be123c;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-700\/10 {
    --tw-shadow-color: rgb(190 18 60 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-700\/20 {
    --tw-shadow-color: rgb(190 18 60 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-700\/30 {
    --tw-shadow-color: rgb(190 18 60 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-700\/40 {
    --tw-shadow-color: rgb(190 18 60 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-700\/5 {
    --tw-shadow-color: rgb(190 18 60 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-700\/50 {
    --tw-shadow-color: rgb(190 18 60 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-700\/60 {
    --tw-shadow-color: rgb(190 18 60 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-700\/70 {
    --tw-shadow-color: rgb(190 18 60 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-700\/80 {
    --tw-shadow-color: rgb(190 18 60 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-700\/90 {
    --tw-shadow-color: rgb(190 18 60 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-800 {
    --tw-shadow-color: #9f1239;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-800\/10 {
    --tw-shadow-color: rgb(159 18 57 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-800\/20 {
    --tw-shadow-color: rgb(159 18 57 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-800\/30 {
    --tw-shadow-color: rgb(159 18 57 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-800\/40 {
    --tw-shadow-color: rgb(159 18 57 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-800\/5 {
    --tw-shadow-color: rgb(159 18 57 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-800\/50 {
    --tw-shadow-color: rgb(159 18 57 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-800\/60 {
    --tw-shadow-color: rgb(159 18 57 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-800\/70 {
    --tw-shadow-color: rgb(159 18 57 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-800\/80 {
    --tw-shadow-color: rgb(159 18 57 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-800\/90 {
    --tw-shadow-color: rgb(159 18 57 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-900 {
    --tw-shadow-color: #881337;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-900\/10 {
    --tw-shadow-color: rgb(136 19 55 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-900\/20 {
    --tw-shadow-color: rgb(136 19 55 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-900\/30 {
    --tw-shadow-color: rgb(136 19 55 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-900\/40 {
    --tw-shadow-color: rgb(136 19 55 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-900\/5 {
    --tw-shadow-color: rgb(136 19 55 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-900\/50 {
    --tw-shadow-color: rgb(136 19 55 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-900\/60 {
    --tw-shadow-color: rgb(136 19 55 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-900\/70 {
    --tw-shadow-color: rgb(136 19 55 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-900\/80 {
    --tw-shadow-color: rgb(136 19 55 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-900\/90 {
    --tw-shadow-color: rgb(136 19 55 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-950 {
    --tw-shadow-color: #4c0519;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-950\/10 {
    --tw-shadow-color: rgb(76 5 25 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-950\/20 {
    --tw-shadow-color: rgb(76 5 25 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-950\/30 {
    --tw-shadow-color: rgb(76 5 25 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-950\/40 {
    --tw-shadow-color: rgb(76 5 25 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-950\/5 {
    --tw-shadow-color: rgb(76 5 25 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-950\/50 {
    --tw-shadow-color: rgb(76 5 25 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-950\/60 {
    --tw-shadow-color: rgb(76 5 25 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-950\/70 {
    --tw-shadow-color: rgb(76 5 25 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-950\/80 {
    --tw-shadow-color: rgb(76 5 25 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-rose-950\/90 {
    --tw-shadow-color: rgb(76 5 25 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-100 {
    --tw-shadow-color: #e0f2fe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-100\/10 {
    --tw-shadow-color: rgb(224 242 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-100\/20 {
    --tw-shadow-color: rgb(224 242 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-100\/30 {
    --tw-shadow-color: rgb(224 242 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-100\/40 {
    --tw-shadow-color: rgb(224 242 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-100\/5 {
    --tw-shadow-color: rgb(224 242 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-100\/50 {
    --tw-shadow-color: rgb(224 242 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-100\/60 {
    --tw-shadow-color: rgb(224 242 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-100\/70 {
    --tw-shadow-color: rgb(224 242 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-100\/80 {
    --tw-shadow-color: rgb(224 242 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-100\/90 {
    --tw-shadow-color: rgb(224 242 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-200 {
    --tw-shadow-color: #bae6fd;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-200\/10 {
    --tw-shadow-color: rgb(186 230 253 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-200\/20 {
    --tw-shadow-color: rgb(186 230 253 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-200\/30 {
    --tw-shadow-color: rgb(186 230 253 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-200\/40 {
    --tw-shadow-color: rgb(186 230 253 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-200\/5 {
    --tw-shadow-color: rgb(186 230 253 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-200\/50 {
    --tw-shadow-color: rgb(186 230 253 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-200\/60 {
    --tw-shadow-color: rgb(186 230 253 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-200\/70 {
    --tw-shadow-color: rgb(186 230 253 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-200\/80 {
    --tw-shadow-color: rgb(186 230 253 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-200\/90 {
    --tw-shadow-color: rgb(186 230 253 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-300 {
    --tw-shadow-color: #7dd3fc;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-300\/10 {
    --tw-shadow-color: rgb(125 211 252 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-300\/20 {
    --tw-shadow-color: rgb(125 211 252 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-300\/30 {
    --tw-shadow-color: rgb(125 211 252 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-300\/40 {
    --tw-shadow-color: rgb(125 211 252 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-300\/5 {
    --tw-shadow-color: rgb(125 211 252 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-300\/50 {
    --tw-shadow-color: rgb(125 211 252 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-300\/60 {
    --tw-shadow-color: rgb(125 211 252 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-300\/70 {
    --tw-shadow-color: rgb(125 211 252 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-300\/80 {
    --tw-shadow-color: rgb(125 211 252 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-300\/90 {
    --tw-shadow-color: rgb(125 211 252 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-400 {
    --tw-shadow-color: #38bdf8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-400\/10 {
    --tw-shadow-color: rgb(56 189 248 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-400\/20 {
    --tw-shadow-color: rgb(56 189 248 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-400\/30 {
    --tw-shadow-color: rgb(56 189 248 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-400\/40 {
    --tw-shadow-color: rgb(56 189 248 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-400\/5 {
    --tw-shadow-color: rgb(56 189 248 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-400\/50 {
    --tw-shadow-color: rgb(56 189 248 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-400\/60 {
    --tw-shadow-color: rgb(56 189 248 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-400\/70 {
    --tw-shadow-color: rgb(56 189 248 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-400\/80 {
    --tw-shadow-color: rgb(56 189 248 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-400\/90 {
    --tw-shadow-color: rgb(56 189 248 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-50 {
    --tw-shadow-color: #f0f9ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-50\/10 {
    --tw-shadow-color: rgb(240 249 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-50\/20 {
    --tw-shadow-color: rgb(240 249 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-50\/30 {
    --tw-shadow-color: rgb(240 249 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-50\/40 {
    --tw-shadow-color: rgb(240 249 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-50\/5 {
    --tw-shadow-color: rgb(240 249 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-50\/50 {
    --tw-shadow-color: rgb(240 249 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-50\/60 {
    --tw-shadow-color: rgb(240 249 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-50\/70 {
    --tw-shadow-color: rgb(240 249 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-50\/80 {
    --tw-shadow-color: rgb(240 249 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-50\/90 {
    --tw-shadow-color: rgb(240 249 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-500 {
    --tw-shadow-color: #0ea5e9;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-500\/10 {
    --tw-shadow-color: rgb(14 165 233 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-500\/20 {
    --tw-shadow-color: rgb(14 165 233 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-500\/30 {
    --tw-shadow-color: rgb(14 165 233 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-500\/40 {
    --tw-shadow-color: rgb(14 165 233 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-500\/5 {
    --tw-shadow-color: rgb(14 165 233 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-500\/50 {
    --tw-shadow-color: rgb(14 165 233 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-500\/60 {
    --tw-shadow-color: rgb(14 165 233 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-500\/70 {
    --tw-shadow-color: rgb(14 165 233 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-500\/80 {
    --tw-shadow-color: rgb(14 165 233 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-500\/90 {
    --tw-shadow-color: rgb(14 165 233 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-600 {
    --tw-shadow-color: #0284c7;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-600\/10 {
    --tw-shadow-color: rgb(2 132 199 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-600\/20 {
    --tw-shadow-color: rgb(2 132 199 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-600\/30 {
    --tw-shadow-color: rgb(2 132 199 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-600\/40 {
    --tw-shadow-color: rgb(2 132 199 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-600\/5 {
    --tw-shadow-color: rgb(2 132 199 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-600\/50 {
    --tw-shadow-color: rgb(2 132 199 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-600\/60 {
    --tw-shadow-color: rgb(2 132 199 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-600\/70 {
    --tw-shadow-color: rgb(2 132 199 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-600\/80 {
    --tw-shadow-color: rgb(2 132 199 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-600\/90 {
    --tw-shadow-color: rgb(2 132 199 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-700 {
    --tw-shadow-color: #0369a1;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-700\/10 {
    --tw-shadow-color: rgb(3 105 161 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-700\/20 {
    --tw-shadow-color: rgb(3 105 161 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-700\/30 {
    --tw-shadow-color: rgb(3 105 161 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-700\/40 {
    --tw-shadow-color: rgb(3 105 161 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-700\/5 {
    --tw-shadow-color: rgb(3 105 161 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-700\/50 {
    --tw-shadow-color: rgb(3 105 161 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-700\/60 {
    --tw-shadow-color: rgb(3 105 161 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-700\/70 {
    --tw-shadow-color: rgb(3 105 161 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-700\/80 {
    --tw-shadow-color: rgb(3 105 161 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-700\/90 {
    --tw-shadow-color: rgb(3 105 161 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-800 {
    --tw-shadow-color: #075985;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-800\/10 {
    --tw-shadow-color: rgb(7 89 133 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-800\/20 {
    --tw-shadow-color: rgb(7 89 133 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-800\/30 {
    --tw-shadow-color: rgb(7 89 133 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-800\/40 {
    --tw-shadow-color: rgb(7 89 133 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-800\/5 {
    --tw-shadow-color: rgb(7 89 133 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-800\/50 {
    --tw-shadow-color: rgb(7 89 133 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-800\/60 {
    --tw-shadow-color: rgb(7 89 133 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-800\/70 {
    --tw-shadow-color: rgb(7 89 133 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-800\/80 {
    --tw-shadow-color: rgb(7 89 133 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-800\/90 {
    --tw-shadow-color: rgb(7 89 133 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-900 {
    --tw-shadow-color: #0c4a6e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-900\/10 {
    --tw-shadow-color: rgb(12 74 110 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-900\/20 {
    --tw-shadow-color: rgb(12 74 110 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-900\/30 {
    --tw-shadow-color: rgb(12 74 110 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-900\/40 {
    --tw-shadow-color: rgb(12 74 110 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-900\/5 {
    --tw-shadow-color: rgb(12 74 110 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-900\/50 {
    --tw-shadow-color: rgb(12 74 110 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-900\/60 {
    --tw-shadow-color: rgb(12 74 110 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-900\/70 {
    --tw-shadow-color: rgb(12 74 110 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-900\/80 {
    --tw-shadow-color: rgb(12 74 110 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-900\/90 {
    --tw-shadow-color: rgb(12 74 110 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-950 {
    --tw-shadow-color: #082f49;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-950\/10 {
    --tw-shadow-color: rgb(8 47 73 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-950\/20 {
    --tw-shadow-color: rgb(8 47 73 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-950\/30 {
    --tw-shadow-color: rgb(8 47 73 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-950\/40 {
    --tw-shadow-color: rgb(8 47 73 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-950\/5 {
    --tw-shadow-color: rgb(8 47 73 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-950\/50 {
    --tw-shadow-color: rgb(8 47 73 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-950\/60 {
    --tw-shadow-color: rgb(8 47 73 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-950\/70 {
    --tw-shadow-color: rgb(8 47 73 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-950\/80 {
    --tw-shadow-color: rgb(8 47 73 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-sky-950\/90 {
    --tw-shadow-color: rgb(8 47 73 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-100 {
    --tw-shadow-color: #f1f5f9;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-100\/10 {
    --tw-shadow-color: rgb(241 245 249 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-100\/20 {
    --tw-shadow-color: rgb(241 245 249 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-100\/30 {
    --tw-shadow-color: rgb(241 245 249 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-100\/40 {
    --tw-shadow-color: rgb(241 245 249 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-100\/5 {
    --tw-shadow-color: rgb(241 245 249 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-100\/50 {
    --tw-shadow-color: rgb(241 245 249 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-100\/60 {
    --tw-shadow-color: rgb(241 245 249 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-100\/70 {
    --tw-shadow-color: rgb(241 245 249 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-100\/80 {
    --tw-shadow-color: rgb(241 245 249 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-100\/90 {
    --tw-shadow-color: rgb(241 245 249 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-200 {
    --tw-shadow-color: #e2e8f0;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-200\/10 {
    --tw-shadow-color: rgb(226 232 240 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-200\/20 {
    --tw-shadow-color: rgb(226 232 240 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-200\/30 {
    --tw-shadow-color: rgb(226 232 240 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-200\/40 {
    --tw-shadow-color: rgb(226 232 240 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-200\/5 {
    --tw-shadow-color: rgb(226 232 240 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-200\/50 {
    --tw-shadow-color: rgb(226 232 240 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-200\/60 {
    --tw-shadow-color: rgb(226 232 240 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-200\/70 {
    --tw-shadow-color: rgb(226 232 240 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-200\/80 {
    --tw-shadow-color: rgb(226 232 240 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-200\/90 {
    --tw-shadow-color: rgb(226 232 240 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-300 {
    --tw-shadow-color: #cbd5e1;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-300\/10 {
    --tw-shadow-color: rgb(203 213 225 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-300\/20 {
    --tw-shadow-color: rgb(203 213 225 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-300\/30 {
    --tw-shadow-color: rgb(203 213 225 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-300\/40 {
    --tw-shadow-color: rgb(203 213 225 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-300\/5 {
    --tw-shadow-color: rgb(203 213 225 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-300\/50 {
    --tw-shadow-color: rgb(203 213 225 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-300\/60 {
    --tw-shadow-color: rgb(203 213 225 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-300\/70 {
    --tw-shadow-color: rgb(203 213 225 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-300\/80 {
    --tw-shadow-color: rgb(203 213 225 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-300\/90 {
    --tw-shadow-color: rgb(203 213 225 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-400 {
    --tw-shadow-color: #94a3b8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-400\/10 {
    --tw-shadow-color: rgb(148 163 184 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-400\/20 {
    --tw-shadow-color: rgb(148 163 184 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-400\/30 {
    --tw-shadow-color: rgb(148 163 184 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-400\/40 {
    --tw-shadow-color: rgb(148 163 184 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-400\/5 {
    --tw-shadow-color: rgb(148 163 184 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-400\/50 {
    --tw-shadow-color: rgb(148 163 184 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-400\/60 {
    --tw-shadow-color: rgb(148 163 184 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-400\/70 {
    --tw-shadow-color: rgb(148 163 184 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-400\/80 {
    --tw-shadow-color: rgb(148 163 184 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-400\/90 {
    --tw-shadow-color: rgb(148 163 184 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-50 {
    --tw-shadow-color: #f8fafc;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-50\/10 {
    --tw-shadow-color: rgb(248 250 252 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-50\/20 {
    --tw-shadow-color: rgb(248 250 252 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-50\/30 {
    --tw-shadow-color: rgb(248 250 252 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-50\/40 {
    --tw-shadow-color: rgb(248 250 252 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-50\/5 {
    --tw-shadow-color: rgb(248 250 252 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-50\/50 {
    --tw-shadow-color: rgb(248 250 252 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-50\/60 {
    --tw-shadow-color: rgb(248 250 252 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-50\/70 {
    --tw-shadow-color: rgb(248 250 252 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-50\/80 {
    --tw-shadow-color: rgb(248 250 252 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-50\/90 {
    --tw-shadow-color: rgb(248 250 252 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-500 {
    --tw-shadow-color: #64748b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-500\/10 {
    --tw-shadow-color: rgb(100 116 139 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-500\/20 {
    --tw-shadow-color: rgb(100 116 139 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-500\/30 {
    --tw-shadow-color: rgb(100 116 139 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-500\/40 {
    --tw-shadow-color: rgb(100 116 139 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-500\/5 {
    --tw-shadow-color: rgb(100 116 139 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-500\/50 {
    --tw-shadow-color: rgb(100 116 139 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-500\/60 {
    --tw-shadow-color: rgb(100 116 139 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-500\/70 {
    --tw-shadow-color: rgb(100 116 139 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-500\/80 {
    --tw-shadow-color: rgb(100 116 139 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-500\/90 {
    --tw-shadow-color: rgb(100 116 139 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-600 {
    --tw-shadow-color: #475569;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-600\/10 {
    --tw-shadow-color: rgb(71 85 105 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-600\/20 {
    --tw-shadow-color: rgb(71 85 105 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-600\/30 {
    --tw-shadow-color: rgb(71 85 105 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-600\/40 {
    --tw-shadow-color: rgb(71 85 105 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-600\/5 {
    --tw-shadow-color: rgb(71 85 105 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-600\/50 {
    --tw-shadow-color: rgb(71 85 105 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-600\/60 {
    --tw-shadow-color: rgb(71 85 105 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-600\/70 {
    --tw-shadow-color: rgb(71 85 105 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-600\/80 {
    --tw-shadow-color: rgb(71 85 105 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-600\/90 {
    --tw-shadow-color: rgb(71 85 105 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-700 {
    --tw-shadow-color: #334155;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-700\/10 {
    --tw-shadow-color: rgb(51 65 85 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-700\/20 {
    --tw-shadow-color: rgb(51 65 85 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-700\/30 {
    --tw-shadow-color: rgb(51 65 85 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-700\/40 {
    --tw-shadow-color: rgb(51 65 85 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-700\/5 {
    --tw-shadow-color: rgb(51 65 85 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-700\/50 {
    --tw-shadow-color: rgb(51 65 85 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-700\/60 {
    --tw-shadow-color: rgb(51 65 85 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-700\/70 {
    --tw-shadow-color: rgb(51 65 85 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-700\/80 {
    --tw-shadow-color: rgb(51 65 85 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-700\/90 {
    --tw-shadow-color: rgb(51 65 85 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-800 {
    --tw-shadow-color: #1e293b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-800\/10 {
    --tw-shadow-color: rgb(30 41 59 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-800\/20 {
    --tw-shadow-color: rgb(30 41 59 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-800\/30 {
    --tw-shadow-color: rgb(30 41 59 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-800\/40 {
    --tw-shadow-color: rgb(30 41 59 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-800\/5 {
    --tw-shadow-color: rgb(30 41 59 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-800\/50 {
    --tw-shadow-color: rgb(30 41 59 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-800\/60 {
    --tw-shadow-color: rgb(30 41 59 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-800\/70 {
    --tw-shadow-color: rgb(30 41 59 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-800\/80 {
    --tw-shadow-color: rgb(30 41 59 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-800\/90 {
    --tw-shadow-color: rgb(30 41 59 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-900 {
    --tw-shadow-color: #0f172a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-900\/10 {
    --tw-shadow-color: rgb(15 23 42 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-900\/20 {
    --tw-shadow-color: rgb(15 23 42 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-900\/30 {
    --tw-shadow-color: rgb(15 23 42 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-900\/40 {
    --tw-shadow-color: rgb(15 23 42 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-900\/5 {
    --tw-shadow-color: rgb(15 23 42 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-900\/50 {
    --tw-shadow-color: rgb(15 23 42 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-900\/60 {
    --tw-shadow-color: rgb(15 23 42 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-900\/70 {
    --tw-shadow-color: rgb(15 23 42 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-900\/80 {
    --tw-shadow-color: rgb(15 23 42 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-900\/90 {
    --tw-shadow-color: rgb(15 23 42 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-950 {
    --tw-shadow-color: #020617;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-950\/10 {
    --tw-shadow-color: rgb(2 6 23 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-950\/20 {
    --tw-shadow-color: rgb(2 6 23 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-950\/30 {
    --tw-shadow-color: rgb(2 6 23 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-950\/40 {
    --tw-shadow-color: rgb(2 6 23 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-950\/5 {
    --tw-shadow-color: rgb(2 6 23 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-950\/50 {
    --tw-shadow-color: rgb(2 6 23 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-950\/60 {
    --tw-shadow-color: rgb(2 6 23 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-950\/70 {
    --tw-shadow-color: rgb(2 6 23 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-950\/80 {
    --tw-shadow-color: rgb(2 6 23 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-slate-950\/90 {
    --tw-shadow-color: rgb(2 6 23 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-100 {
    --tw-shadow-color: #f5f5f4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-100\/10 {
    --tw-shadow-color: rgb(245 245 244 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-100\/20 {
    --tw-shadow-color: rgb(245 245 244 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-100\/30 {
    --tw-shadow-color: rgb(245 245 244 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-100\/40 {
    --tw-shadow-color: rgb(245 245 244 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-100\/5 {
    --tw-shadow-color: rgb(245 245 244 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-100\/50 {
    --tw-shadow-color: rgb(245 245 244 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-100\/60 {
    --tw-shadow-color: rgb(245 245 244 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-100\/70 {
    --tw-shadow-color: rgb(245 245 244 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-100\/80 {
    --tw-shadow-color: rgb(245 245 244 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-100\/90 {
    --tw-shadow-color: rgb(245 245 244 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-200 {
    --tw-shadow-color: #e7e5e4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-200\/10 {
    --tw-shadow-color: rgb(231 229 228 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-200\/20 {
    --tw-shadow-color: rgb(231 229 228 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-200\/30 {
    --tw-shadow-color: rgb(231 229 228 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-200\/40 {
    --tw-shadow-color: rgb(231 229 228 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-200\/5 {
    --tw-shadow-color: rgb(231 229 228 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-200\/50 {
    --tw-shadow-color: rgb(231 229 228 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-200\/60 {
    --tw-shadow-color: rgb(231 229 228 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-200\/70 {
    --tw-shadow-color: rgb(231 229 228 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-200\/80 {
    --tw-shadow-color: rgb(231 229 228 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-200\/90 {
    --tw-shadow-color: rgb(231 229 228 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-300 {
    --tw-shadow-color: #d6d3d1;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-300\/10 {
    --tw-shadow-color: rgb(214 211 209 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-300\/20 {
    --tw-shadow-color: rgb(214 211 209 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-300\/30 {
    --tw-shadow-color: rgb(214 211 209 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-300\/40 {
    --tw-shadow-color: rgb(214 211 209 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-300\/5 {
    --tw-shadow-color: rgb(214 211 209 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-300\/50 {
    --tw-shadow-color: rgb(214 211 209 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-300\/60 {
    --tw-shadow-color: rgb(214 211 209 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-300\/70 {
    --tw-shadow-color: rgb(214 211 209 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-300\/80 {
    --tw-shadow-color: rgb(214 211 209 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-300\/90 {
    --tw-shadow-color: rgb(214 211 209 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-400 {
    --tw-shadow-color: #a8a29e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-400\/10 {
    --tw-shadow-color: rgb(168 162 158 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-400\/20 {
    --tw-shadow-color: rgb(168 162 158 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-400\/30 {
    --tw-shadow-color: rgb(168 162 158 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-400\/40 {
    --tw-shadow-color: rgb(168 162 158 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-400\/5 {
    --tw-shadow-color: rgb(168 162 158 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-400\/50 {
    --tw-shadow-color: rgb(168 162 158 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-400\/60 {
    --tw-shadow-color: rgb(168 162 158 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-400\/70 {
    --tw-shadow-color: rgb(168 162 158 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-400\/80 {
    --tw-shadow-color: rgb(168 162 158 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-400\/90 {
    --tw-shadow-color: rgb(168 162 158 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-50 {
    --tw-shadow-color: #fafaf9;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-50\/10 {
    --tw-shadow-color: rgb(250 250 249 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-50\/20 {
    --tw-shadow-color: rgb(250 250 249 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-50\/30 {
    --tw-shadow-color: rgb(250 250 249 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-50\/40 {
    --tw-shadow-color: rgb(250 250 249 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-50\/5 {
    --tw-shadow-color: rgb(250 250 249 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-50\/50 {
    --tw-shadow-color: rgb(250 250 249 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-50\/60 {
    --tw-shadow-color: rgb(250 250 249 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-50\/70 {
    --tw-shadow-color: rgb(250 250 249 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-50\/80 {
    --tw-shadow-color: rgb(250 250 249 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-50\/90 {
    --tw-shadow-color: rgb(250 250 249 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-500 {
    --tw-shadow-color: #78716c;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-500\/10 {
    --tw-shadow-color: rgb(120 113 108 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-500\/20 {
    --tw-shadow-color: rgb(120 113 108 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-500\/30 {
    --tw-shadow-color: rgb(120 113 108 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-500\/40 {
    --tw-shadow-color: rgb(120 113 108 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-500\/5 {
    --tw-shadow-color: rgb(120 113 108 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-500\/50 {
    --tw-shadow-color: rgb(120 113 108 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-500\/60 {
    --tw-shadow-color: rgb(120 113 108 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-500\/70 {
    --tw-shadow-color: rgb(120 113 108 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-500\/80 {
    --tw-shadow-color: rgb(120 113 108 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-500\/90 {
    --tw-shadow-color: rgb(120 113 108 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-600 {
    --tw-shadow-color: #57534e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-600\/10 {
    --tw-shadow-color: rgb(87 83 78 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-600\/20 {
    --tw-shadow-color: rgb(87 83 78 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-600\/30 {
    --tw-shadow-color: rgb(87 83 78 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-600\/40 {
    --tw-shadow-color: rgb(87 83 78 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-600\/5 {
    --tw-shadow-color: rgb(87 83 78 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-600\/50 {
    --tw-shadow-color: rgb(87 83 78 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-600\/60 {
    --tw-shadow-color: rgb(87 83 78 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-600\/70 {
    --tw-shadow-color: rgb(87 83 78 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-600\/80 {
    --tw-shadow-color: rgb(87 83 78 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-600\/90 {
    --tw-shadow-color: rgb(87 83 78 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-700 {
    --tw-shadow-color: #44403c;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-700\/10 {
    --tw-shadow-color: rgb(68 64 60 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-700\/20 {
    --tw-shadow-color: rgb(68 64 60 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-700\/30 {
    --tw-shadow-color: rgb(68 64 60 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-700\/40 {
    --tw-shadow-color: rgb(68 64 60 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-700\/5 {
    --tw-shadow-color: rgb(68 64 60 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-700\/50 {
    --tw-shadow-color: rgb(68 64 60 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-700\/60 {
    --tw-shadow-color: rgb(68 64 60 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-700\/70 {
    --tw-shadow-color: rgb(68 64 60 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-700\/80 {
    --tw-shadow-color: rgb(68 64 60 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-700\/90 {
    --tw-shadow-color: rgb(68 64 60 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-800 {
    --tw-shadow-color: #292524;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-800\/10 {
    --tw-shadow-color: rgb(41 37 36 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-800\/20 {
    --tw-shadow-color: rgb(41 37 36 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-800\/30 {
    --tw-shadow-color: rgb(41 37 36 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-800\/40 {
    --tw-shadow-color: rgb(41 37 36 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-800\/5 {
    --tw-shadow-color: rgb(41 37 36 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-800\/50 {
    --tw-shadow-color: rgb(41 37 36 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-800\/60 {
    --tw-shadow-color: rgb(41 37 36 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-800\/70 {
    --tw-shadow-color: rgb(41 37 36 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-800\/80 {
    --tw-shadow-color: rgb(41 37 36 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-800\/90 {
    --tw-shadow-color: rgb(41 37 36 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-900 {
    --tw-shadow-color: #1c1917;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-900\/10 {
    --tw-shadow-color: rgb(28 25 23 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-900\/20 {
    --tw-shadow-color: rgb(28 25 23 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-900\/30 {
    --tw-shadow-color: rgb(28 25 23 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-900\/40 {
    --tw-shadow-color: rgb(28 25 23 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-900\/5 {
    --tw-shadow-color: rgb(28 25 23 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-900\/50 {
    --tw-shadow-color: rgb(28 25 23 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-900\/60 {
    --tw-shadow-color: rgb(28 25 23 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-900\/70 {
    --tw-shadow-color: rgb(28 25 23 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-900\/80 {
    --tw-shadow-color: rgb(28 25 23 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-900\/90 {
    --tw-shadow-color: rgb(28 25 23 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-950 {
    --tw-shadow-color: #0c0a09;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-950\/10 {
    --tw-shadow-color: rgb(12 10 9 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-950\/20 {
    --tw-shadow-color: rgb(12 10 9 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-950\/30 {
    --tw-shadow-color: rgb(12 10 9 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-950\/40 {
    --tw-shadow-color: rgb(12 10 9 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-950\/5 {
    --tw-shadow-color: rgb(12 10 9 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-950\/50 {
    --tw-shadow-color: rgb(12 10 9 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-950\/60 {
    --tw-shadow-color: rgb(12 10 9 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-950\/70 {
    --tw-shadow-color: rgb(12 10 9 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-950\/80 {
    --tw-shadow-color: rgb(12 10 9 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-stone-950\/90 {
    --tw-shadow-color: rgb(12 10 9 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-100 {
    --tw-shadow-color: #ccfbf1;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-100\/10 {
    --tw-shadow-color: rgb(204 251 241 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-100\/20 {
    --tw-shadow-color: rgb(204 251 241 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-100\/30 {
    --tw-shadow-color: rgb(204 251 241 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-100\/40 {
    --tw-shadow-color: rgb(204 251 241 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-100\/5 {
    --tw-shadow-color: rgb(204 251 241 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-100\/50 {
    --tw-shadow-color: rgb(204 251 241 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-100\/60 {
    --tw-shadow-color: rgb(204 251 241 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-100\/70 {
    --tw-shadow-color: rgb(204 251 241 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-100\/80 {
    --tw-shadow-color: rgb(204 251 241 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-100\/90 {
    --tw-shadow-color: rgb(204 251 241 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-200 {
    --tw-shadow-color: #99f6e4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-200\/10 {
    --tw-shadow-color: rgb(153 246 228 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-200\/20 {
    --tw-shadow-color: rgb(153 246 228 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-200\/30 {
    --tw-shadow-color: rgb(153 246 228 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-200\/40 {
    --tw-shadow-color: rgb(153 246 228 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-200\/5 {
    --tw-shadow-color: rgb(153 246 228 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-200\/50 {
    --tw-shadow-color: rgb(153 246 228 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-200\/60 {
    --tw-shadow-color: rgb(153 246 228 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-200\/70 {
    --tw-shadow-color: rgb(153 246 228 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-200\/80 {
    --tw-shadow-color: rgb(153 246 228 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-200\/90 {
    --tw-shadow-color: rgb(153 246 228 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-300 {
    --tw-shadow-color: #5eead4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-300\/10 {
    --tw-shadow-color: rgb(94 234 212 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-300\/20 {
    --tw-shadow-color: rgb(94 234 212 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-300\/30 {
    --tw-shadow-color: rgb(94 234 212 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-300\/40 {
    --tw-shadow-color: rgb(94 234 212 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-300\/5 {
    --tw-shadow-color: rgb(94 234 212 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-300\/50 {
    --tw-shadow-color: rgb(94 234 212 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-300\/60 {
    --tw-shadow-color: rgb(94 234 212 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-300\/70 {
    --tw-shadow-color: rgb(94 234 212 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-300\/80 {
    --tw-shadow-color: rgb(94 234 212 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-300\/90 {
    --tw-shadow-color: rgb(94 234 212 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-400 {
    --tw-shadow-color: #2dd4bf;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-400\/10 {
    --tw-shadow-color: rgb(45 212 191 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-400\/20 {
    --tw-shadow-color: rgb(45 212 191 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-400\/30 {
    --tw-shadow-color: rgb(45 212 191 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-400\/40 {
    --tw-shadow-color: rgb(45 212 191 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-400\/5 {
    --tw-shadow-color: rgb(45 212 191 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-400\/50 {
    --tw-shadow-color: rgb(45 212 191 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-400\/60 {
    --tw-shadow-color: rgb(45 212 191 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-400\/70 {
    --tw-shadow-color: rgb(45 212 191 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-400\/80 {
    --tw-shadow-color: rgb(45 212 191 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-400\/90 {
    --tw-shadow-color: rgb(45 212 191 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-50 {
    --tw-shadow-color: #f0fdfa;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-50\/10 {
    --tw-shadow-color: rgb(240 253 250 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-50\/20 {
    --tw-shadow-color: rgb(240 253 250 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-50\/30 {
    --tw-shadow-color: rgb(240 253 250 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-50\/40 {
    --tw-shadow-color: rgb(240 253 250 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-50\/5 {
    --tw-shadow-color: rgb(240 253 250 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-50\/50 {
    --tw-shadow-color: rgb(240 253 250 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-50\/60 {
    --tw-shadow-color: rgb(240 253 250 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-50\/70 {
    --tw-shadow-color: rgb(240 253 250 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-50\/80 {
    --tw-shadow-color: rgb(240 253 250 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-50\/90 {
    --tw-shadow-color: rgb(240 253 250 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-500 {
    --tw-shadow-color: #14b8a6;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-500\/10 {
    --tw-shadow-color: rgb(20 184 166 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-500\/20 {
    --tw-shadow-color: rgb(20 184 166 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-500\/30 {
    --tw-shadow-color: rgb(20 184 166 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-500\/40 {
    --tw-shadow-color: rgb(20 184 166 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-500\/5 {
    --tw-shadow-color: rgb(20 184 166 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-500\/50 {
    --tw-shadow-color: rgb(20 184 166 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-500\/60 {
    --tw-shadow-color: rgb(20 184 166 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-500\/70 {
    --tw-shadow-color: rgb(20 184 166 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-500\/80 {
    --tw-shadow-color: rgb(20 184 166 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-500\/90 {
    --tw-shadow-color: rgb(20 184 166 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-600 {
    --tw-shadow-color: #0d9488;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-600\/10 {
    --tw-shadow-color: rgb(13 148 136 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-600\/20 {
    --tw-shadow-color: rgb(13 148 136 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-600\/30 {
    --tw-shadow-color: rgb(13 148 136 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-600\/40 {
    --tw-shadow-color: rgb(13 148 136 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-600\/5 {
    --tw-shadow-color: rgb(13 148 136 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-600\/50 {
    --tw-shadow-color: rgb(13 148 136 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-600\/60 {
    --tw-shadow-color: rgb(13 148 136 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-600\/70 {
    --tw-shadow-color: rgb(13 148 136 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-600\/80 {
    --tw-shadow-color: rgb(13 148 136 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-600\/90 {
    --tw-shadow-color: rgb(13 148 136 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-700 {
    --tw-shadow-color: #0f766e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-700\/10 {
    --tw-shadow-color: rgb(15 118 110 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-700\/20 {
    --tw-shadow-color: rgb(15 118 110 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-700\/30 {
    --tw-shadow-color: rgb(15 118 110 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-700\/40 {
    --tw-shadow-color: rgb(15 118 110 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-700\/5 {
    --tw-shadow-color: rgb(15 118 110 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-700\/50 {
    --tw-shadow-color: rgb(15 118 110 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-700\/60 {
    --tw-shadow-color: rgb(15 118 110 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-700\/70 {
    --tw-shadow-color: rgb(15 118 110 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-700\/80 {
    --tw-shadow-color: rgb(15 118 110 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-700\/90 {
    --tw-shadow-color: rgb(15 118 110 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-800 {
    --tw-shadow-color: #115e59;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-800\/10 {
    --tw-shadow-color: rgb(17 94 89 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-800\/20 {
    --tw-shadow-color: rgb(17 94 89 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-800\/30 {
    --tw-shadow-color: rgb(17 94 89 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-800\/40 {
    --tw-shadow-color: rgb(17 94 89 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-800\/5 {
    --tw-shadow-color: rgb(17 94 89 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-800\/50 {
    --tw-shadow-color: rgb(17 94 89 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-800\/60 {
    --tw-shadow-color: rgb(17 94 89 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-800\/70 {
    --tw-shadow-color: rgb(17 94 89 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-800\/80 {
    --tw-shadow-color: rgb(17 94 89 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-800\/90 {
    --tw-shadow-color: rgb(17 94 89 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-900 {
    --tw-shadow-color: #134e4a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-900\/10 {
    --tw-shadow-color: rgb(19 78 74 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-900\/20 {
    --tw-shadow-color: rgb(19 78 74 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-900\/30 {
    --tw-shadow-color: rgb(19 78 74 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-900\/40 {
    --tw-shadow-color: rgb(19 78 74 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-900\/5 {
    --tw-shadow-color: rgb(19 78 74 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-900\/50 {
    --tw-shadow-color: rgb(19 78 74 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-900\/60 {
    --tw-shadow-color: rgb(19 78 74 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-900\/70 {
    --tw-shadow-color: rgb(19 78 74 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-900\/80 {
    --tw-shadow-color: rgb(19 78 74 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-900\/90 {
    --tw-shadow-color: rgb(19 78 74 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-950 {
    --tw-shadow-color: #042f2e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-950\/10 {
    --tw-shadow-color: rgb(4 47 46 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-950\/20 {
    --tw-shadow-color: rgb(4 47 46 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-950\/30 {
    --tw-shadow-color: rgb(4 47 46 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-950\/40 {
    --tw-shadow-color: rgb(4 47 46 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-950\/5 {
    --tw-shadow-color: rgb(4 47 46 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-950\/50 {
    --tw-shadow-color: rgb(4 47 46 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-950\/60 {
    --tw-shadow-color: rgb(4 47 46 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-950\/70 {
    --tw-shadow-color: rgb(4 47 46 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-950\/80 {
    --tw-shadow-color: rgb(4 47 46 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-teal-950\/90 {
    --tw-shadow-color: rgb(4 47 46 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-100 {
    --tw-shadow-color: #ede9fe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-100\/10 {
    --tw-shadow-color: rgb(237 233 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-100\/20 {
    --tw-shadow-color: rgb(237 233 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-100\/30 {
    --tw-shadow-color: rgb(237 233 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-100\/40 {
    --tw-shadow-color: rgb(237 233 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-100\/5 {
    --tw-shadow-color: rgb(237 233 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-100\/50 {
    --tw-shadow-color: rgb(237 233 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-100\/60 {
    --tw-shadow-color: rgb(237 233 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-100\/70 {
    --tw-shadow-color: rgb(237 233 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-100\/80 {
    --tw-shadow-color: rgb(237 233 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-100\/90 {
    --tw-shadow-color: rgb(237 233 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-200 {
    --tw-shadow-color: #ddd6fe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-200\/10 {
    --tw-shadow-color: rgb(221 214 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-200\/20 {
    --tw-shadow-color: rgb(221 214 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-200\/30 {
    --tw-shadow-color: rgb(221 214 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-200\/40 {
    --tw-shadow-color: rgb(221 214 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-200\/5 {
    --tw-shadow-color: rgb(221 214 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-200\/50 {
    --tw-shadow-color: rgb(221 214 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-200\/60 {
    --tw-shadow-color: rgb(221 214 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-200\/70 {
    --tw-shadow-color: rgb(221 214 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-200\/80 {
    --tw-shadow-color: rgb(221 214 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-200\/90 {
    --tw-shadow-color: rgb(221 214 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-300 {
    --tw-shadow-color: #c4b5fd;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-300\/10 {
    --tw-shadow-color: rgb(196 181 253 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-300\/20 {
    --tw-shadow-color: rgb(196 181 253 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-300\/30 {
    --tw-shadow-color: rgb(196 181 253 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-300\/40 {
    --tw-shadow-color: rgb(196 181 253 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-300\/5 {
    --tw-shadow-color: rgb(196 181 253 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-300\/50 {
    --tw-shadow-color: rgb(196 181 253 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-300\/60 {
    --tw-shadow-color: rgb(196 181 253 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-300\/70 {
    --tw-shadow-color: rgb(196 181 253 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-300\/80 {
    --tw-shadow-color: rgb(196 181 253 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-300\/90 {
    --tw-shadow-color: rgb(196 181 253 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-400 {
    --tw-shadow-color: #a78bfa;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-400\/10 {
    --tw-shadow-color: rgb(167 139 250 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-400\/20 {
    --tw-shadow-color: rgb(167 139 250 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-400\/30 {
    --tw-shadow-color: rgb(167 139 250 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-400\/40 {
    --tw-shadow-color: rgb(167 139 250 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-400\/5 {
    --tw-shadow-color: rgb(167 139 250 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-400\/50 {
    --tw-shadow-color: rgb(167 139 250 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-400\/60 {
    --tw-shadow-color: rgb(167 139 250 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-400\/70 {
    --tw-shadow-color: rgb(167 139 250 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-400\/80 {
    --tw-shadow-color: rgb(167 139 250 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-400\/90 {
    --tw-shadow-color: rgb(167 139 250 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-50 {
    --tw-shadow-color: #f5f3ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-50\/10 {
    --tw-shadow-color: rgb(245 243 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-50\/20 {
    --tw-shadow-color: rgb(245 243 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-50\/30 {
    --tw-shadow-color: rgb(245 243 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-50\/40 {
    --tw-shadow-color: rgb(245 243 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-50\/5 {
    --tw-shadow-color: rgb(245 243 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-50\/50 {
    --tw-shadow-color: rgb(245 243 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-50\/60 {
    --tw-shadow-color: rgb(245 243 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-50\/70 {
    --tw-shadow-color: rgb(245 243 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-50\/80 {
    --tw-shadow-color: rgb(245 243 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-50\/90 {
    --tw-shadow-color: rgb(245 243 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-500 {
    --tw-shadow-color: #8b5cf6;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-500\/10 {
    --tw-shadow-color: rgb(139 92 246 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-500\/20 {
    --tw-shadow-color: rgb(139 92 246 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-500\/30 {
    --tw-shadow-color: rgb(139 92 246 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-500\/40 {
    --tw-shadow-color: rgb(139 92 246 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-500\/5 {
    --tw-shadow-color: rgb(139 92 246 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-500\/50 {
    --tw-shadow-color: rgb(139 92 246 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-500\/60 {
    --tw-shadow-color: rgb(139 92 246 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-500\/70 {
    --tw-shadow-color: rgb(139 92 246 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-500\/80 {
    --tw-shadow-color: rgb(139 92 246 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-500\/90 {
    --tw-shadow-color: rgb(139 92 246 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-600 {
    --tw-shadow-color: #7c3aed;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-600\/10 {
    --tw-shadow-color: rgb(124 58 237 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-600\/20 {
    --tw-shadow-color: rgb(124 58 237 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-600\/30 {
    --tw-shadow-color: rgb(124 58 237 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-600\/40 {
    --tw-shadow-color: rgb(124 58 237 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-600\/5 {
    --tw-shadow-color: rgb(124 58 237 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-600\/50 {
    --tw-shadow-color: rgb(124 58 237 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-600\/60 {
    --tw-shadow-color: rgb(124 58 237 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-600\/70 {
    --tw-shadow-color: rgb(124 58 237 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-600\/80 {
    --tw-shadow-color: rgb(124 58 237 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-600\/90 {
    --tw-shadow-color: rgb(124 58 237 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-700 {
    --tw-shadow-color: #6d28d9;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-700\/10 {
    --tw-shadow-color: rgb(109 40 217 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-700\/20 {
    --tw-shadow-color: rgb(109 40 217 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-700\/30 {
    --tw-shadow-color: rgb(109 40 217 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-700\/40 {
    --tw-shadow-color: rgb(109 40 217 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-700\/5 {
    --tw-shadow-color: rgb(109 40 217 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-700\/50 {
    --tw-shadow-color: rgb(109 40 217 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-700\/60 {
    --tw-shadow-color: rgb(109 40 217 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-700\/70 {
    --tw-shadow-color: rgb(109 40 217 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-700\/80 {
    --tw-shadow-color: rgb(109 40 217 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-700\/90 {
    --tw-shadow-color: rgb(109 40 217 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-800 {
    --tw-shadow-color: #5b21b6;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-800\/10 {
    --tw-shadow-color: rgb(91 33 182 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-800\/20 {
    --tw-shadow-color: rgb(91 33 182 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-800\/30 {
    --tw-shadow-color: rgb(91 33 182 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-800\/40 {
    --tw-shadow-color: rgb(91 33 182 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-800\/5 {
    --tw-shadow-color: rgb(91 33 182 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-800\/50 {
    --tw-shadow-color: rgb(91 33 182 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-800\/60 {
    --tw-shadow-color: rgb(91 33 182 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-800\/70 {
    --tw-shadow-color: rgb(91 33 182 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-800\/80 {
    --tw-shadow-color: rgb(91 33 182 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-800\/90 {
    --tw-shadow-color: rgb(91 33 182 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-900 {
    --tw-shadow-color: #4c1d95;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-900\/10 {
    --tw-shadow-color: rgb(76 29 149 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-900\/20 {
    --tw-shadow-color: rgb(76 29 149 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-900\/30 {
    --tw-shadow-color: rgb(76 29 149 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-900\/40 {
    --tw-shadow-color: rgb(76 29 149 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-900\/5 {
    --tw-shadow-color: rgb(76 29 149 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-900\/50 {
    --tw-shadow-color: rgb(76 29 149 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-900\/60 {
    --tw-shadow-color: rgb(76 29 149 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-900\/70 {
    --tw-shadow-color: rgb(76 29 149 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-900\/80 {
    --tw-shadow-color: rgb(76 29 149 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-900\/90 {
    --tw-shadow-color: rgb(76 29 149 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-950 {
    --tw-shadow-color: #2e1065;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-950\/10 {
    --tw-shadow-color: rgb(46 16 101 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-950\/20 {
    --tw-shadow-color: rgb(46 16 101 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-950\/30 {
    --tw-shadow-color: rgb(46 16 101 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-950\/40 {
    --tw-shadow-color: rgb(46 16 101 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-950\/5 {
    --tw-shadow-color: rgb(46 16 101 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-950\/50 {
    --tw-shadow-color: rgb(46 16 101 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-950\/60 {
    --tw-shadow-color: rgb(46 16 101 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-950\/70 {
    --tw-shadow-color: rgb(46 16 101 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-950\/80 {
    --tw-shadow-color: rgb(46 16 101 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-violet-950\/90 {
    --tw-shadow-color: rgb(46 16 101 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-100 {
    --tw-shadow-color: #fef9c3;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-100\/10 {
    --tw-shadow-color: rgb(254 249 195 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-100\/20 {
    --tw-shadow-color: rgb(254 249 195 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-100\/30 {
    --tw-shadow-color: rgb(254 249 195 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-100\/40 {
    --tw-shadow-color: rgb(254 249 195 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-100\/5 {
    --tw-shadow-color: rgb(254 249 195 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-100\/50 {
    --tw-shadow-color: rgb(254 249 195 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-100\/60 {
    --tw-shadow-color: rgb(254 249 195 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-100\/70 {
    --tw-shadow-color: rgb(254 249 195 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-100\/80 {
    --tw-shadow-color: rgb(254 249 195 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-100\/90 {
    --tw-shadow-color: rgb(254 249 195 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-200 {
    --tw-shadow-color: #fef08a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-200\/10 {
    --tw-shadow-color: rgb(254 240 138 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-200\/20 {
    --tw-shadow-color: rgb(254 240 138 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-200\/30 {
    --tw-shadow-color: rgb(254 240 138 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-200\/40 {
    --tw-shadow-color: rgb(254 240 138 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-200\/5 {
    --tw-shadow-color: rgb(254 240 138 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-200\/50 {
    --tw-shadow-color: rgb(254 240 138 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-200\/60 {
    --tw-shadow-color: rgb(254 240 138 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-200\/70 {
    --tw-shadow-color: rgb(254 240 138 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-200\/80 {
    --tw-shadow-color: rgb(254 240 138 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-200\/90 {
    --tw-shadow-color: rgb(254 240 138 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-300 {
    --tw-shadow-color: #fde047;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-300\/10 {
    --tw-shadow-color: rgb(253 224 71 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-300\/20 {
    --tw-shadow-color: rgb(253 224 71 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-300\/30 {
    --tw-shadow-color: rgb(253 224 71 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-300\/40 {
    --tw-shadow-color: rgb(253 224 71 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-300\/5 {
    --tw-shadow-color: rgb(253 224 71 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-300\/50 {
    --tw-shadow-color: rgb(253 224 71 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-300\/60 {
    --tw-shadow-color: rgb(253 224 71 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-300\/70 {
    --tw-shadow-color: rgb(253 224 71 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-300\/80 {
    --tw-shadow-color: rgb(253 224 71 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-300\/90 {
    --tw-shadow-color: rgb(253 224 71 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-400 {
    --tw-shadow-color: #facc15;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-400\/10 {
    --tw-shadow-color: rgb(250 204 21 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-400\/20 {
    --tw-shadow-color: rgb(250 204 21 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-400\/30 {
    --tw-shadow-color: rgb(250 204 21 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-400\/40 {
    --tw-shadow-color: rgb(250 204 21 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-400\/5 {
    --tw-shadow-color: rgb(250 204 21 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-400\/50 {
    --tw-shadow-color: rgb(250 204 21 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-400\/60 {
    --tw-shadow-color: rgb(250 204 21 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-400\/70 {
    --tw-shadow-color: rgb(250 204 21 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-400\/80 {
    --tw-shadow-color: rgb(250 204 21 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-400\/90 {
    --tw-shadow-color: rgb(250 204 21 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-50 {
    --tw-shadow-color: #fefce8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-50\/10 {
    --tw-shadow-color: rgb(254 252 232 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-50\/20 {
    --tw-shadow-color: rgb(254 252 232 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-50\/30 {
    --tw-shadow-color: rgb(254 252 232 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-50\/40 {
    --tw-shadow-color: rgb(254 252 232 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-50\/5 {
    --tw-shadow-color: rgb(254 252 232 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-50\/50 {
    --tw-shadow-color: rgb(254 252 232 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-50\/60 {
    --tw-shadow-color: rgb(254 252 232 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-50\/70 {
    --tw-shadow-color: rgb(254 252 232 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-50\/80 {
    --tw-shadow-color: rgb(254 252 232 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-50\/90 {
    --tw-shadow-color: rgb(254 252 232 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-500 {
    --tw-shadow-color: #eab308;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-500\/10 {
    --tw-shadow-color: rgb(234 179 8 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-500\/20 {
    --tw-shadow-color: rgb(234 179 8 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-500\/30 {
    --tw-shadow-color: rgb(234 179 8 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-500\/40 {
    --tw-shadow-color: rgb(234 179 8 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-500\/5 {
    --tw-shadow-color: rgb(234 179 8 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-500\/50 {
    --tw-shadow-color: rgb(234 179 8 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-500\/60 {
    --tw-shadow-color: rgb(234 179 8 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-500\/70 {
    --tw-shadow-color: rgb(234 179 8 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-500\/80 {
    --tw-shadow-color: rgb(234 179 8 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-500\/90 {
    --tw-shadow-color: rgb(234 179 8 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-600 {
    --tw-shadow-color: #ca8a04;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-600\/10 {
    --tw-shadow-color: rgb(202 138 4 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-600\/20 {
    --tw-shadow-color: rgb(202 138 4 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-600\/30 {
    --tw-shadow-color: rgb(202 138 4 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-600\/40 {
    --tw-shadow-color: rgb(202 138 4 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-600\/5 {
    --tw-shadow-color: rgb(202 138 4 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-600\/50 {
    --tw-shadow-color: rgb(202 138 4 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-600\/60 {
    --tw-shadow-color: rgb(202 138 4 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-600\/70 {
    --tw-shadow-color: rgb(202 138 4 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-600\/80 {
    --tw-shadow-color: rgb(202 138 4 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-600\/90 {
    --tw-shadow-color: rgb(202 138 4 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-700 {
    --tw-shadow-color: #a16207;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-700\/10 {
    --tw-shadow-color: rgb(161 98 7 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-700\/20 {
    --tw-shadow-color: rgb(161 98 7 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-700\/30 {
    --tw-shadow-color: rgb(161 98 7 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-700\/40 {
    --tw-shadow-color: rgb(161 98 7 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-700\/5 {
    --tw-shadow-color: rgb(161 98 7 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-700\/50 {
    --tw-shadow-color: rgb(161 98 7 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-700\/60 {
    --tw-shadow-color: rgb(161 98 7 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-700\/70 {
    --tw-shadow-color: rgb(161 98 7 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-700\/80 {
    --tw-shadow-color: rgb(161 98 7 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-700\/90 {
    --tw-shadow-color: rgb(161 98 7 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-800 {
    --tw-shadow-color: #854d0e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-800\/10 {
    --tw-shadow-color: rgb(133 77 14 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-800\/20 {
    --tw-shadow-color: rgb(133 77 14 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-800\/30 {
    --tw-shadow-color: rgb(133 77 14 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-800\/40 {
    --tw-shadow-color: rgb(133 77 14 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-800\/5 {
    --tw-shadow-color: rgb(133 77 14 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-800\/50 {
    --tw-shadow-color: rgb(133 77 14 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-800\/60 {
    --tw-shadow-color: rgb(133 77 14 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-800\/70 {
    --tw-shadow-color: rgb(133 77 14 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-800\/80 {
    --tw-shadow-color: rgb(133 77 14 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-800\/90 {
    --tw-shadow-color: rgb(133 77 14 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-900 {
    --tw-shadow-color: #713f12;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-900\/10 {
    --tw-shadow-color: rgb(113 63 18 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-900\/20 {
    --tw-shadow-color: rgb(113 63 18 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-900\/30 {
    --tw-shadow-color: rgb(113 63 18 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-900\/40 {
    --tw-shadow-color: rgb(113 63 18 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-900\/5 {
    --tw-shadow-color: rgb(113 63 18 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-900\/50 {
    --tw-shadow-color: rgb(113 63 18 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-900\/60 {
    --tw-shadow-color: rgb(113 63 18 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-900\/70 {
    --tw-shadow-color: rgb(113 63 18 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-900\/80 {
    --tw-shadow-color: rgb(113 63 18 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-900\/90 {
    --tw-shadow-color: rgb(113 63 18 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-950 {
    --tw-shadow-color: #422006;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-950\/10 {
    --tw-shadow-color: rgb(66 32 6 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-950\/20 {
    --tw-shadow-color: rgb(66 32 6 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-950\/30 {
    --tw-shadow-color: rgb(66 32 6 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-950\/40 {
    --tw-shadow-color: rgb(66 32 6 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-950\/5 {
    --tw-shadow-color: rgb(66 32 6 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-950\/50 {
    --tw-shadow-color: rgb(66 32 6 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-950\/60 {
    --tw-shadow-color: rgb(66 32 6 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-950\/70 {
    --tw-shadow-color: rgb(66 32 6 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-950\/80 {
    --tw-shadow-color: rgb(66 32 6 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-yellow-950\/90 {
    --tw-shadow-color: rgb(66 32 6 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-100 {
    --tw-shadow-color: #f4f4f5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-100\/10 {
    --tw-shadow-color: rgb(244 244 245 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-100\/20 {
    --tw-shadow-color: rgb(244 244 245 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-100\/30 {
    --tw-shadow-color: rgb(244 244 245 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-100\/40 {
    --tw-shadow-color: rgb(244 244 245 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-100\/5 {
    --tw-shadow-color: rgb(244 244 245 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-100\/50 {
    --tw-shadow-color: rgb(244 244 245 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-100\/60 {
    --tw-shadow-color: rgb(244 244 245 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-100\/70 {
    --tw-shadow-color: rgb(244 244 245 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-100\/80 {
    --tw-shadow-color: rgb(244 244 245 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-100\/90 {
    --tw-shadow-color: rgb(244 244 245 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-200 {
    --tw-shadow-color: #e4e4e7;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-200\/10 {
    --tw-shadow-color: rgb(228 228 231 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-200\/20 {
    --tw-shadow-color: rgb(228 228 231 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-200\/30 {
    --tw-shadow-color: rgb(228 228 231 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-200\/40 {
    --tw-shadow-color: rgb(228 228 231 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-200\/5 {
    --tw-shadow-color: rgb(228 228 231 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-200\/50 {
    --tw-shadow-color: rgb(228 228 231 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-200\/60 {
    --tw-shadow-color: rgb(228 228 231 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-200\/70 {
    --tw-shadow-color: rgb(228 228 231 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-200\/80 {
    --tw-shadow-color: rgb(228 228 231 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-200\/90 {
    --tw-shadow-color: rgb(228 228 231 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-300 {
    --tw-shadow-color: #d4d4d8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-300\/10 {
    --tw-shadow-color: rgb(212 212 216 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-300\/20 {
    --tw-shadow-color: rgb(212 212 216 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-300\/30 {
    --tw-shadow-color: rgb(212 212 216 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-300\/40 {
    --tw-shadow-color: rgb(212 212 216 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-300\/5 {
    --tw-shadow-color: rgb(212 212 216 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-300\/50 {
    --tw-shadow-color: rgb(212 212 216 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-300\/60 {
    --tw-shadow-color: rgb(212 212 216 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-300\/70 {
    --tw-shadow-color: rgb(212 212 216 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-300\/80 {
    --tw-shadow-color: rgb(212 212 216 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-300\/90 {
    --tw-shadow-color: rgb(212 212 216 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-400 {
    --tw-shadow-color: #a1a1aa;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-400\/10 {
    --tw-shadow-color: rgb(161 161 170 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-400\/20 {
    --tw-shadow-color: rgb(161 161 170 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-400\/30 {
    --tw-shadow-color: rgb(161 161 170 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-400\/40 {
    --tw-shadow-color: rgb(161 161 170 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-400\/5 {
    --tw-shadow-color: rgb(161 161 170 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-400\/50 {
    --tw-shadow-color: rgb(161 161 170 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-400\/60 {
    --tw-shadow-color: rgb(161 161 170 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-400\/70 {
    --tw-shadow-color: rgb(161 161 170 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-400\/80 {
    --tw-shadow-color: rgb(161 161 170 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-400\/90 {
    --tw-shadow-color: rgb(161 161 170 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-50 {
    --tw-shadow-color: #fafafa;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-50\/10 {
    --tw-shadow-color: rgb(250 250 250 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-50\/20 {
    --tw-shadow-color: rgb(250 250 250 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-50\/30 {
    --tw-shadow-color: rgb(250 250 250 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-50\/40 {
    --tw-shadow-color: rgb(250 250 250 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-50\/5 {
    --tw-shadow-color: rgb(250 250 250 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-50\/50 {
    --tw-shadow-color: rgb(250 250 250 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-50\/60 {
    --tw-shadow-color: rgb(250 250 250 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-50\/70 {
    --tw-shadow-color: rgb(250 250 250 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-50\/80 {
    --tw-shadow-color: rgb(250 250 250 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-50\/90 {
    --tw-shadow-color: rgb(250 250 250 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-500 {
    --tw-shadow-color: #71717a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-500\/10 {
    --tw-shadow-color: rgb(113 113 122 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-500\/20 {
    --tw-shadow-color: rgb(113 113 122 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-500\/30 {
    --tw-shadow-color: rgb(113 113 122 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-500\/40 {
    --tw-shadow-color: rgb(113 113 122 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-500\/5 {
    --tw-shadow-color: rgb(113 113 122 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-500\/50 {
    --tw-shadow-color: rgb(113 113 122 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-500\/60 {
    --tw-shadow-color: rgb(113 113 122 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-500\/70 {
    --tw-shadow-color: rgb(113 113 122 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-500\/80 {
    --tw-shadow-color: rgb(113 113 122 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-500\/90 {
    --tw-shadow-color: rgb(113 113 122 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-600 {
    --tw-shadow-color: #52525b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-600\/10 {
    --tw-shadow-color: rgb(82 82 91 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-600\/20 {
    --tw-shadow-color: rgb(82 82 91 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-600\/30 {
    --tw-shadow-color: rgb(82 82 91 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-600\/40 {
    --tw-shadow-color: rgb(82 82 91 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-600\/5 {
    --tw-shadow-color: rgb(82 82 91 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-600\/50 {
    --tw-shadow-color: rgb(82 82 91 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-600\/60 {
    --tw-shadow-color: rgb(82 82 91 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-600\/70 {
    --tw-shadow-color: rgb(82 82 91 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-600\/80 {
    --tw-shadow-color: rgb(82 82 91 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-600\/90 {
    --tw-shadow-color: rgb(82 82 91 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-700 {
    --tw-shadow-color: #3f3f46;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-700\/10 {
    --tw-shadow-color: rgb(63 63 70 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-700\/20 {
    --tw-shadow-color: rgb(63 63 70 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-700\/30 {
    --tw-shadow-color: rgb(63 63 70 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-700\/40 {
    --tw-shadow-color: rgb(63 63 70 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-700\/5 {
    --tw-shadow-color: rgb(63 63 70 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-700\/50 {
    --tw-shadow-color: rgb(63 63 70 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-700\/60 {
    --tw-shadow-color: rgb(63 63 70 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-700\/70 {
    --tw-shadow-color: rgb(63 63 70 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-700\/80 {
    --tw-shadow-color: rgb(63 63 70 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-700\/90 {
    --tw-shadow-color: rgb(63 63 70 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-800 {
    --tw-shadow-color: #27272a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-800\/10 {
    --tw-shadow-color: rgb(39 39 42 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-800\/20 {
    --tw-shadow-color: rgb(39 39 42 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-800\/30 {
    --tw-shadow-color: rgb(39 39 42 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-800\/40 {
    --tw-shadow-color: rgb(39 39 42 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-800\/5 {
    --tw-shadow-color: rgb(39 39 42 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-800\/50 {
    --tw-shadow-color: rgb(39 39 42 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-800\/60 {
    --tw-shadow-color: rgb(39 39 42 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-800\/70 {
    --tw-shadow-color: rgb(39 39 42 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-800\/80 {
    --tw-shadow-color: rgb(39 39 42 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-800\/90 {
    --tw-shadow-color: rgb(39 39 42 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-900 {
    --tw-shadow-color: #18181b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-900\/10 {
    --tw-shadow-color: rgb(24 24 27 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-900\/20 {
    --tw-shadow-color: rgb(24 24 27 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-900\/30 {
    --tw-shadow-color: rgb(24 24 27 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-900\/40 {
    --tw-shadow-color: rgb(24 24 27 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-900\/5 {
    --tw-shadow-color: rgb(24 24 27 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-900\/50 {
    --tw-shadow-color: rgb(24 24 27 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-900\/60 {
    --tw-shadow-color: rgb(24 24 27 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-900\/70 {
    --tw-shadow-color: rgb(24 24 27 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-900\/80 {
    --tw-shadow-color: rgb(24 24 27 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-900\/90 {
    --tw-shadow-color: rgb(24 24 27 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-950 {
    --tw-shadow-color: #09090b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-950\/10 {
    --tw-shadow-color: rgb(9 9 11 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-950\/20 {
    --tw-shadow-color: rgb(9 9 11 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-950\/30 {
    --tw-shadow-color: rgb(9 9 11 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-950\/40 {
    --tw-shadow-color: rgb(9 9 11 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-950\/5 {
    --tw-shadow-color: rgb(9 9 11 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-950\/50 {
    --tw-shadow-color: rgb(9 9 11 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-950\/60 {
    --tw-shadow-color: rgb(9 9 11 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-950\/70 {
    --tw-shadow-color: rgb(9 9 11 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-950\/80 {
    --tw-shadow-color: rgb(9 9 11 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .md\:shadow-zinc-950\/90 {
    --tw-shadow-color: rgb(9 9 11 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

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

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

  .md\:ring-4 {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .md\:ring-8 {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .md\:ring-amber-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 243 199 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-amber-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(253 230 138 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-amber-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(252 211 77 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-amber-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(251 191 36 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-amber-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(255 251 235 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-amber-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(245 158 11 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-amber-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(217 119 6 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-amber-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(180 83 9 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-amber-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(146 64 14 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-amber-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(120 53 15 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-amber-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(69 26 3 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-black {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-blue-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(219 234 254 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-blue-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(191 219 254 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-blue-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(147 197 253 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-blue-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(96 165 250 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-blue-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(239 246 255 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-blue-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-blue-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(37 99 235 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-blue-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(29 78 216 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-blue-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(30 64 175 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-blue-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(30 58 138 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-blue-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(23 37 84 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-cyan-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(207 250 254 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-cyan-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(165 243 252 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-cyan-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(103 232 249 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-cyan-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(34 211 238 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-cyan-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(236 254 255 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-cyan-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(6 182 212 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-cyan-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(8 145 178 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-cyan-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(14 116 144 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-cyan-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(21 94 117 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-cyan-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(22 78 99 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-cyan-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(8 51 68 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-emerald-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(209 250 229 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-emerald-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(167 243 208 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-emerald-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(110 231 183 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-emerald-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(52 211 153 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-emerald-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(236 253 245 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-emerald-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(16 185 129 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-emerald-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(5 150 105 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-emerald-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(4 120 87 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-emerald-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(6 95 70 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-emerald-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(6 78 59 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-emerald-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(2 44 34 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-fuchsia-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(250 232 255 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-fuchsia-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(245 208 254 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-fuchsia-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(240 171 252 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-fuchsia-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(232 121 249 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-fuchsia-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(253 244 255 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-fuchsia-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(217 70 239 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-fuchsia-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(192 38 211 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-fuchsia-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(162 28 175 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-fuchsia-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(134 25 143 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-fuchsia-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(112 26 117 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-fuchsia-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(74 4 78 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-gray-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(243 244 246 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-gray-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-gray-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-gray-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(156 163 175 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-gray-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(249 250 251 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-gray-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(107 114 128 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-gray-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(75 85 99 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-gray-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(55 65 81 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-gray-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(31 41 55 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-gray-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(17 24 39 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-gray-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(3 7 18 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-green-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(220 252 231 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-green-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(187 247 208 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-green-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(134 239 172 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-green-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(74 222 128 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-green-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(240 253 244 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-green-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(34 197 94 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-green-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(22 163 74 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-green-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(21 128 61 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-green-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(22 101 52 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-green-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(20 83 45 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-green-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(5 46 22 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-indigo-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(224 231 255 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-indigo-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(199 210 254 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-indigo-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(165 180 252 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-indigo-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(129 140 248 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-indigo-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(238 242 255 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-indigo-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(99 102 241 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-indigo-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(79 70 229 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-indigo-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(67 56 202 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-indigo-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(55 48 163 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-indigo-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(49 46 129 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-indigo-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(30 27 75 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-lime-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(236 252 203 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-lime-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(217 249 157 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-lime-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(190 242 100 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-lime-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(163 230 53 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-lime-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(247 254 231 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-lime-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(132 204 22 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-lime-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(101 163 13 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-lime-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(77 124 15 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-lime-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(63 98 18 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-lime-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(54 83 20 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-lime-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(26 46 5 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-neutral-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(245 245 245 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-neutral-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(229 229 229 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-neutral-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(212 212 212 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-neutral-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(163 163 163 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-neutral-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(250 250 250 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-neutral-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(115 115 115 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-neutral-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(82 82 82 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-neutral-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(64 64 64 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-neutral-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(38 38 38 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-neutral-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(23 23 23 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-neutral-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(10 10 10 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-orange-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(255 237 213 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-orange-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 215 170 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-orange-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(253 186 116 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-orange-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(251 146 60 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-orange-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(255 247 237 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-orange-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(249 115 22 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-orange-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(234 88 12 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-orange-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(194 65 12 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-orange-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(154 52 18 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-orange-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(124 45 18 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-orange-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(67 20 7 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-pink-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(252 231 243 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-pink-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(251 207 232 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-pink-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(249 168 212 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-pink-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(244 114 182 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-pink-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(253 242 248 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-pink-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(236 72 153 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-pink-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(219 39 119 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-pink-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(190 24 93 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-pink-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(157 23 77 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-pink-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(131 24 67 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-pink-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(80 7 36 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-purple-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(243 232 255 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-purple-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(233 213 255 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-purple-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(216 180 254 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-purple-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(192 132 252 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-purple-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(250 245 255 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-purple-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(168 85 247 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-purple-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(147 51 234 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-purple-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(126 34 206 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-purple-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(107 33 168 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-purple-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(88 28 135 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-purple-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(59 7 100 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-red-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 226 226 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-red-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 202 202 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-red-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(252 165 165 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-red-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(248 113 113 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-red-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 242 242 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-red-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-red-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(220 38 38 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-red-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(185 28 28 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-red-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(153 27 27 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-red-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(127 29 29 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-red-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(69 10 10 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-rose-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(255 228 230 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-rose-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 205 211 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-rose-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(253 164 175 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-rose-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(251 113 133 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-rose-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(255 241 242 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-rose-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(244 63 94 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-rose-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(225 29 72 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-rose-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(190 18 60 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-rose-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(159 18 57 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-rose-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(136 19 55 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-rose-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(76 5 25 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-sky-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(224 242 254 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-sky-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(186 230 253 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-sky-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(125 211 252 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-sky-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(56 189 248 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-sky-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(240 249 255 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-sky-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(14 165 233 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-sky-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(2 132 199 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-sky-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(3 105 161 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-sky-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(7 89 133 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-sky-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(12 74 110 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-sky-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(8 47 73 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-slate-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(241 245 249 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-slate-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(226 232 240 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-slate-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(203 213 225 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-slate-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(148 163 184 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-slate-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(248 250 252 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-slate-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(100 116 139 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-slate-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(71 85 105 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-slate-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(51 65 85 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-slate-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(30 41 59 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-slate-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(15 23 42 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-slate-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(2 6 23 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-stone-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(245 245 244 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-stone-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(231 229 228 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-stone-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(214 211 209 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-stone-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(168 162 158 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-stone-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(250 250 249 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-stone-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(120 113 108 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-stone-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(87 83 78 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-stone-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(68 64 60 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-stone-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(41 37 36 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-stone-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(28 25 23 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-stone-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(12 10 9 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-teal-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(204 251 241 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-teal-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(153 246 228 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-teal-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(94 234 212 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-teal-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(45 212 191 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-teal-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(240 253 250 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-teal-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(20 184 166 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-teal-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(13 148 136 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-teal-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(15 118 110 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-teal-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(17 94 89 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-teal-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(19 78 74 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-teal-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(4 47 46 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-violet-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(237 233 254 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-violet-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(221 214 254 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-violet-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(196 181 253 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-violet-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(167 139 250 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-violet-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(245 243 255 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-violet-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(139 92 246 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-violet-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(124 58 237 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-violet-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(109 40 217 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-violet-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(91 33 182 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-violet-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(76 29 149 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-violet-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(46 16 101 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-white {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-yellow-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 249 195 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-yellow-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 240 138 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-yellow-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(253 224 71 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-yellow-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(250 204 21 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-yellow-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 252 232 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-yellow-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(234 179 8 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-yellow-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(202 138 4 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-yellow-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(161 98 7 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-yellow-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(133 77 14 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-yellow-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(113 63 18 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-yellow-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(66 32 6 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-zinc-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(244 244 245 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-zinc-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(228 228 231 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-zinc-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(212 212 216 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-zinc-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(161 161 170 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-zinc-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(250 250 250 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-zinc-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(113 113 122 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-zinc-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(82 82 91 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-zinc-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(63 63 70 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-zinc-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(39 39 42 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-zinc-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(24 24 27 / var(--tw-ring-opacity, 1));
  }

  .md\:ring-zinc-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(9 9 11 / var(--tw-ring-opacity, 1));
  }

  .md\:blur-2xl {
    --tw-blur: blur(40px);
    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);
  }

  .md\:blur-3xl {
    --tw-blur: blur(64px);
    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);
  }

  .md\:blur-lg {
    --tw-blur: blur(16px);
    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);
  }

  .md\:blur-md {
    --tw-blur: blur(12px);
    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);
  }

  .md\:blur-sm {
    --tw-blur: blur(4px);
    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);
  }

  .md\:blur-xl {
    --tw-blur: blur(24px);
    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);
  }

  .md\:drop-shadow-lg {
    --tw-drop-shadow: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
    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);
  }

  .md\:drop-shadow-md {
    --tw-drop-shadow: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
    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);
  }

  .md\:drop-shadow-sm {
    --tw-drop-shadow: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05));
    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);
  }

  .md\:backdrop-blur-lg {
    --tw-backdrop-blur: blur(16px);
    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);
  }

  .md\:backdrop-blur-md {
    --tw-backdrop-blur: blur(12px);
    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);
  }

  .md\:motion-blur-in-lg {
    --motion-origin-blur: 16px;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-blur-in-md {
    --motion-origin-blur: 12px;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-blur-out-lg {
    --motion-end-blur: 16px;
    --motion-filter-out-animation: motion-filter-out calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-out-animation), var(--motion-translate-out-animation), var(--motion-rotate-out-animation), var(--motion-filter-out-animation), var(--motion-opacity-out-animation), var(--motion-background-color-out-animation), var(--motion-text-color-out-animation);
  }

  .md\:motion-blur-out-md {
    --motion-end-blur: 12px;
    --motion-filter-out-animation: motion-filter-out calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-out-animation), var(--motion-translate-out-animation), var(--motion-rotate-out-animation), var(--motion-filter-out-animation), var(--motion-opacity-out-animation), var(--motion-background-color-out-animation), var(--motion-text-color-out-animation);
  }

  .md\:motion-blur-loop-lg {
    --motion-loop-blur: 16px;
    --motion-filter-loop-animation: motion-filter-loop-mirror calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both var(--motion-filter-loop-count, var(--motion-loop-count));
    animation-composition: accumulate;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .md\:motion-blur-loop-md {
    --motion-loop-blur: 12px;
    --motion-filter-loop-animation: motion-filter-loop-mirror calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both var(--motion-filter-loop-count, var(--motion-loop-count));
    animation-composition: accumulate;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }
}
@media (min-width: 1024px) {

  .lg\:m-0 {
    margin: 0px;
  }

  .lg\:m-1 {
    margin: 0.25rem;
  }

  .lg\:m-10 {
    margin: 2.5rem;
  }

  .lg\:m-11 {
    margin: 2.75rem;
  }

  .lg\:m-12 {
    margin: 3rem;
  }

  .lg\:m-14 {
    margin: 3.5rem;
  }

  .lg\:m-16 {
    margin: 4rem;
  }

  .lg\:m-2 {
    margin: 0.5rem;
  }

  .lg\:m-20 {
    margin: 5rem;
  }

  .lg\:m-24 {
    margin: 6rem;
  }

  .lg\:m-28 {
    margin: 7rem;
  }

  .lg\:m-3 {
    margin: 0.75rem;
  }

  .lg\:m-32 {
    margin: 8rem;
  }

  .lg\:m-36 {
    margin: 9rem;
  }

  .lg\:m-4 {
    margin: 1rem;
  }

  .lg\:m-40 {
    margin: 10rem;
  }

  .lg\:m-44 {
    margin: 11rem;
  }

  .lg\:m-48 {
    margin: 12rem;
  }

  .lg\:m-5 {
    margin: 1.25rem;
  }

  .lg\:m-52 {
    margin: 13rem;
  }

  .lg\:m-56 {
    margin: 14rem;
  }

  .lg\:m-6 {
    margin: 1.5rem;
  }

  .lg\:m-60 {
    margin: 15rem;
  }

  .lg\:m-64 {
    margin: 16rem;
  }

  .lg\:m-7 {
    margin: 1.75rem;
  }

  .lg\:m-72 {
    margin: 18rem;
  }

  .lg\:m-8 {
    margin: 2rem;
  }

  .lg\:m-80 {
    margin: 20rem;
  }

  .lg\:m-9 {
    margin: 2.25rem;
  }

  .lg\:m-96 {
    margin: 24rem;
  }

  .lg\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }

  .lg\:mx-1 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .lg\:mx-10 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .lg\:mx-11 {
    margin-left: 2.75rem;
    margin-right: 2.75rem;
  }

  .lg\:mx-12 {
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .lg\:mx-14 {
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .lg\:mx-16 {
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .lg\:mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .lg\:mx-20 {
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .lg\:mx-24 {
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .lg\:mx-28 {
    margin-left: 7rem;
    margin-right: 7rem;
  }

  .lg\:mx-3 {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .lg\:mx-32 {
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .lg\:mx-36 {
    margin-left: 9rem;
    margin-right: 9rem;
  }

  .lg\:mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .lg\:mx-40 {
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .lg\:mx-44 {
    margin-left: 11rem;
    margin-right: 11rem;
  }

  .lg\:mx-48 {
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .lg\:mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .lg\:mx-52 {
    margin-left: 13rem;
    margin-right: 13rem;
  }

  .lg\:mx-56 {
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .lg\:mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .lg\:mx-60 {
    margin-left: 15rem;
    margin-right: 15rem;
  }

  .lg\:mx-64 {
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .lg\:mx-7 {
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .lg\:mx-72 {
    margin-left: 18rem;
    margin-right: 18rem;
  }

  .lg\:mx-8 {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .lg\:mx-80 {
    margin-left: 20rem;
    margin-right: 20rem;
  }

  .lg\:mx-9 {
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .lg\:mx-96 {
    margin-left: 24rem;
    margin-right: 24rem;
  }

  .lg\:my-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .lg\:my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .lg\:my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .lg\:my-11 {
    margin-top: 2.75rem;
    margin-bottom: 2.75rem;
  }

  .lg\:my-12 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .lg\:my-14 {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .lg\:my-16 {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .lg\:my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .lg\:my-20 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .lg\:my-24 {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .lg\:my-28 {
    margin-top: 7rem;
    margin-bottom: 7rem;
  }

  .lg\:my-3 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .lg\:my-32 {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .lg\:my-36 {
    margin-top: 9rem;
    margin-bottom: 9rem;
  }

  .lg\:my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .lg\:my-40 {
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .lg\:my-44 {
    margin-top: 11rem;
    margin-bottom: 11rem;
  }

  .lg\:my-48 {
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .lg\:my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .lg\:my-52 {
    margin-top: 13rem;
    margin-bottom: 13rem;
  }

  .lg\:my-56 {
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .lg\:my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .lg\:my-60 {
    margin-top: 15rem;
    margin-bottom: 15rem;
  }

  .lg\:my-64 {
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .lg\:my-7 {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .lg\:my-72 {
    margin-top: 18rem;
    margin-bottom: 18rem;
  }

  .lg\:my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .lg\:my-80 {
    margin-top: 20rem;
    margin-bottom: 20rem;
  }

  .lg\:my-9 {
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }

  .lg\:my-96 {
    margin-top: 24rem;
    margin-bottom: 24rem;
  }

  .lg\:mb-0 {
    margin-bottom: 0px;
  }

  .lg\:mb-1 {
    margin-bottom: 0.25rem;
  }

  .lg\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .lg\:mb-11 {
    margin-bottom: 2.75rem;
  }

  .lg\:mb-12 {
    margin-bottom: 3rem;
  }

  .lg\:mb-14 {
    margin-bottom: 3.5rem;
  }

  .lg\:mb-16 {
    margin-bottom: 4rem;
  }

  .lg\:mb-2 {
    margin-bottom: 0.5rem;
  }

  .lg\:mb-20 {
    margin-bottom: 5rem;
  }

  .lg\:mb-24 {
    margin-bottom: 6rem;
  }

  .lg\:mb-28 {
    margin-bottom: 7rem;
  }

  .lg\:mb-3 {
    margin-bottom: 0.75rem;
  }

  .lg\:mb-32 {
    margin-bottom: 8rem;
  }

  .lg\:mb-36 {
    margin-bottom: 9rem;
  }

  .lg\:mb-4 {
    margin-bottom: 1rem;
  }

  .lg\:mb-40 {
    margin-bottom: 10rem;
  }

  .lg\:mb-44 {
    margin-bottom: 11rem;
  }

  .lg\:mb-48 {
    margin-bottom: 12rem;
  }

  .lg\:mb-5 {
    margin-bottom: 1.25rem;
  }

  .lg\:mb-52 {
    margin-bottom: 13rem;
  }

  .lg\:mb-56 {
    margin-bottom: 14rem;
  }

  .lg\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .lg\:mb-60 {
    margin-bottom: 15rem;
  }

  .lg\:mb-64 {
    margin-bottom: 16rem;
  }

  .lg\:mb-7 {
    margin-bottom: 1.75rem;
  }

  .lg\:mb-72 {
    margin-bottom: 18rem;
  }

  .lg\:mb-8 {
    margin-bottom: 2rem;
  }

  .lg\:mb-80 {
    margin-bottom: 20rem;
  }

  .lg\:mb-9 {
    margin-bottom: 2.25rem;
  }

  .lg\:mb-96 {
    margin-bottom: 24rem;
  }

  .lg\:ml-0 {
    margin-left: 0px;
  }

  .lg\:ml-1 {
    margin-left: 0.25rem;
  }

  .lg\:ml-10 {
    margin-left: 2.5rem;
  }

  .lg\:ml-11 {
    margin-left: 2.75rem;
  }

  .lg\:ml-12 {
    margin-left: 3rem;
  }

  .lg\:ml-14 {
    margin-left: 3.5rem;
  }

  .lg\:ml-16 {
    margin-left: 4rem;
  }

  .lg\:ml-2 {
    margin-left: 0.5rem;
  }

  .lg\:ml-20 {
    margin-left: 5rem;
  }

  .lg\:ml-24 {
    margin-left: 6rem;
  }

  .lg\:ml-28 {
    margin-left: 7rem;
  }

  .lg\:ml-3 {
    margin-left: 0.75rem;
  }

  .lg\:ml-32 {
    margin-left: 8rem;
  }

  .lg\:ml-36 {
    margin-left: 9rem;
  }

  .lg\:ml-4 {
    margin-left: 1rem;
  }

  .lg\:ml-40 {
    margin-left: 10rem;
  }

  .lg\:ml-44 {
    margin-left: 11rem;
  }

  .lg\:ml-48 {
    margin-left: 12rem;
  }

  .lg\:ml-5 {
    margin-left: 1.25rem;
  }

  .lg\:ml-52 {
    margin-left: 13rem;
  }

  .lg\:ml-56 {
    margin-left: 14rem;
  }

  .lg\:ml-6 {
    margin-left: 1.5rem;
  }

  .lg\:ml-60 {
    margin-left: 15rem;
  }

  .lg\:ml-64 {
    margin-left: 16rem;
  }

  .lg\:ml-7 {
    margin-left: 1.75rem;
  }

  .lg\:ml-72 {
    margin-left: 18rem;
  }

  .lg\:ml-8 {
    margin-left: 2rem;
  }

  .lg\:ml-80 {
    margin-left: 20rem;
  }

  .lg\:ml-9 {
    margin-left: 2.25rem;
  }

  .lg\:ml-96 {
    margin-left: 24rem;
  }

  .lg\:mr-0 {
    margin-right: 0px;
  }

  .lg\:mr-1 {
    margin-right: 0.25rem;
  }

  .lg\:mr-10 {
    margin-right: 2.5rem;
  }

  .lg\:mr-11 {
    margin-right: 2.75rem;
  }

  .lg\:mr-12 {
    margin-right: 3rem;
  }

  .lg\:mr-14 {
    margin-right: 3.5rem;
  }

  .lg\:mr-16 {
    margin-right: 4rem;
  }

  .lg\:mr-2 {
    margin-right: 0.5rem;
  }

  .lg\:mr-20 {
    margin-right: 5rem;
  }

  .lg\:mr-24 {
    margin-right: 6rem;
  }

  .lg\:mr-28 {
    margin-right: 7rem;
  }

  .lg\:mr-3 {
    margin-right: 0.75rem;
  }

  .lg\:mr-32 {
    margin-right: 8rem;
  }

  .lg\:mr-36 {
    margin-right: 9rem;
  }

  .lg\:mr-4 {
    margin-right: 1rem;
  }

  .lg\:mr-40 {
    margin-right: 10rem;
  }

  .lg\:mr-44 {
    margin-right: 11rem;
  }

  .lg\:mr-48 {
    margin-right: 12rem;
  }

  .lg\:mr-5 {
    margin-right: 1.25rem;
  }

  .lg\:mr-52 {
    margin-right: 13rem;
  }

  .lg\:mr-56 {
    margin-right: 14rem;
  }

  .lg\:mr-6 {
    margin-right: 1.5rem;
  }

  .lg\:mr-60 {
    margin-right: 15rem;
  }

  .lg\:mr-64 {
    margin-right: 16rem;
  }

  .lg\:mr-7 {
    margin-right: 1.75rem;
  }

  .lg\:mr-72 {
    margin-right: 18rem;
  }

  .lg\:mr-8 {
    margin-right: 2rem;
  }

  .lg\:mr-80 {
    margin-right: 20rem;
  }

  .lg\:mr-9 {
    margin-right: 2.25rem;
  }

  .lg\:mr-96 {
    margin-right: 24rem;
  }

  .lg\:mt-0 {
    margin-top: 0px;
  }

  .lg\:mt-1 {
    margin-top: 0.25rem;
  }

  .lg\:mt-10 {
    margin-top: 2.5rem;
  }

  .lg\:mt-11 {
    margin-top: 2.75rem;
  }

  .lg\:mt-12 {
    margin-top: 3rem;
  }

  .lg\:mt-14 {
    margin-top: 3.5rem;
  }

  .lg\:mt-16 {
    margin-top: 4rem;
  }

  .lg\:mt-2 {
    margin-top: 0.5rem;
  }

  .lg\:mt-20 {
    margin-top: 5rem;
  }

  .lg\:mt-24 {
    margin-top: 6rem;
  }

  .lg\:mt-28 {
    margin-top: 7rem;
  }

  .lg\:mt-3 {
    margin-top: 0.75rem;
  }

  .lg\:mt-32 {
    margin-top: 8rem;
  }

  .lg\:mt-36 {
    margin-top: 9rem;
  }

  .lg\:mt-4 {
    margin-top: 1rem;
  }

  .lg\:mt-40 {
    margin-top: 10rem;
  }

  .lg\:mt-44 {
    margin-top: 11rem;
  }

  .lg\:mt-48 {
    margin-top: 12rem;
  }

  .lg\:mt-5 {
    margin-top: 1.25rem;
  }

  .lg\:mt-52 {
    margin-top: 13rem;
  }

  .lg\:mt-56 {
    margin-top: 14rem;
  }

  .lg\:mt-6 {
    margin-top: 1.5rem;
  }

  .lg\:mt-60 {
    margin-top: 15rem;
  }

  .lg\:mt-64 {
    margin-top: 16rem;
  }

  .lg\:mt-7 {
    margin-top: 1.75rem;
  }

  .lg\:mt-72 {
    margin-top: 18rem;
  }

  .lg\:mt-8 {
    margin-top: 2rem;
  }

  .lg\:mt-80 {
    margin-top: 20rem;
  }

  .lg\:mt-9 {
    margin-top: 2.25rem;
  }

  .lg\:mt-96 {
    margin-top: 24rem;
  }

  .lg\:h-0 {
    height: 0px;
  }

  .lg\:h-0\.5 {
    height: 0.125rem;
  }

  .lg\:h-1 {
    height: 0.25rem;
  }

  .lg\:h-1\.5 {
    height: 0.375rem;
  }

  .lg\:h-1\/2 {
    height: 50%;
  }

  .lg\:h-1\/3 {
    height: 33.333333%;
  }

  .lg\:h-1\/4 {
    height: 25%;
  }

  .lg\:h-1\/5 {
    height: 20%;
  }

  .lg\:h-1\/6 {
    height: 16.666667%;
  }

  .lg\:h-10 {
    height: 2.5rem;
  }

  .lg\:h-11 {
    height: 2.75rem;
  }

  .lg\:h-12 {
    height: 3rem;
  }

  .lg\:h-14 {
    height: 3.5rem;
  }

  .lg\:h-16 {
    height: 4rem;
  }

  .lg\:h-2 {
    height: 0.5rem;
  }

  .lg\:h-2\.5 {
    height: 0.625rem;
  }

  .lg\:h-2\/3 {
    height: 66.666667%;
  }

  .lg\:h-2\/4 {
    height: 50%;
  }

  .lg\:h-2\/5 {
    height: 40%;
  }

  .lg\:h-2\/6 {
    height: 33.333333%;
  }

  .lg\:h-20 {
    height: 5rem;
  }

  .lg\:h-24 {
    height: 6rem;
  }

  .lg\:h-28 {
    height: 7rem;
  }

  .lg\:h-3 {
    height: 0.75rem;
  }

  .lg\:h-3\.5 {
    height: 0.875rem;
  }

  .lg\:h-3\/4 {
    height: 75%;
  }

  .lg\:h-3\/5 {
    height: 60%;
  }

  .lg\:h-3\/6 {
    height: 50%;
  }

  .lg\:h-32 {
    height: 8rem;
  }

  .lg\:h-36 {
    height: 9rem;
  }

  .lg\:h-4 {
    height: 1rem;
  }

  .lg\:h-4\/5 {
    height: 80%;
  }

  .lg\:h-4\/6 {
    height: 66.666667%;
  }

  .lg\:h-40 {
    height: 10rem;
  }

  .lg\:h-44 {
    height: 11rem;
  }

  .lg\:h-48 {
    height: 12rem;
  }

  .lg\:h-5 {
    height: 1.25rem;
  }

  .lg\:h-5\/6 {
    height: 83.333333%;
  }

  .lg\:h-52 {
    height: 13rem;
  }

  .lg\:h-56 {
    height: 14rem;
  }

  .lg\:h-6 {
    height: 1.5rem;
  }

  .lg\:h-60 {
    height: 15rem;
  }

  .lg\:h-64 {
    height: 16rem;
  }

  .lg\:h-7 {
    height: 1.75rem;
  }

  .lg\:h-72 {
    height: 18rem;
  }

  .lg\:h-8 {
    height: 2rem;
  }

  .lg\:h-80 {
    height: 20rem;
  }

  .lg\:h-9 {
    height: 2.25rem;
  }

  .lg\:h-96 {
    height: 24rem;
  }

  .lg\:h-auto {
    height: auto;
  }

  .lg\:h-dvh {
    height: 100dvh;
  }

  .lg\:h-fit {
    height: -moz-fit-content;
    height: fit-content;
  }

  .lg\:h-full {
    height: 100%;
  }

  .lg\:h-lvh {
    height: 100lvh;
  }

  .lg\:h-max {
    height: -moz-max-content;
    height: max-content;
  }

  .lg\:h-min {
    height: -moz-min-content;
    height: min-content;
  }

  .lg\:h-px {
    height: 1px;
  }

  .lg\:h-screen {
    height: 100vh;
  }

  .lg\:h-svh {
    height: 100svh;
  }

  .lg\:max-h-full {
    max-height: 100%;
  }

  .lg\:max-h-none {
    max-height: none;
  }

  .lg\:min-h-full {
    min-height: 100%;
  }

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

  .lg\:w-1\/3 {
    width: 33.333333%;
  }

  .lg\:w-1\/4 {
    width: 25%;
  }

  .lg\:w-1\/5 {
    width: 20%;
  }

  .lg\:w-1\/6 {
    width: 16.666667%;
  }

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

  .lg\:w-full {
    width: 100%;
  }

  .lg\:w-screen {
    width: 100vw;
  }

  .lg\:min-w-full {
    min-width: 100%;
  }

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

  .lg\:max-w-full {
    max-width: 100%;
  }

  .lg\:max-w-lg {
    max-width: 32rem;
  }

  .lg\:max-w-md {
    max-width: 28rem;
  }

  .lg\:max-w-none {
    max-width: none;
  }

  .lg\:max-w-screen-lg {
    max-width: 1024px;
  }

  .lg\:max-w-screen-md {
    max-width: 768px;
  }

  .lg\:basis-1\/3 {
    flex-basis: 33.333333%;
  }

  .lg\:scale-0 {
    --tw-scale-x: 0;
    --tw-scale-y: 0;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .lg\:scale-100 {
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .lg\:scale-105 {
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .lg\:scale-110 {
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .lg\:scale-125 {
    --tw-scale-x: 1.25;
    --tw-scale-y: 1.25;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .lg\:scale-150 {
    --tw-scale-x: 1.5;
    --tw-scale-y: 1.5;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .lg\:scale-95 {
    --tw-scale-x: .95;
    --tw-scale-y: .95;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .lg\:columns-lg {
    -moz-columns: 32rem;
         columns: 32rem;
  }

  .lg\:columns-md {
    -moz-columns: 28rem;
         columns: 28rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .lg\:gap-1 {
    gap: 0.25rem;
  }

  .lg\:gap-10 {
    gap: 2.5rem;
  }

  .lg\:gap-11 {
    gap: 2.75rem;
  }

  .lg\:gap-12 {
    gap: 3rem;
  }

  .lg\:gap-2 {
    gap: 0.5rem;
  }

  .lg\:gap-3 {
    gap: 0.75rem;
  }

  .lg\:gap-4 {
    gap: 1rem;
  }

  .lg\:gap-5 {
    gap: 1.25rem;
  }

  .lg\:gap-6 {
    gap: 1.5rem;
  }

  .lg\:gap-7 {
    gap: 1.75rem;
  }

  .lg\:gap-8 {
    gap: 2rem;
  }

  .lg\:gap-9 {
    gap: 2.25rem;
  }

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

  .lg\:rounded-md {
    border-radius: calc(var(--radius) - 2px);
  }

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

  .lg\:rounded-b-md {
    border-bottom-right-radius: calc(var(--radius) - 2px);
    border-bottom-left-radius: calc(var(--radius) - 2px);
  }

  .lg\:rounded-e-lg {
    border-start-end-radius: var(--radius);
    border-end-end-radius: var(--radius);
  }

  .lg\:rounded-e-md {
    border-start-end-radius: calc(var(--radius) - 2px);
    border-end-end-radius: calc(var(--radius) - 2px);
  }

  .lg\:rounded-l-lg {
    border-top-left-radius: var(--radius);
    border-bottom-left-radius: var(--radius);
  }

  .lg\:rounded-l-md {
    border-top-left-radius: calc(var(--radius) - 2px);
    border-bottom-left-radius: calc(var(--radius) - 2px);
  }

  .lg\:rounded-r-lg {
    border-top-right-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
  }

  .lg\:rounded-r-md {
    border-top-right-radius: calc(var(--radius) - 2px);
    border-bottom-right-radius: calc(var(--radius) - 2px);
  }

  .lg\:rounded-s-lg {
    border-start-start-radius: var(--radius);
    border-end-start-radius: var(--radius);
  }

  .lg\:rounded-s-md {
    border-start-start-radius: calc(var(--radius) - 2px);
    border-end-start-radius: calc(var(--radius) - 2px);
  }

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

  .lg\:rounded-t-md {
    border-top-left-radius: calc(var(--radius) - 2px);
    border-top-right-radius: calc(var(--radius) - 2px);
  }

  .lg\:rounded-bl-lg {
    border-bottom-left-radius: var(--radius);
  }

  .lg\:rounded-bl-md {
    border-bottom-left-radius: calc(var(--radius) - 2px);
  }

  .lg\:rounded-br-lg {
    border-bottom-right-radius: var(--radius);
  }

  .lg\:rounded-br-md {
    border-bottom-right-radius: calc(var(--radius) - 2px);
  }

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

  .lg\:rounded-ee-md {
    border-end-end-radius: calc(var(--radius) - 2px);
  }

  .lg\:rounded-es-lg {
    border-end-start-radius: var(--radius);
  }

  .lg\:rounded-es-md {
    border-end-start-radius: calc(var(--radius) - 2px);
  }

  .lg\:rounded-se-lg {
    border-start-end-radius: var(--radius);
  }

  .lg\:rounded-se-md {
    border-start-end-radius: calc(var(--radius) - 2px);
  }

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

  .lg\:rounded-ss-md {
    border-start-start-radius: calc(var(--radius) - 2px);
  }

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

  .lg\:rounded-tl-md {
    border-top-left-radius: calc(var(--radius) - 2px);
  }

  .lg\:rounded-tr-lg {
    border-top-right-radius: var(--radius);
  }

  .lg\:rounded-tr-md {
    border-top-right-radius: calc(var(--radius) - 2px);
  }

  .lg\:border-amber-100 {
    --tw-border-opacity: 1;
    border-color: rgb(254 243 199 / var(--tw-border-opacity, 1));
  }

  .lg\:border-amber-200 {
    --tw-border-opacity: 1;
    border-color: rgb(253 230 138 / var(--tw-border-opacity, 1));
  }

  .lg\:border-amber-300 {
    --tw-border-opacity: 1;
    border-color: rgb(252 211 77 / var(--tw-border-opacity, 1));
  }

  .lg\:border-amber-400 {
    --tw-border-opacity: 1;
    border-color: rgb(251 191 36 / var(--tw-border-opacity, 1));
  }

  .lg\:border-amber-50 {
    --tw-border-opacity: 1;
    border-color: rgb(255 251 235 / var(--tw-border-opacity, 1));
  }

  .lg\:border-amber-500 {
    --tw-border-opacity: 1;
    border-color: rgb(245 158 11 / var(--tw-border-opacity, 1));
  }

  .lg\:border-amber-600 {
    --tw-border-opacity: 1;
    border-color: rgb(217 119 6 / var(--tw-border-opacity, 1));
  }

  .lg\:border-amber-700 {
    --tw-border-opacity: 1;
    border-color: rgb(180 83 9 / var(--tw-border-opacity, 1));
  }

  .lg\:border-amber-800 {
    --tw-border-opacity: 1;
    border-color: rgb(146 64 14 / var(--tw-border-opacity, 1));
  }

  .lg\:border-amber-900 {
    --tw-border-opacity: 1;
    border-color: rgb(120 53 15 / var(--tw-border-opacity, 1));
  }

  .lg\:border-amber-950 {
    --tw-border-opacity: 1;
    border-color: rgb(69 26 3 / var(--tw-border-opacity, 1));
  }

  .lg\:border-blue-100 {
    --tw-border-opacity: 1;
    border-color: rgb(219 234 254 / var(--tw-border-opacity, 1));
  }

  .lg\:border-blue-200 {
    --tw-border-opacity: 1;
    border-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
  }

  .lg\:border-blue-300 {
    --tw-border-opacity: 1;
    border-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
  }

  .lg\:border-blue-400 {
    --tw-border-opacity: 1;
    border-color: rgb(96 165 250 / var(--tw-border-opacity, 1));
  }

  .lg\:border-blue-50 {
    --tw-border-opacity: 1;
    border-color: rgb(239 246 255 / var(--tw-border-opacity, 1));
  }

  .lg\:border-blue-500 {
    --tw-border-opacity: 1;
    border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
  }

  .lg\:border-blue-600 {
    --tw-border-opacity: 1;
    border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
  }

  .lg\:border-blue-700 {
    --tw-border-opacity: 1;
    border-color: rgb(29 78 216 / var(--tw-border-opacity, 1));
  }

  .lg\:border-blue-800 {
    --tw-border-opacity: 1;
    border-color: rgb(30 64 175 / var(--tw-border-opacity, 1));
  }

  .lg\:border-blue-900 {
    --tw-border-opacity: 1;
    border-color: rgb(30 58 138 / var(--tw-border-opacity, 1));
  }

  .lg\:border-blue-950 {
    --tw-border-opacity: 1;
    border-color: rgb(23 37 84 / var(--tw-border-opacity, 1));
  }

  .lg\:border-cyan-100 {
    --tw-border-opacity: 1;
    border-color: rgb(207 250 254 / var(--tw-border-opacity, 1));
  }

  .lg\:border-cyan-200 {
    --tw-border-opacity: 1;
    border-color: rgb(165 243 252 / var(--tw-border-opacity, 1));
  }

  .lg\:border-cyan-300 {
    --tw-border-opacity: 1;
    border-color: rgb(103 232 249 / var(--tw-border-opacity, 1));
  }

  .lg\:border-cyan-400 {
    --tw-border-opacity: 1;
    border-color: rgb(34 211 238 / var(--tw-border-opacity, 1));
  }

  .lg\:border-cyan-50 {
    --tw-border-opacity: 1;
    border-color: rgb(236 254 255 / var(--tw-border-opacity, 1));
  }

  .lg\:border-cyan-500 {
    --tw-border-opacity: 1;
    border-color: rgb(6 182 212 / var(--tw-border-opacity, 1));
  }

  .lg\:border-cyan-600 {
    --tw-border-opacity: 1;
    border-color: rgb(8 145 178 / var(--tw-border-opacity, 1));
  }

  .lg\:border-cyan-700 {
    --tw-border-opacity: 1;
    border-color: rgb(14 116 144 / var(--tw-border-opacity, 1));
  }

  .lg\:border-cyan-800 {
    --tw-border-opacity: 1;
    border-color: rgb(21 94 117 / var(--tw-border-opacity, 1));
  }

  .lg\:border-cyan-900 {
    --tw-border-opacity: 1;
    border-color: rgb(22 78 99 / var(--tw-border-opacity, 1));
  }

  .lg\:border-cyan-950 {
    --tw-border-opacity: 1;
    border-color: rgb(8 51 68 / var(--tw-border-opacity, 1));
  }

  .lg\:border-emerald-100 {
    --tw-border-opacity: 1;
    border-color: rgb(209 250 229 / var(--tw-border-opacity, 1));
  }

  .lg\:border-emerald-200 {
    --tw-border-opacity: 1;
    border-color: rgb(167 243 208 / var(--tw-border-opacity, 1));
  }

  .lg\:border-emerald-300 {
    --tw-border-opacity: 1;
    border-color: rgb(110 231 183 / var(--tw-border-opacity, 1));
  }

  .lg\:border-emerald-400 {
    --tw-border-opacity: 1;
    border-color: rgb(52 211 153 / var(--tw-border-opacity, 1));
  }

  .lg\:border-emerald-50 {
    --tw-border-opacity: 1;
    border-color: rgb(236 253 245 / var(--tw-border-opacity, 1));
  }

  .lg\:border-emerald-500 {
    --tw-border-opacity: 1;
    border-color: rgb(16 185 129 / var(--tw-border-opacity, 1));
  }

  .lg\:border-emerald-600 {
    --tw-border-opacity: 1;
    border-color: rgb(5 150 105 / var(--tw-border-opacity, 1));
  }

  .lg\:border-emerald-700 {
    --tw-border-opacity: 1;
    border-color: rgb(4 120 87 / var(--tw-border-opacity, 1));
  }

  .lg\:border-emerald-800 {
    --tw-border-opacity: 1;
    border-color: rgb(6 95 70 / var(--tw-border-opacity, 1));
  }

  .lg\:border-emerald-900 {
    --tw-border-opacity: 1;
    border-color: rgb(6 78 59 / var(--tw-border-opacity, 1));
  }

  .lg\:border-emerald-950 {
    --tw-border-opacity: 1;
    border-color: rgb(2 44 34 / var(--tw-border-opacity, 1));
  }

  .lg\:border-fuchsia-100 {
    --tw-border-opacity: 1;
    border-color: rgb(250 232 255 / var(--tw-border-opacity, 1));
  }

  .lg\:border-fuchsia-200 {
    --tw-border-opacity: 1;
    border-color: rgb(245 208 254 / var(--tw-border-opacity, 1));
  }

  .lg\:border-fuchsia-300 {
    --tw-border-opacity: 1;
    border-color: rgb(240 171 252 / var(--tw-border-opacity, 1));
  }

  .lg\:border-fuchsia-400 {
    --tw-border-opacity: 1;
    border-color: rgb(232 121 249 / var(--tw-border-opacity, 1));
  }

  .lg\:border-fuchsia-50 {
    --tw-border-opacity: 1;
    border-color: rgb(253 244 255 / var(--tw-border-opacity, 1));
  }

  .lg\:border-fuchsia-500 {
    --tw-border-opacity: 1;
    border-color: rgb(217 70 239 / var(--tw-border-opacity, 1));
  }

  .lg\:border-fuchsia-600 {
    --tw-border-opacity: 1;
    border-color: rgb(192 38 211 / var(--tw-border-opacity, 1));
  }

  .lg\:border-fuchsia-700 {
    --tw-border-opacity: 1;
    border-color: rgb(162 28 175 / var(--tw-border-opacity, 1));
  }

  .lg\:border-fuchsia-800 {
    --tw-border-opacity: 1;
    border-color: rgb(134 25 143 / var(--tw-border-opacity, 1));
  }

  .lg\:border-fuchsia-900 {
    --tw-border-opacity: 1;
    border-color: rgb(112 26 117 / var(--tw-border-opacity, 1));
  }

  .lg\:border-fuchsia-950 {
    --tw-border-opacity: 1;
    border-color: rgb(74 4 78 / var(--tw-border-opacity, 1));
  }

  .lg\:border-gray-100 {
    --tw-border-opacity: 1;
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
  }

  .lg\:border-gray-200 {
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
  }

  .lg\:border-gray-300 {
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
  }

  .lg\:border-gray-400 {
    --tw-border-opacity: 1;
    border-color: rgb(156 163 175 / var(--tw-border-opacity, 1));
  }

  .lg\:border-gray-50 {
    --tw-border-opacity: 1;
    border-color: rgb(249 250 251 / var(--tw-border-opacity, 1));
  }

  .lg\:border-gray-500 {
    --tw-border-opacity: 1;
    border-color: rgb(107 114 128 / var(--tw-border-opacity, 1));
  }

  .lg\:border-gray-600 {
    --tw-border-opacity: 1;
    border-color: rgb(75 85 99 / var(--tw-border-opacity, 1));
  }

  .lg\:border-gray-700 {
    --tw-border-opacity: 1;
    border-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
  }

  .lg\:border-gray-800 {
    --tw-border-opacity: 1;
    border-color: rgb(31 41 55 / var(--tw-border-opacity, 1));
  }

  .lg\:border-gray-900 {
    --tw-border-opacity: 1;
    border-color: rgb(17 24 39 / var(--tw-border-opacity, 1));
  }

  .lg\:border-gray-950 {
    --tw-border-opacity: 1;
    border-color: rgb(3 7 18 / var(--tw-border-opacity, 1));
  }

  .lg\:border-green-100 {
    --tw-border-opacity: 1;
    border-color: rgb(220 252 231 / var(--tw-border-opacity, 1));
  }

  .lg\:border-green-200 {
    --tw-border-opacity: 1;
    border-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
  }

  .lg\:border-green-300 {
    --tw-border-opacity: 1;
    border-color: rgb(134 239 172 / var(--tw-border-opacity, 1));
  }

  .lg\:border-green-400 {
    --tw-border-opacity: 1;
    border-color: rgb(74 222 128 / var(--tw-border-opacity, 1));
  }

  .lg\:border-green-50 {
    --tw-border-opacity: 1;
    border-color: rgb(240 253 244 / var(--tw-border-opacity, 1));
  }

  .lg\:border-green-500 {
    --tw-border-opacity: 1;
    border-color: rgb(34 197 94 / var(--tw-border-opacity, 1));
  }

  .lg\:border-green-600 {
    --tw-border-opacity: 1;
    border-color: rgb(22 163 74 / var(--tw-border-opacity, 1));
  }

  .lg\:border-green-700 {
    --tw-border-opacity: 1;
    border-color: rgb(21 128 61 / var(--tw-border-opacity, 1));
  }

  .lg\:border-green-800 {
    --tw-border-opacity: 1;
    border-color: rgb(22 101 52 / var(--tw-border-opacity, 1));
  }

  .lg\:border-green-900 {
    --tw-border-opacity: 1;
    border-color: rgb(20 83 45 / var(--tw-border-opacity, 1));
  }

  .lg\:border-green-950 {
    --tw-border-opacity: 1;
    border-color: rgb(5 46 22 / var(--tw-border-opacity, 1));
  }

  .lg\:border-indigo-100 {
    --tw-border-opacity: 1;
    border-color: rgb(224 231 255 / var(--tw-border-opacity, 1));
  }

  .lg\:border-indigo-200 {
    --tw-border-opacity: 1;
    border-color: rgb(199 210 254 / var(--tw-border-opacity, 1));
  }

  .lg\:border-indigo-300 {
    --tw-border-opacity: 1;
    border-color: rgb(165 180 252 / var(--tw-border-opacity, 1));
  }

  .lg\:border-indigo-400 {
    --tw-border-opacity: 1;
    border-color: rgb(129 140 248 / var(--tw-border-opacity, 1));
  }

  .lg\:border-indigo-50 {
    --tw-border-opacity: 1;
    border-color: rgb(238 242 255 / var(--tw-border-opacity, 1));
  }

  .lg\:border-indigo-500 {
    --tw-border-opacity: 1;
    border-color: rgb(99 102 241 / var(--tw-border-opacity, 1));
  }

  .lg\:border-indigo-600 {
    --tw-border-opacity: 1;
    border-color: rgb(79 70 229 / var(--tw-border-opacity, 1));
  }

  .lg\:border-indigo-700 {
    --tw-border-opacity: 1;
    border-color: rgb(67 56 202 / var(--tw-border-opacity, 1));
  }

  .lg\:border-indigo-800 {
    --tw-border-opacity: 1;
    border-color: rgb(55 48 163 / var(--tw-border-opacity, 1));
  }

  .lg\:border-indigo-900 {
    --tw-border-opacity: 1;
    border-color: rgb(49 46 129 / var(--tw-border-opacity, 1));
  }

  .lg\:border-indigo-950 {
    --tw-border-opacity: 1;
    border-color: rgb(30 27 75 / var(--tw-border-opacity, 1));
  }

  .lg\:border-lime-100 {
    --tw-border-opacity: 1;
    border-color: rgb(236 252 203 / var(--tw-border-opacity, 1));
  }

  .lg\:border-lime-200 {
    --tw-border-opacity: 1;
    border-color: rgb(217 249 157 / var(--tw-border-opacity, 1));
  }

  .lg\:border-lime-300 {
    --tw-border-opacity: 1;
    border-color: rgb(190 242 100 / var(--tw-border-opacity, 1));
  }

  .lg\:border-lime-400 {
    --tw-border-opacity: 1;
    border-color: rgb(163 230 53 / var(--tw-border-opacity, 1));
  }

  .lg\:border-lime-50 {
    --tw-border-opacity: 1;
    border-color: rgb(247 254 231 / var(--tw-border-opacity, 1));
  }

  .lg\:border-lime-500 {
    --tw-border-opacity: 1;
    border-color: rgb(132 204 22 / var(--tw-border-opacity, 1));
  }

  .lg\:border-lime-600 {
    --tw-border-opacity: 1;
    border-color: rgb(101 163 13 / var(--tw-border-opacity, 1));
  }

  .lg\:border-lime-700 {
    --tw-border-opacity: 1;
    border-color: rgb(77 124 15 / var(--tw-border-opacity, 1));
  }

  .lg\:border-lime-800 {
    --tw-border-opacity: 1;
    border-color: rgb(63 98 18 / var(--tw-border-opacity, 1));
  }

  .lg\:border-lime-900 {
    --tw-border-opacity: 1;
    border-color: rgb(54 83 20 / var(--tw-border-opacity, 1));
  }

  .lg\:border-lime-950 {
    --tw-border-opacity: 1;
    border-color: rgb(26 46 5 / var(--tw-border-opacity, 1));
  }

  .lg\:border-neutral-100 {
    --tw-border-opacity: 1;
    border-color: rgb(245 245 245 / var(--tw-border-opacity, 1));
  }

  .lg\:border-neutral-200 {
    --tw-border-opacity: 1;
    border-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
  }

  .lg\:border-neutral-300 {
    --tw-border-opacity: 1;
    border-color: rgb(212 212 212 / var(--tw-border-opacity, 1));
  }

  .lg\:border-neutral-400 {
    --tw-border-opacity: 1;
    border-color: rgb(163 163 163 / var(--tw-border-opacity, 1));
  }

  .lg\:border-neutral-50 {
    --tw-border-opacity: 1;
    border-color: rgb(250 250 250 / var(--tw-border-opacity, 1));
  }

  .lg\:border-neutral-500 {
    --tw-border-opacity: 1;
    border-color: rgb(115 115 115 / var(--tw-border-opacity, 1));
  }

  .lg\:border-neutral-600 {
    --tw-border-opacity: 1;
    border-color: rgb(82 82 82 / var(--tw-border-opacity, 1));
  }

  .lg\:border-neutral-700 {
    --tw-border-opacity: 1;
    border-color: rgb(64 64 64 / var(--tw-border-opacity, 1));
  }

  .lg\:border-neutral-800 {
    --tw-border-opacity: 1;
    border-color: rgb(38 38 38 / var(--tw-border-opacity, 1));
  }

  .lg\:border-neutral-900 {
    --tw-border-opacity: 1;
    border-color: rgb(23 23 23 / var(--tw-border-opacity, 1));
  }

  .lg\:border-neutral-950 {
    --tw-border-opacity: 1;
    border-color: rgb(10 10 10 / var(--tw-border-opacity, 1));
  }

  .lg\:border-orange-100 {
    --tw-border-opacity: 1;
    border-color: rgb(255 237 213 / var(--tw-border-opacity, 1));
  }

  .lg\:border-orange-200 {
    --tw-border-opacity: 1;
    border-color: rgb(254 215 170 / var(--tw-border-opacity, 1));
  }

  .lg\:border-orange-300 {
    --tw-border-opacity: 1;
    border-color: rgb(253 186 116 / var(--tw-border-opacity, 1));
  }

  .lg\:border-orange-400 {
    --tw-border-opacity: 1;
    border-color: rgb(251 146 60 / var(--tw-border-opacity, 1));
  }

  .lg\:border-orange-50 {
    --tw-border-opacity: 1;
    border-color: rgb(255 247 237 / var(--tw-border-opacity, 1));
  }

  .lg\:border-orange-500 {
    --tw-border-opacity: 1;
    border-color: rgb(249 115 22 / var(--tw-border-opacity, 1));
  }

  .lg\:border-orange-600 {
    --tw-border-opacity: 1;
    border-color: rgb(234 88 12 / var(--tw-border-opacity, 1));
  }

  .lg\:border-orange-700 {
    --tw-border-opacity: 1;
    border-color: rgb(194 65 12 / var(--tw-border-opacity, 1));
  }

  .lg\:border-orange-800 {
    --tw-border-opacity: 1;
    border-color: rgb(154 52 18 / var(--tw-border-opacity, 1));
  }

  .lg\:border-orange-900 {
    --tw-border-opacity: 1;
    border-color: rgb(124 45 18 / var(--tw-border-opacity, 1));
  }

  .lg\:border-orange-950 {
    --tw-border-opacity: 1;
    border-color: rgb(67 20 7 / var(--tw-border-opacity, 1));
  }

  .lg\:border-pink-100 {
    --tw-border-opacity: 1;
    border-color: rgb(252 231 243 / var(--tw-border-opacity, 1));
  }

  .lg\:border-pink-200 {
    --tw-border-opacity: 1;
    border-color: rgb(251 207 232 / var(--tw-border-opacity, 1));
  }

  .lg\:border-pink-300 {
    --tw-border-opacity: 1;
    border-color: rgb(249 168 212 / var(--tw-border-opacity, 1));
  }

  .lg\:border-pink-400 {
    --tw-border-opacity: 1;
    border-color: rgb(244 114 182 / var(--tw-border-opacity, 1));
  }

  .lg\:border-pink-50 {
    --tw-border-opacity: 1;
    border-color: rgb(253 242 248 / var(--tw-border-opacity, 1));
  }

  .lg\:border-pink-500 {
    --tw-border-opacity: 1;
    border-color: rgb(236 72 153 / var(--tw-border-opacity, 1));
  }

  .lg\:border-pink-600 {
    --tw-border-opacity: 1;
    border-color: rgb(219 39 119 / var(--tw-border-opacity, 1));
  }

  .lg\:border-pink-700 {
    --tw-border-opacity: 1;
    border-color: rgb(190 24 93 / var(--tw-border-opacity, 1));
  }

  .lg\:border-pink-800 {
    --tw-border-opacity: 1;
    border-color: rgb(157 23 77 / var(--tw-border-opacity, 1));
  }

  .lg\:border-pink-900 {
    --tw-border-opacity: 1;
    border-color: rgb(131 24 67 / var(--tw-border-opacity, 1));
  }

  .lg\:border-pink-950 {
    --tw-border-opacity: 1;
    border-color: rgb(80 7 36 / var(--tw-border-opacity, 1));
  }

  .lg\:border-purple-100 {
    --tw-border-opacity: 1;
    border-color: rgb(243 232 255 / var(--tw-border-opacity, 1));
  }

  .lg\:border-purple-200 {
    --tw-border-opacity: 1;
    border-color: rgb(233 213 255 / var(--tw-border-opacity, 1));
  }

  .lg\:border-purple-300 {
    --tw-border-opacity: 1;
    border-color: rgb(216 180 254 / var(--tw-border-opacity, 1));
  }

  .lg\:border-purple-400 {
    --tw-border-opacity: 1;
    border-color: rgb(192 132 252 / var(--tw-border-opacity, 1));
  }

  .lg\:border-purple-50 {
    --tw-border-opacity: 1;
    border-color: rgb(250 245 255 / var(--tw-border-opacity, 1));
  }

  .lg\:border-purple-500 {
    --tw-border-opacity: 1;
    border-color: rgb(168 85 247 / var(--tw-border-opacity, 1));
  }

  .lg\:border-purple-600 {
    --tw-border-opacity: 1;
    border-color: rgb(147 51 234 / var(--tw-border-opacity, 1));
  }

  .lg\:border-purple-700 {
    --tw-border-opacity: 1;
    border-color: rgb(126 34 206 / var(--tw-border-opacity, 1));
  }

  .lg\:border-purple-800 {
    --tw-border-opacity: 1;
    border-color: rgb(107 33 168 / var(--tw-border-opacity, 1));
  }

  .lg\:border-purple-900 {
    --tw-border-opacity: 1;
    border-color: rgb(88 28 135 / var(--tw-border-opacity, 1));
  }

  .lg\:border-purple-950 {
    --tw-border-opacity: 1;
    border-color: rgb(59 7 100 / var(--tw-border-opacity, 1));
  }

  .lg\:border-red-100 {
    --tw-border-opacity: 1;
    border-color: rgb(254 226 226 / var(--tw-border-opacity, 1));
  }

  .lg\:border-red-200 {
    --tw-border-opacity: 1;
    border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
  }

  .lg\:border-red-300 {
    --tw-border-opacity: 1;
    border-color: rgb(252 165 165 / var(--tw-border-opacity, 1));
  }

  .lg\:border-red-400 {
    --tw-border-opacity: 1;
    border-color: rgb(248 113 113 / var(--tw-border-opacity, 1));
  }

  .lg\:border-red-50 {
    --tw-border-opacity: 1;
    border-color: rgb(254 242 242 / var(--tw-border-opacity, 1));
  }

  .lg\:border-red-500 {
    --tw-border-opacity: 1;
    border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
  }

  .lg\:border-red-600 {
    --tw-border-opacity: 1;
    border-color: rgb(220 38 38 / var(--tw-border-opacity, 1));
  }

  .lg\:border-red-700 {
    --tw-border-opacity: 1;
    border-color: rgb(185 28 28 / var(--tw-border-opacity, 1));
  }

  .lg\:border-red-800 {
    --tw-border-opacity: 1;
    border-color: rgb(153 27 27 / var(--tw-border-opacity, 1));
  }

  .lg\:border-red-900 {
    --tw-border-opacity: 1;
    border-color: rgb(127 29 29 / var(--tw-border-opacity, 1));
  }

  .lg\:border-red-950 {
    --tw-border-opacity: 1;
    border-color: rgb(69 10 10 / var(--tw-border-opacity, 1));
  }

  .lg\:border-rose-100 {
    --tw-border-opacity: 1;
    border-color: rgb(255 228 230 / var(--tw-border-opacity, 1));
  }

  .lg\:border-rose-200 {
    --tw-border-opacity: 1;
    border-color: rgb(254 205 211 / var(--tw-border-opacity, 1));
  }

  .lg\:border-rose-300 {
    --tw-border-opacity: 1;
    border-color: rgb(253 164 175 / var(--tw-border-opacity, 1));
  }

  .lg\:border-rose-400 {
    --tw-border-opacity: 1;
    border-color: rgb(251 113 133 / var(--tw-border-opacity, 1));
  }

  .lg\:border-rose-50 {
    --tw-border-opacity: 1;
    border-color: rgb(255 241 242 / var(--tw-border-opacity, 1));
  }

  .lg\:border-rose-500 {
    --tw-border-opacity: 1;
    border-color: rgb(244 63 94 / var(--tw-border-opacity, 1));
  }

  .lg\:border-rose-600 {
    --tw-border-opacity: 1;
    border-color: rgb(225 29 72 / var(--tw-border-opacity, 1));
  }

  .lg\:border-rose-700 {
    --tw-border-opacity: 1;
    border-color: rgb(190 18 60 / var(--tw-border-opacity, 1));
  }

  .lg\:border-rose-800 {
    --tw-border-opacity: 1;
    border-color: rgb(159 18 57 / var(--tw-border-opacity, 1));
  }

  .lg\:border-rose-900 {
    --tw-border-opacity: 1;
    border-color: rgb(136 19 55 / var(--tw-border-opacity, 1));
  }

  .lg\:border-rose-950 {
    --tw-border-opacity: 1;
    border-color: rgb(76 5 25 / var(--tw-border-opacity, 1));
  }

  .lg\:border-sky-100 {
    --tw-border-opacity: 1;
    border-color: rgb(224 242 254 / var(--tw-border-opacity, 1));
  }

  .lg\:border-sky-200 {
    --tw-border-opacity: 1;
    border-color: rgb(186 230 253 / var(--tw-border-opacity, 1));
  }

  .lg\:border-sky-300 {
    --tw-border-opacity: 1;
    border-color: rgb(125 211 252 / var(--tw-border-opacity, 1));
  }

  .lg\:border-sky-400 {
    --tw-border-opacity: 1;
    border-color: rgb(56 189 248 / var(--tw-border-opacity, 1));
  }

  .lg\:border-sky-50 {
    --tw-border-opacity: 1;
    border-color: rgb(240 249 255 / var(--tw-border-opacity, 1));
  }

  .lg\:border-sky-500 {
    --tw-border-opacity: 1;
    border-color: rgb(14 165 233 / var(--tw-border-opacity, 1));
  }

  .lg\:border-sky-600 {
    --tw-border-opacity: 1;
    border-color: rgb(2 132 199 / var(--tw-border-opacity, 1));
  }

  .lg\:border-sky-700 {
    --tw-border-opacity: 1;
    border-color: rgb(3 105 161 / var(--tw-border-opacity, 1));
  }

  .lg\:border-sky-800 {
    --tw-border-opacity: 1;
    border-color: rgb(7 89 133 / var(--tw-border-opacity, 1));
  }

  .lg\:border-sky-900 {
    --tw-border-opacity: 1;
    border-color: rgb(12 74 110 / var(--tw-border-opacity, 1));
  }

  .lg\:border-sky-950 {
    --tw-border-opacity: 1;
    border-color: rgb(8 47 73 / var(--tw-border-opacity, 1));
  }

  .lg\:border-slate-100 {
    --tw-border-opacity: 1;
    border-color: rgb(241 245 249 / var(--tw-border-opacity, 1));
  }

  .lg\:border-slate-200 {
    --tw-border-opacity: 1;
    border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
  }

  .lg\:border-slate-300 {
    --tw-border-opacity: 1;
    border-color: rgb(203 213 225 / var(--tw-border-opacity, 1));
  }

  .lg\:border-slate-400 {
    --tw-border-opacity: 1;
    border-color: rgb(148 163 184 / var(--tw-border-opacity, 1));
  }

  .lg\:border-slate-50 {
    --tw-border-opacity: 1;
    border-color: rgb(248 250 252 / var(--tw-border-opacity, 1));
  }

  .lg\:border-slate-500 {
    --tw-border-opacity: 1;
    border-color: rgb(100 116 139 / var(--tw-border-opacity, 1));
  }

  .lg\:border-slate-600 {
    --tw-border-opacity: 1;
    border-color: rgb(71 85 105 / var(--tw-border-opacity, 1));
  }

  .lg\:border-slate-700 {
    --tw-border-opacity: 1;
    border-color: rgb(51 65 85 / var(--tw-border-opacity, 1));
  }

  .lg\:border-slate-800 {
    --tw-border-opacity: 1;
    border-color: rgb(30 41 59 / var(--tw-border-opacity, 1));
  }

  .lg\:border-slate-900 {
    --tw-border-opacity: 1;
    border-color: rgb(15 23 42 / var(--tw-border-opacity, 1));
  }

  .lg\:border-slate-950 {
    --tw-border-opacity: 1;
    border-color: rgb(2 6 23 / var(--tw-border-opacity, 1));
  }

  .lg\:border-stone-100 {
    --tw-border-opacity: 1;
    border-color: rgb(245 245 244 / var(--tw-border-opacity, 1));
  }

  .lg\:border-stone-200 {
    --tw-border-opacity: 1;
    border-color: rgb(231 229 228 / var(--tw-border-opacity, 1));
  }

  .lg\:border-stone-300 {
    --tw-border-opacity: 1;
    border-color: rgb(214 211 209 / var(--tw-border-opacity, 1));
  }

  .lg\:border-stone-400 {
    --tw-border-opacity: 1;
    border-color: rgb(168 162 158 / var(--tw-border-opacity, 1));
  }

  .lg\:border-stone-50 {
    --tw-border-opacity: 1;
    border-color: rgb(250 250 249 / var(--tw-border-opacity, 1));
  }

  .lg\:border-stone-500 {
    --tw-border-opacity: 1;
    border-color: rgb(120 113 108 / var(--tw-border-opacity, 1));
  }

  .lg\:border-stone-600 {
    --tw-border-opacity: 1;
    border-color: rgb(87 83 78 / var(--tw-border-opacity, 1));
  }

  .lg\:border-stone-700 {
    --tw-border-opacity: 1;
    border-color: rgb(68 64 60 / var(--tw-border-opacity, 1));
  }

  .lg\:border-stone-800 {
    --tw-border-opacity: 1;
    border-color: rgb(41 37 36 / var(--tw-border-opacity, 1));
  }

  .lg\:border-stone-900 {
    --tw-border-opacity: 1;
    border-color: rgb(28 25 23 / var(--tw-border-opacity, 1));
  }

  .lg\:border-stone-950 {
    --tw-border-opacity: 1;
    border-color: rgb(12 10 9 / var(--tw-border-opacity, 1));
  }

  .lg\:border-teal-100 {
    --tw-border-opacity: 1;
    border-color: rgb(204 251 241 / var(--tw-border-opacity, 1));
  }

  .lg\:border-teal-200 {
    --tw-border-opacity: 1;
    border-color: rgb(153 246 228 / var(--tw-border-opacity, 1));
  }

  .lg\:border-teal-300 {
    --tw-border-opacity: 1;
    border-color: rgb(94 234 212 / var(--tw-border-opacity, 1));
  }

  .lg\:border-teal-400 {
    --tw-border-opacity: 1;
    border-color: rgb(45 212 191 / var(--tw-border-opacity, 1));
  }

  .lg\:border-teal-50 {
    --tw-border-opacity: 1;
    border-color: rgb(240 253 250 / var(--tw-border-opacity, 1));
  }

  .lg\:border-teal-500 {
    --tw-border-opacity: 1;
    border-color: rgb(20 184 166 / var(--tw-border-opacity, 1));
  }

  .lg\:border-teal-600 {
    --tw-border-opacity: 1;
    border-color: rgb(13 148 136 / var(--tw-border-opacity, 1));
  }

  .lg\:border-teal-700 {
    --tw-border-opacity: 1;
    border-color: rgb(15 118 110 / var(--tw-border-opacity, 1));
  }

  .lg\:border-teal-800 {
    --tw-border-opacity: 1;
    border-color: rgb(17 94 89 / var(--tw-border-opacity, 1));
  }

  .lg\:border-teal-900 {
    --tw-border-opacity: 1;
    border-color: rgb(19 78 74 / var(--tw-border-opacity, 1));
  }

  .lg\:border-teal-950 {
    --tw-border-opacity: 1;
    border-color: rgb(4 47 46 / var(--tw-border-opacity, 1));
  }

  .lg\:border-violet-100 {
    --tw-border-opacity: 1;
    border-color: rgb(237 233 254 / var(--tw-border-opacity, 1));
  }

  .lg\:border-violet-200 {
    --tw-border-opacity: 1;
    border-color: rgb(221 214 254 / var(--tw-border-opacity, 1));
  }

  .lg\:border-violet-300 {
    --tw-border-opacity: 1;
    border-color: rgb(196 181 253 / var(--tw-border-opacity, 1));
  }

  .lg\:border-violet-400 {
    --tw-border-opacity: 1;
    border-color: rgb(167 139 250 / var(--tw-border-opacity, 1));
  }

  .lg\:border-violet-50 {
    --tw-border-opacity: 1;
    border-color: rgb(245 243 255 / var(--tw-border-opacity, 1));
  }

  .lg\:border-violet-500 {
    --tw-border-opacity: 1;
    border-color: rgb(139 92 246 / var(--tw-border-opacity, 1));
  }

  .lg\:border-violet-600 {
    --tw-border-opacity: 1;
    border-color: rgb(124 58 237 / var(--tw-border-opacity, 1));
  }

  .lg\:border-violet-700 {
    --tw-border-opacity: 1;
    border-color: rgb(109 40 217 / var(--tw-border-opacity, 1));
  }

  .lg\:border-violet-800 {
    --tw-border-opacity: 1;
    border-color: rgb(91 33 182 / var(--tw-border-opacity, 1));
  }

  .lg\:border-violet-900 {
    --tw-border-opacity: 1;
    border-color: rgb(76 29 149 / var(--tw-border-opacity, 1));
  }

  .lg\:border-violet-950 {
    --tw-border-opacity: 1;
    border-color: rgb(46 16 101 / var(--tw-border-opacity, 1));
  }

  .lg\:border-yellow-100 {
    --tw-border-opacity: 1;
    border-color: rgb(254 249 195 / var(--tw-border-opacity, 1));
  }

  .lg\:border-yellow-200 {
    --tw-border-opacity: 1;
    border-color: rgb(254 240 138 / var(--tw-border-opacity, 1));
  }

  .lg\:border-yellow-300 {
    --tw-border-opacity: 1;
    border-color: rgb(253 224 71 / var(--tw-border-opacity, 1));
  }

  .lg\:border-yellow-400 {
    --tw-border-opacity: 1;
    border-color: rgb(250 204 21 / var(--tw-border-opacity, 1));
  }

  .lg\:border-yellow-50 {
    --tw-border-opacity: 1;
    border-color: rgb(254 252 232 / var(--tw-border-opacity, 1));
  }

  .lg\:border-yellow-500 {
    --tw-border-opacity: 1;
    border-color: rgb(234 179 8 / var(--tw-border-opacity, 1));
  }

  .lg\:border-yellow-600 {
    --tw-border-opacity: 1;
    border-color: rgb(202 138 4 / var(--tw-border-opacity, 1));
  }

  .lg\:border-yellow-700 {
    --tw-border-opacity: 1;
    border-color: rgb(161 98 7 / var(--tw-border-opacity, 1));
  }

  .lg\:border-yellow-800 {
    --tw-border-opacity: 1;
    border-color: rgb(133 77 14 / var(--tw-border-opacity, 1));
  }

  .lg\:border-yellow-900 {
    --tw-border-opacity: 1;
    border-color: rgb(113 63 18 / var(--tw-border-opacity, 1));
  }

  .lg\:border-yellow-950 {
    --tw-border-opacity: 1;
    border-color: rgb(66 32 6 / var(--tw-border-opacity, 1));
  }

  .lg\:border-zinc-100 {
    --tw-border-opacity: 1;
    border-color: rgb(244 244 245 / var(--tw-border-opacity, 1));
  }

  .lg\:border-zinc-200 {
    --tw-border-opacity: 1;
    border-color: rgb(228 228 231 / var(--tw-border-opacity, 1));
  }

  .lg\:border-zinc-300 {
    --tw-border-opacity: 1;
    border-color: rgb(212 212 216 / var(--tw-border-opacity, 1));
  }

  .lg\:border-zinc-400 {
    --tw-border-opacity: 1;
    border-color: rgb(161 161 170 / var(--tw-border-opacity, 1));
  }

  .lg\:border-zinc-50 {
    --tw-border-opacity: 1;
    border-color: rgb(250 250 250 / var(--tw-border-opacity, 1));
  }

  .lg\:border-zinc-500 {
    --tw-border-opacity: 1;
    border-color: rgb(113 113 122 / var(--tw-border-opacity, 1));
  }

  .lg\:border-zinc-600 {
    --tw-border-opacity: 1;
    border-color: rgb(82 82 91 / var(--tw-border-opacity, 1));
  }

  .lg\:border-zinc-700 {
    --tw-border-opacity: 1;
    border-color: rgb(63 63 70 / var(--tw-border-opacity, 1));
  }

  .lg\:border-zinc-800 {
    --tw-border-opacity: 1;
    border-color: rgb(39 39 42 / var(--tw-border-opacity, 1));
  }

  .lg\:border-zinc-900 {
    --tw-border-opacity: 1;
    border-color: rgb(24 24 27 / var(--tw-border-opacity, 1));
  }

  .lg\:border-zinc-950 {
    --tw-border-opacity: 1;
    border-color: rgb(9 9 11 / var(--tw-border-opacity, 1));
  }

  .lg\:bg-amber-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 243 199 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-amber-100\/10 {
    background-color: rgb(254 243 199 / 0.1);
  }

  .lg\:bg-amber-100\/20 {
    background-color: rgb(254 243 199 / 0.2);
  }

  .lg\:bg-amber-100\/30 {
    background-color: rgb(254 243 199 / 0.3);
  }

  .lg\:bg-amber-100\/40 {
    background-color: rgb(254 243 199 / 0.4);
  }

  .lg\:bg-amber-100\/5 {
    background-color: rgb(254 243 199 / 0.05);
  }

  .lg\:bg-amber-100\/50 {
    background-color: rgb(254 243 199 / 0.5);
  }

  .lg\:bg-amber-100\/60 {
    background-color: rgb(254 243 199 / 0.6);
  }

  .lg\:bg-amber-100\/70 {
    background-color: rgb(254 243 199 / 0.7);
  }

  .lg\:bg-amber-100\/80 {
    background-color: rgb(254 243 199 / 0.8);
  }

  .lg\:bg-amber-100\/90 {
    background-color: rgb(254 243 199 / 0.9);
  }

  .lg\:bg-amber-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(253 230 138 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-amber-200\/10 {
    background-color: rgb(253 230 138 / 0.1);
  }

  .lg\:bg-amber-200\/20 {
    background-color: rgb(253 230 138 / 0.2);
  }

  .lg\:bg-amber-200\/30 {
    background-color: rgb(253 230 138 / 0.3);
  }

  .lg\:bg-amber-200\/40 {
    background-color: rgb(253 230 138 / 0.4);
  }

  .lg\:bg-amber-200\/5 {
    background-color: rgb(253 230 138 / 0.05);
  }

  .lg\:bg-amber-200\/50 {
    background-color: rgb(253 230 138 / 0.5);
  }

  .lg\:bg-amber-200\/60 {
    background-color: rgb(253 230 138 / 0.6);
  }

  .lg\:bg-amber-200\/70 {
    background-color: rgb(253 230 138 / 0.7);
  }

  .lg\:bg-amber-200\/80 {
    background-color: rgb(253 230 138 / 0.8);
  }

  .lg\:bg-amber-200\/90 {
    background-color: rgb(253 230 138 / 0.9);
  }

  .lg\:bg-amber-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(252 211 77 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-amber-300\/10 {
    background-color: rgb(252 211 77 / 0.1);
  }

  .lg\:bg-amber-300\/20 {
    background-color: rgb(252 211 77 / 0.2);
  }

  .lg\:bg-amber-300\/30 {
    background-color: rgb(252 211 77 / 0.3);
  }

  .lg\:bg-amber-300\/40 {
    background-color: rgb(252 211 77 / 0.4);
  }

  .lg\:bg-amber-300\/5 {
    background-color: rgb(252 211 77 / 0.05);
  }

  .lg\:bg-amber-300\/50 {
    background-color: rgb(252 211 77 / 0.5);
  }

  .lg\:bg-amber-300\/60 {
    background-color: rgb(252 211 77 / 0.6);
  }

  .lg\:bg-amber-300\/70 {
    background-color: rgb(252 211 77 / 0.7);
  }

  .lg\:bg-amber-300\/80 {
    background-color: rgb(252 211 77 / 0.8);
  }

  .lg\:bg-amber-300\/90 {
    background-color: rgb(252 211 77 / 0.9);
  }

  .lg\:bg-amber-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(251 191 36 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-amber-400\/10 {
    background-color: rgb(251 191 36 / 0.1);
  }

  .lg\:bg-amber-400\/20 {
    background-color: rgb(251 191 36 / 0.2);
  }

  .lg\:bg-amber-400\/30 {
    background-color: rgb(251 191 36 / 0.3);
  }

  .lg\:bg-amber-400\/40 {
    background-color: rgb(251 191 36 / 0.4);
  }

  .lg\:bg-amber-400\/5 {
    background-color: rgb(251 191 36 / 0.05);
  }

  .lg\:bg-amber-400\/50 {
    background-color: rgb(251 191 36 / 0.5);
  }

  .lg\:bg-amber-400\/60 {
    background-color: rgb(251 191 36 / 0.6);
  }

  .lg\:bg-amber-400\/70 {
    background-color: rgb(251 191 36 / 0.7);
  }

  .lg\:bg-amber-400\/80 {
    background-color: rgb(251 191 36 / 0.8);
  }

  .lg\:bg-amber-400\/90 {
    background-color: rgb(251 191 36 / 0.9);
  }

  .lg\:bg-amber-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 251 235 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-amber-50\/10 {
    background-color: rgb(255 251 235 / 0.1);
  }

  .lg\:bg-amber-50\/20 {
    background-color: rgb(255 251 235 / 0.2);
  }

  .lg\:bg-amber-50\/30 {
    background-color: rgb(255 251 235 / 0.3);
  }

  .lg\:bg-amber-50\/40 {
    background-color: rgb(255 251 235 / 0.4);
  }

  .lg\:bg-amber-50\/5 {
    background-color: rgb(255 251 235 / 0.05);
  }

  .lg\:bg-amber-50\/50 {
    background-color: rgb(255 251 235 / 0.5);
  }

  .lg\:bg-amber-50\/60 {
    background-color: rgb(255 251 235 / 0.6);
  }

  .lg\:bg-amber-50\/70 {
    background-color: rgb(255 251 235 / 0.7);
  }

  .lg\:bg-amber-50\/80 {
    background-color: rgb(255 251 235 / 0.8);
  }

  .lg\:bg-amber-50\/90 {
    background-color: rgb(255 251 235 / 0.9);
  }

  .lg\:bg-amber-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(245 158 11 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-amber-500\/10 {
    background-color: rgb(245 158 11 / 0.1);
  }

  .lg\:bg-amber-500\/20 {
    background-color: rgb(245 158 11 / 0.2);
  }

  .lg\:bg-amber-500\/30 {
    background-color: rgb(245 158 11 / 0.3);
  }

  .lg\:bg-amber-500\/40 {
    background-color: rgb(245 158 11 / 0.4);
  }

  .lg\:bg-amber-500\/5 {
    background-color: rgb(245 158 11 / 0.05);
  }

  .lg\:bg-amber-500\/50 {
    background-color: rgb(245 158 11 / 0.5);
  }

  .lg\:bg-amber-500\/60 {
    background-color: rgb(245 158 11 / 0.6);
  }

  .lg\:bg-amber-500\/70 {
    background-color: rgb(245 158 11 / 0.7);
  }

  .lg\:bg-amber-500\/80 {
    background-color: rgb(245 158 11 / 0.8);
  }

  .lg\:bg-amber-500\/90 {
    background-color: rgb(245 158 11 / 0.9);
  }

  .lg\:bg-amber-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(217 119 6 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-amber-600\/10 {
    background-color: rgb(217 119 6 / 0.1);
  }

  .lg\:bg-amber-600\/20 {
    background-color: rgb(217 119 6 / 0.2);
  }

  .lg\:bg-amber-600\/30 {
    background-color: rgb(217 119 6 / 0.3);
  }

  .lg\:bg-amber-600\/40 {
    background-color: rgb(217 119 6 / 0.4);
  }

  .lg\:bg-amber-600\/5 {
    background-color: rgb(217 119 6 / 0.05);
  }

  .lg\:bg-amber-600\/50 {
    background-color: rgb(217 119 6 / 0.5);
  }

  .lg\:bg-amber-600\/60 {
    background-color: rgb(217 119 6 / 0.6);
  }

  .lg\:bg-amber-600\/70 {
    background-color: rgb(217 119 6 / 0.7);
  }

  .lg\:bg-amber-600\/80 {
    background-color: rgb(217 119 6 / 0.8);
  }

  .lg\:bg-amber-600\/90 {
    background-color: rgb(217 119 6 / 0.9);
  }

  .lg\:bg-amber-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(180 83 9 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-amber-700\/10 {
    background-color: rgb(180 83 9 / 0.1);
  }

  .lg\:bg-amber-700\/20 {
    background-color: rgb(180 83 9 / 0.2);
  }

  .lg\:bg-amber-700\/30 {
    background-color: rgb(180 83 9 / 0.3);
  }

  .lg\:bg-amber-700\/40 {
    background-color: rgb(180 83 9 / 0.4);
  }

  .lg\:bg-amber-700\/5 {
    background-color: rgb(180 83 9 / 0.05);
  }

  .lg\:bg-amber-700\/50 {
    background-color: rgb(180 83 9 / 0.5);
  }

  .lg\:bg-amber-700\/60 {
    background-color: rgb(180 83 9 / 0.6);
  }

  .lg\:bg-amber-700\/70 {
    background-color: rgb(180 83 9 / 0.7);
  }

  .lg\:bg-amber-700\/80 {
    background-color: rgb(180 83 9 / 0.8);
  }

  .lg\:bg-amber-700\/90 {
    background-color: rgb(180 83 9 / 0.9);
  }

  .lg\:bg-amber-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(146 64 14 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-amber-800\/10 {
    background-color: rgb(146 64 14 / 0.1);
  }

  .lg\:bg-amber-800\/20 {
    background-color: rgb(146 64 14 / 0.2);
  }

  .lg\:bg-amber-800\/30 {
    background-color: rgb(146 64 14 / 0.3);
  }

  .lg\:bg-amber-800\/40 {
    background-color: rgb(146 64 14 / 0.4);
  }

  .lg\:bg-amber-800\/5 {
    background-color: rgb(146 64 14 / 0.05);
  }

  .lg\:bg-amber-800\/50 {
    background-color: rgb(146 64 14 / 0.5);
  }

  .lg\:bg-amber-800\/60 {
    background-color: rgb(146 64 14 / 0.6);
  }

  .lg\:bg-amber-800\/70 {
    background-color: rgb(146 64 14 / 0.7);
  }

  .lg\:bg-amber-800\/80 {
    background-color: rgb(146 64 14 / 0.8);
  }

  .lg\:bg-amber-800\/90 {
    background-color: rgb(146 64 14 / 0.9);
  }

  .lg\:bg-amber-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(120 53 15 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-amber-900\/10 {
    background-color: rgb(120 53 15 / 0.1);
  }

  .lg\:bg-amber-900\/20 {
    background-color: rgb(120 53 15 / 0.2);
  }

  .lg\:bg-amber-900\/30 {
    background-color: rgb(120 53 15 / 0.3);
  }

  .lg\:bg-amber-900\/40 {
    background-color: rgb(120 53 15 / 0.4);
  }

  .lg\:bg-amber-900\/5 {
    background-color: rgb(120 53 15 / 0.05);
  }

  .lg\:bg-amber-900\/50 {
    background-color: rgb(120 53 15 / 0.5);
  }

  .lg\:bg-amber-900\/60 {
    background-color: rgb(120 53 15 / 0.6);
  }

  .lg\:bg-amber-900\/70 {
    background-color: rgb(120 53 15 / 0.7);
  }

  .lg\:bg-amber-900\/80 {
    background-color: rgb(120 53 15 / 0.8);
  }

  .lg\:bg-amber-900\/90 {
    background-color: rgb(120 53 15 / 0.9);
  }

  .lg\:bg-amber-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(69 26 3 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-amber-950\/10 {
    background-color: rgb(69 26 3 / 0.1);
  }

  .lg\:bg-amber-950\/20 {
    background-color: rgb(69 26 3 / 0.2);
  }

  .lg\:bg-amber-950\/30 {
    background-color: rgb(69 26 3 / 0.3);
  }

  .lg\:bg-amber-950\/40 {
    background-color: rgb(69 26 3 / 0.4);
  }

  .lg\:bg-amber-950\/5 {
    background-color: rgb(69 26 3 / 0.05);
  }

  .lg\:bg-amber-950\/50 {
    background-color: rgb(69 26 3 / 0.5);
  }

  .lg\:bg-amber-950\/60 {
    background-color: rgb(69 26 3 / 0.6);
  }

  .lg\:bg-amber-950\/70 {
    background-color: rgb(69 26 3 / 0.7);
  }

  .lg\:bg-amber-950\/80 {
    background-color: rgb(69 26 3 / 0.8);
  }

  .lg\:bg-amber-950\/90 {
    background-color: rgb(69 26 3 / 0.9);
  }

  .lg\:bg-blue-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-blue-100\/10 {
    background-color: rgb(219 234 254 / 0.1);
  }

  .lg\:bg-blue-100\/20 {
    background-color: rgb(219 234 254 / 0.2);
  }

  .lg\:bg-blue-100\/30 {
    background-color: rgb(219 234 254 / 0.3);
  }

  .lg\:bg-blue-100\/40 {
    background-color: rgb(219 234 254 / 0.4);
  }

  .lg\:bg-blue-100\/5 {
    background-color: rgb(219 234 254 / 0.05);
  }

  .lg\:bg-blue-100\/50 {
    background-color: rgb(219 234 254 / 0.5);
  }

  .lg\:bg-blue-100\/60 {
    background-color: rgb(219 234 254 / 0.6);
  }

  .lg\:bg-blue-100\/70 {
    background-color: rgb(219 234 254 / 0.7);
  }

  .lg\:bg-blue-100\/80 {
    background-color: rgb(219 234 254 / 0.8);
  }

  .lg\:bg-blue-100\/90 {
    background-color: rgb(219 234 254 / 0.9);
  }

  .lg\:bg-blue-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(191 219 254 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-blue-200\/10 {
    background-color: rgb(191 219 254 / 0.1);
  }

  .lg\:bg-blue-200\/20 {
    background-color: rgb(191 219 254 / 0.2);
  }

  .lg\:bg-blue-200\/30 {
    background-color: rgb(191 219 254 / 0.3);
  }

  .lg\:bg-blue-200\/40 {
    background-color: rgb(191 219 254 / 0.4);
  }

  .lg\:bg-blue-200\/5 {
    background-color: rgb(191 219 254 / 0.05);
  }

  .lg\:bg-blue-200\/50 {
    background-color: rgb(191 219 254 / 0.5);
  }

  .lg\:bg-blue-200\/60 {
    background-color: rgb(191 219 254 / 0.6);
  }

  .lg\:bg-blue-200\/70 {
    background-color: rgb(191 219 254 / 0.7);
  }

  .lg\:bg-blue-200\/80 {
    background-color: rgb(191 219 254 / 0.8);
  }

  .lg\:bg-blue-200\/90 {
    background-color: rgb(191 219 254 / 0.9);
  }

  .lg\:bg-blue-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(147 197 253 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-blue-300\/10 {
    background-color: rgb(147 197 253 / 0.1);
  }

  .lg\:bg-blue-300\/20 {
    background-color: rgb(147 197 253 / 0.2);
  }

  .lg\:bg-blue-300\/30 {
    background-color: rgb(147 197 253 / 0.3);
  }

  .lg\:bg-blue-300\/40 {
    background-color: rgb(147 197 253 / 0.4);
  }

  .lg\:bg-blue-300\/5 {
    background-color: rgb(147 197 253 / 0.05);
  }

  .lg\:bg-blue-300\/50 {
    background-color: rgb(147 197 253 / 0.5);
  }

  .lg\:bg-blue-300\/60 {
    background-color: rgb(147 197 253 / 0.6);
  }

  .lg\:bg-blue-300\/70 {
    background-color: rgb(147 197 253 / 0.7);
  }

  .lg\:bg-blue-300\/80 {
    background-color: rgb(147 197 253 / 0.8);
  }

  .lg\:bg-blue-300\/90 {
    background-color: rgb(147 197 253 / 0.9);
  }

  .lg\:bg-blue-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(96 165 250 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-blue-400\/10 {
    background-color: rgb(96 165 250 / 0.1);
  }

  .lg\:bg-blue-400\/20 {
    background-color: rgb(96 165 250 / 0.2);
  }

  .lg\:bg-blue-400\/30 {
    background-color: rgb(96 165 250 / 0.3);
  }

  .lg\:bg-blue-400\/40 {
    background-color: rgb(96 165 250 / 0.4);
  }

  .lg\:bg-blue-400\/5 {
    background-color: rgb(96 165 250 / 0.05);
  }

  .lg\:bg-blue-400\/50 {
    background-color: rgb(96 165 250 / 0.5);
  }

  .lg\:bg-blue-400\/60 {
    background-color: rgb(96 165 250 / 0.6);
  }

  .lg\:bg-blue-400\/70 {
    background-color: rgb(96 165 250 / 0.7);
  }

  .lg\:bg-blue-400\/80 {
    background-color: rgb(96 165 250 / 0.8);
  }

  .lg\:bg-blue-400\/90 {
    background-color: rgb(96 165 250 / 0.9);
  }

  .lg\:bg-blue-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-blue-50\/10 {
    background-color: rgb(239 246 255 / 0.1);
  }

  .lg\:bg-blue-50\/20 {
    background-color: rgb(239 246 255 / 0.2);
  }

  .lg\:bg-blue-50\/30 {
    background-color: rgb(239 246 255 / 0.3);
  }

  .lg\:bg-blue-50\/40 {
    background-color: rgb(239 246 255 / 0.4);
  }

  .lg\:bg-blue-50\/5 {
    background-color: rgb(239 246 255 / 0.05);
  }

  .lg\:bg-blue-50\/50 {
    background-color: rgb(239 246 255 / 0.5);
  }

  .lg\:bg-blue-50\/60 {
    background-color: rgb(239 246 255 / 0.6);
  }

  .lg\:bg-blue-50\/70 {
    background-color: rgb(239 246 255 / 0.7);
  }

  .lg\:bg-blue-50\/80 {
    background-color: rgb(239 246 255 / 0.8);
  }

  .lg\:bg-blue-50\/90 {
    background-color: rgb(239 246 255 / 0.9);
  }

  .lg\:bg-blue-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-blue-500\/10 {
    background-color: rgb(59 130 246 / 0.1);
  }

  .lg\:bg-blue-500\/20 {
    background-color: rgb(59 130 246 / 0.2);
  }

  .lg\:bg-blue-500\/30 {
    background-color: rgb(59 130 246 / 0.3);
  }

  .lg\:bg-blue-500\/40 {
    background-color: rgb(59 130 246 / 0.4);
  }

  .lg\:bg-blue-500\/5 {
    background-color: rgb(59 130 246 / 0.05);
  }

  .lg\:bg-blue-500\/50 {
    background-color: rgb(59 130 246 / 0.5);
  }

  .lg\:bg-blue-500\/60 {
    background-color: rgb(59 130 246 / 0.6);
  }

  .lg\:bg-blue-500\/70 {
    background-color: rgb(59 130 246 / 0.7);
  }

  .lg\:bg-blue-500\/80 {
    background-color: rgb(59 130 246 / 0.8);
  }

  .lg\:bg-blue-500\/90 {
    background-color: rgb(59 130 246 / 0.9);
  }

  .lg\:bg-blue-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-blue-600\/10 {
    background-color: rgb(37 99 235 / 0.1);
  }

  .lg\:bg-blue-600\/20 {
    background-color: rgb(37 99 235 / 0.2);
  }

  .lg\:bg-blue-600\/30 {
    background-color: rgb(37 99 235 / 0.3);
  }

  .lg\:bg-blue-600\/40 {
    background-color: rgb(37 99 235 / 0.4);
  }

  .lg\:bg-blue-600\/5 {
    background-color: rgb(37 99 235 / 0.05);
  }

  .lg\:bg-blue-600\/50 {
    background-color: rgb(37 99 235 / 0.5);
  }

  .lg\:bg-blue-600\/60 {
    background-color: rgb(37 99 235 / 0.6);
  }

  .lg\:bg-blue-600\/70 {
    background-color: rgb(37 99 235 / 0.7);
  }

  .lg\:bg-blue-600\/80 {
    background-color: rgb(37 99 235 / 0.8);
  }

  .lg\:bg-blue-600\/90 {
    background-color: rgb(37 99 235 / 0.9);
  }

  .lg\:bg-blue-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-blue-700\/10 {
    background-color: rgb(29 78 216 / 0.1);
  }

  .lg\:bg-blue-700\/20 {
    background-color: rgb(29 78 216 / 0.2);
  }

  .lg\:bg-blue-700\/30 {
    background-color: rgb(29 78 216 / 0.3);
  }

  .lg\:bg-blue-700\/40 {
    background-color: rgb(29 78 216 / 0.4);
  }

  .lg\:bg-blue-700\/5 {
    background-color: rgb(29 78 216 / 0.05);
  }

  .lg\:bg-blue-700\/50 {
    background-color: rgb(29 78 216 / 0.5);
  }

  .lg\:bg-blue-700\/60 {
    background-color: rgb(29 78 216 / 0.6);
  }

  .lg\:bg-blue-700\/70 {
    background-color: rgb(29 78 216 / 0.7);
  }

  .lg\:bg-blue-700\/80 {
    background-color: rgb(29 78 216 / 0.8);
  }

  .lg\:bg-blue-700\/90 {
    background-color: rgb(29 78 216 / 0.9);
  }

  .lg\:bg-blue-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(30 64 175 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-blue-800\/10 {
    background-color: rgb(30 64 175 / 0.1);
  }

  .lg\:bg-blue-800\/20 {
    background-color: rgb(30 64 175 / 0.2);
  }

  .lg\:bg-blue-800\/30 {
    background-color: rgb(30 64 175 / 0.3);
  }

  .lg\:bg-blue-800\/40 {
    background-color: rgb(30 64 175 / 0.4);
  }

  .lg\:bg-blue-800\/5 {
    background-color: rgb(30 64 175 / 0.05);
  }

  .lg\:bg-blue-800\/50 {
    background-color: rgb(30 64 175 / 0.5);
  }

  .lg\:bg-blue-800\/60 {
    background-color: rgb(30 64 175 / 0.6);
  }

  .lg\:bg-blue-800\/70 {
    background-color: rgb(30 64 175 / 0.7);
  }

  .lg\:bg-blue-800\/80 {
    background-color: rgb(30 64 175 / 0.8);
  }

  .lg\:bg-blue-800\/90 {
    background-color: rgb(30 64 175 / 0.9);
  }

  .lg\:bg-blue-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(30 58 138 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-blue-900\/10 {
    background-color: rgb(30 58 138 / 0.1);
  }

  .lg\:bg-blue-900\/20 {
    background-color: rgb(30 58 138 / 0.2);
  }

  .lg\:bg-blue-900\/30 {
    background-color: rgb(30 58 138 / 0.3);
  }

  .lg\:bg-blue-900\/40 {
    background-color: rgb(30 58 138 / 0.4);
  }

  .lg\:bg-blue-900\/5 {
    background-color: rgb(30 58 138 / 0.05);
  }

  .lg\:bg-blue-900\/50 {
    background-color: rgb(30 58 138 / 0.5);
  }

  .lg\:bg-blue-900\/60 {
    background-color: rgb(30 58 138 / 0.6);
  }

  .lg\:bg-blue-900\/70 {
    background-color: rgb(30 58 138 / 0.7);
  }

  .lg\:bg-blue-900\/80 {
    background-color: rgb(30 58 138 / 0.8);
  }

  .lg\:bg-blue-900\/90 {
    background-color: rgb(30 58 138 / 0.9);
  }

  .lg\:bg-blue-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(23 37 84 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-blue-950\/10 {
    background-color: rgb(23 37 84 / 0.1);
  }

  .lg\:bg-blue-950\/20 {
    background-color: rgb(23 37 84 / 0.2);
  }

  .lg\:bg-blue-950\/30 {
    background-color: rgb(23 37 84 / 0.3);
  }

  .lg\:bg-blue-950\/40 {
    background-color: rgb(23 37 84 / 0.4);
  }

  .lg\:bg-blue-950\/5 {
    background-color: rgb(23 37 84 / 0.05);
  }

  .lg\:bg-blue-950\/50 {
    background-color: rgb(23 37 84 / 0.5);
  }

  .lg\:bg-blue-950\/60 {
    background-color: rgb(23 37 84 / 0.6);
  }

  .lg\:bg-blue-950\/70 {
    background-color: rgb(23 37 84 / 0.7);
  }

  .lg\:bg-blue-950\/80 {
    background-color: rgb(23 37 84 / 0.8);
  }

  .lg\:bg-blue-950\/90 {
    background-color: rgb(23 37 84 / 0.9);
  }

  .lg\:bg-cyan-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(207 250 254 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-cyan-100\/10 {
    background-color: rgb(207 250 254 / 0.1);
  }

  .lg\:bg-cyan-100\/20 {
    background-color: rgb(207 250 254 / 0.2);
  }

  .lg\:bg-cyan-100\/30 {
    background-color: rgb(207 250 254 / 0.3);
  }

  .lg\:bg-cyan-100\/40 {
    background-color: rgb(207 250 254 / 0.4);
  }

  .lg\:bg-cyan-100\/5 {
    background-color: rgb(207 250 254 / 0.05);
  }

  .lg\:bg-cyan-100\/50 {
    background-color: rgb(207 250 254 / 0.5);
  }

  .lg\:bg-cyan-100\/60 {
    background-color: rgb(207 250 254 / 0.6);
  }

  .lg\:bg-cyan-100\/70 {
    background-color: rgb(207 250 254 / 0.7);
  }

  .lg\:bg-cyan-100\/80 {
    background-color: rgb(207 250 254 / 0.8);
  }

  .lg\:bg-cyan-100\/90 {
    background-color: rgb(207 250 254 / 0.9);
  }

  .lg\:bg-cyan-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(165 243 252 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-cyan-200\/10 {
    background-color: rgb(165 243 252 / 0.1);
  }

  .lg\:bg-cyan-200\/20 {
    background-color: rgb(165 243 252 / 0.2);
  }

  .lg\:bg-cyan-200\/30 {
    background-color: rgb(165 243 252 / 0.3);
  }

  .lg\:bg-cyan-200\/40 {
    background-color: rgb(165 243 252 / 0.4);
  }

  .lg\:bg-cyan-200\/5 {
    background-color: rgb(165 243 252 / 0.05);
  }

  .lg\:bg-cyan-200\/50 {
    background-color: rgb(165 243 252 / 0.5);
  }

  .lg\:bg-cyan-200\/60 {
    background-color: rgb(165 243 252 / 0.6);
  }

  .lg\:bg-cyan-200\/70 {
    background-color: rgb(165 243 252 / 0.7);
  }

  .lg\:bg-cyan-200\/80 {
    background-color: rgb(165 243 252 / 0.8);
  }

  .lg\:bg-cyan-200\/90 {
    background-color: rgb(165 243 252 / 0.9);
  }

  .lg\:bg-cyan-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(103 232 249 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-cyan-300\/10 {
    background-color: rgb(103 232 249 / 0.1);
  }

  .lg\:bg-cyan-300\/20 {
    background-color: rgb(103 232 249 / 0.2);
  }

  .lg\:bg-cyan-300\/30 {
    background-color: rgb(103 232 249 / 0.3);
  }

  .lg\:bg-cyan-300\/40 {
    background-color: rgb(103 232 249 / 0.4);
  }

  .lg\:bg-cyan-300\/5 {
    background-color: rgb(103 232 249 / 0.05);
  }

  .lg\:bg-cyan-300\/50 {
    background-color: rgb(103 232 249 / 0.5);
  }

  .lg\:bg-cyan-300\/60 {
    background-color: rgb(103 232 249 / 0.6);
  }

  .lg\:bg-cyan-300\/70 {
    background-color: rgb(103 232 249 / 0.7);
  }

  .lg\:bg-cyan-300\/80 {
    background-color: rgb(103 232 249 / 0.8);
  }

  .lg\:bg-cyan-300\/90 {
    background-color: rgb(103 232 249 / 0.9);
  }

  .lg\:bg-cyan-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(34 211 238 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-cyan-400\/10 {
    background-color: rgb(34 211 238 / 0.1);
  }

  .lg\:bg-cyan-400\/20 {
    background-color: rgb(34 211 238 / 0.2);
  }

  .lg\:bg-cyan-400\/30 {
    background-color: rgb(34 211 238 / 0.3);
  }

  .lg\:bg-cyan-400\/40 {
    background-color: rgb(34 211 238 / 0.4);
  }

  .lg\:bg-cyan-400\/5 {
    background-color: rgb(34 211 238 / 0.05);
  }

  .lg\:bg-cyan-400\/50 {
    background-color: rgb(34 211 238 / 0.5);
  }

  .lg\:bg-cyan-400\/60 {
    background-color: rgb(34 211 238 / 0.6);
  }

  .lg\:bg-cyan-400\/70 {
    background-color: rgb(34 211 238 / 0.7);
  }

  .lg\:bg-cyan-400\/80 {
    background-color: rgb(34 211 238 / 0.8);
  }

  .lg\:bg-cyan-400\/90 {
    background-color: rgb(34 211 238 / 0.9);
  }

  .lg\:bg-cyan-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(236 254 255 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-cyan-50\/10 {
    background-color: rgb(236 254 255 / 0.1);
  }

  .lg\:bg-cyan-50\/20 {
    background-color: rgb(236 254 255 / 0.2);
  }

  .lg\:bg-cyan-50\/30 {
    background-color: rgb(236 254 255 / 0.3);
  }

  .lg\:bg-cyan-50\/40 {
    background-color: rgb(236 254 255 / 0.4);
  }

  .lg\:bg-cyan-50\/5 {
    background-color: rgb(236 254 255 / 0.05);
  }

  .lg\:bg-cyan-50\/50 {
    background-color: rgb(236 254 255 / 0.5);
  }

  .lg\:bg-cyan-50\/60 {
    background-color: rgb(236 254 255 / 0.6);
  }

  .lg\:bg-cyan-50\/70 {
    background-color: rgb(236 254 255 / 0.7);
  }

  .lg\:bg-cyan-50\/80 {
    background-color: rgb(236 254 255 / 0.8);
  }

  .lg\:bg-cyan-50\/90 {
    background-color: rgb(236 254 255 / 0.9);
  }

  .lg\:bg-cyan-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(6 182 212 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-cyan-500\/10 {
    background-color: rgb(6 182 212 / 0.1);
  }

  .lg\:bg-cyan-500\/20 {
    background-color: rgb(6 182 212 / 0.2);
  }

  .lg\:bg-cyan-500\/30 {
    background-color: rgb(6 182 212 / 0.3);
  }

  .lg\:bg-cyan-500\/40 {
    background-color: rgb(6 182 212 / 0.4);
  }

  .lg\:bg-cyan-500\/5 {
    background-color: rgb(6 182 212 / 0.05);
  }

  .lg\:bg-cyan-500\/50 {
    background-color: rgb(6 182 212 / 0.5);
  }

  .lg\:bg-cyan-500\/60 {
    background-color: rgb(6 182 212 / 0.6);
  }

  .lg\:bg-cyan-500\/70 {
    background-color: rgb(6 182 212 / 0.7);
  }

  .lg\:bg-cyan-500\/80 {
    background-color: rgb(6 182 212 / 0.8);
  }

  .lg\:bg-cyan-500\/90 {
    background-color: rgb(6 182 212 / 0.9);
  }

  .lg\:bg-cyan-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(8 145 178 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-cyan-600\/10 {
    background-color: rgb(8 145 178 / 0.1);
  }

  .lg\:bg-cyan-600\/20 {
    background-color: rgb(8 145 178 / 0.2);
  }

  .lg\:bg-cyan-600\/30 {
    background-color: rgb(8 145 178 / 0.3);
  }

  .lg\:bg-cyan-600\/40 {
    background-color: rgb(8 145 178 / 0.4);
  }

  .lg\:bg-cyan-600\/5 {
    background-color: rgb(8 145 178 / 0.05);
  }

  .lg\:bg-cyan-600\/50 {
    background-color: rgb(8 145 178 / 0.5);
  }

  .lg\:bg-cyan-600\/60 {
    background-color: rgb(8 145 178 / 0.6);
  }

  .lg\:bg-cyan-600\/70 {
    background-color: rgb(8 145 178 / 0.7);
  }

  .lg\:bg-cyan-600\/80 {
    background-color: rgb(8 145 178 / 0.8);
  }

  .lg\:bg-cyan-600\/90 {
    background-color: rgb(8 145 178 / 0.9);
  }

  .lg\:bg-cyan-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(14 116 144 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-cyan-700\/10 {
    background-color: rgb(14 116 144 / 0.1);
  }

  .lg\:bg-cyan-700\/20 {
    background-color: rgb(14 116 144 / 0.2);
  }

  .lg\:bg-cyan-700\/30 {
    background-color: rgb(14 116 144 / 0.3);
  }

  .lg\:bg-cyan-700\/40 {
    background-color: rgb(14 116 144 / 0.4);
  }

  .lg\:bg-cyan-700\/5 {
    background-color: rgb(14 116 144 / 0.05);
  }

  .lg\:bg-cyan-700\/50 {
    background-color: rgb(14 116 144 / 0.5);
  }

  .lg\:bg-cyan-700\/60 {
    background-color: rgb(14 116 144 / 0.6);
  }

  .lg\:bg-cyan-700\/70 {
    background-color: rgb(14 116 144 / 0.7);
  }

  .lg\:bg-cyan-700\/80 {
    background-color: rgb(14 116 144 / 0.8);
  }

  .lg\:bg-cyan-700\/90 {
    background-color: rgb(14 116 144 / 0.9);
  }

  .lg\:bg-cyan-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(21 94 117 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-cyan-800\/10 {
    background-color: rgb(21 94 117 / 0.1);
  }

  .lg\:bg-cyan-800\/20 {
    background-color: rgb(21 94 117 / 0.2);
  }

  .lg\:bg-cyan-800\/30 {
    background-color: rgb(21 94 117 / 0.3);
  }

  .lg\:bg-cyan-800\/40 {
    background-color: rgb(21 94 117 / 0.4);
  }

  .lg\:bg-cyan-800\/5 {
    background-color: rgb(21 94 117 / 0.05);
  }

  .lg\:bg-cyan-800\/50 {
    background-color: rgb(21 94 117 / 0.5);
  }

  .lg\:bg-cyan-800\/60 {
    background-color: rgb(21 94 117 / 0.6);
  }

  .lg\:bg-cyan-800\/70 {
    background-color: rgb(21 94 117 / 0.7);
  }

  .lg\:bg-cyan-800\/80 {
    background-color: rgb(21 94 117 / 0.8);
  }

  .lg\:bg-cyan-800\/90 {
    background-color: rgb(21 94 117 / 0.9);
  }

  .lg\:bg-cyan-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(22 78 99 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-cyan-900\/10 {
    background-color: rgb(22 78 99 / 0.1);
  }

  .lg\:bg-cyan-900\/20 {
    background-color: rgb(22 78 99 / 0.2);
  }

  .lg\:bg-cyan-900\/30 {
    background-color: rgb(22 78 99 / 0.3);
  }

  .lg\:bg-cyan-900\/40 {
    background-color: rgb(22 78 99 / 0.4);
  }

  .lg\:bg-cyan-900\/5 {
    background-color: rgb(22 78 99 / 0.05);
  }

  .lg\:bg-cyan-900\/50 {
    background-color: rgb(22 78 99 / 0.5);
  }

  .lg\:bg-cyan-900\/60 {
    background-color: rgb(22 78 99 / 0.6);
  }

  .lg\:bg-cyan-900\/70 {
    background-color: rgb(22 78 99 / 0.7);
  }

  .lg\:bg-cyan-900\/80 {
    background-color: rgb(22 78 99 / 0.8);
  }

  .lg\:bg-cyan-900\/90 {
    background-color: rgb(22 78 99 / 0.9);
  }

  .lg\:bg-cyan-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(8 51 68 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-cyan-950\/10 {
    background-color: rgb(8 51 68 / 0.1);
  }

  .lg\:bg-cyan-950\/20 {
    background-color: rgb(8 51 68 / 0.2);
  }

  .lg\:bg-cyan-950\/30 {
    background-color: rgb(8 51 68 / 0.3);
  }

  .lg\:bg-cyan-950\/40 {
    background-color: rgb(8 51 68 / 0.4);
  }

  .lg\:bg-cyan-950\/5 {
    background-color: rgb(8 51 68 / 0.05);
  }

  .lg\:bg-cyan-950\/50 {
    background-color: rgb(8 51 68 / 0.5);
  }

  .lg\:bg-cyan-950\/60 {
    background-color: rgb(8 51 68 / 0.6);
  }

  .lg\:bg-cyan-950\/70 {
    background-color: rgb(8 51 68 / 0.7);
  }

  .lg\:bg-cyan-950\/80 {
    background-color: rgb(8 51 68 / 0.8);
  }

  .lg\:bg-cyan-950\/90 {
    background-color: rgb(8 51 68 / 0.9);
  }

  .lg\:bg-emerald-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(209 250 229 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-emerald-100\/10 {
    background-color: rgb(209 250 229 / 0.1);
  }

  .lg\:bg-emerald-100\/20 {
    background-color: rgb(209 250 229 / 0.2);
  }

  .lg\:bg-emerald-100\/30 {
    background-color: rgb(209 250 229 / 0.3);
  }

  .lg\:bg-emerald-100\/40 {
    background-color: rgb(209 250 229 / 0.4);
  }

  .lg\:bg-emerald-100\/5 {
    background-color: rgb(209 250 229 / 0.05);
  }

  .lg\:bg-emerald-100\/50 {
    background-color: rgb(209 250 229 / 0.5);
  }

  .lg\:bg-emerald-100\/60 {
    background-color: rgb(209 250 229 / 0.6);
  }

  .lg\:bg-emerald-100\/70 {
    background-color: rgb(209 250 229 / 0.7);
  }

  .lg\:bg-emerald-100\/80 {
    background-color: rgb(209 250 229 / 0.8);
  }

  .lg\:bg-emerald-100\/90 {
    background-color: rgb(209 250 229 / 0.9);
  }

  .lg\:bg-emerald-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(167 243 208 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-emerald-200\/10 {
    background-color: rgb(167 243 208 / 0.1);
  }

  .lg\:bg-emerald-200\/20 {
    background-color: rgb(167 243 208 / 0.2);
  }

  .lg\:bg-emerald-200\/30 {
    background-color: rgb(167 243 208 / 0.3);
  }

  .lg\:bg-emerald-200\/40 {
    background-color: rgb(167 243 208 / 0.4);
  }

  .lg\:bg-emerald-200\/5 {
    background-color: rgb(167 243 208 / 0.05);
  }

  .lg\:bg-emerald-200\/50 {
    background-color: rgb(167 243 208 / 0.5);
  }

  .lg\:bg-emerald-200\/60 {
    background-color: rgb(167 243 208 / 0.6);
  }

  .lg\:bg-emerald-200\/70 {
    background-color: rgb(167 243 208 / 0.7);
  }

  .lg\:bg-emerald-200\/80 {
    background-color: rgb(167 243 208 / 0.8);
  }

  .lg\:bg-emerald-200\/90 {
    background-color: rgb(167 243 208 / 0.9);
  }

  .lg\:bg-emerald-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(110 231 183 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-emerald-300\/10 {
    background-color: rgb(110 231 183 / 0.1);
  }

  .lg\:bg-emerald-300\/20 {
    background-color: rgb(110 231 183 / 0.2);
  }

  .lg\:bg-emerald-300\/30 {
    background-color: rgb(110 231 183 / 0.3);
  }

  .lg\:bg-emerald-300\/40 {
    background-color: rgb(110 231 183 / 0.4);
  }

  .lg\:bg-emerald-300\/5 {
    background-color: rgb(110 231 183 / 0.05);
  }

  .lg\:bg-emerald-300\/50 {
    background-color: rgb(110 231 183 / 0.5);
  }

  .lg\:bg-emerald-300\/60 {
    background-color: rgb(110 231 183 / 0.6);
  }

  .lg\:bg-emerald-300\/70 {
    background-color: rgb(110 231 183 / 0.7);
  }

  .lg\:bg-emerald-300\/80 {
    background-color: rgb(110 231 183 / 0.8);
  }

  .lg\:bg-emerald-300\/90 {
    background-color: rgb(110 231 183 / 0.9);
  }

  .lg\:bg-emerald-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(52 211 153 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-emerald-400\/10 {
    background-color: rgb(52 211 153 / 0.1);
  }

  .lg\:bg-emerald-400\/20 {
    background-color: rgb(52 211 153 / 0.2);
  }

  .lg\:bg-emerald-400\/30 {
    background-color: rgb(52 211 153 / 0.3);
  }

  .lg\:bg-emerald-400\/40 {
    background-color: rgb(52 211 153 / 0.4);
  }

  .lg\:bg-emerald-400\/5 {
    background-color: rgb(52 211 153 / 0.05);
  }

  .lg\:bg-emerald-400\/50 {
    background-color: rgb(52 211 153 / 0.5);
  }

  .lg\:bg-emerald-400\/60 {
    background-color: rgb(52 211 153 / 0.6);
  }

  .lg\:bg-emerald-400\/70 {
    background-color: rgb(52 211 153 / 0.7);
  }

  .lg\:bg-emerald-400\/80 {
    background-color: rgb(52 211 153 / 0.8);
  }

  .lg\:bg-emerald-400\/90 {
    background-color: rgb(52 211 153 / 0.9);
  }

  .lg\:bg-emerald-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(236 253 245 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-emerald-50\/10 {
    background-color: rgb(236 253 245 / 0.1);
  }

  .lg\:bg-emerald-50\/20 {
    background-color: rgb(236 253 245 / 0.2);
  }

  .lg\:bg-emerald-50\/30 {
    background-color: rgb(236 253 245 / 0.3);
  }

  .lg\:bg-emerald-50\/40 {
    background-color: rgb(236 253 245 / 0.4);
  }

  .lg\:bg-emerald-50\/5 {
    background-color: rgb(236 253 245 / 0.05);
  }

  .lg\:bg-emerald-50\/50 {
    background-color: rgb(236 253 245 / 0.5);
  }

  .lg\:bg-emerald-50\/60 {
    background-color: rgb(236 253 245 / 0.6);
  }

  .lg\:bg-emerald-50\/70 {
    background-color: rgb(236 253 245 / 0.7);
  }

  .lg\:bg-emerald-50\/80 {
    background-color: rgb(236 253 245 / 0.8);
  }

  .lg\:bg-emerald-50\/90 {
    background-color: rgb(236 253 245 / 0.9);
  }

  .lg\:bg-emerald-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(16 185 129 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-emerald-500\/10 {
    background-color: rgb(16 185 129 / 0.1);
  }

  .lg\:bg-emerald-500\/20 {
    background-color: rgb(16 185 129 / 0.2);
  }

  .lg\:bg-emerald-500\/30 {
    background-color: rgb(16 185 129 / 0.3);
  }

  .lg\:bg-emerald-500\/40 {
    background-color: rgb(16 185 129 / 0.4);
  }

  .lg\:bg-emerald-500\/5 {
    background-color: rgb(16 185 129 / 0.05);
  }

  .lg\:bg-emerald-500\/50 {
    background-color: rgb(16 185 129 / 0.5);
  }

  .lg\:bg-emerald-500\/60 {
    background-color: rgb(16 185 129 / 0.6);
  }

  .lg\:bg-emerald-500\/70 {
    background-color: rgb(16 185 129 / 0.7);
  }

  .lg\:bg-emerald-500\/80 {
    background-color: rgb(16 185 129 / 0.8);
  }

  .lg\:bg-emerald-500\/90 {
    background-color: rgb(16 185 129 / 0.9);
  }

  .lg\:bg-emerald-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(5 150 105 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-emerald-600\/10 {
    background-color: rgb(5 150 105 / 0.1);
  }

  .lg\:bg-emerald-600\/20 {
    background-color: rgb(5 150 105 / 0.2);
  }

  .lg\:bg-emerald-600\/30 {
    background-color: rgb(5 150 105 / 0.3);
  }

  .lg\:bg-emerald-600\/40 {
    background-color: rgb(5 150 105 / 0.4);
  }

  .lg\:bg-emerald-600\/5 {
    background-color: rgb(5 150 105 / 0.05);
  }

  .lg\:bg-emerald-600\/50 {
    background-color: rgb(5 150 105 / 0.5);
  }

  .lg\:bg-emerald-600\/60 {
    background-color: rgb(5 150 105 / 0.6);
  }

  .lg\:bg-emerald-600\/70 {
    background-color: rgb(5 150 105 / 0.7);
  }

  .lg\:bg-emerald-600\/80 {
    background-color: rgb(5 150 105 / 0.8);
  }

  .lg\:bg-emerald-600\/90 {
    background-color: rgb(5 150 105 / 0.9);
  }

  .lg\:bg-emerald-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(4 120 87 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-emerald-700\/10 {
    background-color: rgb(4 120 87 / 0.1);
  }

  .lg\:bg-emerald-700\/20 {
    background-color: rgb(4 120 87 / 0.2);
  }

  .lg\:bg-emerald-700\/30 {
    background-color: rgb(4 120 87 / 0.3);
  }

  .lg\:bg-emerald-700\/40 {
    background-color: rgb(4 120 87 / 0.4);
  }

  .lg\:bg-emerald-700\/5 {
    background-color: rgb(4 120 87 / 0.05);
  }

  .lg\:bg-emerald-700\/50 {
    background-color: rgb(4 120 87 / 0.5);
  }

  .lg\:bg-emerald-700\/60 {
    background-color: rgb(4 120 87 / 0.6);
  }

  .lg\:bg-emerald-700\/70 {
    background-color: rgb(4 120 87 / 0.7);
  }

  .lg\:bg-emerald-700\/80 {
    background-color: rgb(4 120 87 / 0.8);
  }

  .lg\:bg-emerald-700\/90 {
    background-color: rgb(4 120 87 / 0.9);
  }

  .lg\:bg-emerald-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(6 95 70 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-emerald-800\/10 {
    background-color: rgb(6 95 70 / 0.1);
  }

  .lg\:bg-emerald-800\/20 {
    background-color: rgb(6 95 70 / 0.2);
  }

  .lg\:bg-emerald-800\/30 {
    background-color: rgb(6 95 70 / 0.3);
  }

  .lg\:bg-emerald-800\/40 {
    background-color: rgb(6 95 70 / 0.4);
  }

  .lg\:bg-emerald-800\/5 {
    background-color: rgb(6 95 70 / 0.05);
  }

  .lg\:bg-emerald-800\/50 {
    background-color: rgb(6 95 70 / 0.5);
  }

  .lg\:bg-emerald-800\/60 {
    background-color: rgb(6 95 70 / 0.6);
  }

  .lg\:bg-emerald-800\/70 {
    background-color: rgb(6 95 70 / 0.7);
  }

  .lg\:bg-emerald-800\/80 {
    background-color: rgb(6 95 70 / 0.8);
  }

  .lg\:bg-emerald-800\/90 {
    background-color: rgb(6 95 70 / 0.9);
  }

  .lg\:bg-emerald-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(6 78 59 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-emerald-900\/10 {
    background-color: rgb(6 78 59 / 0.1);
  }

  .lg\:bg-emerald-900\/20 {
    background-color: rgb(6 78 59 / 0.2);
  }

  .lg\:bg-emerald-900\/30 {
    background-color: rgb(6 78 59 / 0.3);
  }

  .lg\:bg-emerald-900\/40 {
    background-color: rgb(6 78 59 / 0.4);
  }

  .lg\:bg-emerald-900\/5 {
    background-color: rgb(6 78 59 / 0.05);
  }

  .lg\:bg-emerald-900\/50 {
    background-color: rgb(6 78 59 / 0.5);
  }

  .lg\:bg-emerald-900\/60 {
    background-color: rgb(6 78 59 / 0.6);
  }

  .lg\:bg-emerald-900\/70 {
    background-color: rgb(6 78 59 / 0.7);
  }

  .lg\:bg-emerald-900\/80 {
    background-color: rgb(6 78 59 / 0.8);
  }

  .lg\:bg-emerald-900\/90 {
    background-color: rgb(6 78 59 / 0.9);
  }

  .lg\:bg-emerald-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(2 44 34 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-emerald-950\/10 {
    background-color: rgb(2 44 34 / 0.1);
  }

  .lg\:bg-emerald-950\/20 {
    background-color: rgb(2 44 34 / 0.2);
  }

  .lg\:bg-emerald-950\/30 {
    background-color: rgb(2 44 34 / 0.3);
  }

  .lg\:bg-emerald-950\/40 {
    background-color: rgb(2 44 34 / 0.4);
  }

  .lg\:bg-emerald-950\/5 {
    background-color: rgb(2 44 34 / 0.05);
  }

  .lg\:bg-emerald-950\/50 {
    background-color: rgb(2 44 34 / 0.5);
  }

  .lg\:bg-emerald-950\/60 {
    background-color: rgb(2 44 34 / 0.6);
  }

  .lg\:bg-emerald-950\/70 {
    background-color: rgb(2 44 34 / 0.7);
  }

  .lg\:bg-emerald-950\/80 {
    background-color: rgb(2 44 34 / 0.8);
  }

  .lg\:bg-emerald-950\/90 {
    background-color: rgb(2 44 34 / 0.9);
  }

  .lg\:bg-fuchsia-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 232 255 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-fuchsia-100\/10 {
    background-color: rgb(250 232 255 / 0.1);
  }

  .lg\:bg-fuchsia-100\/20 {
    background-color: rgb(250 232 255 / 0.2);
  }

  .lg\:bg-fuchsia-100\/30 {
    background-color: rgb(250 232 255 / 0.3);
  }

  .lg\:bg-fuchsia-100\/40 {
    background-color: rgb(250 232 255 / 0.4);
  }

  .lg\:bg-fuchsia-100\/5 {
    background-color: rgb(250 232 255 / 0.05);
  }

  .lg\:bg-fuchsia-100\/50 {
    background-color: rgb(250 232 255 / 0.5);
  }

  .lg\:bg-fuchsia-100\/60 {
    background-color: rgb(250 232 255 / 0.6);
  }

  .lg\:bg-fuchsia-100\/70 {
    background-color: rgb(250 232 255 / 0.7);
  }

  .lg\:bg-fuchsia-100\/80 {
    background-color: rgb(250 232 255 / 0.8);
  }

  .lg\:bg-fuchsia-100\/90 {
    background-color: rgb(250 232 255 / 0.9);
  }

  .lg\:bg-fuchsia-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(245 208 254 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-fuchsia-200\/10 {
    background-color: rgb(245 208 254 / 0.1);
  }

  .lg\:bg-fuchsia-200\/20 {
    background-color: rgb(245 208 254 / 0.2);
  }

  .lg\:bg-fuchsia-200\/30 {
    background-color: rgb(245 208 254 / 0.3);
  }

  .lg\:bg-fuchsia-200\/40 {
    background-color: rgb(245 208 254 / 0.4);
  }

  .lg\:bg-fuchsia-200\/5 {
    background-color: rgb(245 208 254 / 0.05);
  }

  .lg\:bg-fuchsia-200\/50 {
    background-color: rgb(245 208 254 / 0.5);
  }

  .lg\:bg-fuchsia-200\/60 {
    background-color: rgb(245 208 254 / 0.6);
  }

  .lg\:bg-fuchsia-200\/70 {
    background-color: rgb(245 208 254 / 0.7);
  }

  .lg\:bg-fuchsia-200\/80 {
    background-color: rgb(245 208 254 / 0.8);
  }

  .lg\:bg-fuchsia-200\/90 {
    background-color: rgb(245 208 254 / 0.9);
  }

  .lg\:bg-fuchsia-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(240 171 252 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-fuchsia-300\/10 {
    background-color: rgb(240 171 252 / 0.1);
  }

  .lg\:bg-fuchsia-300\/20 {
    background-color: rgb(240 171 252 / 0.2);
  }

  .lg\:bg-fuchsia-300\/30 {
    background-color: rgb(240 171 252 / 0.3);
  }

  .lg\:bg-fuchsia-300\/40 {
    background-color: rgb(240 171 252 / 0.4);
  }

  .lg\:bg-fuchsia-300\/5 {
    background-color: rgb(240 171 252 / 0.05);
  }

  .lg\:bg-fuchsia-300\/50 {
    background-color: rgb(240 171 252 / 0.5);
  }

  .lg\:bg-fuchsia-300\/60 {
    background-color: rgb(240 171 252 / 0.6);
  }

  .lg\:bg-fuchsia-300\/70 {
    background-color: rgb(240 171 252 / 0.7);
  }

  .lg\:bg-fuchsia-300\/80 {
    background-color: rgb(240 171 252 / 0.8);
  }

  .lg\:bg-fuchsia-300\/90 {
    background-color: rgb(240 171 252 / 0.9);
  }

  .lg\:bg-fuchsia-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(232 121 249 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-fuchsia-400\/10 {
    background-color: rgb(232 121 249 / 0.1);
  }

  .lg\:bg-fuchsia-400\/20 {
    background-color: rgb(232 121 249 / 0.2);
  }

  .lg\:bg-fuchsia-400\/30 {
    background-color: rgb(232 121 249 / 0.3);
  }

  .lg\:bg-fuchsia-400\/40 {
    background-color: rgb(232 121 249 / 0.4);
  }

  .lg\:bg-fuchsia-400\/5 {
    background-color: rgb(232 121 249 / 0.05);
  }

  .lg\:bg-fuchsia-400\/50 {
    background-color: rgb(232 121 249 / 0.5);
  }

  .lg\:bg-fuchsia-400\/60 {
    background-color: rgb(232 121 249 / 0.6);
  }

  .lg\:bg-fuchsia-400\/70 {
    background-color: rgb(232 121 249 / 0.7);
  }

  .lg\:bg-fuchsia-400\/80 {
    background-color: rgb(232 121 249 / 0.8);
  }

  .lg\:bg-fuchsia-400\/90 {
    background-color: rgb(232 121 249 / 0.9);
  }

  .lg\:bg-fuchsia-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(253 244 255 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-fuchsia-50\/10 {
    background-color: rgb(253 244 255 / 0.1);
  }

  .lg\:bg-fuchsia-50\/20 {
    background-color: rgb(253 244 255 / 0.2);
  }

  .lg\:bg-fuchsia-50\/30 {
    background-color: rgb(253 244 255 / 0.3);
  }

  .lg\:bg-fuchsia-50\/40 {
    background-color: rgb(253 244 255 / 0.4);
  }

  .lg\:bg-fuchsia-50\/5 {
    background-color: rgb(253 244 255 / 0.05);
  }

  .lg\:bg-fuchsia-50\/50 {
    background-color: rgb(253 244 255 / 0.5);
  }

  .lg\:bg-fuchsia-50\/60 {
    background-color: rgb(253 244 255 / 0.6);
  }

  .lg\:bg-fuchsia-50\/70 {
    background-color: rgb(253 244 255 / 0.7);
  }

  .lg\:bg-fuchsia-50\/80 {
    background-color: rgb(253 244 255 / 0.8);
  }

  .lg\:bg-fuchsia-50\/90 {
    background-color: rgb(253 244 255 / 0.9);
  }

  .lg\:bg-fuchsia-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(217 70 239 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-fuchsia-500\/10 {
    background-color: rgb(217 70 239 / 0.1);
  }

  .lg\:bg-fuchsia-500\/20 {
    background-color: rgb(217 70 239 / 0.2);
  }

  .lg\:bg-fuchsia-500\/30 {
    background-color: rgb(217 70 239 / 0.3);
  }

  .lg\:bg-fuchsia-500\/40 {
    background-color: rgb(217 70 239 / 0.4);
  }

  .lg\:bg-fuchsia-500\/5 {
    background-color: rgb(217 70 239 / 0.05);
  }

  .lg\:bg-fuchsia-500\/50 {
    background-color: rgb(217 70 239 / 0.5);
  }

  .lg\:bg-fuchsia-500\/60 {
    background-color: rgb(217 70 239 / 0.6);
  }

  .lg\:bg-fuchsia-500\/70 {
    background-color: rgb(217 70 239 / 0.7);
  }

  .lg\:bg-fuchsia-500\/80 {
    background-color: rgb(217 70 239 / 0.8);
  }

  .lg\:bg-fuchsia-500\/90 {
    background-color: rgb(217 70 239 / 0.9);
  }

  .lg\:bg-fuchsia-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(192 38 211 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-fuchsia-600\/10 {
    background-color: rgb(192 38 211 / 0.1);
  }

  .lg\:bg-fuchsia-600\/20 {
    background-color: rgb(192 38 211 / 0.2);
  }

  .lg\:bg-fuchsia-600\/30 {
    background-color: rgb(192 38 211 / 0.3);
  }

  .lg\:bg-fuchsia-600\/40 {
    background-color: rgb(192 38 211 / 0.4);
  }

  .lg\:bg-fuchsia-600\/5 {
    background-color: rgb(192 38 211 / 0.05);
  }

  .lg\:bg-fuchsia-600\/50 {
    background-color: rgb(192 38 211 / 0.5);
  }

  .lg\:bg-fuchsia-600\/60 {
    background-color: rgb(192 38 211 / 0.6);
  }

  .lg\:bg-fuchsia-600\/70 {
    background-color: rgb(192 38 211 / 0.7);
  }

  .lg\:bg-fuchsia-600\/80 {
    background-color: rgb(192 38 211 / 0.8);
  }

  .lg\:bg-fuchsia-600\/90 {
    background-color: rgb(192 38 211 / 0.9);
  }

  .lg\:bg-fuchsia-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(162 28 175 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-fuchsia-700\/10 {
    background-color: rgb(162 28 175 / 0.1);
  }

  .lg\:bg-fuchsia-700\/20 {
    background-color: rgb(162 28 175 / 0.2);
  }

  .lg\:bg-fuchsia-700\/30 {
    background-color: rgb(162 28 175 / 0.3);
  }

  .lg\:bg-fuchsia-700\/40 {
    background-color: rgb(162 28 175 / 0.4);
  }

  .lg\:bg-fuchsia-700\/5 {
    background-color: rgb(162 28 175 / 0.05);
  }

  .lg\:bg-fuchsia-700\/50 {
    background-color: rgb(162 28 175 / 0.5);
  }

  .lg\:bg-fuchsia-700\/60 {
    background-color: rgb(162 28 175 / 0.6);
  }

  .lg\:bg-fuchsia-700\/70 {
    background-color: rgb(162 28 175 / 0.7);
  }

  .lg\:bg-fuchsia-700\/80 {
    background-color: rgb(162 28 175 / 0.8);
  }

  .lg\:bg-fuchsia-700\/90 {
    background-color: rgb(162 28 175 / 0.9);
  }

  .lg\:bg-fuchsia-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(134 25 143 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-fuchsia-800\/10 {
    background-color: rgb(134 25 143 / 0.1);
  }

  .lg\:bg-fuchsia-800\/20 {
    background-color: rgb(134 25 143 / 0.2);
  }

  .lg\:bg-fuchsia-800\/30 {
    background-color: rgb(134 25 143 / 0.3);
  }

  .lg\:bg-fuchsia-800\/40 {
    background-color: rgb(134 25 143 / 0.4);
  }

  .lg\:bg-fuchsia-800\/5 {
    background-color: rgb(134 25 143 / 0.05);
  }

  .lg\:bg-fuchsia-800\/50 {
    background-color: rgb(134 25 143 / 0.5);
  }

  .lg\:bg-fuchsia-800\/60 {
    background-color: rgb(134 25 143 / 0.6);
  }

  .lg\:bg-fuchsia-800\/70 {
    background-color: rgb(134 25 143 / 0.7);
  }

  .lg\:bg-fuchsia-800\/80 {
    background-color: rgb(134 25 143 / 0.8);
  }

  .lg\:bg-fuchsia-800\/90 {
    background-color: rgb(134 25 143 / 0.9);
  }

  .lg\:bg-fuchsia-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(112 26 117 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-fuchsia-900\/10 {
    background-color: rgb(112 26 117 / 0.1);
  }

  .lg\:bg-fuchsia-900\/20 {
    background-color: rgb(112 26 117 / 0.2);
  }

  .lg\:bg-fuchsia-900\/30 {
    background-color: rgb(112 26 117 / 0.3);
  }

  .lg\:bg-fuchsia-900\/40 {
    background-color: rgb(112 26 117 / 0.4);
  }

  .lg\:bg-fuchsia-900\/5 {
    background-color: rgb(112 26 117 / 0.05);
  }

  .lg\:bg-fuchsia-900\/50 {
    background-color: rgb(112 26 117 / 0.5);
  }

  .lg\:bg-fuchsia-900\/60 {
    background-color: rgb(112 26 117 / 0.6);
  }

  .lg\:bg-fuchsia-900\/70 {
    background-color: rgb(112 26 117 / 0.7);
  }

  .lg\:bg-fuchsia-900\/80 {
    background-color: rgb(112 26 117 / 0.8);
  }

  .lg\:bg-fuchsia-900\/90 {
    background-color: rgb(112 26 117 / 0.9);
  }

  .lg\:bg-fuchsia-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(74 4 78 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-fuchsia-950\/10 {
    background-color: rgb(74 4 78 / 0.1);
  }

  .lg\:bg-fuchsia-950\/20 {
    background-color: rgb(74 4 78 / 0.2);
  }

  .lg\:bg-fuchsia-950\/30 {
    background-color: rgb(74 4 78 / 0.3);
  }

  .lg\:bg-fuchsia-950\/40 {
    background-color: rgb(74 4 78 / 0.4);
  }

  .lg\:bg-fuchsia-950\/5 {
    background-color: rgb(74 4 78 / 0.05);
  }

  .lg\:bg-fuchsia-950\/50 {
    background-color: rgb(74 4 78 / 0.5);
  }

  .lg\:bg-fuchsia-950\/60 {
    background-color: rgb(74 4 78 / 0.6);
  }

  .lg\:bg-fuchsia-950\/70 {
    background-color: rgb(74 4 78 / 0.7);
  }

  .lg\:bg-fuchsia-950\/80 {
    background-color: rgb(74 4 78 / 0.8);
  }

  .lg\:bg-fuchsia-950\/90 {
    background-color: rgb(74 4 78 / 0.9);
  }

  .lg\:bg-gray-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-gray-100\/10 {
    background-color: rgb(243 244 246 / 0.1);
  }

  .lg\:bg-gray-100\/20 {
    background-color: rgb(243 244 246 / 0.2);
  }

  .lg\:bg-gray-100\/30 {
    background-color: rgb(243 244 246 / 0.3);
  }

  .lg\:bg-gray-100\/40 {
    background-color: rgb(243 244 246 / 0.4);
  }

  .lg\:bg-gray-100\/5 {
    background-color: rgb(243 244 246 / 0.05);
  }

  .lg\:bg-gray-100\/50 {
    background-color: rgb(243 244 246 / 0.5);
  }

  .lg\:bg-gray-100\/60 {
    background-color: rgb(243 244 246 / 0.6);
  }

  .lg\:bg-gray-100\/70 {
    background-color: rgb(243 244 246 / 0.7);
  }

  .lg\:bg-gray-100\/80 {
    background-color: rgb(243 244 246 / 0.8);
  }

  .lg\:bg-gray-100\/90 {
    background-color: rgb(243 244 246 / 0.9);
  }

  .lg\:bg-gray-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-gray-200\/10 {
    background-color: rgb(229 231 235 / 0.1);
  }

  .lg\:bg-gray-200\/20 {
    background-color: rgb(229 231 235 / 0.2);
  }

  .lg\:bg-gray-200\/30 {
    background-color: rgb(229 231 235 / 0.3);
  }

  .lg\:bg-gray-200\/40 {
    background-color: rgb(229 231 235 / 0.4);
  }

  .lg\:bg-gray-200\/5 {
    background-color: rgb(229 231 235 / 0.05);
  }

  .lg\:bg-gray-200\/50 {
    background-color: rgb(229 231 235 / 0.5);
  }

  .lg\:bg-gray-200\/60 {
    background-color: rgb(229 231 235 / 0.6);
  }

  .lg\:bg-gray-200\/70 {
    background-color: rgb(229 231 235 / 0.7);
  }

  .lg\:bg-gray-200\/80 {
    background-color: rgb(229 231 235 / 0.8);
  }

  .lg\:bg-gray-200\/90 {
    background-color: rgb(229 231 235 / 0.9);
  }

  .lg\:bg-gray-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-gray-300\/10 {
    background-color: rgb(209 213 219 / 0.1);
  }

  .lg\:bg-gray-300\/20 {
    background-color: rgb(209 213 219 / 0.2);
  }

  .lg\:bg-gray-300\/30 {
    background-color: rgb(209 213 219 / 0.3);
  }

  .lg\:bg-gray-300\/40 {
    background-color: rgb(209 213 219 / 0.4);
  }

  .lg\:bg-gray-300\/5 {
    background-color: rgb(209 213 219 / 0.05);
  }

  .lg\:bg-gray-300\/50 {
    background-color: rgb(209 213 219 / 0.5);
  }

  .lg\:bg-gray-300\/60 {
    background-color: rgb(209 213 219 / 0.6);
  }

  .lg\:bg-gray-300\/70 {
    background-color: rgb(209 213 219 / 0.7);
  }

  .lg\:bg-gray-300\/80 {
    background-color: rgb(209 213 219 / 0.8);
  }

  .lg\:bg-gray-300\/90 {
    background-color: rgb(209 213 219 / 0.9);
  }

  .lg\:bg-gray-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(156 163 175 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-gray-400\/10 {
    background-color: rgb(156 163 175 / 0.1);
  }

  .lg\:bg-gray-400\/20 {
    background-color: rgb(156 163 175 / 0.2);
  }

  .lg\:bg-gray-400\/30 {
    background-color: rgb(156 163 175 / 0.3);
  }

  .lg\:bg-gray-400\/40 {
    background-color: rgb(156 163 175 / 0.4);
  }

  .lg\:bg-gray-400\/5 {
    background-color: rgb(156 163 175 / 0.05);
  }

  .lg\:bg-gray-400\/50 {
    background-color: rgb(156 163 175 / 0.5);
  }

  .lg\:bg-gray-400\/60 {
    background-color: rgb(156 163 175 / 0.6);
  }

  .lg\:bg-gray-400\/70 {
    background-color: rgb(156 163 175 / 0.7);
  }

  .lg\:bg-gray-400\/80 {
    background-color: rgb(156 163 175 / 0.8);
  }

  .lg\:bg-gray-400\/90 {
    background-color: rgb(156 163 175 / 0.9);
  }

  .lg\:bg-gray-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-gray-50\/10 {
    background-color: rgb(249 250 251 / 0.1);
  }

  .lg\:bg-gray-50\/20 {
    background-color: rgb(249 250 251 / 0.2);
  }

  .lg\:bg-gray-50\/30 {
    background-color: rgb(249 250 251 / 0.3);
  }

  .lg\:bg-gray-50\/40 {
    background-color: rgb(249 250 251 / 0.4);
  }

  .lg\:bg-gray-50\/5 {
    background-color: rgb(249 250 251 / 0.05);
  }

  .lg\:bg-gray-50\/50 {
    background-color: rgb(249 250 251 / 0.5);
  }

  .lg\:bg-gray-50\/60 {
    background-color: rgb(249 250 251 / 0.6);
  }

  .lg\:bg-gray-50\/70 {
    background-color: rgb(249 250 251 / 0.7);
  }

  .lg\:bg-gray-50\/80 {
    background-color: rgb(249 250 251 / 0.8);
  }

  .lg\:bg-gray-50\/90 {
    background-color: rgb(249 250 251 / 0.9);
  }

  .lg\:bg-gray-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(107 114 128 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-gray-500\/10 {
    background-color: rgb(107 114 128 / 0.1);
  }

  .lg\:bg-gray-500\/20 {
    background-color: rgb(107 114 128 / 0.2);
  }

  .lg\:bg-gray-500\/30 {
    background-color: rgb(107 114 128 / 0.3);
  }

  .lg\:bg-gray-500\/40 {
    background-color: rgb(107 114 128 / 0.4);
  }

  .lg\:bg-gray-500\/5 {
    background-color: rgb(107 114 128 / 0.05);
  }

  .lg\:bg-gray-500\/50 {
    background-color: rgb(107 114 128 / 0.5);
  }

  .lg\:bg-gray-500\/60 {
    background-color: rgb(107 114 128 / 0.6);
  }

  .lg\:bg-gray-500\/70 {
    background-color: rgb(107 114 128 / 0.7);
  }

  .lg\:bg-gray-500\/80 {
    background-color: rgb(107 114 128 / 0.8);
  }

  .lg\:bg-gray-500\/90 {
    background-color: rgb(107 114 128 / 0.9);
  }

  .lg\:bg-gray-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-gray-600\/10 {
    background-color: rgb(75 85 99 / 0.1);
  }

  .lg\:bg-gray-600\/20 {
    background-color: rgb(75 85 99 / 0.2);
  }

  .lg\:bg-gray-600\/30 {
    background-color: rgb(75 85 99 / 0.3);
  }

  .lg\:bg-gray-600\/40 {
    background-color: rgb(75 85 99 / 0.4);
  }

  .lg\:bg-gray-600\/5 {
    background-color: rgb(75 85 99 / 0.05);
  }

  .lg\:bg-gray-600\/50 {
    background-color: rgb(75 85 99 / 0.5);
  }

  .lg\:bg-gray-600\/60 {
    background-color: rgb(75 85 99 / 0.6);
  }

  .lg\:bg-gray-600\/70 {
    background-color: rgb(75 85 99 / 0.7);
  }

  .lg\:bg-gray-600\/80 {
    background-color: rgb(75 85 99 / 0.8);
  }

  .lg\:bg-gray-600\/90 {
    background-color: rgb(75 85 99 / 0.9);
  }

  .lg\:bg-gray-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-gray-700\/10 {
    background-color: rgb(55 65 81 / 0.1);
  }

  .lg\:bg-gray-700\/20 {
    background-color: rgb(55 65 81 / 0.2);
  }

  .lg\:bg-gray-700\/30 {
    background-color: rgb(55 65 81 / 0.3);
  }

  .lg\:bg-gray-700\/40 {
    background-color: rgb(55 65 81 / 0.4);
  }

  .lg\:bg-gray-700\/5 {
    background-color: rgb(55 65 81 / 0.05);
  }

  .lg\:bg-gray-700\/50 {
    background-color: rgb(55 65 81 / 0.5);
  }

  .lg\:bg-gray-700\/60 {
    background-color: rgb(55 65 81 / 0.6);
  }

  .lg\:bg-gray-700\/70 {
    background-color: rgb(55 65 81 / 0.7);
  }

  .lg\:bg-gray-700\/80 {
    background-color: rgb(55 65 81 / 0.8);
  }

  .lg\:bg-gray-700\/90 {
    background-color: rgb(55 65 81 / 0.9);
  }

  .lg\:bg-gray-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-gray-800\/10 {
    background-color: rgb(31 41 55 / 0.1);
  }

  .lg\:bg-gray-800\/20 {
    background-color: rgb(31 41 55 / 0.2);
  }

  .lg\:bg-gray-800\/30 {
    background-color: rgb(31 41 55 / 0.3);
  }

  .lg\:bg-gray-800\/40 {
    background-color: rgb(31 41 55 / 0.4);
  }

  .lg\:bg-gray-800\/5 {
    background-color: rgb(31 41 55 / 0.05);
  }

  .lg\:bg-gray-800\/50 {
    background-color: rgb(31 41 55 / 0.5);
  }

  .lg\:bg-gray-800\/60 {
    background-color: rgb(31 41 55 / 0.6);
  }

  .lg\:bg-gray-800\/70 {
    background-color: rgb(31 41 55 / 0.7);
  }

  .lg\:bg-gray-800\/80 {
    background-color: rgb(31 41 55 / 0.8);
  }

  .lg\:bg-gray-800\/90 {
    background-color: rgb(31 41 55 / 0.9);
  }

  .lg\:bg-gray-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-gray-900\/10 {
    background-color: rgb(17 24 39 / 0.1);
  }

  .lg\:bg-gray-900\/20 {
    background-color: rgb(17 24 39 / 0.2);
  }

  .lg\:bg-gray-900\/30 {
    background-color: rgb(17 24 39 / 0.3);
  }

  .lg\:bg-gray-900\/40 {
    background-color: rgb(17 24 39 / 0.4);
  }

  .lg\:bg-gray-900\/5 {
    background-color: rgb(17 24 39 / 0.05);
  }

  .lg\:bg-gray-900\/50 {
    background-color: rgb(17 24 39 / 0.5);
  }

  .lg\:bg-gray-900\/60 {
    background-color: rgb(17 24 39 / 0.6);
  }

  .lg\:bg-gray-900\/70 {
    background-color: rgb(17 24 39 / 0.7);
  }

  .lg\:bg-gray-900\/80 {
    background-color: rgb(17 24 39 / 0.8);
  }

  .lg\:bg-gray-900\/90 {
    background-color: rgb(17 24 39 / 0.9);
  }

  .lg\:bg-gray-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(3 7 18 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-gray-950\/10 {
    background-color: rgb(3 7 18 / 0.1);
  }

  .lg\:bg-gray-950\/20 {
    background-color: rgb(3 7 18 / 0.2);
  }

  .lg\:bg-gray-950\/30 {
    background-color: rgb(3 7 18 / 0.3);
  }

  .lg\:bg-gray-950\/40 {
    background-color: rgb(3 7 18 / 0.4);
  }

  .lg\:bg-gray-950\/5 {
    background-color: rgb(3 7 18 / 0.05);
  }

  .lg\:bg-gray-950\/50 {
    background-color: rgb(3 7 18 / 0.5);
  }

  .lg\:bg-gray-950\/60 {
    background-color: rgb(3 7 18 / 0.6);
  }

  .lg\:bg-gray-950\/70 {
    background-color: rgb(3 7 18 / 0.7);
  }

  .lg\:bg-gray-950\/80 {
    background-color: rgb(3 7 18 / 0.8);
  }

  .lg\:bg-gray-950\/90 {
    background-color: rgb(3 7 18 / 0.9);
  }

  .lg\:bg-green-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-green-100\/10 {
    background-color: rgb(220 252 231 / 0.1);
  }

  .lg\:bg-green-100\/20 {
    background-color: rgb(220 252 231 / 0.2);
  }

  .lg\:bg-green-100\/30 {
    background-color: rgb(220 252 231 / 0.3);
  }

  .lg\:bg-green-100\/40 {
    background-color: rgb(220 252 231 / 0.4);
  }

  .lg\:bg-green-100\/5 {
    background-color: rgb(220 252 231 / 0.05);
  }

  .lg\:bg-green-100\/50 {
    background-color: rgb(220 252 231 / 0.5);
  }

  .lg\:bg-green-100\/60 {
    background-color: rgb(220 252 231 / 0.6);
  }

  .lg\:bg-green-100\/70 {
    background-color: rgb(220 252 231 / 0.7);
  }

  .lg\:bg-green-100\/80 {
    background-color: rgb(220 252 231 / 0.8);
  }

  .lg\:bg-green-100\/90 {
    background-color: rgb(220 252 231 / 0.9);
  }

  .lg\:bg-green-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(187 247 208 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-green-200\/10 {
    background-color: rgb(187 247 208 / 0.1);
  }

  .lg\:bg-green-200\/20 {
    background-color: rgb(187 247 208 / 0.2);
  }

  .lg\:bg-green-200\/30 {
    background-color: rgb(187 247 208 / 0.3);
  }

  .lg\:bg-green-200\/40 {
    background-color: rgb(187 247 208 / 0.4);
  }

  .lg\:bg-green-200\/5 {
    background-color: rgb(187 247 208 / 0.05);
  }

  .lg\:bg-green-200\/50 {
    background-color: rgb(187 247 208 / 0.5);
  }

  .lg\:bg-green-200\/60 {
    background-color: rgb(187 247 208 / 0.6);
  }

  .lg\:bg-green-200\/70 {
    background-color: rgb(187 247 208 / 0.7);
  }

  .lg\:bg-green-200\/80 {
    background-color: rgb(187 247 208 / 0.8);
  }

  .lg\:bg-green-200\/90 {
    background-color: rgb(187 247 208 / 0.9);
  }

  .lg\:bg-green-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(134 239 172 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-green-300\/10 {
    background-color: rgb(134 239 172 / 0.1);
  }

  .lg\:bg-green-300\/20 {
    background-color: rgb(134 239 172 / 0.2);
  }

  .lg\:bg-green-300\/30 {
    background-color: rgb(134 239 172 / 0.3);
  }

  .lg\:bg-green-300\/40 {
    background-color: rgb(134 239 172 / 0.4);
  }

  .lg\:bg-green-300\/5 {
    background-color: rgb(134 239 172 / 0.05);
  }

  .lg\:bg-green-300\/50 {
    background-color: rgb(134 239 172 / 0.5);
  }

  .lg\:bg-green-300\/60 {
    background-color: rgb(134 239 172 / 0.6);
  }

  .lg\:bg-green-300\/70 {
    background-color: rgb(134 239 172 / 0.7);
  }

  .lg\:bg-green-300\/80 {
    background-color: rgb(134 239 172 / 0.8);
  }

  .lg\:bg-green-300\/90 {
    background-color: rgb(134 239 172 / 0.9);
  }

  .lg\:bg-green-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(74 222 128 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-green-400\/10 {
    background-color: rgb(74 222 128 / 0.1);
  }

  .lg\:bg-green-400\/20 {
    background-color: rgb(74 222 128 / 0.2);
  }

  .lg\:bg-green-400\/30 {
    background-color: rgb(74 222 128 / 0.3);
  }

  .lg\:bg-green-400\/40 {
    background-color: rgb(74 222 128 / 0.4);
  }

  .lg\:bg-green-400\/5 {
    background-color: rgb(74 222 128 / 0.05);
  }

  .lg\:bg-green-400\/50 {
    background-color: rgb(74 222 128 / 0.5);
  }

  .lg\:bg-green-400\/60 {
    background-color: rgb(74 222 128 / 0.6);
  }

  .lg\:bg-green-400\/70 {
    background-color: rgb(74 222 128 / 0.7);
  }

  .lg\:bg-green-400\/80 {
    background-color: rgb(74 222 128 / 0.8);
  }

  .lg\:bg-green-400\/90 {
    background-color: rgb(74 222 128 / 0.9);
  }

  .lg\:bg-green-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-green-50\/10 {
    background-color: rgb(240 253 244 / 0.1);
  }

  .lg\:bg-green-50\/20 {
    background-color: rgb(240 253 244 / 0.2);
  }

  .lg\:bg-green-50\/30 {
    background-color: rgb(240 253 244 / 0.3);
  }

  .lg\:bg-green-50\/40 {
    background-color: rgb(240 253 244 / 0.4);
  }

  .lg\:bg-green-50\/5 {
    background-color: rgb(240 253 244 / 0.05);
  }

  .lg\:bg-green-50\/50 {
    background-color: rgb(240 253 244 / 0.5);
  }

  .lg\:bg-green-50\/60 {
    background-color: rgb(240 253 244 / 0.6);
  }

  .lg\:bg-green-50\/70 {
    background-color: rgb(240 253 244 / 0.7);
  }

  .lg\:bg-green-50\/80 {
    background-color: rgb(240 253 244 / 0.8);
  }

  .lg\:bg-green-50\/90 {
    background-color: rgb(240 253 244 / 0.9);
  }

  .lg\:bg-green-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-green-500\/10 {
    background-color: rgb(34 197 94 / 0.1);
  }

  .lg\:bg-green-500\/20 {
    background-color: rgb(34 197 94 / 0.2);
  }

  .lg\:bg-green-500\/30 {
    background-color: rgb(34 197 94 / 0.3);
  }

  .lg\:bg-green-500\/40 {
    background-color: rgb(34 197 94 / 0.4);
  }

  .lg\:bg-green-500\/5 {
    background-color: rgb(34 197 94 / 0.05);
  }

  .lg\:bg-green-500\/50 {
    background-color: rgb(34 197 94 / 0.5);
  }

  .lg\:bg-green-500\/60 {
    background-color: rgb(34 197 94 / 0.6);
  }

  .lg\:bg-green-500\/70 {
    background-color: rgb(34 197 94 / 0.7);
  }

  .lg\:bg-green-500\/80 {
    background-color: rgb(34 197 94 / 0.8);
  }

  .lg\:bg-green-500\/90 {
    background-color: rgb(34 197 94 / 0.9);
  }

  .lg\:bg-green-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-green-600\/10 {
    background-color: rgb(22 163 74 / 0.1);
  }

  .lg\:bg-green-600\/20 {
    background-color: rgb(22 163 74 / 0.2);
  }

  .lg\:bg-green-600\/30 {
    background-color: rgb(22 163 74 / 0.3);
  }

  .lg\:bg-green-600\/40 {
    background-color: rgb(22 163 74 / 0.4);
  }

  .lg\:bg-green-600\/5 {
    background-color: rgb(22 163 74 / 0.05);
  }

  .lg\:bg-green-600\/50 {
    background-color: rgb(22 163 74 / 0.5);
  }

  .lg\:bg-green-600\/60 {
    background-color: rgb(22 163 74 / 0.6);
  }

  .lg\:bg-green-600\/70 {
    background-color: rgb(22 163 74 / 0.7);
  }

  .lg\:bg-green-600\/80 {
    background-color: rgb(22 163 74 / 0.8);
  }

  .lg\:bg-green-600\/90 {
    background-color: rgb(22 163 74 / 0.9);
  }

  .lg\:bg-green-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(21 128 61 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-green-700\/10 {
    background-color: rgb(21 128 61 / 0.1);
  }

  .lg\:bg-green-700\/20 {
    background-color: rgb(21 128 61 / 0.2);
  }

  .lg\:bg-green-700\/30 {
    background-color: rgb(21 128 61 / 0.3);
  }

  .lg\:bg-green-700\/40 {
    background-color: rgb(21 128 61 / 0.4);
  }

  .lg\:bg-green-700\/5 {
    background-color: rgb(21 128 61 / 0.05);
  }

  .lg\:bg-green-700\/50 {
    background-color: rgb(21 128 61 / 0.5);
  }

  .lg\:bg-green-700\/60 {
    background-color: rgb(21 128 61 / 0.6);
  }

  .lg\:bg-green-700\/70 {
    background-color: rgb(21 128 61 / 0.7);
  }

  .lg\:bg-green-700\/80 {
    background-color: rgb(21 128 61 / 0.8);
  }

  .lg\:bg-green-700\/90 {
    background-color: rgb(21 128 61 / 0.9);
  }

  .lg\:bg-green-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(22 101 52 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-green-800\/10 {
    background-color: rgb(22 101 52 / 0.1);
  }

  .lg\:bg-green-800\/20 {
    background-color: rgb(22 101 52 / 0.2);
  }

  .lg\:bg-green-800\/30 {
    background-color: rgb(22 101 52 / 0.3);
  }

  .lg\:bg-green-800\/40 {
    background-color: rgb(22 101 52 / 0.4);
  }

  .lg\:bg-green-800\/5 {
    background-color: rgb(22 101 52 / 0.05);
  }

  .lg\:bg-green-800\/50 {
    background-color: rgb(22 101 52 / 0.5);
  }

  .lg\:bg-green-800\/60 {
    background-color: rgb(22 101 52 / 0.6);
  }

  .lg\:bg-green-800\/70 {
    background-color: rgb(22 101 52 / 0.7);
  }

  .lg\:bg-green-800\/80 {
    background-color: rgb(22 101 52 / 0.8);
  }

  .lg\:bg-green-800\/90 {
    background-color: rgb(22 101 52 / 0.9);
  }

  .lg\:bg-green-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(20 83 45 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-green-900\/10 {
    background-color: rgb(20 83 45 / 0.1);
  }

  .lg\:bg-green-900\/20 {
    background-color: rgb(20 83 45 / 0.2);
  }

  .lg\:bg-green-900\/30 {
    background-color: rgb(20 83 45 / 0.3);
  }

  .lg\:bg-green-900\/40 {
    background-color: rgb(20 83 45 / 0.4);
  }

  .lg\:bg-green-900\/5 {
    background-color: rgb(20 83 45 / 0.05);
  }

  .lg\:bg-green-900\/50 {
    background-color: rgb(20 83 45 / 0.5);
  }

  .lg\:bg-green-900\/60 {
    background-color: rgb(20 83 45 / 0.6);
  }

  .lg\:bg-green-900\/70 {
    background-color: rgb(20 83 45 / 0.7);
  }

  .lg\:bg-green-900\/80 {
    background-color: rgb(20 83 45 / 0.8);
  }

  .lg\:bg-green-900\/90 {
    background-color: rgb(20 83 45 / 0.9);
  }

  .lg\:bg-green-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(5 46 22 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-green-950\/10 {
    background-color: rgb(5 46 22 / 0.1);
  }

  .lg\:bg-green-950\/20 {
    background-color: rgb(5 46 22 / 0.2);
  }

  .lg\:bg-green-950\/30 {
    background-color: rgb(5 46 22 / 0.3);
  }

  .lg\:bg-green-950\/40 {
    background-color: rgb(5 46 22 / 0.4);
  }

  .lg\:bg-green-950\/5 {
    background-color: rgb(5 46 22 / 0.05);
  }

  .lg\:bg-green-950\/50 {
    background-color: rgb(5 46 22 / 0.5);
  }

  .lg\:bg-green-950\/60 {
    background-color: rgb(5 46 22 / 0.6);
  }

  .lg\:bg-green-950\/70 {
    background-color: rgb(5 46 22 / 0.7);
  }

  .lg\:bg-green-950\/80 {
    background-color: rgb(5 46 22 / 0.8);
  }

  .lg\:bg-green-950\/90 {
    background-color: rgb(5 46 22 / 0.9);
  }

  .lg\:bg-indigo-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(224 231 255 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-indigo-100\/10 {
    background-color: rgb(224 231 255 / 0.1);
  }

  .lg\:bg-indigo-100\/20 {
    background-color: rgb(224 231 255 / 0.2);
  }

  .lg\:bg-indigo-100\/30 {
    background-color: rgb(224 231 255 / 0.3);
  }

  .lg\:bg-indigo-100\/40 {
    background-color: rgb(224 231 255 / 0.4);
  }

  .lg\:bg-indigo-100\/5 {
    background-color: rgb(224 231 255 / 0.05);
  }

  .lg\:bg-indigo-100\/50 {
    background-color: rgb(224 231 255 / 0.5);
  }

  .lg\:bg-indigo-100\/60 {
    background-color: rgb(224 231 255 / 0.6);
  }

  .lg\:bg-indigo-100\/70 {
    background-color: rgb(224 231 255 / 0.7);
  }

  .lg\:bg-indigo-100\/80 {
    background-color: rgb(224 231 255 / 0.8);
  }

  .lg\:bg-indigo-100\/90 {
    background-color: rgb(224 231 255 / 0.9);
  }

  .lg\:bg-indigo-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(199 210 254 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-indigo-200\/10 {
    background-color: rgb(199 210 254 / 0.1);
  }

  .lg\:bg-indigo-200\/20 {
    background-color: rgb(199 210 254 / 0.2);
  }

  .lg\:bg-indigo-200\/30 {
    background-color: rgb(199 210 254 / 0.3);
  }

  .lg\:bg-indigo-200\/40 {
    background-color: rgb(199 210 254 / 0.4);
  }

  .lg\:bg-indigo-200\/5 {
    background-color: rgb(199 210 254 / 0.05);
  }

  .lg\:bg-indigo-200\/50 {
    background-color: rgb(199 210 254 / 0.5);
  }

  .lg\:bg-indigo-200\/60 {
    background-color: rgb(199 210 254 / 0.6);
  }

  .lg\:bg-indigo-200\/70 {
    background-color: rgb(199 210 254 / 0.7);
  }

  .lg\:bg-indigo-200\/80 {
    background-color: rgb(199 210 254 / 0.8);
  }

  .lg\:bg-indigo-200\/90 {
    background-color: rgb(199 210 254 / 0.9);
  }

  .lg\:bg-indigo-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(165 180 252 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-indigo-300\/10 {
    background-color: rgb(165 180 252 / 0.1);
  }

  .lg\:bg-indigo-300\/20 {
    background-color: rgb(165 180 252 / 0.2);
  }

  .lg\:bg-indigo-300\/30 {
    background-color: rgb(165 180 252 / 0.3);
  }

  .lg\:bg-indigo-300\/40 {
    background-color: rgb(165 180 252 / 0.4);
  }

  .lg\:bg-indigo-300\/5 {
    background-color: rgb(165 180 252 / 0.05);
  }

  .lg\:bg-indigo-300\/50 {
    background-color: rgb(165 180 252 / 0.5);
  }

  .lg\:bg-indigo-300\/60 {
    background-color: rgb(165 180 252 / 0.6);
  }

  .lg\:bg-indigo-300\/70 {
    background-color: rgb(165 180 252 / 0.7);
  }

  .lg\:bg-indigo-300\/80 {
    background-color: rgb(165 180 252 / 0.8);
  }

  .lg\:bg-indigo-300\/90 {
    background-color: rgb(165 180 252 / 0.9);
  }

  .lg\:bg-indigo-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(129 140 248 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-indigo-400\/10 {
    background-color: rgb(129 140 248 / 0.1);
  }

  .lg\:bg-indigo-400\/20 {
    background-color: rgb(129 140 248 / 0.2);
  }

  .lg\:bg-indigo-400\/30 {
    background-color: rgb(129 140 248 / 0.3);
  }

  .lg\:bg-indigo-400\/40 {
    background-color: rgb(129 140 248 / 0.4);
  }

  .lg\:bg-indigo-400\/5 {
    background-color: rgb(129 140 248 / 0.05);
  }

  .lg\:bg-indigo-400\/50 {
    background-color: rgb(129 140 248 / 0.5);
  }

  .lg\:bg-indigo-400\/60 {
    background-color: rgb(129 140 248 / 0.6);
  }

  .lg\:bg-indigo-400\/70 {
    background-color: rgb(129 140 248 / 0.7);
  }

  .lg\:bg-indigo-400\/80 {
    background-color: rgb(129 140 248 / 0.8);
  }

  .lg\:bg-indigo-400\/90 {
    background-color: rgb(129 140 248 / 0.9);
  }

  .lg\:bg-indigo-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(238 242 255 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-indigo-50\/10 {
    background-color: rgb(238 242 255 / 0.1);
  }

  .lg\:bg-indigo-50\/20 {
    background-color: rgb(238 242 255 / 0.2);
  }

  .lg\:bg-indigo-50\/30 {
    background-color: rgb(238 242 255 / 0.3);
  }

  .lg\:bg-indigo-50\/40 {
    background-color: rgb(238 242 255 / 0.4);
  }

  .lg\:bg-indigo-50\/5 {
    background-color: rgb(238 242 255 / 0.05);
  }

  .lg\:bg-indigo-50\/50 {
    background-color: rgb(238 242 255 / 0.5);
  }

  .lg\:bg-indigo-50\/60 {
    background-color: rgb(238 242 255 / 0.6);
  }

  .lg\:bg-indigo-50\/70 {
    background-color: rgb(238 242 255 / 0.7);
  }

  .lg\:bg-indigo-50\/80 {
    background-color: rgb(238 242 255 / 0.8);
  }

  .lg\:bg-indigo-50\/90 {
    background-color: rgb(238 242 255 / 0.9);
  }

  .lg\:bg-indigo-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(99 102 241 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-indigo-500\/10 {
    background-color: rgb(99 102 241 / 0.1);
  }

  .lg\:bg-indigo-500\/20 {
    background-color: rgb(99 102 241 / 0.2);
  }

  .lg\:bg-indigo-500\/30 {
    background-color: rgb(99 102 241 / 0.3);
  }

  .lg\:bg-indigo-500\/40 {
    background-color: rgb(99 102 241 / 0.4);
  }

  .lg\:bg-indigo-500\/5 {
    background-color: rgb(99 102 241 / 0.05);
  }

  .lg\:bg-indigo-500\/50 {
    background-color: rgb(99 102 241 / 0.5);
  }

  .lg\:bg-indigo-500\/60 {
    background-color: rgb(99 102 241 / 0.6);
  }

  .lg\:bg-indigo-500\/70 {
    background-color: rgb(99 102 241 / 0.7);
  }

  .lg\:bg-indigo-500\/80 {
    background-color: rgb(99 102 241 / 0.8);
  }

  .lg\:bg-indigo-500\/90 {
    background-color: rgb(99 102 241 / 0.9);
  }

  .lg\:bg-indigo-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(79 70 229 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-indigo-600\/10 {
    background-color: rgb(79 70 229 / 0.1);
  }

  .lg\:bg-indigo-600\/20 {
    background-color: rgb(79 70 229 / 0.2);
  }

  .lg\:bg-indigo-600\/30 {
    background-color: rgb(79 70 229 / 0.3);
  }

  .lg\:bg-indigo-600\/40 {
    background-color: rgb(79 70 229 / 0.4);
  }

  .lg\:bg-indigo-600\/5 {
    background-color: rgb(79 70 229 / 0.05);
  }

  .lg\:bg-indigo-600\/50 {
    background-color: rgb(79 70 229 / 0.5);
  }

  .lg\:bg-indigo-600\/60 {
    background-color: rgb(79 70 229 / 0.6);
  }

  .lg\:bg-indigo-600\/70 {
    background-color: rgb(79 70 229 / 0.7);
  }

  .lg\:bg-indigo-600\/80 {
    background-color: rgb(79 70 229 / 0.8);
  }

  .lg\:bg-indigo-600\/90 {
    background-color: rgb(79 70 229 / 0.9);
  }

  .lg\:bg-indigo-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(67 56 202 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-indigo-700\/10 {
    background-color: rgb(67 56 202 / 0.1);
  }

  .lg\:bg-indigo-700\/20 {
    background-color: rgb(67 56 202 / 0.2);
  }

  .lg\:bg-indigo-700\/30 {
    background-color: rgb(67 56 202 / 0.3);
  }

  .lg\:bg-indigo-700\/40 {
    background-color: rgb(67 56 202 / 0.4);
  }

  .lg\:bg-indigo-700\/5 {
    background-color: rgb(67 56 202 / 0.05);
  }

  .lg\:bg-indigo-700\/50 {
    background-color: rgb(67 56 202 / 0.5);
  }

  .lg\:bg-indigo-700\/60 {
    background-color: rgb(67 56 202 / 0.6);
  }

  .lg\:bg-indigo-700\/70 {
    background-color: rgb(67 56 202 / 0.7);
  }

  .lg\:bg-indigo-700\/80 {
    background-color: rgb(67 56 202 / 0.8);
  }

  .lg\:bg-indigo-700\/90 {
    background-color: rgb(67 56 202 / 0.9);
  }

  .lg\:bg-indigo-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(55 48 163 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-indigo-800\/10 {
    background-color: rgb(55 48 163 / 0.1);
  }

  .lg\:bg-indigo-800\/20 {
    background-color: rgb(55 48 163 / 0.2);
  }

  .lg\:bg-indigo-800\/30 {
    background-color: rgb(55 48 163 / 0.3);
  }

  .lg\:bg-indigo-800\/40 {
    background-color: rgb(55 48 163 / 0.4);
  }

  .lg\:bg-indigo-800\/5 {
    background-color: rgb(55 48 163 / 0.05);
  }

  .lg\:bg-indigo-800\/50 {
    background-color: rgb(55 48 163 / 0.5);
  }

  .lg\:bg-indigo-800\/60 {
    background-color: rgb(55 48 163 / 0.6);
  }

  .lg\:bg-indigo-800\/70 {
    background-color: rgb(55 48 163 / 0.7);
  }

  .lg\:bg-indigo-800\/80 {
    background-color: rgb(55 48 163 / 0.8);
  }

  .lg\:bg-indigo-800\/90 {
    background-color: rgb(55 48 163 / 0.9);
  }

  .lg\:bg-indigo-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(49 46 129 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-indigo-900\/10 {
    background-color: rgb(49 46 129 / 0.1);
  }

  .lg\:bg-indigo-900\/20 {
    background-color: rgb(49 46 129 / 0.2);
  }

  .lg\:bg-indigo-900\/30 {
    background-color: rgb(49 46 129 / 0.3);
  }

  .lg\:bg-indigo-900\/40 {
    background-color: rgb(49 46 129 / 0.4);
  }

  .lg\:bg-indigo-900\/5 {
    background-color: rgb(49 46 129 / 0.05);
  }

  .lg\:bg-indigo-900\/50 {
    background-color: rgb(49 46 129 / 0.5);
  }

  .lg\:bg-indigo-900\/60 {
    background-color: rgb(49 46 129 / 0.6);
  }

  .lg\:bg-indigo-900\/70 {
    background-color: rgb(49 46 129 / 0.7);
  }

  .lg\:bg-indigo-900\/80 {
    background-color: rgb(49 46 129 / 0.8);
  }

  .lg\:bg-indigo-900\/90 {
    background-color: rgb(49 46 129 / 0.9);
  }

  .lg\:bg-indigo-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(30 27 75 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-indigo-950\/10 {
    background-color: rgb(30 27 75 / 0.1);
  }

  .lg\:bg-indigo-950\/20 {
    background-color: rgb(30 27 75 / 0.2);
  }

  .lg\:bg-indigo-950\/30 {
    background-color: rgb(30 27 75 / 0.3);
  }

  .lg\:bg-indigo-950\/40 {
    background-color: rgb(30 27 75 / 0.4);
  }

  .lg\:bg-indigo-950\/5 {
    background-color: rgb(30 27 75 / 0.05);
  }

  .lg\:bg-indigo-950\/50 {
    background-color: rgb(30 27 75 / 0.5);
  }

  .lg\:bg-indigo-950\/60 {
    background-color: rgb(30 27 75 / 0.6);
  }

  .lg\:bg-indigo-950\/70 {
    background-color: rgb(30 27 75 / 0.7);
  }

  .lg\:bg-indigo-950\/80 {
    background-color: rgb(30 27 75 / 0.8);
  }

  .lg\:bg-indigo-950\/90 {
    background-color: rgb(30 27 75 / 0.9);
  }

  .lg\:bg-lime-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(236 252 203 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-lime-100\/10 {
    background-color: rgb(236 252 203 / 0.1);
  }

  .lg\:bg-lime-100\/20 {
    background-color: rgb(236 252 203 / 0.2);
  }

  .lg\:bg-lime-100\/30 {
    background-color: rgb(236 252 203 / 0.3);
  }

  .lg\:bg-lime-100\/40 {
    background-color: rgb(236 252 203 / 0.4);
  }

  .lg\:bg-lime-100\/5 {
    background-color: rgb(236 252 203 / 0.05);
  }

  .lg\:bg-lime-100\/50 {
    background-color: rgb(236 252 203 / 0.5);
  }

  .lg\:bg-lime-100\/60 {
    background-color: rgb(236 252 203 / 0.6);
  }

  .lg\:bg-lime-100\/70 {
    background-color: rgb(236 252 203 / 0.7);
  }

  .lg\:bg-lime-100\/80 {
    background-color: rgb(236 252 203 / 0.8);
  }

  .lg\:bg-lime-100\/90 {
    background-color: rgb(236 252 203 / 0.9);
  }

  .lg\:bg-lime-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(217 249 157 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-lime-200\/10 {
    background-color: rgb(217 249 157 / 0.1);
  }

  .lg\:bg-lime-200\/20 {
    background-color: rgb(217 249 157 / 0.2);
  }

  .lg\:bg-lime-200\/30 {
    background-color: rgb(217 249 157 / 0.3);
  }

  .lg\:bg-lime-200\/40 {
    background-color: rgb(217 249 157 / 0.4);
  }

  .lg\:bg-lime-200\/5 {
    background-color: rgb(217 249 157 / 0.05);
  }

  .lg\:bg-lime-200\/50 {
    background-color: rgb(217 249 157 / 0.5);
  }

  .lg\:bg-lime-200\/60 {
    background-color: rgb(217 249 157 / 0.6);
  }

  .lg\:bg-lime-200\/70 {
    background-color: rgb(217 249 157 / 0.7);
  }

  .lg\:bg-lime-200\/80 {
    background-color: rgb(217 249 157 / 0.8);
  }

  .lg\:bg-lime-200\/90 {
    background-color: rgb(217 249 157 / 0.9);
  }

  .lg\:bg-lime-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(190 242 100 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-lime-300\/10 {
    background-color: rgb(190 242 100 / 0.1);
  }

  .lg\:bg-lime-300\/20 {
    background-color: rgb(190 242 100 / 0.2);
  }

  .lg\:bg-lime-300\/30 {
    background-color: rgb(190 242 100 / 0.3);
  }

  .lg\:bg-lime-300\/40 {
    background-color: rgb(190 242 100 / 0.4);
  }

  .lg\:bg-lime-300\/5 {
    background-color: rgb(190 242 100 / 0.05);
  }

  .lg\:bg-lime-300\/50 {
    background-color: rgb(190 242 100 / 0.5);
  }

  .lg\:bg-lime-300\/60 {
    background-color: rgb(190 242 100 / 0.6);
  }

  .lg\:bg-lime-300\/70 {
    background-color: rgb(190 242 100 / 0.7);
  }

  .lg\:bg-lime-300\/80 {
    background-color: rgb(190 242 100 / 0.8);
  }

  .lg\:bg-lime-300\/90 {
    background-color: rgb(190 242 100 / 0.9);
  }

  .lg\:bg-lime-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(163 230 53 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-lime-400\/10 {
    background-color: rgb(163 230 53 / 0.1);
  }

  .lg\:bg-lime-400\/20 {
    background-color: rgb(163 230 53 / 0.2);
  }

  .lg\:bg-lime-400\/30 {
    background-color: rgb(163 230 53 / 0.3);
  }

  .lg\:bg-lime-400\/40 {
    background-color: rgb(163 230 53 / 0.4);
  }

  .lg\:bg-lime-400\/5 {
    background-color: rgb(163 230 53 / 0.05);
  }

  .lg\:bg-lime-400\/50 {
    background-color: rgb(163 230 53 / 0.5);
  }

  .lg\:bg-lime-400\/60 {
    background-color: rgb(163 230 53 / 0.6);
  }

  .lg\:bg-lime-400\/70 {
    background-color: rgb(163 230 53 / 0.7);
  }

  .lg\:bg-lime-400\/80 {
    background-color: rgb(163 230 53 / 0.8);
  }

  .lg\:bg-lime-400\/90 {
    background-color: rgb(163 230 53 / 0.9);
  }

  .lg\:bg-lime-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(247 254 231 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-lime-50\/10 {
    background-color: rgb(247 254 231 / 0.1);
  }

  .lg\:bg-lime-50\/20 {
    background-color: rgb(247 254 231 / 0.2);
  }

  .lg\:bg-lime-50\/30 {
    background-color: rgb(247 254 231 / 0.3);
  }

  .lg\:bg-lime-50\/40 {
    background-color: rgb(247 254 231 / 0.4);
  }

  .lg\:bg-lime-50\/5 {
    background-color: rgb(247 254 231 / 0.05);
  }

  .lg\:bg-lime-50\/50 {
    background-color: rgb(247 254 231 / 0.5);
  }

  .lg\:bg-lime-50\/60 {
    background-color: rgb(247 254 231 / 0.6);
  }

  .lg\:bg-lime-50\/70 {
    background-color: rgb(247 254 231 / 0.7);
  }

  .lg\:bg-lime-50\/80 {
    background-color: rgb(247 254 231 / 0.8);
  }

  .lg\:bg-lime-50\/90 {
    background-color: rgb(247 254 231 / 0.9);
  }

  .lg\:bg-lime-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(132 204 22 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-lime-500\/10 {
    background-color: rgb(132 204 22 / 0.1);
  }

  .lg\:bg-lime-500\/20 {
    background-color: rgb(132 204 22 / 0.2);
  }

  .lg\:bg-lime-500\/30 {
    background-color: rgb(132 204 22 / 0.3);
  }

  .lg\:bg-lime-500\/40 {
    background-color: rgb(132 204 22 / 0.4);
  }

  .lg\:bg-lime-500\/5 {
    background-color: rgb(132 204 22 / 0.05);
  }

  .lg\:bg-lime-500\/50 {
    background-color: rgb(132 204 22 / 0.5);
  }

  .lg\:bg-lime-500\/60 {
    background-color: rgb(132 204 22 / 0.6);
  }

  .lg\:bg-lime-500\/70 {
    background-color: rgb(132 204 22 / 0.7);
  }

  .lg\:bg-lime-500\/80 {
    background-color: rgb(132 204 22 / 0.8);
  }

  .lg\:bg-lime-500\/90 {
    background-color: rgb(132 204 22 / 0.9);
  }

  .lg\:bg-lime-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(101 163 13 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-lime-600\/10 {
    background-color: rgb(101 163 13 / 0.1);
  }

  .lg\:bg-lime-600\/20 {
    background-color: rgb(101 163 13 / 0.2);
  }

  .lg\:bg-lime-600\/30 {
    background-color: rgb(101 163 13 / 0.3);
  }

  .lg\:bg-lime-600\/40 {
    background-color: rgb(101 163 13 / 0.4);
  }

  .lg\:bg-lime-600\/5 {
    background-color: rgb(101 163 13 / 0.05);
  }

  .lg\:bg-lime-600\/50 {
    background-color: rgb(101 163 13 / 0.5);
  }

  .lg\:bg-lime-600\/60 {
    background-color: rgb(101 163 13 / 0.6);
  }

  .lg\:bg-lime-600\/70 {
    background-color: rgb(101 163 13 / 0.7);
  }

  .lg\:bg-lime-600\/80 {
    background-color: rgb(101 163 13 / 0.8);
  }

  .lg\:bg-lime-600\/90 {
    background-color: rgb(101 163 13 / 0.9);
  }

  .lg\:bg-lime-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(77 124 15 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-lime-700\/10 {
    background-color: rgb(77 124 15 / 0.1);
  }

  .lg\:bg-lime-700\/20 {
    background-color: rgb(77 124 15 / 0.2);
  }

  .lg\:bg-lime-700\/30 {
    background-color: rgb(77 124 15 / 0.3);
  }

  .lg\:bg-lime-700\/40 {
    background-color: rgb(77 124 15 / 0.4);
  }

  .lg\:bg-lime-700\/5 {
    background-color: rgb(77 124 15 / 0.05);
  }

  .lg\:bg-lime-700\/50 {
    background-color: rgb(77 124 15 / 0.5);
  }

  .lg\:bg-lime-700\/60 {
    background-color: rgb(77 124 15 / 0.6);
  }

  .lg\:bg-lime-700\/70 {
    background-color: rgb(77 124 15 / 0.7);
  }

  .lg\:bg-lime-700\/80 {
    background-color: rgb(77 124 15 / 0.8);
  }

  .lg\:bg-lime-700\/90 {
    background-color: rgb(77 124 15 / 0.9);
  }

  .lg\:bg-lime-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(63 98 18 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-lime-800\/10 {
    background-color: rgb(63 98 18 / 0.1);
  }

  .lg\:bg-lime-800\/20 {
    background-color: rgb(63 98 18 / 0.2);
  }

  .lg\:bg-lime-800\/30 {
    background-color: rgb(63 98 18 / 0.3);
  }

  .lg\:bg-lime-800\/40 {
    background-color: rgb(63 98 18 / 0.4);
  }

  .lg\:bg-lime-800\/5 {
    background-color: rgb(63 98 18 / 0.05);
  }

  .lg\:bg-lime-800\/50 {
    background-color: rgb(63 98 18 / 0.5);
  }

  .lg\:bg-lime-800\/60 {
    background-color: rgb(63 98 18 / 0.6);
  }

  .lg\:bg-lime-800\/70 {
    background-color: rgb(63 98 18 / 0.7);
  }

  .lg\:bg-lime-800\/80 {
    background-color: rgb(63 98 18 / 0.8);
  }

  .lg\:bg-lime-800\/90 {
    background-color: rgb(63 98 18 / 0.9);
  }

  .lg\:bg-lime-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(54 83 20 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-lime-900\/10 {
    background-color: rgb(54 83 20 / 0.1);
  }

  .lg\:bg-lime-900\/20 {
    background-color: rgb(54 83 20 / 0.2);
  }

  .lg\:bg-lime-900\/30 {
    background-color: rgb(54 83 20 / 0.3);
  }

  .lg\:bg-lime-900\/40 {
    background-color: rgb(54 83 20 / 0.4);
  }

  .lg\:bg-lime-900\/5 {
    background-color: rgb(54 83 20 / 0.05);
  }

  .lg\:bg-lime-900\/50 {
    background-color: rgb(54 83 20 / 0.5);
  }

  .lg\:bg-lime-900\/60 {
    background-color: rgb(54 83 20 / 0.6);
  }

  .lg\:bg-lime-900\/70 {
    background-color: rgb(54 83 20 / 0.7);
  }

  .lg\:bg-lime-900\/80 {
    background-color: rgb(54 83 20 / 0.8);
  }

  .lg\:bg-lime-900\/90 {
    background-color: rgb(54 83 20 / 0.9);
  }

  .lg\:bg-lime-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(26 46 5 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-lime-950\/10 {
    background-color: rgb(26 46 5 / 0.1);
  }

  .lg\:bg-lime-950\/20 {
    background-color: rgb(26 46 5 / 0.2);
  }

  .lg\:bg-lime-950\/30 {
    background-color: rgb(26 46 5 / 0.3);
  }

  .lg\:bg-lime-950\/40 {
    background-color: rgb(26 46 5 / 0.4);
  }

  .lg\:bg-lime-950\/5 {
    background-color: rgb(26 46 5 / 0.05);
  }

  .lg\:bg-lime-950\/50 {
    background-color: rgb(26 46 5 / 0.5);
  }

  .lg\:bg-lime-950\/60 {
    background-color: rgb(26 46 5 / 0.6);
  }

  .lg\:bg-lime-950\/70 {
    background-color: rgb(26 46 5 / 0.7);
  }

  .lg\:bg-lime-950\/80 {
    background-color: rgb(26 46 5 / 0.8);
  }

  .lg\:bg-lime-950\/90 {
    background-color: rgb(26 46 5 / 0.9);
  }

  .lg\:bg-neutral-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(245 245 245 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-neutral-100\/10 {
    background-color: rgb(245 245 245 / 0.1);
  }

  .lg\:bg-neutral-100\/20 {
    background-color: rgb(245 245 245 / 0.2);
  }

  .lg\:bg-neutral-100\/30 {
    background-color: rgb(245 245 245 / 0.3);
  }

  .lg\:bg-neutral-100\/40 {
    background-color: rgb(245 245 245 / 0.4);
  }

  .lg\:bg-neutral-100\/5 {
    background-color: rgb(245 245 245 / 0.05);
  }

  .lg\:bg-neutral-100\/50 {
    background-color: rgb(245 245 245 / 0.5);
  }

  .lg\:bg-neutral-100\/60 {
    background-color: rgb(245 245 245 / 0.6);
  }

  .lg\:bg-neutral-100\/70 {
    background-color: rgb(245 245 245 / 0.7);
  }

  .lg\:bg-neutral-100\/80 {
    background-color: rgb(245 245 245 / 0.8);
  }

  .lg\:bg-neutral-100\/90 {
    background-color: rgb(245 245 245 / 0.9);
  }

  .lg\:bg-neutral-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(229 229 229 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-neutral-200\/10 {
    background-color: rgb(229 229 229 / 0.1);
  }

  .lg\:bg-neutral-200\/20 {
    background-color: rgb(229 229 229 / 0.2);
  }

  .lg\:bg-neutral-200\/30 {
    background-color: rgb(229 229 229 / 0.3);
  }

  .lg\:bg-neutral-200\/40 {
    background-color: rgb(229 229 229 / 0.4);
  }

  .lg\:bg-neutral-200\/5 {
    background-color: rgb(229 229 229 / 0.05);
  }

  .lg\:bg-neutral-200\/50 {
    background-color: rgb(229 229 229 / 0.5);
  }

  .lg\:bg-neutral-200\/60 {
    background-color: rgb(229 229 229 / 0.6);
  }

  .lg\:bg-neutral-200\/70 {
    background-color: rgb(229 229 229 / 0.7);
  }

  .lg\:bg-neutral-200\/80 {
    background-color: rgb(229 229 229 / 0.8);
  }

  .lg\:bg-neutral-200\/90 {
    background-color: rgb(229 229 229 / 0.9);
  }

  .lg\:bg-neutral-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(212 212 212 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-neutral-300\/10 {
    background-color: rgb(212 212 212 / 0.1);
  }

  .lg\:bg-neutral-300\/20 {
    background-color: rgb(212 212 212 / 0.2);
  }

  .lg\:bg-neutral-300\/30 {
    background-color: rgb(212 212 212 / 0.3);
  }

  .lg\:bg-neutral-300\/40 {
    background-color: rgb(212 212 212 / 0.4);
  }

  .lg\:bg-neutral-300\/5 {
    background-color: rgb(212 212 212 / 0.05);
  }

  .lg\:bg-neutral-300\/50 {
    background-color: rgb(212 212 212 / 0.5);
  }

  .lg\:bg-neutral-300\/60 {
    background-color: rgb(212 212 212 / 0.6);
  }

  .lg\:bg-neutral-300\/70 {
    background-color: rgb(212 212 212 / 0.7);
  }

  .lg\:bg-neutral-300\/80 {
    background-color: rgb(212 212 212 / 0.8);
  }

  .lg\:bg-neutral-300\/90 {
    background-color: rgb(212 212 212 / 0.9);
  }

  .lg\:bg-neutral-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(163 163 163 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-neutral-400\/10 {
    background-color: rgb(163 163 163 / 0.1);
  }

  .lg\:bg-neutral-400\/20 {
    background-color: rgb(163 163 163 / 0.2);
  }

  .lg\:bg-neutral-400\/30 {
    background-color: rgb(163 163 163 / 0.3);
  }

  .lg\:bg-neutral-400\/40 {
    background-color: rgb(163 163 163 / 0.4);
  }

  .lg\:bg-neutral-400\/5 {
    background-color: rgb(163 163 163 / 0.05);
  }

  .lg\:bg-neutral-400\/50 {
    background-color: rgb(163 163 163 / 0.5);
  }

  .lg\:bg-neutral-400\/60 {
    background-color: rgb(163 163 163 / 0.6);
  }

  .lg\:bg-neutral-400\/70 {
    background-color: rgb(163 163 163 / 0.7);
  }

  .lg\:bg-neutral-400\/80 {
    background-color: rgb(163 163 163 / 0.8);
  }

  .lg\:bg-neutral-400\/90 {
    background-color: rgb(163 163 163 / 0.9);
  }

  .lg\:bg-neutral-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-neutral-50\/10 {
    background-color: rgb(250 250 250 / 0.1);
  }

  .lg\:bg-neutral-50\/20 {
    background-color: rgb(250 250 250 / 0.2);
  }

  .lg\:bg-neutral-50\/30 {
    background-color: rgb(250 250 250 / 0.3);
  }

  .lg\:bg-neutral-50\/40 {
    background-color: rgb(250 250 250 / 0.4);
  }

  .lg\:bg-neutral-50\/5 {
    background-color: rgb(250 250 250 / 0.05);
  }

  .lg\:bg-neutral-50\/50 {
    background-color: rgb(250 250 250 / 0.5);
  }

  .lg\:bg-neutral-50\/60 {
    background-color: rgb(250 250 250 / 0.6);
  }

  .lg\:bg-neutral-50\/70 {
    background-color: rgb(250 250 250 / 0.7);
  }

  .lg\:bg-neutral-50\/80 {
    background-color: rgb(250 250 250 / 0.8);
  }

  .lg\:bg-neutral-50\/90 {
    background-color: rgb(250 250 250 / 0.9);
  }

  .lg\:bg-neutral-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(115 115 115 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-neutral-500\/10 {
    background-color: rgb(115 115 115 / 0.1);
  }

  .lg\:bg-neutral-500\/20 {
    background-color: rgb(115 115 115 / 0.2);
  }

  .lg\:bg-neutral-500\/30 {
    background-color: rgb(115 115 115 / 0.3);
  }

  .lg\:bg-neutral-500\/40 {
    background-color: rgb(115 115 115 / 0.4);
  }

  .lg\:bg-neutral-500\/5 {
    background-color: rgb(115 115 115 / 0.05);
  }

  .lg\:bg-neutral-500\/50 {
    background-color: rgb(115 115 115 / 0.5);
  }

  .lg\:bg-neutral-500\/60 {
    background-color: rgb(115 115 115 / 0.6);
  }

  .lg\:bg-neutral-500\/70 {
    background-color: rgb(115 115 115 / 0.7);
  }

  .lg\:bg-neutral-500\/80 {
    background-color: rgb(115 115 115 / 0.8);
  }

  .lg\:bg-neutral-500\/90 {
    background-color: rgb(115 115 115 / 0.9);
  }

  .lg\:bg-neutral-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(82 82 82 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-neutral-600\/10 {
    background-color: rgb(82 82 82 / 0.1);
  }

  .lg\:bg-neutral-600\/20 {
    background-color: rgb(82 82 82 / 0.2);
  }

  .lg\:bg-neutral-600\/30 {
    background-color: rgb(82 82 82 / 0.3);
  }

  .lg\:bg-neutral-600\/40 {
    background-color: rgb(82 82 82 / 0.4);
  }

  .lg\:bg-neutral-600\/5 {
    background-color: rgb(82 82 82 / 0.05);
  }

  .lg\:bg-neutral-600\/50 {
    background-color: rgb(82 82 82 / 0.5);
  }

  .lg\:bg-neutral-600\/60 {
    background-color: rgb(82 82 82 / 0.6);
  }

  .lg\:bg-neutral-600\/70 {
    background-color: rgb(82 82 82 / 0.7);
  }

  .lg\:bg-neutral-600\/80 {
    background-color: rgb(82 82 82 / 0.8);
  }

  .lg\:bg-neutral-600\/90 {
    background-color: rgb(82 82 82 / 0.9);
  }

  .lg\:bg-neutral-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(64 64 64 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-neutral-700\/10 {
    background-color: rgb(64 64 64 / 0.1);
  }

  .lg\:bg-neutral-700\/20 {
    background-color: rgb(64 64 64 / 0.2);
  }

  .lg\:bg-neutral-700\/30 {
    background-color: rgb(64 64 64 / 0.3);
  }

  .lg\:bg-neutral-700\/40 {
    background-color: rgb(64 64 64 / 0.4);
  }

  .lg\:bg-neutral-700\/5 {
    background-color: rgb(64 64 64 / 0.05);
  }

  .lg\:bg-neutral-700\/50 {
    background-color: rgb(64 64 64 / 0.5);
  }

  .lg\:bg-neutral-700\/60 {
    background-color: rgb(64 64 64 / 0.6);
  }

  .lg\:bg-neutral-700\/70 {
    background-color: rgb(64 64 64 / 0.7);
  }

  .lg\:bg-neutral-700\/80 {
    background-color: rgb(64 64 64 / 0.8);
  }

  .lg\:bg-neutral-700\/90 {
    background-color: rgb(64 64 64 / 0.9);
  }

  .lg\:bg-neutral-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(38 38 38 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-neutral-800\/10 {
    background-color: rgb(38 38 38 / 0.1);
  }

  .lg\:bg-neutral-800\/20 {
    background-color: rgb(38 38 38 / 0.2);
  }

  .lg\:bg-neutral-800\/30 {
    background-color: rgb(38 38 38 / 0.3);
  }

  .lg\:bg-neutral-800\/40 {
    background-color: rgb(38 38 38 / 0.4);
  }

  .lg\:bg-neutral-800\/5 {
    background-color: rgb(38 38 38 / 0.05);
  }

  .lg\:bg-neutral-800\/50 {
    background-color: rgb(38 38 38 / 0.5);
  }

  .lg\:bg-neutral-800\/60 {
    background-color: rgb(38 38 38 / 0.6);
  }

  .lg\:bg-neutral-800\/70 {
    background-color: rgb(38 38 38 / 0.7);
  }

  .lg\:bg-neutral-800\/80 {
    background-color: rgb(38 38 38 / 0.8);
  }

  .lg\:bg-neutral-800\/90 {
    background-color: rgb(38 38 38 / 0.9);
  }

  .lg\:bg-neutral-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(23 23 23 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-neutral-900\/10 {
    background-color: rgb(23 23 23 / 0.1);
  }

  .lg\:bg-neutral-900\/20 {
    background-color: rgb(23 23 23 / 0.2);
  }

  .lg\:bg-neutral-900\/30 {
    background-color: rgb(23 23 23 / 0.3);
  }

  .lg\:bg-neutral-900\/40 {
    background-color: rgb(23 23 23 / 0.4);
  }

  .lg\:bg-neutral-900\/5 {
    background-color: rgb(23 23 23 / 0.05);
  }

  .lg\:bg-neutral-900\/50 {
    background-color: rgb(23 23 23 / 0.5);
  }

  .lg\:bg-neutral-900\/60 {
    background-color: rgb(23 23 23 / 0.6);
  }

  .lg\:bg-neutral-900\/70 {
    background-color: rgb(23 23 23 / 0.7);
  }

  .lg\:bg-neutral-900\/80 {
    background-color: rgb(23 23 23 / 0.8);
  }

  .lg\:bg-neutral-900\/90 {
    background-color: rgb(23 23 23 / 0.9);
  }

  .lg\:bg-neutral-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(10 10 10 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-neutral-950\/10 {
    background-color: rgb(10 10 10 / 0.1);
  }

  .lg\:bg-neutral-950\/20 {
    background-color: rgb(10 10 10 / 0.2);
  }

  .lg\:bg-neutral-950\/30 {
    background-color: rgb(10 10 10 / 0.3);
  }

  .lg\:bg-neutral-950\/40 {
    background-color: rgb(10 10 10 / 0.4);
  }

  .lg\:bg-neutral-950\/5 {
    background-color: rgb(10 10 10 / 0.05);
  }

  .lg\:bg-neutral-950\/50 {
    background-color: rgb(10 10 10 / 0.5);
  }

  .lg\:bg-neutral-950\/60 {
    background-color: rgb(10 10 10 / 0.6);
  }

  .lg\:bg-neutral-950\/70 {
    background-color: rgb(10 10 10 / 0.7);
  }

  .lg\:bg-neutral-950\/80 {
    background-color: rgb(10 10 10 / 0.8);
  }

  .lg\:bg-neutral-950\/90 {
    background-color: rgb(10 10 10 / 0.9);
  }

  .lg\:bg-orange-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 237 213 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-orange-100\/10 {
    background-color: rgb(255 237 213 / 0.1);
  }

  .lg\:bg-orange-100\/20 {
    background-color: rgb(255 237 213 / 0.2);
  }

  .lg\:bg-orange-100\/30 {
    background-color: rgb(255 237 213 / 0.3);
  }

  .lg\:bg-orange-100\/40 {
    background-color: rgb(255 237 213 / 0.4);
  }

  .lg\:bg-orange-100\/5 {
    background-color: rgb(255 237 213 / 0.05);
  }

  .lg\:bg-orange-100\/50 {
    background-color: rgb(255 237 213 / 0.5);
  }

  .lg\:bg-orange-100\/60 {
    background-color: rgb(255 237 213 / 0.6);
  }

  .lg\:bg-orange-100\/70 {
    background-color: rgb(255 237 213 / 0.7);
  }

  .lg\:bg-orange-100\/80 {
    background-color: rgb(255 237 213 / 0.8);
  }

  .lg\:bg-orange-100\/90 {
    background-color: rgb(255 237 213 / 0.9);
  }

  .lg\:bg-orange-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 215 170 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-orange-200\/10 {
    background-color: rgb(254 215 170 / 0.1);
  }

  .lg\:bg-orange-200\/20 {
    background-color: rgb(254 215 170 / 0.2);
  }

  .lg\:bg-orange-200\/30 {
    background-color: rgb(254 215 170 / 0.3);
  }

  .lg\:bg-orange-200\/40 {
    background-color: rgb(254 215 170 / 0.4);
  }

  .lg\:bg-orange-200\/5 {
    background-color: rgb(254 215 170 / 0.05);
  }

  .lg\:bg-orange-200\/50 {
    background-color: rgb(254 215 170 / 0.5);
  }

  .lg\:bg-orange-200\/60 {
    background-color: rgb(254 215 170 / 0.6);
  }

  .lg\:bg-orange-200\/70 {
    background-color: rgb(254 215 170 / 0.7);
  }

  .lg\:bg-orange-200\/80 {
    background-color: rgb(254 215 170 / 0.8);
  }

  .lg\:bg-orange-200\/90 {
    background-color: rgb(254 215 170 / 0.9);
  }

  .lg\:bg-orange-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(253 186 116 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-orange-300\/10 {
    background-color: rgb(253 186 116 / 0.1);
  }

  .lg\:bg-orange-300\/20 {
    background-color: rgb(253 186 116 / 0.2);
  }

  .lg\:bg-orange-300\/30 {
    background-color: rgb(253 186 116 / 0.3);
  }

  .lg\:bg-orange-300\/40 {
    background-color: rgb(253 186 116 / 0.4);
  }

  .lg\:bg-orange-300\/5 {
    background-color: rgb(253 186 116 / 0.05);
  }

  .lg\:bg-orange-300\/50 {
    background-color: rgb(253 186 116 / 0.5);
  }

  .lg\:bg-orange-300\/60 {
    background-color: rgb(253 186 116 / 0.6);
  }

  .lg\:bg-orange-300\/70 {
    background-color: rgb(253 186 116 / 0.7);
  }

  .lg\:bg-orange-300\/80 {
    background-color: rgb(253 186 116 / 0.8);
  }

  .lg\:bg-orange-300\/90 {
    background-color: rgb(253 186 116 / 0.9);
  }

  .lg\:bg-orange-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(251 146 60 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-orange-400\/10 {
    background-color: rgb(251 146 60 / 0.1);
  }

  .lg\:bg-orange-400\/20 {
    background-color: rgb(251 146 60 / 0.2);
  }

  .lg\:bg-orange-400\/30 {
    background-color: rgb(251 146 60 / 0.3);
  }

  .lg\:bg-orange-400\/40 {
    background-color: rgb(251 146 60 / 0.4);
  }

  .lg\:bg-orange-400\/5 {
    background-color: rgb(251 146 60 / 0.05);
  }

  .lg\:bg-orange-400\/50 {
    background-color: rgb(251 146 60 / 0.5);
  }

  .lg\:bg-orange-400\/60 {
    background-color: rgb(251 146 60 / 0.6);
  }

  .lg\:bg-orange-400\/70 {
    background-color: rgb(251 146 60 / 0.7);
  }

  .lg\:bg-orange-400\/80 {
    background-color: rgb(251 146 60 / 0.8);
  }

  .lg\:bg-orange-400\/90 {
    background-color: rgb(251 146 60 / 0.9);
  }

  .lg\:bg-orange-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 247 237 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-orange-50\/10 {
    background-color: rgb(255 247 237 / 0.1);
  }

  .lg\:bg-orange-50\/20 {
    background-color: rgb(255 247 237 / 0.2);
  }

  .lg\:bg-orange-50\/30 {
    background-color: rgb(255 247 237 / 0.3);
  }

  .lg\:bg-orange-50\/40 {
    background-color: rgb(255 247 237 / 0.4);
  }

  .lg\:bg-orange-50\/5 {
    background-color: rgb(255 247 237 / 0.05);
  }

  .lg\:bg-orange-50\/50 {
    background-color: rgb(255 247 237 / 0.5);
  }

  .lg\:bg-orange-50\/60 {
    background-color: rgb(255 247 237 / 0.6);
  }

  .lg\:bg-orange-50\/70 {
    background-color: rgb(255 247 237 / 0.7);
  }

  .lg\:bg-orange-50\/80 {
    background-color: rgb(255 247 237 / 0.8);
  }

  .lg\:bg-orange-50\/90 {
    background-color: rgb(255 247 237 / 0.9);
  }

  .lg\:bg-orange-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-orange-500\/10 {
    background-color: rgb(249 115 22 / 0.1);
  }

  .lg\:bg-orange-500\/20 {
    background-color: rgb(249 115 22 / 0.2);
  }

  .lg\:bg-orange-500\/30 {
    background-color: rgb(249 115 22 / 0.3);
  }

  .lg\:bg-orange-500\/40 {
    background-color: rgb(249 115 22 / 0.4);
  }

  .lg\:bg-orange-500\/5 {
    background-color: rgb(249 115 22 / 0.05);
  }

  .lg\:bg-orange-500\/50 {
    background-color: rgb(249 115 22 / 0.5);
  }

  .lg\:bg-orange-500\/60 {
    background-color: rgb(249 115 22 / 0.6);
  }

  .lg\:bg-orange-500\/70 {
    background-color: rgb(249 115 22 / 0.7);
  }

  .lg\:bg-orange-500\/80 {
    background-color: rgb(249 115 22 / 0.8);
  }

  .lg\:bg-orange-500\/90 {
    background-color: rgb(249 115 22 / 0.9);
  }

  .lg\:bg-orange-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(234 88 12 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-orange-600\/10 {
    background-color: rgb(234 88 12 / 0.1);
  }

  .lg\:bg-orange-600\/20 {
    background-color: rgb(234 88 12 / 0.2);
  }

  .lg\:bg-orange-600\/30 {
    background-color: rgb(234 88 12 / 0.3);
  }

  .lg\:bg-orange-600\/40 {
    background-color: rgb(234 88 12 / 0.4);
  }

  .lg\:bg-orange-600\/5 {
    background-color: rgb(234 88 12 / 0.05);
  }

  .lg\:bg-orange-600\/50 {
    background-color: rgb(234 88 12 / 0.5);
  }

  .lg\:bg-orange-600\/60 {
    background-color: rgb(234 88 12 / 0.6);
  }

  .lg\:bg-orange-600\/70 {
    background-color: rgb(234 88 12 / 0.7);
  }

  .lg\:bg-orange-600\/80 {
    background-color: rgb(234 88 12 / 0.8);
  }

  .lg\:bg-orange-600\/90 {
    background-color: rgb(234 88 12 / 0.9);
  }

  .lg\:bg-orange-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(194 65 12 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-orange-700\/10 {
    background-color: rgb(194 65 12 / 0.1);
  }

  .lg\:bg-orange-700\/20 {
    background-color: rgb(194 65 12 / 0.2);
  }

  .lg\:bg-orange-700\/30 {
    background-color: rgb(194 65 12 / 0.3);
  }

  .lg\:bg-orange-700\/40 {
    background-color: rgb(194 65 12 / 0.4);
  }

  .lg\:bg-orange-700\/5 {
    background-color: rgb(194 65 12 / 0.05);
  }

  .lg\:bg-orange-700\/50 {
    background-color: rgb(194 65 12 / 0.5);
  }

  .lg\:bg-orange-700\/60 {
    background-color: rgb(194 65 12 / 0.6);
  }

  .lg\:bg-orange-700\/70 {
    background-color: rgb(194 65 12 / 0.7);
  }

  .lg\:bg-orange-700\/80 {
    background-color: rgb(194 65 12 / 0.8);
  }

  .lg\:bg-orange-700\/90 {
    background-color: rgb(194 65 12 / 0.9);
  }

  .lg\:bg-orange-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(154 52 18 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-orange-800\/10 {
    background-color: rgb(154 52 18 / 0.1);
  }

  .lg\:bg-orange-800\/20 {
    background-color: rgb(154 52 18 / 0.2);
  }

  .lg\:bg-orange-800\/30 {
    background-color: rgb(154 52 18 / 0.3);
  }

  .lg\:bg-orange-800\/40 {
    background-color: rgb(154 52 18 / 0.4);
  }

  .lg\:bg-orange-800\/5 {
    background-color: rgb(154 52 18 / 0.05);
  }

  .lg\:bg-orange-800\/50 {
    background-color: rgb(154 52 18 / 0.5);
  }

  .lg\:bg-orange-800\/60 {
    background-color: rgb(154 52 18 / 0.6);
  }

  .lg\:bg-orange-800\/70 {
    background-color: rgb(154 52 18 / 0.7);
  }

  .lg\:bg-orange-800\/80 {
    background-color: rgb(154 52 18 / 0.8);
  }

  .lg\:bg-orange-800\/90 {
    background-color: rgb(154 52 18 / 0.9);
  }

  .lg\:bg-orange-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(124 45 18 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-orange-900\/10 {
    background-color: rgb(124 45 18 / 0.1);
  }

  .lg\:bg-orange-900\/20 {
    background-color: rgb(124 45 18 / 0.2);
  }

  .lg\:bg-orange-900\/30 {
    background-color: rgb(124 45 18 / 0.3);
  }

  .lg\:bg-orange-900\/40 {
    background-color: rgb(124 45 18 / 0.4);
  }

  .lg\:bg-orange-900\/5 {
    background-color: rgb(124 45 18 / 0.05);
  }

  .lg\:bg-orange-900\/50 {
    background-color: rgb(124 45 18 / 0.5);
  }

  .lg\:bg-orange-900\/60 {
    background-color: rgb(124 45 18 / 0.6);
  }

  .lg\:bg-orange-900\/70 {
    background-color: rgb(124 45 18 / 0.7);
  }

  .lg\:bg-orange-900\/80 {
    background-color: rgb(124 45 18 / 0.8);
  }

  .lg\:bg-orange-900\/90 {
    background-color: rgb(124 45 18 / 0.9);
  }

  .lg\:bg-orange-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(67 20 7 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-orange-950\/10 {
    background-color: rgb(67 20 7 / 0.1);
  }

  .lg\:bg-orange-950\/20 {
    background-color: rgb(67 20 7 / 0.2);
  }

  .lg\:bg-orange-950\/30 {
    background-color: rgb(67 20 7 / 0.3);
  }

  .lg\:bg-orange-950\/40 {
    background-color: rgb(67 20 7 / 0.4);
  }

  .lg\:bg-orange-950\/5 {
    background-color: rgb(67 20 7 / 0.05);
  }

  .lg\:bg-orange-950\/50 {
    background-color: rgb(67 20 7 / 0.5);
  }

  .lg\:bg-orange-950\/60 {
    background-color: rgb(67 20 7 / 0.6);
  }

  .lg\:bg-orange-950\/70 {
    background-color: rgb(67 20 7 / 0.7);
  }

  .lg\:bg-orange-950\/80 {
    background-color: rgb(67 20 7 / 0.8);
  }

  .lg\:bg-orange-950\/90 {
    background-color: rgb(67 20 7 / 0.9);
  }

  .lg\:bg-pink-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(252 231 243 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-pink-100\/10 {
    background-color: rgb(252 231 243 / 0.1);
  }

  .lg\:bg-pink-100\/20 {
    background-color: rgb(252 231 243 / 0.2);
  }

  .lg\:bg-pink-100\/30 {
    background-color: rgb(252 231 243 / 0.3);
  }

  .lg\:bg-pink-100\/40 {
    background-color: rgb(252 231 243 / 0.4);
  }

  .lg\:bg-pink-100\/5 {
    background-color: rgb(252 231 243 / 0.05);
  }

  .lg\:bg-pink-100\/50 {
    background-color: rgb(252 231 243 / 0.5);
  }

  .lg\:bg-pink-100\/60 {
    background-color: rgb(252 231 243 / 0.6);
  }

  .lg\:bg-pink-100\/70 {
    background-color: rgb(252 231 243 / 0.7);
  }

  .lg\:bg-pink-100\/80 {
    background-color: rgb(252 231 243 / 0.8);
  }

  .lg\:bg-pink-100\/90 {
    background-color: rgb(252 231 243 / 0.9);
  }

  .lg\:bg-pink-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(251 207 232 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-pink-200\/10 {
    background-color: rgb(251 207 232 / 0.1);
  }

  .lg\:bg-pink-200\/20 {
    background-color: rgb(251 207 232 / 0.2);
  }

  .lg\:bg-pink-200\/30 {
    background-color: rgb(251 207 232 / 0.3);
  }

  .lg\:bg-pink-200\/40 {
    background-color: rgb(251 207 232 / 0.4);
  }

  .lg\:bg-pink-200\/5 {
    background-color: rgb(251 207 232 / 0.05);
  }

  .lg\:bg-pink-200\/50 {
    background-color: rgb(251 207 232 / 0.5);
  }

  .lg\:bg-pink-200\/60 {
    background-color: rgb(251 207 232 / 0.6);
  }

  .lg\:bg-pink-200\/70 {
    background-color: rgb(251 207 232 / 0.7);
  }

  .lg\:bg-pink-200\/80 {
    background-color: rgb(251 207 232 / 0.8);
  }

  .lg\:bg-pink-200\/90 {
    background-color: rgb(251 207 232 / 0.9);
  }

  .lg\:bg-pink-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(249 168 212 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-pink-300\/10 {
    background-color: rgb(249 168 212 / 0.1);
  }

  .lg\:bg-pink-300\/20 {
    background-color: rgb(249 168 212 / 0.2);
  }

  .lg\:bg-pink-300\/30 {
    background-color: rgb(249 168 212 / 0.3);
  }

  .lg\:bg-pink-300\/40 {
    background-color: rgb(249 168 212 / 0.4);
  }

  .lg\:bg-pink-300\/5 {
    background-color: rgb(249 168 212 / 0.05);
  }

  .lg\:bg-pink-300\/50 {
    background-color: rgb(249 168 212 / 0.5);
  }

  .lg\:bg-pink-300\/60 {
    background-color: rgb(249 168 212 / 0.6);
  }

  .lg\:bg-pink-300\/70 {
    background-color: rgb(249 168 212 / 0.7);
  }

  .lg\:bg-pink-300\/80 {
    background-color: rgb(249 168 212 / 0.8);
  }

  .lg\:bg-pink-300\/90 {
    background-color: rgb(249 168 212 / 0.9);
  }

  .lg\:bg-pink-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(244 114 182 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-pink-400\/10 {
    background-color: rgb(244 114 182 / 0.1);
  }

  .lg\:bg-pink-400\/20 {
    background-color: rgb(244 114 182 / 0.2);
  }

  .lg\:bg-pink-400\/30 {
    background-color: rgb(244 114 182 / 0.3);
  }

  .lg\:bg-pink-400\/40 {
    background-color: rgb(244 114 182 / 0.4);
  }

  .lg\:bg-pink-400\/5 {
    background-color: rgb(244 114 182 / 0.05);
  }

  .lg\:bg-pink-400\/50 {
    background-color: rgb(244 114 182 / 0.5);
  }

  .lg\:bg-pink-400\/60 {
    background-color: rgb(244 114 182 / 0.6);
  }

  .lg\:bg-pink-400\/70 {
    background-color: rgb(244 114 182 / 0.7);
  }

  .lg\:bg-pink-400\/80 {
    background-color: rgb(244 114 182 / 0.8);
  }

  .lg\:bg-pink-400\/90 {
    background-color: rgb(244 114 182 / 0.9);
  }

  .lg\:bg-pink-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(253 242 248 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-pink-50\/10 {
    background-color: rgb(253 242 248 / 0.1);
  }

  .lg\:bg-pink-50\/20 {
    background-color: rgb(253 242 248 / 0.2);
  }

  .lg\:bg-pink-50\/30 {
    background-color: rgb(253 242 248 / 0.3);
  }

  .lg\:bg-pink-50\/40 {
    background-color: rgb(253 242 248 / 0.4);
  }

  .lg\:bg-pink-50\/5 {
    background-color: rgb(253 242 248 / 0.05);
  }

  .lg\:bg-pink-50\/50 {
    background-color: rgb(253 242 248 / 0.5);
  }

  .lg\:bg-pink-50\/60 {
    background-color: rgb(253 242 248 / 0.6);
  }

  .lg\:bg-pink-50\/70 {
    background-color: rgb(253 242 248 / 0.7);
  }

  .lg\:bg-pink-50\/80 {
    background-color: rgb(253 242 248 / 0.8);
  }

  .lg\:bg-pink-50\/90 {
    background-color: rgb(253 242 248 / 0.9);
  }

  .lg\:bg-pink-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(236 72 153 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-pink-500\/10 {
    background-color: rgb(236 72 153 / 0.1);
  }

  .lg\:bg-pink-500\/20 {
    background-color: rgb(236 72 153 / 0.2);
  }

  .lg\:bg-pink-500\/30 {
    background-color: rgb(236 72 153 / 0.3);
  }

  .lg\:bg-pink-500\/40 {
    background-color: rgb(236 72 153 / 0.4);
  }

  .lg\:bg-pink-500\/5 {
    background-color: rgb(236 72 153 / 0.05);
  }

  .lg\:bg-pink-500\/50 {
    background-color: rgb(236 72 153 / 0.5);
  }

  .lg\:bg-pink-500\/60 {
    background-color: rgb(236 72 153 / 0.6);
  }

  .lg\:bg-pink-500\/70 {
    background-color: rgb(236 72 153 / 0.7);
  }

  .lg\:bg-pink-500\/80 {
    background-color: rgb(236 72 153 / 0.8);
  }

  .lg\:bg-pink-500\/90 {
    background-color: rgb(236 72 153 / 0.9);
  }

  .lg\:bg-pink-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(219 39 119 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-pink-600\/10 {
    background-color: rgb(219 39 119 / 0.1);
  }

  .lg\:bg-pink-600\/20 {
    background-color: rgb(219 39 119 / 0.2);
  }

  .lg\:bg-pink-600\/30 {
    background-color: rgb(219 39 119 / 0.3);
  }

  .lg\:bg-pink-600\/40 {
    background-color: rgb(219 39 119 / 0.4);
  }

  .lg\:bg-pink-600\/5 {
    background-color: rgb(219 39 119 / 0.05);
  }

  .lg\:bg-pink-600\/50 {
    background-color: rgb(219 39 119 / 0.5);
  }

  .lg\:bg-pink-600\/60 {
    background-color: rgb(219 39 119 / 0.6);
  }

  .lg\:bg-pink-600\/70 {
    background-color: rgb(219 39 119 / 0.7);
  }

  .lg\:bg-pink-600\/80 {
    background-color: rgb(219 39 119 / 0.8);
  }

  .lg\:bg-pink-600\/90 {
    background-color: rgb(219 39 119 / 0.9);
  }

  .lg\:bg-pink-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(190 24 93 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-pink-700\/10 {
    background-color: rgb(190 24 93 / 0.1);
  }

  .lg\:bg-pink-700\/20 {
    background-color: rgb(190 24 93 / 0.2);
  }

  .lg\:bg-pink-700\/30 {
    background-color: rgb(190 24 93 / 0.3);
  }

  .lg\:bg-pink-700\/40 {
    background-color: rgb(190 24 93 / 0.4);
  }

  .lg\:bg-pink-700\/5 {
    background-color: rgb(190 24 93 / 0.05);
  }

  .lg\:bg-pink-700\/50 {
    background-color: rgb(190 24 93 / 0.5);
  }

  .lg\:bg-pink-700\/60 {
    background-color: rgb(190 24 93 / 0.6);
  }

  .lg\:bg-pink-700\/70 {
    background-color: rgb(190 24 93 / 0.7);
  }

  .lg\:bg-pink-700\/80 {
    background-color: rgb(190 24 93 / 0.8);
  }

  .lg\:bg-pink-700\/90 {
    background-color: rgb(190 24 93 / 0.9);
  }

  .lg\:bg-pink-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(157 23 77 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-pink-800\/10 {
    background-color: rgb(157 23 77 / 0.1);
  }

  .lg\:bg-pink-800\/20 {
    background-color: rgb(157 23 77 / 0.2);
  }

  .lg\:bg-pink-800\/30 {
    background-color: rgb(157 23 77 / 0.3);
  }

  .lg\:bg-pink-800\/40 {
    background-color: rgb(157 23 77 / 0.4);
  }

  .lg\:bg-pink-800\/5 {
    background-color: rgb(157 23 77 / 0.05);
  }

  .lg\:bg-pink-800\/50 {
    background-color: rgb(157 23 77 / 0.5);
  }

  .lg\:bg-pink-800\/60 {
    background-color: rgb(157 23 77 / 0.6);
  }

  .lg\:bg-pink-800\/70 {
    background-color: rgb(157 23 77 / 0.7);
  }

  .lg\:bg-pink-800\/80 {
    background-color: rgb(157 23 77 / 0.8);
  }

  .lg\:bg-pink-800\/90 {
    background-color: rgb(157 23 77 / 0.9);
  }

  .lg\:bg-pink-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(131 24 67 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-pink-900\/10 {
    background-color: rgb(131 24 67 / 0.1);
  }

  .lg\:bg-pink-900\/20 {
    background-color: rgb(131 24 67 / 0.2);
  }

  .lg\:bg-pink-900\/30 {
    background-color: rgb(131 24 67 / 0.3);
  }

  .lg\:bg-pink-900\/40 {
    background-color: rgb(131 24 67 / 0.4);
  }

  .lg\:bg-pink-900\/5 {
    background-color: rgb(131 24 67 / 0.05);
  }

  .lg\:bg-pink-900\/50 {
    background-color: rgb(131 24 67 / 0.5);
  }

  .lg\:bg-pink-900\/60 {
    background-color: rgb(131 24 67 / 0.6);
  }

  .lg\:bg-pink-900\/70 {
    background-color: rgb(131 24 67 / 0.7);
  }

  .lg\:bg-pink-900\/80 {
    background-color: rgb(131 24 67 / 0.8);
  }

  .lg\:bg-pink-900\/90 {
    background-color: rgb(131 24 67 / 0.9);
  }

  .lg\:bg-pink-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(80 7 36 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-pink-950\/10 {
    background-color: rgb(80 7 36 / 0.1);
  }

  .lg\:bg-pink-950\/20 {
    background-color: rgb(80 7 36 / 0.2);
  }

  .lg\:bg-pink-950\/30 {
    background-color: rgb(80 7 36 / 0.3);
  }

  .lg\:bg-pink-950\/40 {
    background-color: rgb(80 7 36 / 0.4);
  }

  .lg\:bg-pink-950\/5 {
    background-color: rgb(80 7 36 / 0.05);
  }

  .lg\:bg-pink-950\/50 {
    background-color: rgb(80 7 36 / 0.5);
  }

  .lg\:bg-pink-950\/60 {
    background-color: rgb(80 7 36 / 0.6);
  }

  .lg\:bg-pink-950\/70 {
    background-color: rgb(80 7 36 / 0.7);
  }

  .lg\:bg-pink-950\/80 {
    background-color: rgb(80 7 36 / 0.8);
  }

  .lg\:bg-pink-950\/90 {
    background-color: rgb(80 7 36 / 0.9);
  }

  .lg\:bg-purple-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(243 232 255 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-purple-100\/10 {
    background-color: rgb(243 232 255 / 0.1);
  }

  .lg\:bg-purple-100\/20 {
    background-color: rgb(243 232 255 / 0.2);
  }

  .lg\:bg-purple-100\/30 {
    background-color: rgb(243 232 255 / 0.3);
  }

  .lg\:bg-purple-100\/40 {
    background-color: rgb(243 232 255 / 0.4);
  }

  .lg\:bg-purple-100\/5 {
    background-color: rgb(243 232 255 / 0.05);
  }

  .lg\:bg-purple-100\/50 {
    background-color: rgb(243 232 255 / 0.5);
  }

  .lg\:bg-purple-100\/60 {
    background-color: rgb(243 232 255 / 0.6);
  }

  .lg\:bg-purple-100\/70 {
    background-color: rgb(243 232 255 / 0.7);
  }

  .lg\:bg-purple-100\/80 {
    background-color: rgb(243 232 255 / 0.8);
  }

  .lg\:bg-purple-100\/90 {
    background-color: rgb(243 232 255 / 0.9);
  }

  .lg\:bg-purple-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(233 213 255 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-purple-200\/10 {
    background-color: rgb(233 213 255 / 0.1);
  }

  .lg\:bg-purple-200\/20 {
    background-color: rgb(233 213 255 / 0.2);
  }

  .lg\:bg-purple-200\/30 {
    background-color: rgb(233 213 255 / 0.3);
  }

  .lg\:bg-purple-200\/40 {
    background-color: rgb(233 213 255 / 0.4);
  }

  .lg\:bg-purple-200\/5 {
    background-color: rgb(233 213 255 / 0.05);
  }

  .lg\:bg-purple-200\/50 {
    background-color: rgb(233 213 255 / 0.5);
  }

  .lg\:bg-purple-200\/60 {
    background-color: rgb(233 213 255 / 0.6);
  }

  .lg\:bg-purple-200\/70 {
    background-color: rgb(233 213 255 / 0.7);
  }

  .lg\:bg-purple-200\/80 {
    background-color: rgb(233 213 255 / 0.8);
  }

  .lg\:bg-purple-200\/90 {
    background-color: rgb(233 213 255 / 0.9);
  }

  .lg\:bg-purple-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(216 180 254 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-purple-300\/10 {
    background-color: rgb(216 180 254 / 0.1);
  }

  .lg\:bg-purple-300\/20 {
    background-color: rgb(216 180 254 / 0.2);
  }

  .lg\:bg-purple-300\/30 {
    background-color: rgb(216 180 254 / 0.3);
  }

  .lg\:bg-purple-300\/40 {
    background-color: rgb(216 180 254 / 0.4);
  }

  .lg\:bg-purple-300\/5 {
    background-color: rgb(216 180 254 / 0.05);
  }

  .lg\:bg-purple-300\/50 {
    background-color: rgb(216 180 254 / 0.5);
  }

  .lg\:bg-purple-300\/60 {
    background-color: rgb(216 180 254 / 0.6);
  }

  .lg\:bg-purple-300\/70 {
    background-color: rgb(216 180 254 / 0.7);
  }

  .lg\:bg-purple-300\/80 {
    background-color: rgb(216 180 254 / 0.8);
  }

  .lg\:bg-purple-300\/90 {
    background-color: rgb(216 180 254 / 0.9);
  }

  .lg\:bg-purple-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(192 132 252 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-purple-400\/10 {
    background-color: rgb(192 132 252 / 0.1);
  }

  .lg\:bg-purple-400\/20 {
    background-color: rgb(192 132 252 / 0.2);
  }

  .lg\:bg-purple-400\/30 {
    background-color: rgb(192 132 252 / 0.3);
  }

  .lg\:bg-purple-400\/40 {
    background-color: rgb(192 132 252 / 0.4);
  }

  .lg\:bg-purple-400\/5 {
    background-color: rgb(192 132 252 / 0.05);
  }

  .lg\:bg-purple-400\/50 {
    background-color: rgb(192 132 252 / 0.5);
  }

  .lg\:bg-purple-400\/60 {
    background-color: rgb(192 132 252 / 0.6);
  }

  .lg\:bg-purple-400\/70 {
    background-color: rgb(192 132 252 / 0.7);
  }

  .lg\:bg-purple-400\/80 {
    background-color: rgb(192 132 252 / 0.8);
  }

  .lg\:bg-purple-400\/90 {
    background-color: rgb(192 132 252 / 0.9);
  }

  .lg\:bg-purple-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 245 255 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-purple-50\/10 {
    background-color: rgb(250 245 255 / 0.1);
  }

  .lg\:bg-purple-50\/20 {
    background-color: rgb(250 245 255 / 0.2);
  }

  .lg\:bg-purple-50\/30 {
    background-color: rgb(250 245 255 / 0.3);
  }

  .lg\:bg-purple-50\/40 {
    background-color: rgb(250 245 255 / 0.4);
  }

  .lg\:bg-purple-50\/5 {
    background-color: rgb(250 245 255 / 0.05);
  }

  .lg\:bg-purple-50\/50 {
    background-color: rgb(250 245 255 / 0.5);
  }

  .lg\:bg-purple-50\/60 {
    background-color: rgb(250 245 255 / 0.6);
  }

  .lg\:bg-purple-50\/70 {
    background-color: rgb(250 245 255 / 0.7);
  }

  .lg\:bg-purple-50\/80 {
    background-color: rgb(250 245 255 / 0.8);
  }

  .lg\:bg-purple-50\/90 {
    background-color: rgb(250 245 255 / 0.9);
  }

  .lg\:bg-purple-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(168 85 247 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-purple-500\/10 {
    background-color: rgb(168 85 247 / 0.1);
  }

  .lg\:bg-purple-500\/20 {
    background-color: rgb(168 85 247 / 0.2);
  }

  .lg\:bg-purple-500\/30 {
    background-color: rgb(168 85 247 / 0.3);
  }

  .lg\:bg-purple-500\/40 {
    background-color: rgb(168 85 247 / 0.4);
  }

  .lg\:bg-purple-500\/5 {
    background-color: rgb(168 85 247 / 0.05);
  }

  .lg\:bg-purple-500\/50 {
    background-color: rgb(168 85 247 / 0.5);
  }

  .lg\:bg-purple-500\/60 {
    background-color: rgb(168 85 247 / 0.6);
  }

  .lg\:bg-purple-500\/70 {
    background-color: rgb(168 85 247 / 0.7);
  }

  .lg\:bg-purple-500\/80 {
    background-color: rgb(168 85 247 / 0.8);
  }

  .lg\:bg-purple-500\/90 {
    background-color: rgb(168 85 247 / 0.9);
  }

  .lg\:bg-purple-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(147 51 234 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-purple-600\/10 {
    background-color: rgb(147 51 234 / 0.1);
  }

  .lg\:bg-purple-600\/20 {
    background-color: rgb(147 51 234 / 0.2);
  }

  .lg\:bg-purple-600\/30 {
    background-color: rgb(147 51 234 / 0.3);
  }

  .lg\:bg-purple-600\/40 {
    background-color: rgb(147 51 234 / 0.4);
  }

  .lg\:bg-purple-600\/5 {
    background-color: rgb(147 51 234 / 0.05);
  }

  .lg\:bg-purple-600\/50 {
    background-color: rgb(147 51 234 / 0.5);
  }

  .lg\:bg-purple-600\/60 {
    background-color: rgb(147 51 234 / 0.6);
  }

  .lg\:bg-purple-600\/70 {
    background-color: rgb(147 51 234 / 0.7);
  }

  .lg\:bg-purple-600\/80 {
    background-color: rgb(147 51 234 / 0.8);
  }

  .lg\:bg-purple-600\/90 {
    background-color: rgb(147 51 234 / 0.9);
  }

  .lg\:bg-purple-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(126 34 206 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-purple-700\/10 {
    background-color: rgb(126 34 206 / 0.1);
  }

  .lg\:bg-purple-700\/20 {
    background-color: rgb(126 34 206 / 0.2);
  }

  .lg\:bg-purple-700\/30 {
    background-color: rgb(126 34 206 / 0.3);
  }

  .lg\:bg-purple-700\/40 {
    background-color: rgb(126 34 206 / 0.4);
  }

  .lg\:bg-purple-700\/5 {
    background-color: rgb(126 34 206 / 0.05);
  }

  .lg\:bg-purple-700\/50 {
    background-color: rgb(126 34 206 / 0.5);
  }

  .lg\:bg-purple-700\/60 {
    background-color: rgb(126 34 206 / 0.6);
  }

  .lg\:bg-purple-700\/70 {
    background-color: rgb(126 34 206 / 0.7);
  }

  .lg\:bg-purple-700\/80 {
    background-color: rgb(126 34 206 / 0.8);
  }

  .lg\:bg-purple-700\/90 {
    background-color: rgb(126 34 206 / 0.9);
  }

  .lg\:bg-purple-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(107 33 168 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-purple-800\/10 {
    background-color: rgb(107 33 168 / 0.1);
  }

  .lg\:bg-purple-800\/20 {
    background-color: rgb(107 33 168 / 0.2);
  }

  .lg\:bg-purple-800\/30 {
    background-color: rgb(107 33 168 / 0.3);
  }

  .lg\:bg-purple-800\/40 {
    background-color: rgb(107 33 168 / 0.4);
  }

  .lg\:bg-purple-800\/5 {
    background-color: rgb(107 33 168 / 0.05);
  }

  .lg\:bg-purple-800\/50 {
    background-color: rgb(107 33 168 / 0.5);
  }

  .lg\:bg-purple-800\/60 {
    background-color: rgb(107 33 168 / 0.6);
  }

  .lg\:bg-purple-800\/70 {
    background-color: rgb(107 33 168 / 0.7);
  }

  .lg\:bg-purple-800\/80 {
    background-color: rgb(107 33 168 / 0.8);
  }

  .lg\:bg-purple-800\/90 {
    background-color: rgb(107 33 168 / 0.9);
  }

  .lg\:bg-purple-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(88 28 135 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-purple-900\/10 {
    background-color: rgb(88 28 135 / 0.1);
  }

  .lg\:bg-purple-900\/20 {
    background-color: rgb(88 28 135 / 0.2);
  }

  .lg\:bg-purple-900\/30 {
    background-color: rgb(88 28 135 / 0.3);
  }

  .lg\:bg-purple-900\/40 {
    background-color: rgb(88 28 135 / 0.4);
  }

  .lg\:bg-purple-900\/5 {
    background-color: rgb(88 28 135 / 0.05);
  }

  .lg\:bg-purple-900\/50 {
    background-color: rgb(88 28 135 / 0.5);
  }

  .lg\:bg-purple-900\/60 {
    background-color: rgb(88 28 135 / 0.6);
  }

  .lg\:bg-purple-900\/70 {
    background-color: rgb(88 28 135 / 0.7);
  }

  .lg\:bg-purple-900\/80 {
    background-color: rgb(88 28 135 / 0.8);
  }

  .lg\:bg-purple-900\/90 {
    background-color: rgb(88 28 135 / 0.9);
  }

  .lg\:bg-purple-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(59 7 100 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-purple-950\/10 {
    background-color: rgb(59 7 100 / 0.1);
  }

  .lg\:bg-purple-950\/20 {
    background-color: rgb(59 7 100 / 0.2);
  }

  .lg\:bg-purple-950\/30 {
    background-color: rgb(59 7 100 / 0.3);
  }

  .lg\:bg-purple-950\/40 {
    background-color: rgb(59 7 100 / 0.4);
  }

  .lg\:bg-purple-950\/5 {
    background-color: rgb(59 7 100 / 0.05);
  }

  .lg\:bg-purple-950\/50 {
    background-color: rgb(59 7 100 / 0.5);
  }

  .lg\:bg-purple-950\/60 {
    background-color: rgb(59 7 100 / 0.6);
  }

  .lg\:bg-purple-950\/70 {
    background-color: rgb(59 7 100 / 0.7);
  }

  .lg\:bg-purple-950\/80 {
    background-color: rgb(59 7 100 / 0.8);
  }

  .lg\:bg-purple-950\/90 {
    background-color: rgb(59 7 100 / 0.9);
  }

  .lg\:bg-red-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-red-100\/10 {
    background-color: rgb(254 226 226 / 0.1);
  }

  .lg\:bg-red-100\/20 {
    background-color: rgb(254 226 226 / 0.2);
  }

  .lg\:bg-red-100\/30 {
    background-color: rgb(254 226 226 / 0.3);
  }

  .lg\:bg-red-100\/40 {
    background-color: rgb(254 226 226 / 0.4);
  }

  .lg\:bg-red-100\/5 {
    background-color: rgb(254 226 226 / 0.05);
  }

  .lg\:bg-red-100\/50 {
    background-color: rgb(254 226 226 / 0.5);
  }

  .lg\:bg-red-100\/60 {
    background-color: rgb(254 226 226 / 0.6);
  }

  .lg\:bg-red-100\/70 {
    background-color: rgb(254 226 226 / 0.7);
  }

  .lg\:bg-red-100\/80 {
    background-color: rgb(254 226 226 / 0.8);
  }

  .lg\:bg-red-100\/90 {
    background-color: rgb(254 226 226 / 0.9);
  }

  .lg\:bg-red-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 202 202 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-red-200\/10 {
    background-color: rgb(254 202 202 / 0.1);
  }

  .lg\:bg-red-200\/20 {
    background-color: rgb(254 202 202 / 0.2);
  }

  .lg\:bg-red-200\/30 {
    background-color: rgb(254 202 202 / 0.3);
  }

  .lg\:bg-red-200\/40 {
    background-color: rgb(254 202 202 / 0.4);
  }

  .lg\:bg-red-200\/5 {
    background-color: rgb(254 202 202 / 0.05);
  }

  .lg\:bg-red-200\/50 {
    background-color: rgb(254 202 202 / 0.5);
  }

  .lg\:bg-red-200\/60 {
    background-color: rgb(254 202 202 / 0.6);
  }

  .lg\:bg-red-200\/70 {
    background-color: rgb(254 202 202 / 0.7);
  }

  .lg\:bg-red-200\/80 {
    background-color: rgb(254 202 202 / 0.8);
  }

  .lg\:bg-red-200\/90 {
    background-color: rgb(254 202 202 / 0.9);
  }

  .lg\:bg-red-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(252 165 165 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-red-300\/10 {
    background-color: rgb(252 165 165 / 0.1);
  }

  .lg\:bg-red-300\/20 {
    background-color: rgb(252 165 165 / 0.2);
  }

  .lg\:bg-red-300\/30 {
    background-color: rgb(252 165 165 / 0.3);
  }

  .lg\:bg-red-300\/40 {
    background-color: rgb(252 165 165 / 0.4);
  }

  .lg\:bg-red-300\/5 {
    background-color: rgb(252 165 165 / 0.05);
  }

  .lg\:bg-red-300\/50 {
    background-color: rgb(252 165 165 / 0.5);
  }

  .lg\:bg-red-300\/60 {
    background-color: rgb(252 165 165 / 0.6);
  }

  .lg\:bg-red-300\/70 {
    background-color: rgb(252 165 165 / 0.7);
  }

  .lg\:bg-red-300\/80 {
    background-color: rgb(252 165 165 / 0.8);
  }

  .lg\:bg-red-300\/90 {
    background-color: rgb(252 165 165 / 0.9);
  }

  .lg\:bg-red-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(248 113 113 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-red-400\/10 {
    background-color: rgb(248 113 113 / 0.1);
  }

  .lg\:bg-red-400\/20 {
    background-color: rgb(248 113 113 / 0.2);
  }

  .lg\:bg-red-400\/30 {
    background-color: rgb(248 113 113 / 0.3);
  }

  .lg\:bg-red-400\/40 {
    background-color: rgb(248 113 113 / 0.4);
  }

  .lg\:bg-red-400\/5 {
    background-color: rgb(248 113 113 / 0.05);
  }

  .lg\:bg-red-400\/50 {
    background-color: rgb(248 113 113 / 0.5);
  }

  .lg\:bg-red-400\/60 {
    background-color: rgb(248 113 113 / 0.6);
  }

  .lg\:bg-red-400\/70 {
    background-color: rgb(248 113 113 / 0.7);
  }

  .lg\:bg-red-400\/80 {
    background-color: rgb(248 113 113 / 0.8);
  }

  .lg\:bg-red-400\/90 {
    background-color: rgb(248 113 113 / 0.9);
  }

  .lg\:bg-red-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-red-50\/10 {
    background-color: rgb(254 242 242 / 0.1);
  }

  .lg\:bg-red-50\/20 {
    background-color: rgb(254 242 242 / 0.2);
  }

  .lg\:bg-red-50\/30 {
    background-color: rgb(254 242 242 / 0.3);
  }

  .lg\:bg-red-50\/40 {
    background-color: rgb(254 242 242 / 0.4);
  }

  .lg\:bg-red-50\/5 {
    background-color: rgb(254 242 242 / 0.05);
  }

  .lg\:bg-red-50\/50 {
    background-color: rgb(254 242 242 / 0.5);
  }

  .lg\:bg-red-50\/60 {
    background-color: rgb(254 242 242 / 0.6);
  }

  .lg\:bg-red-50\/70 {
    background-color: rgb(254 242 242 / 0.7);
  }

  .lg\:bg-red-50\/80 {
    background-color: rgb(254 242 242 / 0.8);
  }

  .lg\:bg-red-50\/90 {
    background-color: rgb(254 242 242 / 0.9);
  }

  .lg\:bg-red-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-red-500\/10 {
    background-color: rgb(239 68 68 / 0.1);
  }

  .lg\:bg-red-500\/20 {
    background-color: rgb(239 68 68 / 0.2);
  }

  .lg\:bg-red-500\/30 {
    background-color: rgb(239 68 68 / 0.3);
  }

  .lg\:bg-red-500\/40 {
    background-color: rgb(239 68 68 / 0.4);
  }

  .lg\:bg-red-500\/5 {
    background-color: rgb(239 68 68 / 0.05);
  }

  .lg\:bg-red-500\/50 {
    background-color: rgb(239 68 68 / 0.5);
  }

  .lg\:bg-red-500\/60 {
    background-color: rgb(239 68 68 / 0.6);
  }

  .lg\:bg-red-500\/70 {
    background-color: rgb(239 68 68 / 0.7);
  }

  .lg\:bg-red-500\/80 {
    background-color: rgb(239 68 68 / 0.8);
  }

  .lg\:bg-red-500\/90 {
    background-color: rgb(239 68 68 / 0.9);
  }

  .lg\:bg-red-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-red-600\/10 {
    background-color: rgb(220 38 38 / 0.1);
  }

  .lg\:bg-red-600\/20 {
    background-color: rgb(220 38 38 / 0.2);
  }

  .lg\:bg-red-600\/30 {
    background-color: rgb(220 38 38 / 0.3);
  }

  .lg\:bg-red-600\/40 {
    background-color: rgb(220 38 38 / 0.4);
  }

  .lg\:bg-red-600\/5 {
    background-color: rgb(220 38 38 / 0.05);
  }

  .lg\:bg-red-600\/50 {
    background-color: rgb(220 38 38 / 0.5);
  }

  .lg\:bg-red-600\/60 {
    background-color: rgb(220 38 38 / 0.6);
  }

  .lg\:bg-red-600\/70 {
    background-color: rgb(220 38 38 / 0.7);
  }

  .lg\:bg-red-600\/80 {
    background-color: rgb(220 38 38 / 0.8);
  }

  .lg\:bg-red-600\/90 {
    background-color: rgb(220 38 38 / 0.9);
  }

  .lg\:bg-red-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-red-700\/10 {
    background-color: rgb(185 28 28 / 0.1);
  }

  .lg\:bg-red-700\/20 {
    background-color: rgb(185 28 28 / 0.2);
  }

  .lg\:bg-red-700\/30 {
    background-color: rgb(185 28 28 / 0.3);
  }

  .lg\:bg-red-700\/40 {
    background-color: rgb(185 28 28 / 0.4);
  }

  .lg\:bg-red-700\/5 {
    background-color: rgb(185 28 28 / 0.05);
  }

  .lg\:bg-red-700\/50 {
    background-color: rgb(185 28 28 / 0.5);
  }

  .lg\:bg-red-700\/60 {
    background-color: rgb(185 28 28 / 0.6);
  }

  .lg\:bg-red-700\/70 {
    background-color: rgb(185 28 28 / 0.7);
  }

  .lg\:bg-red-700\/80 {
    background-color: rgb(185 28 28 / 0.8);
  }

  .lg\:bg-red-700\/90 {
    background-color: rgb(185 28 28 / 0.9);
  }

  .lg\:bg-red-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(153 27 27 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-red-800\/10 {
    background-color: rgb(153 27 27 / 0.1);
  }

  .lg\:bg-red-800\/20 {
    background-color: rgb(153 27 27 / 0.2);
  }

  .lg\:bg-red-800\/30 {
    background-color: rgb(153 27 27 / 0.3);
  }

  .lg\:bg-red-800\/40 {
    background-color: rgb(153 27 27 / 0.4);
  }

  .lg\:bg-red-800\/5 {
    background-color: rgb(153 27 27 / 0.05);
  }

  .lg\:bg-red-800\/50 {
    background-color: rgb(153 27 27 / 0.5);
  }

  .lg\:bg-red-800\/60 {
    background-color: rgb(153 27 27 / 0.6);
  }

  .lg\:bg-red-800\/70 {
    background-color: rgb(153 27 27 / 0.7);
  }

  .lg\:bg-red-800\/80 {
    background-color: rgb(153 27 27 / 0.8);
  }

  .lg\:bg-red-800\/90 {
    background-color: rgb(153 27 27 / 0.9);
  }

  .lg\:bg-red-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(127 29 29 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-red-900\/10 {
    background-color: rgb(127 29 29 / 0.1);
  }

  .lg\:bg-red-900\/20 {
    background-color: rgb(127 29 29 / 0.2);
  }

  .lg\:bg-red-900\/30 {
    background-color: rgb(127 29 29 / 0.3);
  }

  .lg\:bg-red-900\/40 {
    background-color: rgb(127 29 29 / 0.4);
  }

  .lg\:bg-red-900\/5 {
    background-color: rgb(127 29 29 / 0.05);
  }

  .lg\:bg-red-900\/50 {
    background-color: rgb(127 29 29 / 0.5);
  }

  .lg\:bg-red-900\/60 {
    background-color: rgb(127 29 29 / 0.6);
  }

  .lg\:bg-red-900\/70 {
    background-color: rgb(127 29 29 / 0.7);
  }

  .lg\:bg-red-900\/80 {
    background-color: rgb(127 29 29 / 0.8);
  }

  .lg\:bg-red-900\/90 {
    background-color: rgb(127 29 29 / 0.9);
  }

  .lg\:bg-red-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(69 10 10 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-red-950\/10 {
    background-color: rgb(69 10 10 / 0.1);
  }

  .lg\:bg-red-950\/20 {
    background-color: rgb(69 10 10 / 0.2);
  }

  .lg\:bg-red-950\/30 {
    background-color: rgb(69 10 10 / 0.3);
  }

  .lg\:bg-red-950\/40 {
    background-color: rgb(69 10 10 / 0.4);
  }

  .lg\:bg-red-950\/5 {
    background-color: rgb(69 10 10 / 0.05);
  }

  .lg\:bg-red-950\/50 {
    background-color: rgb(69 10 10 / 0.5);
  }

  .lg\:bg-red-950\/60 {
    background-color: rgb(69 10 10 / 0.6);
  }

  .lg\:bg-red-950\/70 {
    background-color: rgb(69 10 10 / 0.7);
  }

  .lg\:bg-red-950\/80 {
    background-color: rgb(69 10 10 / 0.8);
  }

  .lg\:bg-red-950\/90 {
    background-color: rgb(69 10 10 / 0.9);
  }

  .lg\:bg-rose-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 228 230 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-rose-100\/10 {
    background-color: rgb(255 228 230 / 0.1);
  }

  .lg\:bg-rose-100\/20 {
    background-color: rgb(255 228 230 / 0.2);
  }

  .lg\:bg-rose-100\/30 {
    background-color: rgb(255 228 230 / 0.3);
  }

  .lg\:bg-rose-100\/40 {
    background-color: rgb(255 228 230 / 0.4);
  }

  .lg\:bg-rose-100\/5 {
    background-color: rgb(255 228 230 / 0.05);
  }

  .lg\:bg-rose-100\/50 {
    background-color: rgb(255 228 230 / 0.5);
  }

  .lg\:bg-rose-100\/60 {
    background-color: rgb(255 228 230 / 0.6);
  }

  .lg\:bg-rose-100\/70 {
    background-color: rgb(255 228 230 / 0.7);
  }

  .lg\:bg-rose-100\/80 {
    background-color: rgb(255 228 230 / 0.8);
  }

  .lg\:bg-rose-100\/90 {
    background-color: rgb(255 228 230 / 0.9);
  }

  .lg\:bg-rose-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 205 211 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-rose-200\/10 {
    background-color: rgb(254 205 211 / 0.1);
  }

  .lg\:bg-rose-200\/20 {
    background-color: rgb(254 205 211 / 0.2);
  }

  .lg\:bg-rose-200\/30 {
    background-color: rgb(254 205 211 / 0.3);
  }

  .lg\:bg-rose-200\/40 {
    background-color: rgb(254 205 211 / 0.4);
  }

  .lg\:bg-rose-200\/5 {
    background-color: rgb(254 205 211 / 0.05);
  }

  .lg\:bg-rose-200\/50 {
    background-color: rgb(254 205 211 / 0.5);
  }

  .lg\:bg-rose-200\/60 {
    background-color: rgb(254 205 211 / 0.6);
  }

  .lg\:bg-rose-200\/70 {
    background-color: rgb(254 205 211 / 0.7);
  }

  .lg\:bg-rose-200\/80 {
    background-color: rgb(254 205 211 / 0.8);
  }

  .lg\:bg-rose-200\/90 {
    background-color: rgb(254 205 211 / 0.9);
  }

  .lg\:bg-rose-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(253 164 175 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-rose-300\/10 {
    background-color: rgb(253 164 175 / 0.1);
  }

  .lg\:bg-rose-300\/20 {
    background-color: rgb(253 164 175 / 0.2);
  }

  .lg\:bg-rose-300\/30 {
    background-color: rgb(253 164 175 / 0.3);
  }

  .lg\:bg-rose-300\/40 {
    background-color: rgb(253 164 175 / 0.4);
  }

  .lg\:bg-rose-300\/5 {
    background-color: rgb(253 164 175 / 0.05);
  }

  .lg\:bg-rose-300\/50 {
    background-color: rgb(253 164 175 / 0.5);
  }

  .lg\:bg-rose-300\/60 {
    background-color: rgb(253 164 175 / 0.6);
  }

  .lg\:bg-rose-300\/70 {
    background-color: rgb(253 164 175 / 0.7);
  }

  .lg\:bg-rose-300\/80 {
    background-color: rgb(253 164 175 / 0.8);
  }

  .lg\:bg-rose-300\/90 {
    background-color: rgb(253 164 175 / 0.9);
  }

  .lg\:bg-rose-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(251 113 133 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-rose-400\/10 {
    background-color: rgb(251 113 133 / 0.1);
  }

  .lg\:bg-rose-400\/20 {
    background-color: rgb(251 113 133 / 0.2);
  }

  .lg\:bg-rose-400\/30 {
    background-color: rgb(251 113 133 / 0.3);
  }

  .lg\:bg-rose-400\/40 {
    background-color: rgb(251 113 133 / 0.4);
  }

  .lg\:bg-rose-400\/5 {
    background-color: rgb(251 113 133 / 0.05);
  }

  .lg\:bg-rose-400\/50 {
    background-color: rgb(251 113 133 / 0.5);
  }

  .lg\:bg-rose-400\/60 {
    background-color: rgb(251 113 133 / 0.6);
  }

  .lg\:bg-rose-400\/70 {
    background-color: rgb(251 113 133 / 0.7);
  }

  .lg\:bg-rose-400\/80 {
    background-color: rgb(251 113 133 / 0.8);
  }

  .lg\:bg-rose-400\/90 {
    background-color: rgb(251 113 133 / 0.9);
  }

  .lg\:bg-rose-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 241 242 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-rose-50\/10 {
    background-color: rgb(255 241 242 / 0.1);
  }

  .lg\:bg-rose-50\/20 {
    background-color: rgb(255 241 242 / 0.2);
  }

  .lg\:bg-rose-50\/30 {
    background-color: rgb(255 241 242 / 0.3);
  }

  .lg\:bg-rose-50\/40 {
    background-color: rgb(255 241 242 / 0.4);
  }

  .lg\:bg-rose-50\/5 {
    background-color: rgb(255 241 242 / 0.05);
  }

  .lg\:bg-rose-50\/50 {
    background-color: rgb(255 241 242 / 0.5);
  }

  .lg\:bg-rose-50\/60 {
    background-color: rgb(255 241 242 / 0.6);
  }

  .lg\:bg-rose-50\/70 {
    background-color: rgb(255 241 242 / 0.7);
  }

  .lg\:bg-rose-50\/80 {
    background-color: rgb(255 241 242 / 0.8);
  }

  .lg\:bg-rose-50\/90 {
    background-color: rgb(255 241 242 / 0.9);
  }

  .lg\:bg-rose-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(244 63 94 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-rose-500\/10 {
    background-color: rgb(244 63 94 / 0.1);
  }

  .lg\:bg-rose-500\/20 {
    background-color: rgb(244 63 94 / 0.2);
  }

  .lg\:bg-rose-500\/30 {
    background-color: rgb(244 63 94 / 0.3);
  }

  .lg\:bg-rose-500\/40 {
    background-color: rgb(244 63 94 / 0.4);
  }

  .lg\:bg-rose-500\/5 {
    background-color: rgb(244 63 94 / 0.05);
  }

  .lg\:bg-rose-500\/50 {
    background-color: rgb(244 63 94 / 0.5);
  }

  .lg\:bg-rose-500\/60 {
    background-color: rgb(244 63 94 / 0.6);
  }

  .lg\:bg-rose-500\/70 {
    background-color: rgb(244 63 94 / 0.7);
  }

  .lg\:bg-rose-500\/80 {
    background-color: rgb(244 63 94 / 0.8);
  }

  .lg\:bg-rose-500\/90 {
    background-color: rgb(244 63 94 / 0.9);
  }

  .lg\:bg-rose-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(225 29 72 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-rose-600\/10 {
    background-color: rgb(225 29 72 / 0.1);
  }

  .lg\:bg-rose-600\/20 {
    background-color: rgb(225 29 72 / 0.2);
  }

  .lg\:bg-rose-600\/30 {
    background-color: rgb(225 29 72 / 0.3);
  }

  .lg\:bg-rose-600\/40 {
    background-color: rgb(225 29 72 / 0.4);
  }

  .lg\:bg-rose-600\/5 {
    background-color: rgb(225 29 72 / 0.05);
  }

  .lg\:bg-rose-600\/50 {
    background-color: rgb(225 29 72 / 0.5);
  }

  .lg\:bg-rose-600\/60 {
    background-color: rgb(225 29 72 / 0.6);
  }

  .lg\:bg-rose-600\/70 {
    background-color: rgb(225 29 72 / 0.7);
  }

  .lg\:bg-rose-600\/80 {
    background-color: rgb(225 29 72 / 0.8);
  }

  .lg\:bg-rose-600\/90 {
    background-color: rgb(225 29 72 / 0.9);
  }

  .lg\:bg-rose-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(190 18 60 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-rose-700\/10 {
    background-color: rgb(190 18 60 / 0.1);
  }

  .lg\:bg-rose-700\/20 {
    background-color: rgb(190 18 60 / 0.2);
  }

  .lg\:bg-rose-700\/30 {
    background-color: rgb(190 18 60 / 0.3);
  }

  .lg\:bg-rose-700\/40 {
    background-color: rgb(190 18 60 / 0.4);
  }

  .lg\:bg-rose-700\/5 {
    background-color: rgb(190 18 60 / 0.05);
  }

  .lg\:bg-rose-700\/50 {
    background-color: rgb(190 18 60 / 0.5);
  }

  .lg\:bg-rose-700\/60 {
    background-color: rgb(190 18 60 / 0.6);
  }

  .lg\:bg-rose-700\/70 {
    background-color: rgb(190 18 60 / 0.7);
  }

  .lg\:bg-rose-700\/80 {
    background-color: rgb(190 18 60 / 0.8);
  }

  .lg\:bg-rose-700\/90 {
    background-color: rgb(190 18 60 / 0.9);
  }

  .lg\:bg-rose-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(159 18 57 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-rose-800\/10 {
    background-color: rgb(159 18 57 / 0.1);
  }

  .lg\:bg-rose-800\/20 {
    background-color: rgb(159 18 57 / 0.2);
  }

  .lg\:bg-rose-800\/30 {
    background-color: rgb(159 18 57 / 0.3);
  }

  .lg\:bg-rose-800\/40 {
    background-color: rgb(159 18 57 / 0.4);
  }

  .lg\:bg-rose-800\/5 {
    background-color: rgb(159 18 57 / 0.05);
  }

  .lg\:bg-rose-800\/50 {
    background-color: rgb(159 18 57 / 0.5);
  }

  .lg\:bg-rose-800\/60 {
    background-color: rgb(159 18 57 / 0.6);
  }

  .lg\:bg-rose-800\/70 {
    background-color: rgb(159 18 57 / 0.7);
  }

  .lg\:bg-rose-800\/80 {
    background-color: rgb(159 18 57 / 0.8);
  }

  .lg\:bg-rose-800\/90 {
    background-color: rgb(159 18 57 / 0.9);
  }

  .lg\:bg-rose-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(136 19 55 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-rose-900\/10 {
    background-color: rgb(136 19 55 / 0.1);
  }

  .lg\:bg-rose-900\/20 {
    background-color: rgb(136 19 55 / 0.2);
  }

  .lg\:bg-rose-900\/30 {
    background-color: rgb(136 19 55 / 0.3);
  }

  .lg\:bg-rose-900\/40 {
    background-color: rgb(136 19 55 / 0.4);
  }

  .lg\:bg-rose-900\/5 {
    background-color: rgb(136 19 55 / 0.05);
  }

  .lg\:bg-rose-900\/50 {
    background-color: rgb(136 19 55 / 0.5);
  }

  .lg\:bg-rose-900\/60 {
    background-color: rgb(136 19 55 / 0.6);
  }

  .lg\:bg-rose-900\/70 {
    background-color: rgb(136 19 55 / 0.7);
  }

  .lg\:bg-rose-900\/80 {
    background-color: rgb(136 19 55 / 0.8);
  }

  .lg\:bg-rose-900\/90 {
    background-color: rgb(136 19 55 / 0.9);
  }

  .lg\:bg-rose-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(76 5 25 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-rose-950\/10 {
    background-color: rgb(76 5 25 / 0.1);
  }

  .lg\:bg-rose-950\/20 {
    background-color: rgb(76 5 25 / 0.2);
  }

  .lg\:bg-rose-950\/30 {
    background-color: rgb(76 5 25 / 0.3);
  }

  .lg\:bg-rose-950\/40 {
    background-color: rgb(76 5 25 / 0.4);
  }

  .lg\:bg-rose-950\/5 {
    background-color: rgb(76 5 25 / 0.05);
  }

  .lg\:bg-rose-950\/50 {
    background-color: rgb(76 5 25 / 0.5);
  }

  .lg\:bg-rose-950\/60 {
    background-color: rgb(76 5 25 / 0.6);
  }

  .lg\:bg-rose-950\/70 {
    background-color: rgb(76 5 25 / 0.7);
  }

  .lg\:bg-rose-950\/80 {
    background-color: rgb(76 5 25 / 0.8);
  }

  .lg\:bg-rose-950\/90 {
    background-color: rgb(76 5 25 / 0.9);
  }

  .lg\:bg-sky-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(224 242 254 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-sky-100\/10 {
    background-color: rgb(224 242 254 / 0.1);
  }

  .lg\:bg-sky-100\/20 {
    background-color: rgb(224 242 254 / 0.2);
  }

  .lg\:bg-sky-100\/30 {
    background-color: rgb(224 242 254 / 0.3);
  }

  .lg\:bg-sky-100\/40 {
    background-color: rgb(224 242 254 / 0.4);
  }

  .lg\:bg-sky-100\/5 {
    background-color: rgb(224 242 254 / 0.05);
  }

  .lg\:bg-sky-100\/50 {
    background-color: rgb(224 242 254 / 0.5);
  }

  .lg\:bg-sky-100\/60 {
    background-color: rgb(224 242 254 / 0.6);
  }

  .lg\:bg-sky-100\/70 {
    background-color: rgb(224 242 254 / 0.7);
  }

  .lg\:bg-sky-100\/80 {
    background-color: rgb(224 242 254 / 0.8);
  }

  .lg\:bg-sky-100\/90 {
    background-color: rgb(224 242 254 / 0.9);
  }

  .lg\:bg-sky-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(186 230 253 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-sky-200\/10 {
    background-color: rgb(186 230 253 / 0.1);
  }

  .lg\:bg-sky-200\/20 {
    background-color: rgb(186 230 253 / 0.2);
  }

  .lg\:bg-sky-200\/30 {
    background-color: rgb(186 230 253 / 0.3);
  }

  .lg\:bg-sky-200\/40 {
    background-color: rgb(186 230 253 / 0.4);
  }

  .lg\:bg-sky-200\/5 {
    background-color: rgb(186 230 253 / 0.05);
  }

  .lg\:bg-sky-200\/50 {
    background-color: rgb(186 230 253 / 0.5);
  }

  .lg\:bg-sky-200\/60 {
    background-color: rgb(186 230 253 / 0.6);
  }

  .lg\:bg-sky-200\/70 {
    background-color: rgb(186 230 253 / 0.7);
  }

  .lg\:bg-sky-200\/80 {
    background-color: rgb(186 230 253 / 0.8);
  }

  .lg\:bg-sky-200\/90 {
    background-color: rgb(186 230 253 / 0.9);
  }

  .lg\:bg-sky-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(125 211 252 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-sky-300\/10 {
    background-color: rgb(125 211 252 / 0.1);
  }

  .lg\:bg-sky-300\/20 {
    background-color: rgb(125 211 252 / 0.2);
  }

  .lg\:bg-sky-300\/30 {
    background-color: rgb(125 211 252 / 0.3);
  }

  .lg\:bg-sky-300\/40 {
    background-color: rgb(125 211 252 / 0.4);
  }

  .lg\:bg-sky-300\/5 {
    background-color: rgb(125 211 252 / 0.05);
  }

  .lg\:bg-sky-300\/50 {
    background-color: rgb(125 211 252 / 0.5);
  }

  .lg\:bg-sky-300\/60 {
    background-color: rgb(125 211 252 / 0.6);
  }

  .lg\:bg-sky-300\/70 {
    background-color: rgb(125 211 252 / 0.7);
  }

  .lg\:bg-sky-300\/80 {
    background-color: rgb(125 211 252 / 0.8);
  }

  .lg\:bg-sky-300\/90 {
    background-color: rgb(125 211 252 / 0.9);
  }

  .lg\:bg-sky-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(56 189 248 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-sky-400\/10 {
    background-color: rgb(56 189 248 / 0.1);
  }

  .lg\:bg-sky-400\/20 {
    background-color: rgb(56 189 248 / 0.2);
  }

  .lg\:bg-sky-400\/30 {
    background-color: rgb(56 189 248 / 0.3);
  }

  .lg\:bg-sky-400\/40 {
    background-color: rgb(56 189 248 / 0.4);
  }

  .lg\:bg-sky-400\/5 {
    background-color: rgb(56 189 248 / 0.05);
  }

  .lg\:bg-sky-400\/50 {
    background-color: rgb(56 189 248 / 0.5);
  }

  .lg\:bg-sky-400\/60 {
    background-color: rgb(56 189 248 / 0.6);
  }

  .lg\:bg-sky-400\/70 {
    background-color: rgb(56 189 248 / 0.7);
  }

  .lg\:bg-sky-400\/80 {
    background-color: rgb(56 189 248 / 0.8);
  }

  .lg\:bg-sky-400\/90 {
    background-color: rgb(56 189 248 / 0.9);
  }

  .lg\:bg-sky-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(240 249 255 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-sky-50\/10 {
    background-color: rgb(240 249 255 / 0.1);
  }

  .lg\:bg-sky-50\/20 {
    background-color: rgb(240 249 255 / 0.2);
  }

  .lg\:bg-sky-50\/30 {
    background-color: rgb(240 249 255 / 0.3);
  }

  .lg\:bg-sky-50\/40 {
    background-color: rgb(240 249 255 / 0.4);
  }

  .lg\:bg-sky-50\/5 {
    background-color: rgb(240 249 255 / 0.05);
  }

  .lg\:bg-sky-50\/50 {
    background-color: rgb(240 249 255 / 0.5);
  }

  .lg\:bg-sky-50\/60 {
    background-color: rgb(240 249 255 / 0.6);
  }

  .lg\:bg-sky-50\/70 {
    background-color: rgb(240 249 255 / 0.7);
  }

  .lg\:bg-sky-50\/80 {
    background-color: rgb(240 249 255 / 0.8);
  }

  .lg\:bg-sky-50\/90 {
    background-color: rgb(240 249 255 / 0.9);
  }

  .lg\:bg-sky-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(14 165 233 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-sky-500\/10 {
    background-color: rgb(14 165 233 / 0.1);
  }

  .lg\:bg-sky-500\/20 {
    background-color: rgb(14 165 233 / 0.2);
  }

  .lg\:bg-sky-500\/30 {
    background-color: rgb(14 165 233 / 0.3);
  }

  .lg\:bg-sky-500\/40 {
    background-color: rgb(14 165 233 / 0.4);
  }

  .lg\:bg-sky-500\/5 {
    background-color: rgb(14 165 233 / 0.05);
  }

  .lg\:bg-sky-500\/50 {
    background-color: rgb(14 165 233 / 0.5);
  }

  .lg\:bg-sky-500\/60 {
    background-color: rgb(14 165 233 / 0.6);
  }

  .lg\:bg-sky-500\/70 {
    background-color: rgb(14 165 233 / 0.7);
  }

  .lg\:bg-sky-500\/80 {
    background-color: rgb(14 165 233 / 0.8);
  }

  .lg\:bg-sky-500\/90 {
    background-color: rgb(14 165 233 / 0.9);
  }

  .lg\:bg-sky-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(2 132 199 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-sky-600\/10 {
    background-color: rgb(2 132 199 / 0.1);
  }

  .lg\:bg-sky-600\/20 {
    background-color: rgb(2 132 199 / 0.2);
  }

  .lg\:bg-sky-600\/30 {
    background-color: rgb(2 132 199 / 0.3);
  }

  .lg\:bg-sky-600\/40 {
    background-color: rgb(2 132 199 / 0.4);
  }

  .lg\:bg-sky-600\/5 {
    background-color: rgb(2 132 199 / 0.05);
  }

  .lg\:bg-sky-600\/50 {
    background-color: rgb(2 132 199 / 0.5);
  }

  .lg\:bg-sky-600\/60 {
    background-color: rgb(2 132 199 / 0.6);
  }

  .lg\:bg-sky-600\/70 {
    background-color: rgb(2 132 199 / 0.7);
  }

  .lg\:bg-sky-600\/80 {
    background-color: rgb(2 132 199 / 0.8);
  }

  .lg\:bg-sky-600\/90 {
    background-color: rgb(2 132 199 / 0.9);
  }

  .lg\:bg-sky-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(3 105 161 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-sky-700\/10 {
    background-color: rgb(3 105 161 / 0.1);
  }

  .lg\:bg-sky-700\/20 {
    background-color: rgb(3 105 161 / 0.2);
  }

  .lg\:bg-sky-700\/30 {
    background-color: rgb(3 105 161 / 0.3);
  }

  .lg\:bg-sky-700\/40 {
    background-color: rgb(3 105 161 / 0.4);
  }

  .lg\:bg-sky-700\/5 {
    background-color: rgb(3 105 161 / 0.05);
  }

  .lg\:bg-sky-700\/50 {
    background-color: rgb(3 105 161 / 0.5);
  }

  .lg\:bg-sky-700\/60 {
    background-color: rgb(3 105 161 / 0.6);
  }

  .lg\:bg-sky-700\/70 {
    background-color: rgb(3 105 161 / 0.7);
  }

  .lg\:bg-sky-700\/80 {
    background-color: rgb(3 105 161 / 0.8);
  }

  .lg\:bg-sky-700\/90 {
    background-color: rgb(3 105 161 / 0.9);
  }

  .lg\:bg-sky-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(7 89 133 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-sky-800\/10 {
    background-color: rgb(7 89 133 / 0.1);
  }

  .lg\:bg-sky-800\/20 {
    background-color: rgb(7 89 133 / 0.2);
  }

  .lg\:bg-sky-800\/30 {
    background-color: rgb(7 89 133 / 0.3);
  }

  .lg\:bg-sky-800\/40 {
    background-color: rgb(7 89 133 / 0.4);
  }

  .lg\:bg-sky-800\/5 {
    background-color: rgb(7 89 133 / 0.05);
  }

  .lg\:bg-sky-800\/50 {
    background-color: rgb(7 89 133 / 0.5);
  }

  .lg\:bg-sky-800\/60 {
    background-color: rgb(7 89 133 / 0.6);
  }

  .lg\:bg-sky-800\/70 {
    background-color: rgb(7 89 133 / 0.7);
  }

  .lg\:bg-sky-800\/80 {
    background-color: rgb(7 89 133 / 0.8);
  }

  .lg\:bg-sky-800\/90 {
    background-color: rgb(7 89 133 / 0.9);
  }

  .lg\:bg-sky-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(12 74 110 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-sky-900\/10 {
    background-color: rgb(12 74 110 / 0.1);
  }

  .lg\:bg-sky-900\/20 {
    background-color: rgb(12 74 110 / 0.2);
  }

  .lg\:bg-sky-900\/30 {
    background-color: rgb(12 74 110 / 0.3);
  }

  .lg\:bg-sky-900\/40 {
    background-color: rgb(12 74 110 / 0.4);
  }

  .lg\:bg-sky-900\/5 {
    background-color: rgb(12 74 110 / 0.05);
  }

  .lg\:bg-sky-900\/50 {
    background-color: rgb(12 74 110 / 0.5);
  }

  .lg\:bg-sky-900\/60 {
    background-color: rgb(12 74 110 / 0.6);
  }

  .lg\:bg-sky-900\/70 {
    background-color: rgb(12 74 110 / 0.7);
  }

  .lg\:bg-sky-900\/80 {
    background-color: rgb(12 74 110 / 0.8);
  }

  .lg\:bg-sky-900\/90 {
    background-color: rgb(12 74 110 / 0.9);
  }

  .lg\:bg-sky-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(8 47 73 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-sky-950\/10 {
    background-color: rgb(8 47 73 / 0.1);
  }

  .lg\:bg-sky-950\/20 {
    background-color: rgb(8 47 73 / 0.2);
  }

  .lg\:bg-sky-950\/30 {
    background-color: rgb(8 47 73 / 0.3);
  }

  .lg\:bg-sky-950\/40 {
    background-color: rgb(8 47 73 / 0.4);
  }

  .lg\:bg-sky-950\/5 {
    background-color: rgb(8 47 73 / 0.05);
  }

  .lg\:bg-sky-950\/50 {
    background-color: rgb(8 47 73 / 0.5);
  }

  .lg\:bg-sky-950\/60 {
    background-color: rgb(8 47 73 / 0.6);
  }

  .lg\:bg-sky-950\/70 {
    background-color: rgb(8 47 73 / 0.7);
  }

  .lg\:bg-sky-950\/80 {
    background-color: rgb(8 47 73 / 0.8);
  }

  .lg\:bg-sky-950\/90 {
    background-color: rgb(8 47 73 / 0.9);
  }

  .lg\:bg-slate-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-slate-100\/10 {
    background-color: rgb(241 245 249 / 0.1);
  }

  .lg\:bg-slate-100\/20 {
    background-color: rgb(241 245 249 / 0.2);
  }

  .lg\:bg-slate-100\/30 {
    background-color: rgb(241 245 249 / 0.3);
  }

  .lg\:bg-slate-100\/40 {
    background-color: rgb(241 245 249 / 0.4);
  }

  .lg\:bg-slate-100\/5 {
    background-color: rgb(241 245 249 / 0.05);
  }

  .lg\:bg-slate-100\/50 {
    background-color: rgb(241 245 249 / 0.5);
  }

  .lg\:bg-slate-100\/60 {
    background-color: rgb(241 245 249 / 0.6);
  }

  .lg\:bg-slate-100\/70 {
    background-color: rgb(241 245 249 / 0.7);
  }

  .lg\:bg-slate-100\/80 {
    background-color: rgb(241 245 249 / 0.8);
  }

  .lg\:bg-slate-100\/90 {
    background-color: rgb(241 245 249 / 0.9);
  }

  .lg\:bg-slate-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(226 232 240 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-slate-200\/10 {
    background-color: rgb(226 232 240 / 0.1);
  }

  .lg\:bg-slate-200\/20 {
    background-color: rgb(226 232 240 / 0.2);
  }

  .lg\:bg-slate-200\/30 {
    background-color: rgb(226 232 240 / 0.3);
  }

  .lg\:bg-slate-200\/40 {
    background-color: rgb(226 232 240 / 0.4);
  }

  .lg\:bg-slate-200\/5 {
    background-color: rgb(226 232 240 / 0.05);
  }

  .lg\:bg-slate-200\/50 {
    background-color: rgb(226 232 240 / 0.5);
  }

  .lg\:bg-slate-200\/60 {
    background-color: rgb(226 232 240 / 0.6);
  }

  .lg\:bg-slate-200\/70 {
    background-color: rgb(226 232 240 / 0.7);
  }

  .lg\:bg-slate-200\/80 {
    background-color: rgb(226 232 240 / 0.8);
  }

  .lg\:bg-slate-200\/90 {
    background-color: rgb(226 232 240 / 0.9);
  }

  .lg\:bg-slate-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(203 213 225 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-slate-300\/10 {
    background-color: rgb(203 213 225 / 0.1);
  }

  .lg\:bg-slate-300\/20 {
    background-color: rgb(203 213 225 / 0.2);
  }

  .lg\:bg-slate-300\/30 {
    background-color: rgb(203 213 225 / 0.3);
  }

  .lg\:bg-slate-300\/40 {
    background-color: rgb(203 213 225 / 0.4);
  }

  .lg\:bg-slate-300\/5 {
    background-color: rgb(203 213 225 / 0.05);
  }

  .lg\:bg-slate-300\/50 {
    background-color: rgb(203 213 225 / 0.5);
  }

  .lg\:bg-slate-300\/60 {
    background-color: rgb(203 213 225 / 0.6);
  }

  .lg\:bg-slate-300\/70 {
    background-color: rgb(203 213 225 / 0.7);
  }

  .lg\:bg-slate-300\/80 {
    background-color: rgb(203 213 225 / 0.8);
  }

  .lg\:bg-slate-300\/90 {
    background-color: rgb(203 213 225 / 0.9);
  }

  .lg\:bg-slate-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(148 163 184 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-slate-400\/10 {
    background-color: rgb(148 163 184 / 0.1);
  }

  .lg\:bg-slate-400\/20 {
    background-color: rgb(148 163 184 / 0.2);
  }

  .lg\:bg-slate-400\/30 {
    background-color: rgb(148 163 184 / 0.3);
  }

  .lg\:bg-slate-400\/40 {
    background-color: rgb(148 163 184 / 0.4);
  }

  .lg\:bg-slate-400\/5 {
    background-color: rgb(148 163 184 / 0.05);
  }

  .lg\:bg-slate-400\/50 {
    background-color: rgb(148 163 184 / 0.5);
  }

  .lg\:bg-slate-400\/60 {
    background-color: rgb(148 163 184 / 0.6);
  }

  .lg\:bg-slate-400\/70 {
    background-color: rgb(148 163 184 / 0.7);
  }

  .lg\:bg-slate-400\/80 {
    background-color: rgb(148 163 184 / 0.8);
  }

  .lg\:bg-slate-400\/90 {
    background-color: rgb(148 163 184 / 0.9);
  }

  .lg\:bg-slate-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-slate-50\/10 {
    background-color: rgb(248 250 252 / 0.1);
  }

  .lg\:bg-slate-50\/20 {
    background-color: rgb(248 250 252 / 0.2);
  }

  .lg\:bg-slate-50\/30 {
    background-color: rgb(248 250 252 / 0.3);
  }

  .lg\:bg-slate-50\/40 {
    background-color: rgb(248 250 252 / 0.4);
  }

  .lg\:bg-slate-50\/5 {
    background-color: rgb(248 250 252 / 0.05);
  }

  .lg\:bg-slate-50\/50 {
    background-color: rgb(248 250 252 / 0.5);
  }

  .lg\:bg-slate-50\/60 {
    background-color: rgb(248 250 252 / 0.6);
  }

  .lg\:bg-slate-50\/70 {
    background-color: rgb(248 250 252 / 0.7);
  }

  .lg\:bg-slate-50\/80 {
    background-color: rgb(248 250 252 / 0.8);
  }

  .lg\:bg-slate-50\/90 {
    background-color: rgb(248 250 252 / 0.9);
  }

  .lg\:bg-slate-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(100 116 139 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-slate-500\/10 {
    background-color: rgb(100 116 139 / 0.1);
  }

  .lg\:bg-slate-500\/20 {
    background-color: rgb(100 116 139 / 0.2);
  }

  .lg\:bg-slate-500\/30 {
    background-color: rgb(100 116 139 / 0.3);
  }

  .lg\:bg-slate-500\/40 {
    background-color: rgb(100 116 139 / 0.4);
  }

  .lg\:bg-slate-500\/5 {
    background-color: rgb(100 116 139 / 0.05);
  }

  .lg\:bg-slate-500\/50 {
    background-color: rgb(100 116 139 / 0.5);
  }

  .lg\:bg-slate-500\/60 {
    background-color: rgb(100 116 139 / 0.6);
  }

  .lg\:bg-slate-500\/70 {
    background-color: rgb(100 116 139 / 0.7);
  }

  .lg\:bg-slate-500\/80 {
    background-color: rgb(100 116 139 / 0.8);
  }

  .lg\:bg-slate-500\/90 {
    background-color: rgb(100 116 139 / 0.9);
  }

  .lg\:bg-slate-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(71 85 105 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-slate-600\/10 {
    background-color: rgb(71 85 105 / 0.1);
  }

  .lg\:bg-slate-600\/20 {
    background-color: rgb(71 85 105 / 0.2);
  }

  .lg\:bg-slate-600\/30 {
    background-color: rgb(71 85 105 / 0.3);
  }

  .lg\:bg-slate-600\/40 {
    background-color: rgb(71 85 105 / 0.4);
  }

  .lg\:bg-slate-600\/5 {
    background-color: rgb(71 85 105 / 0.05);
  }

  .lg\:bg-slate-600\/50 {
    background-color: rgb(71 85 105 / 0.5);
  }

  .lg\:bg-slate-600\/60 {
    background-color: rgb(71 85 105 / 0.6);
  }

  .lg\:bg-slate-600\/70 {
    background-color: rgb(71 85 105 / 0.7);
  }

  .lg\:bg-slate-600\/80 {
    background-color: rgb(71 85 105 / 0.8);
  }

  .lg\:bg-slate-600\/90 {
    background-color: rgb(71 85 105 / 0.9);
  }

  .lg\:bg-slate-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(51 65 85 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-slate-700\/10 {
    background-color: rgb(51 65 85 / 0.1);
  }

  .lg\:bg-slate-700\/20 {
    background-color: rgb(51 65 85 / 0.2);
  }

  .lg\:bg-slate-700\/30 {
    background-color: rgb(51 65 85 / 0.3);
  }

  .lg\:bg-slate-700\/40 {
    background-color: rgb(51 65 85 / 0.4);
  }

  .lg\:bg-slate-700\/5 {
    background-color: rgb(51 65 85 / 0.05);
  }

  .lg\:bg-slate-700\/50 {
    background-color: rgb(51 65 85 / 0.5);
  }

  .lg\:bg-slate-700\/60 {
    background-color: rgb(51 65 85 / 0.6);
  }

  .lg\:bg-slate-700\/70 {
    background-color: rgb(51 65 85 / 0.7);
  }

  .lg\:bg-slate-700\/80 {
    background-color: rgb(51 65 85 / 0.8);
  }

  .lg\:bg-slate-700\/90 {
    background-color: rgb(51 65 85 / 0.9);
  }

  .lg\:bg-slate-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(30 41 59 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-slate-800\/10 {
    background-color: rgb(30 41 59 / 0.1);
  }

  .lg\:bg-slate-800\/20 {
    background-color: rgb(30 41 59 / 0.2);
  }

  .lg\:bg-slate-800\/30 {
    background-color: rgb(30 41 59 / 0.3);
  }

  .lg\:bg-slate-800\/40 {
    background-color: rgb(30 41 59 / 0.4);
  }

  .lg\:bg-slate-800\/5 {
    background-color: rgb(30 41 59 / 0.05);
  }

  .lg\:bg-slate-800\/50 {
    background-color: rgb(30 41 59 / 0.5);
  }

  .lg\:bg-slate-800\/60 {
    background-color: rgb(30 41 59 / 0.6);
  }

  .lg\:bg-slate-800\/70 {
    background-color: rgb(30 41 59 / 0.7);
  }

  .lg\:bg-slate-800\/80 {
    background-color: rgb(30 41 59 / 0.8);
  }

  .lg\:bg-slate-800\/90 {
    background-color: rgb(30 41 59 / 0.9);
  }

  .lg\:bg-slate-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(15 23 42 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-slate-900\/10 {
    background-color: rgb(15 23 42 / 0.1);
  }

  .lg\:bg-slate-900\/20 {
    background-color: rgb(15 23 42 / 0.2);
  }

  .lg\:bg-slate-900\/30 {
    background-color: rgb(15 23 42 / 0.3);
  }

  .lg\:bg-slate-900\/40 {
    background-color: rgb(15 23 42 / 0.4);
  }

  .lg\:bg-slate-900\/5 {
    background-color: rgb(15 23 42 / 0.05);
  }

  .lg\:bg-slate-900\/50 {
    background-color: rgb(15 23 42 / 0.5);
  }

  .lg\:bg-slate-900\/60 {
    background-color: rgb(15 23 42 / 0.6);
  }

  .lg\:bg-slate-900\/70 {
    background-color: rgb(15 23 42 / 0.7);
  }

  .lg\:bg-slate-900\/80 {
    background-color: rgb(15 23 42 / 0.8);
  }

  .lg\:bg-slate-900\/90 {
    background-color: rgb(15 23 42 / 0.9);
  }

  .lg\:bg-slate-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(2 6 23 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-slate-950\/10 {
    background-color: rgb(2 6 23 / 0.1);
  }

  .lg\:bg-slate-950\/20 {
    background-color: rgb(2 6 23 / 0.2);
  }

  .lg\:bg-slate-950\/30 {
    background-color: rgb(2 6 23 / 0.3);
  }

  .lg\:bg-slate-950\/40 {
    background-color: rgb(2 6 23 / 0.4);
  }

  .lg\:bg-slate-950\/5 {
    background-color: rgb(2 6 23 / 0.05);
  }

  .lg\:bg-slate-950\/50 {
    background-color: rgb(2 6 23 / 0.5);
  }

  .lg\:bg-slate-950\/60 {
    background-color: rgb(2 6 23 / 0.6);
  }

  .lg\:bg-slate-950\/70 {
    background-color: rgb(2 6 23 / 0.7);
  }

  .lg\:bg-slate-950\/80 {
    background-color: rgb(2 6 23 / 0.8);
  }

  .lg\:bg-slate-950\/90 {
    background-color: rgb(2 6 23 / 0.9);
  }

  .lg\:bg-stone-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(245 245 244 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-stone-100\/10 {
    background-color: rgb(245 245 244 / 0.1);
  }

  .lg\:bg-stone-100\/20 {
    background-color: rgb(245 245 244 / 0.2);
  }

  .lg\:bg-stone-100\/30 {
    background-color: rgb(245 245 244 / 0.3);
  }

  .lg\:bg-stone-100\/40 {
    background-color: rgb(245 245 244 / 0.4);
  }

  .lg\:bg-stone-100\/5 {
    background-color: rgb(245 245 244 / 0.05);
  }

  .lg\:bg-stone-100\/50 {
    background-color: rgb(245 245 244 / 0.5);
  }

  .lg\:bg-stone-100\/60 {
    background-color: rgb(245 245 244 / 0.6);
  }

  .lg\:bg-stone-100\/70 {
    background-color: rgb(245 245 244 / 0.7);
  }

  .lg\:bg-stone-100\/80 {
    background-color: rgb(245 245 244 / 0.8);
  }

  .lg\:bg-stone-100\/90 {
    background-color: rgb(245 245 244 / 0.9);
  }

  .lg\:bg-stone-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(231 229 228 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-stone-200\/10 {
    background-color: rgb(231 229 228 / 0.1);
  }

  .lg\:bg-stone-200\/20 {
    background-color: rgb(231 229 228 / 0.2);
  }

  .lg\:bg-stone-200\/30 {
    background-color: rgb(231 229 228 / 0.3);
  }

  .lg\:bg-stone-200\/40 {
    background-color: rgb(231 229 228 / 0.4);
  }

  .lg\:bg-stone-200\/5 {
    background-color: rgb(231 229 228 / 0.05);
  }

  .lg\:bg-stone-200\/50 {
    background-color: rgb(231 229 228 / 0.5);
  }

  .lg\:bg-stone-200\/60 {
    background-color: rgb(231 229 228 / 0.6);
  }

  .lg\:bg-stone-200\/70 {
    background-color: rgb(231 229 228 / 0.7);
  }

  .lg\:bg-stone-200\/80 {
    background-color: rgb(231 229 228 / 0.8);
  }

  .lg\:bg-stone-200\/90 {
    background-color: rgb(231 229 228 / 0.9);
  }

  .lg\:bg-stone-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(214 211 209 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-stone-300\/10 {
    background-color: rgb(214 211 209 / 0.1);
  }

  .lg\:bg-stone-300\/20 {
    background-color: rgb(214 211 209 / 0.2);
  }

  .lg\:bg-stone-300\/30 {
    background-color: rgb(214 211 209 / 0.3);
  }

  .lg\:bg-stone-300\/40 {
    background-color: rgb(214 211 209 / 0.4);
  }

  .lg\:bg-stone-300\/5 {
    background-color: rgb(214 211 209 / 0.05);
  }

  .lg\:bg-stone-300\/50 {
    background-color: rgb(214 211 209 / 0.5);
  }

  .lg\:bg-stone-300\/60 {
    background-color: rgb(214 211 209 / 0.6);
  }

  .lg\:bg-stone-300\/70 {
    background-color: rgb(214 211 209 / 0.7);
  }

  .lg\:bg-stone-300\/80 {
    background-color: rgb(214 211 209 / 0.8);
  }

  .lg\:bg-stone-300\/90 {
    background-color: rgb(214 211 209 / 0.9);
  }

  .lg\:bg-stone-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(168 162 158 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-stone-400\/10 {
    background-color: rgb(168 162 158 / 0.1);
  }

  .lg\:bg-stone-400\/20 {
    background-color: rgb(168 162 158 / 0.2);
  }

  .lg\:bg-stone-400\/30 {
    background-color: rgb(168 162 158 / 0.3);
  }

  .lg\:bg-stone-400\/40 {
    background-color: rgb(168 162 158 / 0.4);
  }

  .lg\:bg-stone-400\/5 {
    background-color: rgb(168 162 158 / 0.05);
  }

  .lg\:bg-stone-400\/50 {
    background-color: rgb(168 162 158 / 0.5);
  }

  .lg\:bg-stone-400\/60 {
    background-color: rgb(168 162 158 / 0.6);
  }

  .lg\:bg-stone-400\/70 {
    background-color: rgb(168 162 158 / 0.7);
  }

  .lg\:bg-stone-400\/80 {
    background-color: rgb(168 162 158 / 0.8);
  }

  .lg\:bg-stone-400\/90 {
    background-color: rgb(168 162 158 / 0.9);
  }

  .lg\:bg-stone-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 250 249 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-stone-50\/10 {
    background-color: rgb(250 250 249 / 0.1);
  }

  .lg\:bg-stone-50\/20 {
    background-color: rgb(250 250 249 / 0.2);
  }

  .lg\:bg-stone-50\/30 {
    background-color: rgb(250 250 249 / 0.3);
  }

  .lg\:bg-stone-50\/40 {
    background-color: rgb(250 250 249 / 0.4);
  }

  .lg\:bg-stone-50\/5 {
    background-color: rgb(250 250 249 / 0.05);
  }

  .lg\:bg-stone-50\/50 {
    background-color: rgb(250 250 249 / 0.5);
  }

  .lg\:bg-stone-50\/60 {
    background-color: rgb(250 250 249 / 0.6);
  }

  .lg\:bg-stone-50\/70 {
    background-color: rgb(250 250 249 / 0.7);
  }

  .lg\:bg-stone-50\/80 {
    background-color: rgb(250 250 249 / 0.8);
  }

  .lg\:bg-stone-50\/90 {
    background-color: rgb(250 250 249 / 0.9);
  }

  .lg\:bg-stone-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(120 113 108 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-stone-500\/10 {
    background-color: rgb(120 113 108 / 0.1);
  }

  .lg\:bg-stone-500\/20 {
    background-color: rgb(120 113 108 / 0.2);
  }

  .lg\:bg-stone-500\/30 {
    background-color: rgb(120 113 108 / 0.3);
  }

  .lg\:bg-stone-500\/40 {
    background-color: rgb(120 113 108 / 0.4);
  }

  .lg\:bg-stone-500\/5 {
    background-color: rgb(120 113 108 / 0.05);
  }

  .lg\:bg-stone-500\/50 {
    background-color: rgb(120 113 108 / 0.5);
  }

  .lg\:bg-stone-500\/60 {
    background-color: rgb(120 113 108 / 0.6);
  }

  .lg\:bg-stone-500\/70 {
    background-color: rgb(120 113 108 / 0.7);
  }

  .lg\:bg-stone-500\/80 {
    background-color: rgb(120 113 108 / 0.8);
  }

  .lg\:bg-stone-500\/90 {
    background-color: rgb(120 113 108 / 0.9);
  }

  .lg\:bg-stone-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(87 83 78 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-stone-600\/10 {
    background-color: rgb(87 83 78 / 0.1);
  }

  .lg\:bg-stone-600\/20 {
    background-color: rgb(87 83 78 / 0.2);
  }

  .lg\:bg-stone-600\/30 {
    background-color: rgb(87 83 78 / 0.3);
  }

  .lg\:bg-stone-600\/40 {
    background-color: rgb(87 83 78 / 0.4);
  }

  .lg\:bg-stone-600\/5 {
    background-color: rgb(87 83 78 / 0.05);
  }

  .lg\:bg-stone-600\/50 {
    background-color: rgb(87 83 78 / 0.5);
  }

  .lg\:bg-stone-600\/60 {
    background-color: rgb(87 83 78 / 0.6);
  }

  .lg\:bg-stone-600\/70 {
    background-color: rgb(87 83 78 / 0.7);
  }

  .lg\:bg-stone-600\/80 {
    background-color: rgb(87 83 78 / 0.8);
  }

  .lg\:bg-stone-600\/90 {
    background-color: rgb(87 83 78 / 0.9);
  }

  .lg\:bg-stone-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(68 64 60 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-stone-700\/10 {
    background-color: rgb(68 64 60 / 0.1);
  }

  .lg\:bg-stone-700\/20 {
    background-color: rgb(68 64 60 / 0.2);
  }

  .lg\:bg-stone-700\/30 {
    background-color: rgb(68 64 60 / 0.3);
  }

  .lg\:bg-stone-700\/40 {
    background-color: rgb(68 64 60 / 0.4);
  }

  .lg\:bg-stone-700\/5 {
    background-color: rgb(68 64 60 / 0.05);
  }

  .lg\:bg-stone-700\/50 {
    background-color: rgb(68 64 60 / 0.5);
  }

  .lg\:bg-stone-700\/60 {
    background-color: rgb(68 64 60 / 0.6);
  }

  .lg\:bg-stone-700\/70 {
    background-color: rgb(68 64 60 / 0.7);
  }

  .lg\:bg-stone-700\/80 {
    background-color: rgb(68 64 60 / 0.8);
  }

  .lg\:bg-stone-700\/90 {
    background-color: rgb(68 64 60 / 0.9);
  }

  .lg\:bg-stone-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(41 37 36 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-stone-800\/10 {
    background-color: rgb(41 37 36 / 0.1);
  }

  .lg\:bg-stone-800\/20 {
    background-color: rgb(41 37 36 / 0.2);
  }

  .lg\:bg-stone-800\/30 {
    background-color: rgb(41 37 36 / 0.3);
  }

  .lg\:bg-stone-800\/40 {
    background-color: rgb(41 37 36 / 0.4);
  }

  .lg\:bg-stone-800\/5 {
    background-color: rgb(41 37 36 / 0.05);
  }

  .lg\:bg-stone-800\/50 {
    background-color: rgb(41 37 36 / 0.5);
  }

  .lg\:bg-stone-800\/60 {
    background-color: rgb(41 37 36 / 0.6);
  }

  .lg\:bg-stone-800\/70 {
    background-color: rgb(41 37 36 / 0.7);
  }

  .lg\:bg-stone-800\/80 {
    background-color: rgb(41 37 36 / 0.8);
  }

  .lg\:bg-stone-800\/90 {
    background-color: rgb(41 37 36 / 0.9);
  }

  .lg\:bg-stone-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(28 25 23 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-stone-900\/10 {
    background-color: rgb(28 25 23 / 0.1);
  }

  .lg\:bg-stone-900\/20 {
    background-color: rgb(28 25 23 / 0.2);
  }

  .lg\:bg-stone-900\/30 {
    background-color: rgb(28 25 23 / 0.3);
  }

  .lg\:bg-stone-900\/40 {
    background-color: rgb(28 25 23 / 0.4);
  }

  .lg\:bg-stone-900\/5 {
    background-color: rgb(28 25 23 / 0.05);
  }

  .lg\:bg-stone-900\/50 {
    background-color: rgb(28 25 23 / 0.5);
  }

  .lg\:bg-stone-900\/60 {
    background-color: rgb(28 25 23 / 0.6);
  }

  .lg\:bg-stone-900\/70 {
    background-color: rgb(28 25 23 / 0.7);
  }

  .lg\:bg-stone-900\/80 {
    background-color: rgb(28 25 23 / 0.8);
  }

  .lg\:bg-stone-900\/90 {
    background-color: rgb(28 25 23 / 0.9);
  }

  .lg\:bg-stone-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(12 10 9 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-stone-950\/10 {
    background-color: rgb(12 10 9 / 0.1);
  }

  .lg\:bg-stone-950\/20 {
    background-color: rgb(12 10 9 / 0.2);
  }

  .lg\:bg-stone-950\/30 {
    background-color: rgb(12 10 9 / 0.3);
  }

  .lg\:bg-stone-950\/40 {
    background-color: rgb(12 10 9 / 0.4);
  }

  .lg\:bg-stone-950\/5 {
    background-color: rgb(12 10 9 / 0.05);
  }

  .lg\:bg-stone-950\/50 {
    background-color: rgb(12 10 9 / 0.5);
  }

  .lg\:bg-stone-950\/60 {
    background-color: rgb(12 10 9 / 0.6);
  }

  .lg\:bg-stone-950\/70 {
    background-color: rgb(12 10 9 / 0.7);
  }

  .lg\:bg-stone-950\/80 {
    background-color: rgb(12 10 9 / 0.8);
  }

  .lg\:bg-stone-950\/90 {
    background-color: rgb(12 10 9 / 0.9);
  }

  .lg\:bg-teal-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(204 251 241 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-teal-100\/10 {
    background-color: rgb(204 251 241 / 0.1);
  }

  .lg\:bg-teal-100\/20 {
    background-color: rgb(204 251 241 / 0.2);
  }

  .lg\:bg-teal-100\/30 {
    background-color: rgb(204 251 241 / 0.3);
  }

  .lg\:bg-teal-100\/40 {
    background-color: rgb(204 251 241 / 0.4);
  }

  .lg\:bg-teal-100\/5 {
    background-color: rgb(204 251 241 / 0.05);
  }

  .lg\:bg-teal-100\/50 {
    background-color: rgb(204 251 241 / 0.5);
  }

  .lg\:bg-teal-100\/60 {
    background-color: rgb(204 251 241 / 0.6);
  }

  .lg\:bg-teal-100\/70 {
    background-color: rgb(204 251 241 / 0.7);
  }

  .lg\:bg-teal-100\/80 {
    background-color: rgb(204 251 241 / 0.8);
  }

  .lg\:bg-teal-100\/90 {
    background-color: rgb(204 251 241 / 0.9);
  }

  .lg\:bg-teal-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(153 246 228 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-teal-200\/10 {
    background-color: rgb(153 246 228 / 0.1);
  }

  .lg\:bg-teal-200\/20 {
    background-color: rgb(153 246 228 / 0.2);
  }

  .lg\:bg-teal-200\/30 {
    background-color: rgb(153 246 228 / 0.3);
  }

  .lg\:bg-teal-200\/40 {
    background-color: rgb(153 246 228 / 0.4);
  }

  .lg\:bg-teal-200\/5 {
    background-color: rgb(153 246 228 / 0.05);
  }

  .lg\:bg-teal-200\/50 {
    background-color: rgb(153 246 228 / 0.5);
  }

  .lg\:bg-teal-200\/60 {
    background-color: rgb(153 246 228 / 0.6);
  }

  .lg\:bg-teal-200\/70 {
    background-color: rgb(153 246 228 / 0.7);
  }

  .lg\:bg-teal-200\/80 {
    background-color: rgb(153 246 228 / 0.8);
  }

  .lg\:bg-teal-200\/90 {
    background-color: rgb(153 246 228 / 0.9);
  }

  .lg\:bg-teal-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(94 234 212 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-teal-300\/10 {
    background-color: rgb(94 234 212 / 0.1);
  }

  .lg\:bg-teal-300\/20 {
    background-color: rgb(94 234 212 / 0.2);
  }

  .lg\:bg-teal-300\/30 {
    background-color: rgb(94 234 212 / 0.3);
  }

  .lg\:bg-teal-300\/40 {
    background-color: rgb(94 234 212 / 0.4);
  }

  .lg\:bg-teal-300\/5 {
    background-color: rgb(94 234 212 / 0.05);
  }

  .lg\:bg-teal-300\/50 {
    background-color: rgb(94 234 212 / 0.5);
  }

  .lg\:bg-teal-300\/60 {
    background-color: rgb(94 234 212 / 0.6);
  }

  .lg\:bg-teal-300\/70 {
    background-color: rgb(94 234 212 / 0.7);
  }

  .lg\:bg-teal-300\/80 {
    background-color: rgb(94 234 212 / 0.8);
  }

  .lg\:bg-teal-300\/90 {
    background-color: rgb(94 234 212 / 0.9);
  }

  .lg\:bg-teal-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(45 212 191 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-teal-400\/10 {
    background-color: rgb(45 212 191 / 0.1);
  }

  .lg\:bg-teal-400\/20 {
    background-color: rgb(45 212 191 / 0.2);
  }

  .lg\:bg-teal-400\/30 {
    background-color: rgb(45 212 191 / 0.3);
  }

  .lg\:bg-teal-400\/40 {
    background-color: rgb(45 212 191 / 0.4);
  }

  .lg\:bg-teal-400\/5 {
    background-color: rgb(45 212 191 / 0.05);
  }

  .lg\:bg-teal-400\/50 {
    background-color: rgb(45 212 191 / 0.5);
  }

  .lg\:bg-teal-400\/60 {
    background-color: rgb(45 212 191 / 0.6);
  }

  .lg\:bg-teal-400\/70 {
    background-color: rgb(45 212 191 / 0.7);
  }

  .lg\:bg-teal-400\/80 {
    background-color: rgb(45 212 191 / 0.8);
  }

  .lg\:bg-teal-400\/90 {
    background-color: rgb(45 212 191 / 0.9);
  }

  .lg\:bg-teal-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(240 253 250 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-teal-50\/10 {
    background-color: rgb(240 253 250 / 0.1);
  }

  .lg\:bg-teal-50\/20 {
    background-color: rgb(240 253 250 / 0.2);
  }

  .lg\:bg-teal-50\/30 {
    background-color: rgb(240 253 250 / 0.3);
  }

  .lg\:bg-teal-50\/40 {
    background-color: rgb(240 253 250 / 0.4);
  }

  .lg\:bg-teal-50\/5 {
    background-color: rgb(240 253 250 / 0.05);
  }

  .lg\:bg-teal-50\/50 {
    background-color: rgb(240 253 250 / 0.5);
  }

  .lg\:bg-teal-50\/60 {
    background-color: rgb(240 253 250 / 0.6);
  }

  .lg\:bg-teal-50\/70 {
    background-color: rgb(240 253 250 / 0.7);
  }

  .lg\:bg-teal-50\/80 {
    background-color: rgb(240 253 250 / 0.8);
  }

  .lg\:bg-teal-50\/90 {
    background-color: rgb(240 253 250 / 0.9);
  }

  .lg\:bg-teal-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(20 184 166 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-teal-500\/10 {
    background-color: rgb(20 184 166 / 0.1);
  }

  .lg\:bg-teal-500\/20 {
    background-color: rgb(20 184 166 / 0.2);
  }

  .lg\:bg-teal-500\/30 {
    background-color: rgb(20 184 166 / 0.3);
  }

  .lg\:bg-teal-500\/40 {
    background-color: rgb(20 184 166 / 0.4);
  }

  .lg\:bg-teal-500\/5 {
    background-color: rgb(20 184 166 / 0.05);
  }

  .lg\:bg-teal-500\/50 {
    background-color: rgb(20 184 166 / 0.5);
  }

  .lg\:bg-teal-500\/60 {
    background-color: rgb(20 184 166 / 0.6);
  }

  .lg\:bg-teal-500\/70 {
    background-color: rgb(20 184 166 / 0.7);
  }

  .lg\:bg-teal-500\/80 {
    background-color: rgb(20 184 166 / 0.8);
  }

  .lg\:bg-teal-500\/90 {
    background-color: rgb(20 184 166 / 0.9);
  }

  .lg\:bg-teal-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(13 148 136 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-teal-600\/10 {
    background-color: rgb(13 148 136 / 0.1);
  }

  .lg\:bg-teal-600\/20 {
    background-color: rgb(13 148 136 / 0.2);
  }

  .lg\:bg-teal-600\/30 {
    background-color: rgb(13 148 136 / 0.3);
  }

  .lg\:bg-teal-600\/40 {
    background-color: rgb(13 148 136 / 0.4);
  }

  .lg\:bg-teal-600\/5 {
    background-color: rgb(13 148 136 / 0.05);
  }

  .lg\:bg-teal-600\/50 {
    background-color: rgb(13 148 136 / 0.5);
  }

  .lg\:bg-teal-600\/60 {
    background-color: rgb(13 148 136 / 0.6);
  }

  .lg\:bg-teal-600\/70 {
    background-color: rgb(13 148 136 / 0.7);
  }

  .lg\:bg-teal-600\/80 {
    background-color: rgb(13 148 136 / 0.8);
  }

  .lg\:bg-teal-600\/90 {
    background-color: rgb(13 148 136 / 0.9);
  }

  .lg\:bg-teal-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(15 118 110 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-teal-700\/10 {
    background-color: rgb(15 118 110 / 0.1);
  }

  .lg\:bg-teal-700\/20 {
    background-color: rgb(15 118 110 / 0.2);
  }

  .lg\:bg-teal-700\/30 {
    background-color: rgb(15 118 110 / 0.3);
  }

  .lg\:bg-teal-700\/40 {
    background-color: rgb(15 118 110 / 0.4);
  }

  .lg\:bg-teal-700\/5 {
    background-color: rgb(15 118 110 / 0.05);
  }

  .lg\:bg-teal-700\/50 {
    background-color: rgb(15 118 110 / 0.5);
  }

  .lg\:bg-teal-700\/60 {
    background-color: rgb(15 118 110 / 0.6);
  }

  .lg\:bg-teal-700\/70 {
    background-color: rgb(15 118 110 / 0.7);
  }

  .lg\:bg-teal-700\/80 {
    background-color: rgb(15 118 110 / 0.8);
  }

  .lg\:bg-teal-700\/90 {
    background-color: rgb(15 118 110 / 0.9);
  }

  .lg\:bg-teal-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(17 94 89 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-teal-800\/10 {
    background-color: rgb(17 94 89 / 0.1);
  }

  .lg\:bg-teal-800\/20 {
    background-color: rgb(17 94 89 / 0.2);
  }

  .lg\:bg-teal-800\/30 {
    background-color: rgb(17 94 89 / 0.3);
  }

  .lg\:bg-teal-800\/40 {
    background-color: rgb(17 94 89 / 0.4);
  }

  .lg\:bg-teal-800\/5 {
    background-color: rgb(17 94 89 / 0.05);
  }

  .lg\:bg-teal-800\/50 {
    background-color: rgb(17 94 89 / 0.5);
  }

  .lg\:bg-teal-800\/60 {
    background-color: rgb(17 94 89 / 0.6);
  }

  .lg\:bg-teal-800\/70 {
    background-color: rgb(17 94 89 / 0.7);
  }

  .lg\:bg-teal-800\/80 {
    background-color: rgb(17 94 89 / 0.8);
  }

  .lg\:bg-teal-800\/90 {
    background-color: rgb(17 94 89 / 0.9);
  }

  .lg\:bg-teal-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(19 78 74 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-teal-900\/10 {
    background-color: rgb(19 78 74 / 0.1);
  }

  .lg\:bg-teal-900\/20 {
    background-color: rgb(19 78 74 / 0.2);
  }

  .lg\:bg-teal-900\/30 {
    background-color: rgb(19 78 74 / 0.3);
  }

  .lg\:bg-teal-900\/40 {
    background-color: rgb(19 78 74 / 0.4);
  }

  .lg\:bg-teal-900\/5 {
    background-color: rgb(19 78 74 / 0.05);
  }

  .lg\:bg-teal-900\/50 {
    background-color: rgb(19 78 74 / 0.5);
  }

  .lg\:bg-teal-900\/60 {
    background-color: rgb(19 78 74 / 0.6);
  }

  .lg\:bg-teal-900\/70 {
    background-color: rgb(19 78 74 / 0.7);
  }

  .lg\:bg-teal-900\/80 {
    background-color: rgb(19 78 74 / 0.8);
  }

  .lg\:bg-teal-900\/90 {
    background-color: rgb(19 78 74 / 0.9);
  }

  .lg\:bg-teal-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(4 47 46 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-teal-950\/10 {
    background-color: rgb(4 47 46 / 0.1);
  }

  .lg\:bg-teal-950\/20 {
    background-color: rgb(4 47 46 / 0.2);
  }

  .lg\:bg-teal-950\/30 {
    background-color: rgb(4 47 46 / 0.3);
  }

  .lg\:bg-teal-950\/40 {
    background-color: rgb(4 47 46 / 0.4);
  }

  .lg\:bg-teal-950\/5 {
    background-color: rgb(4 47 46 / 0.05);
  }

  .lg\:bg-teal-950\/50 {
    background-color: rgb(4 47 46 / 0.5);
  }

  .lg\:bg-teal-950\/60 {
    background-color: rgb(4 47 46 / 0.6);
  }

  .lg\:bg-teal-950\/70 {
    background-color: rgb(4 47 46 / 0.7);
  }

  .lg\:bg-teal-950\/80 {
    background-color: rgb(4 47 46 / 0.8);
  }

  .lg\:bg-teal-950\/90 {
    background-color: rgb(4 47 46 / 0.9);
  }

  .lg\:bg-violet-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(237 233 254 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-violet-100\/10 {
    background-color: rgb(237 233 254 / 0.1);
  }

  .lg\:bg-violet-100\/20 {
    background-color: rgb(237 233 254 / 0.2);
  }

  .lg\:bg-violet-100\/30 {
    background-color: rgb(237 233 254 / 0.3);
  }

  .lg\:bg-violet-100\/40 {
    background-color: rgb(237 233 254 / 0.4);
  }

  .lg\:bg-violet-100\/5 {
    background-color: rgb(237 233 254 / 0.05);
  }

  .lg\:bg-violet-100\/50 {
    background-color: rgb(237 233 254 / 0.5);
  }

  .lg\:bg-violet-100\/60 {
    background-color: rgb(237 233 254 / 0.6);
  }

  .lg\:bg-violet-100\/70 {
    background-color: rgb(237 233 254 / 0.7);
  }

  .lg\:bg-violet-100\/80 {
    background-color: rgb(237 233 254 / 0.8);
  }

  .lg\:bg-violet-100\/90 {
    background-color: rgb(237 233 254 / 0.9);
  }

  .lg\:bg-violet-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(221 214 254 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-violet-200\/10 {
    background-color: rgb(221 214 254 / 0.1);
  }

  .lg\:bg-violet-200\/20 {
    background-color: rgb(221 214 254 / 0.2);
  }

  .lg\:bg-violet-200\/30 {
    background-color: rgb(221 214 254 / 0.3);
  }

  .lg\:bg-violet-200\/40 {
    background-color: rgb(221 214 254 / 0.4);
  }

  .lg\:bg-violet-200\/5 {
    background-color: rgb(221 214 254 / 0.05);
  }

  .lg\:bg-violet-200\/50 {
    background-color: rgb(221 214 254 / 0.5);
  }

  .lg\:bg-violet-200\/60 {
    background-color: rgb(221 214 254 / 0.6);
  }

  .lg\:bg-violet-200\/70 {
    background-color: rgb(221 214 254 / 0.7);
  }

  .lg\:bg-violet-200\/80 {
    background-color: rgb(221 214 254 / 0.8);
  }

  .lg\:bg-violet-200\/90 {
    background-color: rgb(221 214 254 / 0.9);
  }

  .lg\:bg-violet-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(196 181 253 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-violet-300\/10 {
    background-color: rgb(196 181 253 / 0.1);
  }

  .lg\:bg-violet-300\/20 {
    background-color: rgb(196 181 253 / 0.2);
  }

  .lg\:bg-violet-300\/30 {
    background-color: rgb(196 181 253 / 0.3);
  }

  .lg\:bg-violet-300\/40 {
    background-color: rgb(196 181 253 / 0.4);
  }

  .lg\:bg-violet-300\/5 {
    background-color: rgb(196 181 253 / 0.05);
  }

  .lg\:bg-violet-300\/50 {
    background-color: rgb(196 181 253 / 0.5);
  }

  .lg\:bg-violet-300\/60 {
    background-color: rgb(196 181 253 / 0.6);
  }

  .lg\:bg-violet-300\/70 {
    background-color: rgb(196 181 253 / 0.7);
  }

  .lg\:bg-violet-300\/80 {
    background-color: rgb(196 181 253 / 0.8);
  }

  .lg\:bg-violet-300\/90 {
    background-color: rgb(196 181 253 / 0.9);
  }

  .lg\:bg-violet-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(167 139 250 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-violet-400\/10 {
    background-color: rgb(167 139 250 / 0.1);
  }

  .lg\:bg-violet-400\/20 {
    background-color: rgb(167 139 250 / 0.2);
  }

  .lg\:bg-violet-400\/30 {
    background-color: rgb(167 139 250 / 0.3);
  }

  .lg\:bg-violet-400\/40 {
    background-color: rgb(167 139 250 / 0.4);
  }

  .lg\:bg-violet-400\/5 {
    background-color: rgb(167 139 250 / 0.05);
  }

  .lg\:bg-violet-400\/50 {
    background-color: rgb(167 139 250 / 0.5);
  }

  .lg\:bg-violet-400\/60 {
    background-color: rgb(167 139 250 / 0.6);
  }

  .lg\:bg-violet-400\/70 {
    background-color: rgb(167 139 250 / 0.7);
  }

  .lg\:bg-violet-400\/80 {
    background-color: rgb(167 139 250 / 0.8);
  }

  .lg\:bg-violet-400\/90 {
    background-color: rgb(167 139 250 / 0.9);
  }

  .lg\:bg-violet-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(245 243 255 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-violet-50\/10 {
    background-color: rgb(245 243 255 / 0.1);
  }

  .lg\:bg-violet-50\/20 {
    background-color: rgb(245 243 255 / 0.2);
  }

  .lg\:bg-violet-50\/30 {
    background-color: rgb(245 243 255 / 0.3);
  }

  .lg\:bg-violet-50\/40 {
    background-color: rgb(245 243 255 / 0.4);
  }

  .lg\:bg-violet-50\/5 {
    background-color: rgb(245 243 255 / 0.05);
  }

  .lg\:bg-violet-50\/50 {
    background-color: rgb(245 243 255 / 0.5);
  }

  .lg\:bg-violet-50\/60 {
    background-color: rgb(245 243 255 / 0.6);
  }

  .lg\:bg-violet-50\/70 {
    background-color: rgb(245 243 255 / 0.7);
  }

  .lg\:bg-violet-50\/80 {
    background-color: rgb(245 243 255 / 0.8);
  }

  .lg\:bg-violet-50\/90 {
    background-color: rgb(245 243 255 / 0.9);
  }

  .lg\:bg-violet-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(139 92 246 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-violet-500\/10 {
    background-color: rgb(139 92 246 / 0.1);
  }

  .lg\:bg-violet-500\/20 {
    background-color: rgb(139 92 246 / 0.2);
  }

  .lg\:bg-violet-500\/30 {
    background-color: rgb(139 92 246 / 0.3);
  }

  .lg\:bg-violet-500\/40 {
    background-color: rgb(139 92 246 / 0.4);
  }

  .lg\:bg-violet-500\/5 {
    background-color: rgb(139 92 246 / 0.05);
  }

  .lg\:bg-violet-500\/50 {
    background-color: rgb(139 92 246 / 0.5);
  }

  .lg\:bg-violet-500\/60 {
    background-color: rgb(139 92 246 / 0.6);
  }

  .lg\:bg-violet-500\/70 {
    background-color: rgb(139 92 246 / 0.7);
  }

  .lg\:bg-violet-500\/80 {
    background-color: rgb(139 92 246 / 0.8);
  }

  .lg\:bg-violet-500\/90 {
    background-color: rgb(139 92 246 / 0.9);
  }

  .lg\:bg-violet-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(124 58 237 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-violet-600\/10 {
    background-color: rgb(124 58 237 / 0.1);
  }

  .lg\:bg-violet-600\/20 {
    background-color: rgb(124 58 237 / 0.2);
  }

  .lg\:bg-violet-600\/30 {
    background-color: rgb(124 58 237 / 0.3);
  }

  .lg\:bg-violet-600\/40 {
    background-color: rgb(124 58 237 / 0.4);
  }

  .lg\:bg-violet-600\/5 {
    background-color: rgb(124 58 237 / 0.05);
  }

  .lg\:bg-violet-600\/50 {
    background-color: rgb(124 58 237 / 0.5);
  }

  .lg\:bg-violet-600\/60 {
    background-color: rgb(124 58 237 / 0.6);
  }

  .lg\:bg-violet-600\/70 {
    background-color: rgb(124 58 237 / 0.7);
  }

  .lg\:bg-violet-600\/80 {
    background-color: rgb(124 58 237 / 0.8);
  }

  .lg\:bg-violet-600\/90 {
    background-color: rgb(124 58 237 / 0.9);
  }

  .lg\:bg-violet-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(109 40 217 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-violet-700\/10 {
    background-color: rgb(109 40 217 / 0.1);
  }

  .lg\:bg-violet-700\/20 {
    background-color: rgb(109 40 217 / 0.2);
  }

  .lg\:bg-violet-700\/30 {
    background-color: rgb(109 40 217 / 0.3);
  }

  .lg\:bg-violet-700\/40 {
    background-color: rgb(109 40 217 / 0.4);
  }

  .lg\:bg-violet-700\/5 {
    background-color: rgb(109 40 217 / 0.05);
  }

  .lg\:bg-violet-700\/50 {
    background-color: rgb(109 40 217 / 0.5);
  }

  .lg\:bg-violet-700\/60 {
    background-color: rgb(109 40 217 / 0.6);
  }

  .lg\:bg-violet-700\/70 {
    background-color: rgb(109 40 217 / 0.7);
  }

  .lg\:bg-violet-700\/80 {
    background-color: rgb(109 40 217 / 0.8);
  }

  .lg\:bg-violet-700\/90 {
    background-color: rgb(109 40 217 / 0.9);
  }

  .lg\:bg-violet-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(91 33 182 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-violet-800\/10 {
    background-color: rgb(91 33 182 / 0.1);
  }

  .lg\:bg-violet-800\/20 {
    background-color: rgb(91 33 182 / 0.2);
  }

  .lg\:bg-violet-800\/30 {
    background-color: rgb(91 33 182 / 0.3);
  }

  .lg\:bg-violet-800\/40 {
    background-color: rgb(91 33 182 / 0.4);
  }

  .lg\:bg-violet-800\/5 {
    background-color: rgb(91 33 182 / 0.05);
  }

  .lg\:bg-violet-800\/50 {
    background-color: rgb(91 33 182 / 0.5);
  }

  .lg\:bg-violet-800\/60 {
    background-color: rgb(91 33 182 / 0.6);
  }

  .lg\:bg-violet-800\/70 {
    background-color: rgb(91 33 182 / 0.7);
  }

  .lg\:bg-violet-800\/80 {
    background-color: rgb(91 33 182 / 0.8);
  }

  .lg\:bg-violet-800\/90 {
    background-color: rgb(91 33 182 / 0.9);
  }

  .lg\:bg-violet-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(76 29 149 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-violet-900\/10 {
    background-color: rgb(76 29 149 / 0.1);
  }

  .lg\:bg-violet-900\/20 {
    background-color: rgb(76 29 149 / 0.2);
  }

  .lg\:bg-violet-900\/30 {
    background-color: rgb(76 29 149 / 0.3);
  }

  .lg\:bg-violet-900\/40 {
    background-color: rgb(76 29 149 / 0.4);
  }

  .lg\:bg-violet-900\/5 {
    background-color: rgb(76 29 149 / 0.05);
  }

  .lg\:bg-violet-900\/50 {
    background-color: rgb(76 29 149 / 0.5);
  }

  .lg\:bg-violet-900\/60 {
    background-color: rgb(76 29 149 / 0.6);
  }

  .lg\:bg-violet-900\/70 {
    background-color: rgb(76 29 149 / 0.7);
  }

  .lg\:bg-violet-900\/80 {
    background-color: rgb(76 29 149 / 0.8);
  }

  .lg\:bg-violet-900\/90 {
    background-color: rgb(76 29 149 / 0.9);
  }

  .lg\:bg-violet-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(46 16 101 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-violet-950\/10 {
    background-color: rgb(46 16 101 / 0.1);
  }

  .lg\:bg-violet-950\/20 {
    background-color: rgb(46 16 101 / 0.2);
  }

  .lg\:bg-violet-950\/30 {
    background-color: rgb(46 16 101 / 0.3);
  }

  .lg\:bg-violet-950\/40 {
    background-color: rgb(46 16 101 / 0.4);
  }

  .lg\:bg-violet-950\/5 {
    background-color: rgb(46 16 101 / 0.05);
  }

  .lg\:bg-violet-950\/50 {
    background-color: rgb(46 16 101 / 0.5);
  }

  .lg\:bg-violet-950\/60 {
    background-color: rgb(46 16 101 / 0.6);
  }

  .lg\:bg-violet-950\/70 {
    background-color: rgb(46 16 101 / 0.7);
  }

  .lg\:bg-violet-950\/80 {
    background-color: rgb(46 16 101 / 0.8);
  }

  .lg\:bg-violet-950\/90 {
    background-color: rgb(46 16 101 / 0.9);
  }

  .lg\:bg-yellow-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-yellow-100\/10 {
    background-color: rgb(254 249 195 / 0.1);
  }

  .lg\:bg-yellow-100\/20 {
    background-color: rgb(254 249 195 / 0.2);
  }

  .lg\:bg-yellow-100\/30 {
    background-color: rgb(254 249 195 / 0.3);
  }

  .lg\:bg-yellow-100\/40 {
    background-color: rgb(254 249 195 / 0.4);
  }

  .lg\:bg-yellow-100\/5 {
    background-color: rgb(254 249 195 / 0.05);
  }

  .lg\:bg-yellow-100\/50 {
    background-color: rgb(254 249 195 / 0.5);
  }

  .lg\:bg-yellow-100\/60 {
    background-color: rgb(254 249 195 / 0.6);
  }

  .lg\:bg-yellow-100\/70 {
    background-color: rgb(254 249 195 / 0.7);
  }

  .lg\:bg-yellow-100\/80 {
    background-color: rgb(254 249 195 / 0.8);
  }

  .lg\:bg-yellow-100\/90 {
    background-color: rgb(254 249 195 / 0.9);
  }

  .lg\:bg-yellow-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 240 138 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-yellow-200\/10 {
    background-color: rgb(254 240 138 / 0.1);
  }

  .lg\:bg-yellow-200\/20 {
    background-color: rgb(254 240 138 / 0.2);
  }

  .lg\:bg-yellow-200\/30 {
    background-color: rgb(254 240 138 / 0.3);
  }

  .lg\:bg-yellow-200\/40 {
    background-color: rgb(254 240 138 / 0.4);
  }

  .lg\:bg-yellow-200\/5 {
    background-color: rgb(254 240 138 / 0.05);
  }

  .lg\:bg-yellow-200\/50 {
    background-color: rgb(254 240 138 / 0.5);
  }

  .lg\:bg-yellow-200\/60 {
    background-color: rgb(254 240 138 / 0.6);
  }

  .lg\:bg-yellow-200\/70 {
    background-color: rgb(254 240 138 / 0.7);
  }

  .lg\:bg-yellow-200\/80 {
    background-color: rgb(254 240 138 / 0.8);
  }

  .lg\:bg-yellow-200\/90 {
    background-color: rgb(254 240 138 / 0.9);
  }

  .lg\:bg-yellow-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(253 224 71 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-yellow-300\/10 {
    background-color: rgb(253 224 71 / 0.1);
  }

  .lg\:bg-yellow-300\/20 {
    background-color: rgb(253 224 71 / 0.2);
  }

  .lg\:bg-yellow-300\/30 {
    background-color: rgb(253 224 71 / 0.3);
  }

  .lg\:bg-yellow-300\/40 {
    background-color: rgb(253 224 71 / 0.4);
  }

  .lg\:bg-yellow-300\/5 {
    background-color: rgb(253 224 71 / 0.05);
  }

  .lg\:bg-yellow-300\/50 {
    background-color: rgb(253 224 71 / 0.5);
  }

  .lg\:bg-yellow-300\/60 {
    background-color: rgb(253 224 71 / 0.6);
  }

  .lg\:bg-yellow-300\/70 {
    background-color: rgb(253 224 71 / 0.7);
  }

  .lg\:bg-yellow-300\/80 {
    background-color: rgb(253 224 71 / 0.8);
  }

  .lg\:bg-yellow-300\/90 {
    background-color: rgb(253 224 71 / 0.9);
  }

  .lg\:bg-yellow-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 204 21 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-yellow-400\/10 {
    background-color: rgb(250 204 21 / 0.1);
  }

  .lg\:bg-yellow-400\/20 {
    background-color: rgb(250 204 21 / 0.2);
  }

  .lg\:bg-yellow-400\/30 {
    background-color: rgb(250 204 21 / 0.3);
  }

  .lg\:bg-yellow-400\/40 {
    background-color: rgb(250 204 21 / 0.4);
  }

  .lg\:bg-yellow-400\/5 {
    background-color: rgb(250 204 21 / 0.05);
  }

  .lg\:bg-yellow-400\/50 {
    background-color: rgb(250 204 21 / 0.5);
  }

  .lg\:bg-yellow-400\/60 {
    background-color: rgb(250 204 21 / 0.6);
  }

  .lg\:bg-yellow-400\/70 {
    background-color: rgb(250 204 21 / 0.7);
  }

  .lg\:bg-yellow-400\/80 {
    background-color: rgb(250 204 21 / 0.8);
  }

  .lg\:bg-yellow-400\/90 {
    background-color: rgb(250 204 21 / 0.9);
  }

  .lg\:bg-yellow-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-yellow-50\/10 {
    background-color: rgb(254 252 232 / 0.1);
  }

  .lg\:bg-yellow-50\/20 {
    background-color: rgb(254 252 232 / 0.2);
  }

  .lg\:bg-yellow-50\/30 {
    background-color: rgb(254 252 232 / 0.3);
  }

  .lg\:bg-yellow-50\/40 {
    background-color: rgb(254 252 232 / 0.4);
  }

  .lg\:bg-yellow-50\/5 {
    background-color: rgb(254 252 232 / 0.05);
  }

  .lg\:bg-yellow-50\/50 {
    background-color: rgb(254 252 232 / 0.5);
  }

  .lg\:bg-yellow-50\/60 {
    background-color: rgb(254 252 232 / 0.6);
  }

  .lg\:bg-yellow-50\/70 {
    background-color: rgb(254 252 232 / 0.7);
  }

  .lg\:bg-yellow-50\/80 {
    background-color: rgb(254 252 232 / 0.8);
  }

  .lg\:bg-yellow-50\/90 {
    background-color: rgb(254 252 232 / 0.9);
  }

  .lg\:bg-yellow-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(234 179 8 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-yellow-500\/10 {
    background-color: rgb(234 179 8 / 0.1);
  }

  .lg\:bg-yellow-500\/20 {
    background-color: rgb(234 179 8 / 0.2);
  }

  .lg\:bg-yellow-500\/30 {
    background-color: rgb(234 179 8 / 0.3);
  }

  .lg\:bg-yellow-500\/40 {
    background-color: rgb(234 179 8 / 0.4);
  }

  .lg\:bg-yellow-500\/5 {
    background-color: rgb(234 179 8 / 0.05);
  }

  .lg\:bg-yellow-500\/50 {
    background-color: rgb(234 179 8 / 0.5);
  }

  .lg\:bg-yellow-500\/60 {
    background-color: rgb(234 179 8 / 0.6);
  }

  .lg\:bg-yellow-500\/70 {
    background-color: rgb(234 179 8 / 0.7);
  }

  .lg\:bg-yellow-500\/80 {
    background-color: rgb(234 179 8 / 0.8);
  }

  .lg\:bg-yellow-500\/90 {
    background-color: rgb(234 179 8 / 0.9);
  }

  .lg\:bg-yellow-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(202 138 4 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-yellow-600\/10 {
    background-color: rgb(202 138 4 / 0.1);
  }

  .lg\:bg-yellow-600\/20 {
    background-color: rgb(202 138 4 / 0.2);
  }

  .lg\:bg-yellow-600\/30 {
    background-color: rgb(202 138 4 / 0.3);
  }

  .lg\:bg-yellow-600\/40 {
    background-color: rgb(202 138 4 / 0.4);
  }

  .lg\:bg-yellow-600\/5 {
    background-color: rgb(202 138 4 / 0.05);
  }

  .lg\:bg-yellow-600\/50 {
    background-color: rgb(202 138 4 / 0.5);
  }

  .lg\:bg-yellow-600\/60 {
    background-color: rgb(202 138 4 / 0.6);
  }

  .lg\:bg-yellow-600\/70 {
    background-color: rgb(202 138 4 / 0.7);
  }

  .lg\:bg-yellow-600\/80 {
    background-color: rgb(202 138 4 / 0.8);
  }

  .lg\:bg-yellow-600\/90 {
    background-color: rgb(202 138 4 / 0.9);
  }

  .lg\:bg-yellow-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(161 98 7 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-yellow-700\/10 {
    background-color: rgb(161 98 7 / 0.1);
  }

  .lg\:bg-yellow-700\/20 {
    background-color: rgb(161 98 7 / 0.2);
  }

  .lg\:bg-yellow-700\/30 {
    background-color: rgb(161 98 7 / 0.3);
  }

  .lg\:bg-yellow-700\/40 {
    background-color: rgb(161 98 7 / 0.4);
  }

  .lg\:bg-yellow-700\/5 {
    background-color: rgb(161 98 7 / 0.05);
  }

  .lg\:bg-yellow-700\/50 {
    background-color: rgb(161 98 7 / 0.5);
  }

  .lg\:bg-yellow-700\/60 {
    background-color: rgb(161 98 7 / 0.6);
  }

  .lg\:bg-yellow-700\/70 {
    background-color: rgb(161 98 7 / 0.7);
  }

  .lg\:bg-yellow-700\/80 {
    background-color: rgb(161 98 7 / 0.8);
  }

  .lg\:bg-yellow-700\/90 {
    background-color: rgb(161 98 7 / 0.9);
  }

  .lg\:bg-yellow-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(133 77 14 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-yellow-800\/10 {
    background-color: rgb(133 77 14 / 0.1);
  }

  .lg\:bg-yellow-800\/20 {
    background-color: rgb(133 77 14 / 0.2);
  }

  .lg\:bg-yellow-800\/30 {
    background-color: rgb(133 77 14 / 0.3);
  }

  .lg\:bg-yellow-800\/40 {
    background-color: rgb(133 77 14 / 0.4);
  }

  .lg\:bg-yellow-800\/5 {
    background-color: rgb(133 77 14 / 0.05);
  }

  .lg\:bg-yellow-800\/50 {
    background-color: rgb(133 77 14 / 0.5);
  }

  .lg\:bg-yellow-800\/60 {
    background-color: rgb(133 77 14 / 0.6);
  }

  .lg\:bg-yellow-800\/70 {
    background-color: rgb(133 77 14 / 0.7);
  }

  .lg\:bg-yellow-800\/80 {
    background-color: rgb(133 77 14 / 0.8);
  }

  .lg\:bg-yellow-800\/90 {
    background-color: rgb(133 77 14 / 0.9);
  }

  .lg\:bg-yellow-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(113 63 18 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-yellow-900\/10 {
    background-color: rgb(113 63 18 / 0.1);
  }

  .lg\:bg-yellow-900\/20 {
    background-color: rgb(113 63 18 / 0.2);
  }

  .lg\:bg-yellow-900\/30 {
    background-color: rgb(113 63 18 / 0.3);
  }

  .lg\:bg-yellow-900\/40 {
    background-color: rgb(113 63 18 / 0.4);
  }

  .lg\:bg-yellow-900\/5 {
    background-color: rgb(113 63 18 / 0.05);
  }

  .lg\:bg-yellow-900\/50 {
    background-color: rgb(113 63 18 / 0.5);
  }

  .lg\:bg-yellow-900\/60 {
    background-color: rgb(113 63 18 / 0.6);
  }

  .lg\:bg-yellow-900\/70 {
    background-color: rgb(113 63 18 / 0.7);
  }

  .lg\:bg-yellow-900\/80 {
    background-color: rgb(113 63 18 / 0.8);
  }

  .lg\:bg-yellow-900\/90 {
    background-color: rgb(113 63 18 / 0.9);
  }

  .lg\:bg-yellow-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(66 32 6 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-yellow-950\/10 {
    background-color: rgb(66 32 6 / 0.1);
  }

  .lg\:bg-yellow-950\/20 {
    background-color: rgb(66 32 6 / 0.2);
  }

  .lg\:bg-yellow-950\/30 {
    background-color: rgb(66 32 6 / 0.3);
  }

  .lg\:bg-yellow-950\/40 {
    background-color: rgb(66 32 6 / 0.4);
  }

  .lg\:bg-yellow-950\/5 {
    background-color: rgb(66 32 6 / 0.05);
  }

  .lg\:bg-yellow-950\/50 {
    background-color: rgb(66 32 6 / 0.5);
  }

  .lg\:bg-yellow-950\/60 {
    background-color: rgb(66 32 6 / 0.6);
  }

  .lg\:bg-yellow-950\/70 {
    background-color: rgb(66 32 6 / 0.7);
  }

  .lg\:bg-yellow-950\/80 {
    background-color: rgb(66 32 6 / 0.8);
  }

  .lg\:bg-yellow-950\/90 {
    background-color: rgb(66 32 6 / 0.9);
  }

  .lg\:bg-zinc-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(244 244 245 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-zinc-100\/10 {
    background-color: rgb(244 244 245 / 0.1);
  }

  .lg\:bg-zinc-100\/20 {
    background-color: rgb(244 244 245 / 0.2);
  }

  .lg\:bg-zinc-100\/30 {
    background-color: rgb(244 244 245 / 0.3);
  }

  .lg\:bg-zinc-100\/40 {
    background-color: rgb(244 244 245 / 0.4);
  }

  .lg\:bg-zinc-100\/5 {
    background-color: rgb(244 244 245 / 0.05);
  }

  .lg\:bg-zinc-100\/50 {
    background-color: rgb(244 244 245 / 0.5);
  }

  .lg\:bg-zinc-100\/60 {
    background-color: rgb(244 244 245 / 0.6);
  }

  .lg\:bg-zinc-100\/70 {
    background-color: rgb(244 244 245 / 0.7);
  }

  .lg\:bg-zinc-100\/80 {
    background-color: rgb(244 244 245 / 0.8);
  }

  .lg\:bg-zinc-100\/90 {
    background-color: rgb(244 244 245 / 0.9);
  }

  .lg\:bg-zinc-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(228 228 231 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-zinc-200\/10 {
    background-color: rgb(228 228 231 / 0.1);
  }

  .lg\:bg-zinc-200\/20 {
    background-color: rgb(228 228 231 / 0.2);
  }

  .lg\:bg-zinc-200\/30 {
    background-color: rgb(228 228 231 / 0.3);
  }

  .lg\:bg-zinc-200\/40 {
    background-color: rgb(228 228 231 / 0.4);
  }

  .lg\:bg-zinc-200\/5 {
    background-color: rgb(228 228 231 / 0.05);
  }

  .lg\:bg-zinc-200\/50 {
    background-color: rgb(228 228 231 / 0.5);
  }

  .lg\:bg-zinc-200\/60 {
    background-color: rgb(228 228 231 / 0.6);
  }

  .lg\:bg-zinc-200\/70 {
    background-color: rgb(228 228 231 / 0.7);
  }

  .lg\:bg-zinc-200\/80 {
    background-color: rgb(228 228 231 / 0.8);
  }

  .lg\:bg-zinc-200\/90 {
    background-color: rgb(228 228 231 / 0.9);
  }

  .lg\:bg-zinc-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(212 212 216 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-zinc-300\/10 {
    background-color: rgb(212 212 216 / 0.1);
  }

  .lg\:bg-zinc-300\/20 {
    background-color: rgb(212 212 216 / 0.2);
  }

  .lg\:bg-zinc-300\/30 {
    background-color: rgb(212 212 216 / 0.3);
  }

  .lg\:bg-zinc-300\/40 {
    background-color: rgb(212 212 216 / 0.4);
  }

  .lg\:bg-zinc-300\/5 {
    background-color: rgb(212 212 216 / 0.05);
  }

  .lg\:bg-zinc-300\/50 {
    background-color: rgb(212 212 216 / 0.5);
  }

  .lg\:bg-zinc-300\/60 {
    background-color: rgb(212 212 216 / 0.6);
  }

  .lg\:bg-zinc-300\/70 {
    background-color: rgb(212 212 216 / 0.7);
  }

  .lg\:bg-zinc-300\/80 {
    background-color: rgb(212 212 216 / 0.8);
  }

  .lg\:bg-zinc-300\/90 {
    background-color: rgb(212 212 216 / 0.9);
  }

  .lg\:bg-zinc-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(161 161 170 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-zinc-400\/10 {
    background-color: rgb(161 161 170 / 0.1);
  }

  .lg\:bg-zinc-400\/20 {
    background-color: rgb(161 161 170 / 0.2);
  }

  .lg\:bg-zinc-400\/30 {
    background-color: rgb(161 161 170 / 0.3);
  }

  .lg\:bg-zinc-400\/40 {
    background-color: rgb(161 161 170 / 0.4);
  }

  .lg\:bg-zinc-400\/5 {
    background-color: rgb(161 161 170 / 0.05);
  }

  .lg\:bg-zinc-400\/50 {
    background-color: rgb(161 161 170 / 0.5);
  }

  .lg\:bg-zinc-400\/60 {
    background-color: rgb(161 161 170 / 0.6);
  }

  .lg\:bg-zinc-400\/70 {
    background-color: rgb(161 161 170 / 0.7);
  }

  .lg\:bg-zinc-400\/80 {
    background-color: rgb(161 161 170 / 0.8);
  }

  .lg\:bg-zinc-400\/90 {
    background-color: rgb(161 161 170 / 0.9);
  }

  .lg\:bg-zinc-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-zinc-50\/10 {
    background-color: rgb(250 250 250 / 0.1);
  }

  .lg\:bg-zinc-50\/20 {
    background-color: rgb(250 250 250 / 0.2);
  }

  .lg\:bg-zinc-50\/30 {
    background-color: rgb(250 250 250 / 0.3);
  }

  .lg\:bg-zinc-50\/40 {
    background-color: rgb(250 250 250 / 0.4);
  }

  .lg\:bg-zinc-50\/5 {
    background-color: rgb(250 250 250 / 0.05);
  }

  .lg\:bg-zinc-50\/50 {
    background-color: rgb(250 250 250 / 0.5);
  }

  .lg\:bg-zinc-50\/60 {
    background-color: rgb(250 250 250 / 0.6);
  }

  .lg\:bg-zinc-50\/70 {
    background-color: rgb(250 250 250 / 0.7);
  }

  .lg\:bg-zinc-50\/80 {
    background-color: rgb(250 250 250 / 0.8);
  }

  .lg\:bg-zinc-50\/90 {
    background-color: rgb(250 250 250 / 0.9);
  }

  .lg\:bg-zinc-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(113 113 122 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-zinc-500\/10 {
    background-color: rgb(113 113 122 / 0.1);
  }

  .lg\:bg-zinc-500\/20 {
    background-color: rgb(113 113 122 / 0.2);
  }

  .lg\:bg-zinc-500\/30 {
    background-color: rgb(113 113 122 / 0.3);
  }

  .lg\:bg-zinc-500\/40 {
    background-color: rgb(113 113 122 / 0.4);
  }

  .lg\:bg-zinc-500\/5 {
    background-color: rgb(113 113 122 / 0.05);
  }

  .lg\:bg-zinc-500\/50 {
    background-color: rgb(113 113 122 / 0.5);
  }

  .lg\:bg-zinc-500\/60 {
    background-color: rgb(113 113 122 / 0.6);
  }

  .lg\:bg-zinc-500\/70 {
    background-color: rgb(113 113 122 / 0.7);
  }

  .lg\:bg-zinc-500\/80 {
    background-color: rgb(113 113 122 / 0.8);
  }

  .lg\:bg-zinc-500\/90 {
    background-color: rgb(113 113 122 / 0.9);
  }

  .lg\:bg-zinc-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(82 82 91 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-zinc-600\/10 {
    background-color: rgb(82 82 91 / 0.1);
  }

  .lg\:bg-zinc-600\/20 {
    background-color: rgb(82 82 91 / 0.2);
  }

  .lg\:bg-zinc-600\/30 {
    background-color: rgb(82 82 91 / 0.3);
  }

  .lg\:bg-zinc-600\/40 {
    background-color: rgb(82 82 91 / 0.4);
  }

  .lg\:bg-zinc-600\/5 {
    background-color: rgb(82 82 91 / 0.05);
  }

  .lg\:bg-zinc-600\/50 {
    background-color: rgb(82 82 91 / 0.5);
  }

  .lg\:bg-zinc-600\/60 {
    background-color: rgb(82 82 91 / 0.6);
  }

  .lg\:bg-zinc-600\/70 {
    background-color: rgb(82 82 91 / 0.7);
  }

  .lg\:bg-zinc-600\/80 {
    background-color: rgb(82 82 91 / 0.8);
  }

  .lg\:bg-zinc-600\/90 {
    background-color: rgb(82 82 91 / 0.9);
  }

  .lg\:bg-zinc-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(63 63 70 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-zinc-700\/10 {
    background-color: rgb(63 63 70 / 0.1);
  }

  .lg\:bg-zinc-700\/20 {
    background-color: rgb(63 63 70 / 0.2);
  }

  .lg\:bg-zinc-700\/30 {
    background-color: rgb(63 63 70 / 0.3);
  }

  .lg\:bg-zinc-700\/40 {
    background-color: rgb(63 63 70 / 0.4);
  }

  .lg\:bg-zinc-700\/5 {
    background-color: rgb(63 63 70 / 0.05);
  }

  .lg\:bg-zinc-700\/50 {
    background-color: rgb(63 63 70 / 0.5);
  }

  .lg\:bg-zinc-700\/60 {
    background-color: rgb(63 63 70 / 0.6);
  }

  .lg\:bg-zinc-700\/70 {
    background-color: rgb(63 63 70 / 0.7);
  }

  .lg\:bg-zinc-700\/80 {
    background-color: rgb(63 63 70 / 0.8);
  }

  .lg\:bg-zinc-700\/90 {
    background-color: rgb(63 63 70 / 0.9);
  }

  .lg\:bg-zinc-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(39 39 42 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-zinc-800\/10 {
    background-color: rgb(39 39 42 / 0.1);
  }

  .lg\:bg-zinc-800\/20 {
    background-color: rgb(39 39 42 / 0.2);
  }

  .lg\:bg-zinc-800\/30 {
    background-color: rgb(39 39 42 / 0.3);
  }

  .lg\:bg-zinc-800\/40 {
    background-color: rgb(39 39 42 / 0.4);
  }

  .lg\:bg-zinc-800\/5 {
    background-color: rgb(39 39 42 / 0.05);
  }

  .lg\:bg-zinc-800\/50 {
    background-color: rgb(39 39 42 / 0.5);
  }

  .lg\:bg-zinc-800\/60 {
    background-color: rgb(39 39 42 / 0.6);
  }

  .lg\:bg-zinc-800\/70 {
    background-color: rgb(39 39 42 / 0.7);
  }

  .lg\:bg-zinc-800\/80 {
    background-color: rgb(39 39 42 / 0.8);
  }

  .lg\:bg-zinc-800\/90 {
    background-color: rgb(39 39 42 / 0.9);
  }

  .lg\:bg-zinc-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(24 24 27 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-zinc-900\/10 {
    background-color: rgb(24 24 27 / 0.1);
  }

  .lg\:bg-zinc-900\/20 {
    background-color: rgb(24 24 27 / 0.2);
  }

  .lg\:bg-zinc-900\/30 {
    background-color: rgb(24 24 27 / 0.3);
  }

  .lg\:bg-zinc-900\/40 {
    background-color: rgb(24 24 27 / 0.4);
  }

  .lg\:bg-zinc-900\/5 {
    background-color: rgb(24 24 27 / 0.05);
  }

  .lg\:bg-zinc-900\/50 {
    background-color: rgb(24 24 27 / 0.5);
  }

  .lg\:bg-zinc-900\/60 {
    background-color: rgb(24 24 27 / 0.6);
  }

  .lg\:bg-zinc-900\/70 {
    background-color: rgb(24 24 27 / 0.7);
  }

  .lg\:bg-zinc-900\/80 {
    background-color: rgb(24 24 27 / 0.8);
  }

  .lg\:bg-zinc-900\/90 {
    background-color: rgb(24 24 27 / 0.9);
  }

  .lg\:bg-zinc-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(9 9 11 / var(--tw-bg-opacity, 1));
  }

  .lg\:bg-zinc-950\/10 {
    background-color: rgb(9 9 11 / 0.1);
  }

  .lg\:bg-zinc-950\/20 {
    background-color: rgb(9 9 11 / 0.2);
  }

  .lg\:bg-zinc-950\/30 {
    background-color: rgb(9 9 11 / 0.3);
  }

  .lg\:bg-zinc-950\/40 {
    background-color: rgb(9 9 11 / 0.4);
  }

  .lg\:bg-zinc-950\/5 {
    background-color: rgb(9 9 11 / 0.05);
  }

  .lg\:bg-zinc-950\/50 {
    background-color: rgb(9 9 11 / 0.5);
  }

  .lg\:bg-zinc-950\/60 {
    background-color: rgb(9 9 11 / 0.6);
  }

  .lg\:bg-zinc-950\/70 {
    background-color: rgb(9 9 11 / 0.7);
  }

  .lg\:bg-zinc-950\/80 {
    background-color: rgb(9 9 11 / 0.8);
  }

  .lg\:bg-zinc-950\/90 {
    background-color: rgb(9 9 11 / 0.9);
  }

  .lg\:p-0 {
    padding: 0px;
  }

  .lg\:p-1 {
    padding: 0.25rem;
  }

  .lg\:p-10 {
    padding: 2.5rem;
  }

  .lg\:p-11 {
    padding: 2.75rem;
  }

  .lg\:p-12 {
    padding: 3rem;
  }

  .lg\:p-14 {
    padding: 3.5rem;
  }

  .lg\:p-16 {
    padding: 4rem;
  }

  .lg\:p-2 {
    padding: 0.5rem;
  }

  .lg\:p-20 {
    padding: 5rem;
  }

  .lg\:p-24 {
    padding: 6rem;
  }

  .lg\:p-28 {
    padding: 7rem;
  }

  .lg\:p-3 {
    padding: 0.75rem;
  }

  .lg\:p-32 {
    padding: 8rem;
  }

  .lg\:p-36 {
    padding: 9rem;
  }

  .lg\:p-4 {
    padding: 1rem;
  }

  .lg\:p-40 {
    padding: 10rem;
  }

  .lg\:p-44 {
    padding: 11rem;
  }

  .lg\:p-48 {
    padding: 12rem;
  }

  .lg\:p-5 {
    padding: 1.25rem;
  }

  .lg\:p-52 {
    padding: 13rem;
  }

  .lg\:p-56 {
    padding: 14rem;
  }

  .lg\:p-6 {
    padding: 1.5rem;
  }

  .lg\:p-60 {
    padding: 15rem;
  }

  .lg\:p-64 {
    padding: 16rem;
  }

  .lg\:p-7 {
    padding: 1.75rem;
  }

  .lg\:p-72 {
    padding: 18rem;
  }

  .lg\:p-8 {
    padding: 2rem;
  }

  .lg\:p-80 {
    padding: 20rem;
  }

  .lg\:p-9 {
    padding: 2.25rem;
  }

  .lg\:p-96 {
    padding: 24rem;
  }

  .lg\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .lg\:px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .lg\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .lg\:px-11 {
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }

  .lg\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .lg\:px-14 {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .lg\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .lg\:px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .lg\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .lg\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .lg\:px-28 {
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .lg\:px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .lg\:px-32 {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .lg\:px-36 {
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .lg\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .lg\:px-40 {
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .lg\:px-44 {
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .lg\:px-48 {
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .lg\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .lg\:px-52 {
    padding-left: 13rem;
    padding-right: 13rem;
  }

  .lg\:px-56 {
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .lg\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .lg\:px-60 {
    padding-left: 15rem;
    padding-right: 15rem;
  }

  .lg\:px-64 {
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .lg\:px-7 {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .lg\:px-72 {
    padding-left: 18rem;
    padding-right: 18rem;
  }

  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:px-80 {
    padding-left: 20rem;
    padding-right: 20rem;
  }

  .lg\:px-9 {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .lg\:px-96 {
    padding-left: 24rem;
    padding-right: 24rem;
  }

  .lg\:py-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .lg\:py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .lg\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .lg\:py-11 {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .lg\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .lg\:py-14 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .lg\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .lg\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .lg\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .lg\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .lg\:py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .lg\:py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .lg\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .lg\:py-36 {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .lg\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .lg\:py-40 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .lg\:py-44 {
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .lg\:py-48 {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .lg\:py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .lg\:py-52 {
    padding-top: 13rem;
    padding-bottom: 13rem;
  }

  .lg\:py-56 {
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .lg\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .lg\:py-60 {
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .lg\:py-64 {
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .lg\:py-7 {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .lg\:py-72 {
    padding-top: 18rem;
    padding-bottom: 18rem;
  }

  .lg\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .lg\:py-80 {
    padding-top: 20rem;
    padding-bottom: 20rem;
  }

  .lg\:py-9 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .lg\:py-96 {
    padding-top: 24rem;
    padding-bottom: 24rem;
  }

  .lg\:pb-0 {
    padding-bottom: 0px;
  }

  .lg\:pb-1 {
    padding-bottom: 0.25rem;
  }

  .lg\:pb-10 {
    padding-bottom: 2.5rem;
  }

  .lg\:pb-11 {
    padding-bottom: 2.75rem;
  }

  .lg\:pb-12 {
    padding-bottom: 3rem;
  }

  .lg\:pb-14 {
    padding-bottom: 3.5rem;
  }

  .lg\:pb-16 {
    padding-bottom: 4rem;
  }

  .lg\:pb-2 {
    padding-bottom: 0.5rem;
  }

  .lg\:pb-20 {
    padding-bottom: 5rem;
  }

  .lg\:pb-24 {
    padding-bottom: 6rem;
  }

  .lg\:pb-28 {
    padding-bottom: 7rem;
  }

  .lg\:pb-3 {
    padding-bottom: 0.75rem;
  }

  .lg\:pb-32 {
    padding-bottom: 8rem;
  }

  .lg\:pb-36 {
    padding-bottom: 9rem;
  }

  .lg\:pb-4 {
    padding-bottom: 1rem;
  }

  .lg\:pb-40 {
    padding-bottom: 10rem;
  }

  .lg\:pb-44 {
    padding-bottom: 11rem;
  }

  .lg\:pb-48 {
    padding-bottom: 12rem;
  }

  .lg\:pb-5 {
    padding-bottom: 1.25rem;
  }

  .lg\:pb-52 {
    padding-bottom: 13rem;
  }

  .lg\:pb-56 {
    padding-bottom: 14rem;
  }

  .lg\:pb-6 {
    padding-bottom: 1.5rem;
  }

  .lg\:pb-60 {
    padding-bottom: 15rem;
  }

  .lg\:pb-64 {
    padding-bottom: 16rem;
  }

  .lg\:pb-7 {
    padding-bottom: 1.75rem;
  }

  .lg\:pb-72 {
    padding-bottom: 18rem;
  }

  .lg\:pb-8 {
    padding-bottom: 2rem;
  }

  .lg\:pb-80 {
    padding-bottom: 20rem;
  }

  .lg\:pb-9 {
    padding-bottom: 2.25rem;
  }

  .lg\:pb-96 {
    padding-bottom: 24rem;
  }

  .lg\:pl-0 {
    padding-left: 0px;
  }

  .lg\:pl-1 {
    padding-left: 0.25rem;
  }

  .lg\:pl-10 {
    padding-left: 2.5rem;
  }

  .lg\:pl-11 {
    padding-left: 2.75rem;
  }

  .lg\:pl-12 {
    padding-left: 3rem;
  }

  .lg\:pl-14 {
    padding-left: 3.5rem;
  }

  .lg\:pl-16 {
    padding-left: 4rem;
  }

  .lg\:pl-2 {
    padding-left: 0.5rem;
  }

  .lg\:pl-20 {
    padding-left: 5rem;
  }

  .lg\:pl-24 {
    padding-left: 6rem;
  }

  .lg\:pl-28 {
    padding-left: 7rem;
  }

  .lg\:pl-3 {
    padding-left: 0.75rem;
  }

  .lg\:pl-32 {
    padding-left: 8rem;
  }

  .lg\:pl-36 {
    padding-left: 9rem;
  }

  .lg\:pl-4 {
    padding-left: 1rem;
  }

  .lg\:pl-40 {
    padding-left: 10rem;
  }

  .lg\:pl-44 {
    padding-left: 11rem;
  }

  .lg\:pl-48 {
    padding-left: 12rem;
  }

  .lg\:pl-5 {
    padding-left: 1.25rem;
  }

  .lg\:pl-52 {
    padding-left: 13rem;
  }

  .lg\:pl-56 {
    padding-left: 14rem;
  }

  .lg\:pl-6 {
    padding-left: 1.5rem;
  }

  .lg\:pl-60 {
    padding-left: 15rem;
  }

  .lg\:pl-64 {
    padding-left: 16rem;
  }

  .lg\:pl-7 {
    padding-left: 1.75rem;
  }

  .lg\:pl-72 {
    padding-left: 18rem;
  }

  .lg\:pl-8 {
    padding-left: 2rem;
  }

  .lg\:pl-80 {
    padding-left: 20rem;
  }

  .lg\:pl-9 {
    padding-left: 2.25rem;
  }

  .lg\:pl-96 {
    padding-left: 24rem;
  }

  .lg\:pr-0 {
    padding-right: 0px;
  }

  .lg\:pr-1 {
    padding-right: 0.25rem;
  }

  .lg\:pr-10 {
    padding-right: 2.5rem;
  }

  .lg\:pr-11 {
    padding-right: 2.75rem;
  }

  .lg\:pr-12 {
    padding-right: 3rem;
  }

  .lg\:pr-14 {
    padding-right: 3.5rem;
  }

  .lg\:pr-16 {
    padding-right: 4rem;
  }

  .lg\:pr-2 {
    padding-right: 0.5rem;
  }

  .lg\:pr-20 {
    padding-right: 5rem;
  }

  .lg\:pr-24 {
    padding-right: 6rem;
  }

  .lg\:pr-28 {
    padding-right: 7rem;
  }

  .lg\:pr-3 {
    padding-right: 0.75rem;
  }

  .lg\:pr-32 {
    padding-right: 8rem;
  }

  .lg\:pr-36 {
    padding-right: 9rem;
  }

  .lg\:pr-4 {
    padding-right: 1rem;
  }

  .lg\:pr-40 {
    padding-right: 10rem;
  }

  .lg\:pr-44 {
    padding-right: 11rem;
  }

  .lg\:pr-48 {
    padding-right: 12rem;
  }

  .lg\:pr-5 {
    padding-right: 1.25rem;
  }

  .lg\:pr-52 {
    padding-right: 13rem;
  }

  .lg\:pr-56 {
    padding-right: 14rem;
  }

  .lg\:pr-6 {
    padding-right: 1.5rem;
  }

  .lg\:pr-60 {
    padding-right: 15rem;
  }

  .lg\:pr-64 {
    padding-right: 16rem;
  }

  .lg\:pr-7 {
    padding-right: 1.75rem;
  }

  .lg\:pr-72 {
    padding-right: 18rem;
  }

  .lg\:pr-8 {
    padding-right: 2rem;
  }

  .lg\:pr-80 {
    padding-right: 20rem;
  }

  .lg\:pr-9 {
    padding-right: 2.25rem;
  }

  .lg\:pr-96 {
    padding-right: 24rem;
  }

  .lg\:pt-0 {
    padding-top: 0px;
  }

  .lg\:pt-1 {
    padding-top: 0.25rem;
  }

  .lg\:pt-10 {
    padding-top: 2.5rem;
  }

  .lg\:pt-11 {
    padding-top: 2.75rem;
  }

  .lg\:pt-12 {
    padding-top: 3rem;
  }

  .lg\:pt-14 {
    padding-top: 3.5rem;
  }

  .lg\:pt-16 {
    padding-top: 4rem;
  }

  .lg\:pt-2 {
    padding-top: 0.5rem;
  }

  .lg\:pt-20 {
    padding-top: 5rem;
  }

  .lg\:pt-24 {
    padding-top: 6rem;
  }

  .lg\:pt-28 {
    padding-top: 7rem;
  }

  .lg\:pt-3 {
    padding-top: 0.75rem;
  }

  .lg\:pt-32 {
    padding-top: 8rem;
  }

  .lg\:pt-36 {
    padding-top: 9rem;
  }

  .lg\:pt-4 {
    padding-top: 1rem;
  }

  .lg\:pt-40 {
    padding-top: 10rem;
  }

  .lg\:pt-44 {
    padding-top: 11rem;
  }

  .lg\:pt-48 {
    padding-top: 12rem;
  }

  .lg\:pt-5 {
    padding-top: 1.25rem;
  }

  .lg\:pt-52 {
    padding-top: 13rem;
  }

  .lg\:pt-56 {
    padding-top: 14rem;
  }

  .lg\:pt-6 {
    padding-top: 1.5rem;
  }

  .lg\:pt-60 {
    padding-top: 15rem;
  }

  .lg\:pt-64 {
    padding-top: 16rem;
  }

  .lg\:pt-7 {
    padding-top: 1.75rem;
  }

  .lg\:pt-72 {
    padding-top: 18rem;
  }

  .lg\:pt-8 {
    padding-top: 2rem;
  }

  .lg\:pt-80 {
    padding-top: 20rem;
  }

  .lg\:pt-9 {
    padding-top: 2.25rem;
  }

  .lg\:pt-96 {
    padding-top: 24rem;
  }

  .lg\:font-arial {
    font-family: Arial, Helvetica, sans-serif;
  }

  .lg\:font-assistant {
    font-family: Assistant, sans-serif;
  }

  .lg\:font-dancingscript {
    font-family: Dancing Script, cursive;
  }

  .lg\:font-firacode {
    font-family: Fira Code, monospace;
  }

  .lg\:font-frankRuhlLibre {
    font-family: Frank Ruhl Libre, serif;
  }

  .lg\:font-jetbrains {
    font-family: JetBrains Mono, monospace;
  }

  .lg\:font-lato {
    font-family: Lato, sans-serif;
  }

  .lg\:font-lobster {
    font-family: Lobster, cursive;
  }

  .lg\:font-lobsterTwo {
    font-family: Lobster Two, cursive;
  }

  .lg\:font-lora {
    font-family: Lora, serif;
  }

  .lg\:font-montserrat {
    font-family: Montserrat, sans-serif;
  }

  .lg\:font-opensans {
    font-family: Open Sans, sans-serif;
  }

  .lg\:font-oswald {
    font-family: Oswald, sans-serif;
  }

  .lg\:font-pacifico {
    font-family: Pacifico, cursive;
  }

  .lg\:font-poppins {
    font-family: Poppins, sans-serif;
  }

  .lg\:font-raleway {
    font-family: Raleway, sans-serif;
  }

  .lg\:font-roboto {
    font-family: Roboto, sans-serif;
  }

  .lg\:text-lg {
    font-size: 1.125rem;
  }

  .lg\:text-amber-100 {
    --tw-text-opacity: 1;
    color: rgb(254 243 199 / var(--tw-text-opacity, 1));
  }

  .lg\:text-amber-200 {
    --tw-text-opacity: 1;
    color: rgb(253 230 138 / var(--tw-text-opacity, 1));
  }

  .lg\:text-amber-300 {
    --tw-text-opacity: 1;
    color: rgb(252 211 77 / var(--tw-text-opacity, 1));
  }

  .lg\:text-amber-400 {
    --tw-text-opacity: 1;
    color: rgb(251 191 36 / var(--tw-text-opacity, 1));
  }

  .lg\:text-amber-50 {
    --tw-text-opacity: 1;
    color: rgb(255 251 235 / var(--tw-text-opacity, 1));
  }

  .lg\:text-amber-500 {
    --tw-text-opacity: 1;
    color: rgb(245 158 11 / var(--tw-text-opacity, 1));
  }

  .lg\:text-amber-600 {
    --tw-text-opacity: 1;
    color: rgb(217 119 6 / var(--tw-text-opacity, 1));
  }

  .lg\:text-amber-700 {
    --tw-text-opacity: 1;
    color: rgb(180 83 9 / var(--tw-text-opacity, 1));
  }

  .lg\:text-amber-800 {
    --tw-text-opacity: 1;
    color: rgb(146 64 14 / var(--tw-text-opacity, 1));
  }

  .lg\:text-amber-900 {
    --tw-text-opacity: 1;
    color: rgb(120 53 15 / var(--tw-text-opacity, 1));
  }

  .lg\:text-amber-950 {
    --tw-text-opacity: 1;
    color: rgb(69 26 3 / var(--tw-text-opacity, 1));
  }

  .lg\:text-blue-100 {
    --tw-text-opacity: 1;
    color: rgb(219 234 254 / var(--tw-text-opacity, 1));
  }

  .lg\:text-blue-200 {
    --tw-text-opacity: 1;
    color: rgb(191 219 254 / var(--tw-text-opacity, 1));
  }

  .lg\:text-blue-300 {
    --tw-text-opacity: 1;
    color: rgb(147 197 253 / var(--tw-text-opacity, 1));
  }

  .lg\:text-blue-400 {
    --tw-text-opacity: 1;
    color: rgb(96 165 250 / var(--tw-text-opacity, 1));
  }

  .lg\:text-blue-50 {
    --tw-text-opacity: 1;
    color: rgb(239 246 255 / var(--tw-text-opacity, 1));
  }

  .lg\:text-blue-500 {
    --tw-text-opacity: 1;
    color: rgb(59 130 246 / var(--tw-text-opacity, 1));
  }

  .lg\:text-blue-600 {
    --tw-text-opacity: 1;
    color: rgb(37 99 235 / var(--tw-text-opacity, 1));
  }

  .lg\:text-blue-700 {
    --tw-text-opacity: 1;
    color: rgb(29 78 216 / var(--tw-text-opacity, 1));
  }

  .lg\:text-blue-800 {
    --tw-text-opacity: 1;
    color: rgb(30 64 175 / var(--tw-text-opacity, 1));
  }

  .lg\:text-blue-900 {
    --tw-text-opacity: 1;
    color: rgb(30 58 138 / var(--tw-text-opacity, 1));
  }

  .lg\:text-blue-950 {
    --tw-text-opacity: 1;
    color: rgb(23 37 84 / var(--tw-text-opacity, 1));
  }

  .lg\:text-cyan-100 {
    --tw-text-opacity: 1;
    color: rgb(207 250 254 / var(--tw-text-opacity, 1));
  }

  .lg\:text-cyan-200 {
    --tw-text-opacity: 1;
    color: rgb(165 243 252 / var(--tw-text-opacity, 1));
  }

  .lg\:text-cyan-300 {
    --tw-text-opacity: 1;
    color: rgb(103 232 249 / var(--tw-text-opacity, 1));
  }

  .lg\:text-cyan-400 {
    --tw-text-opacity: 1;
    color: rgb(34 211 238 / var(--tw-text-opacity, 1));
  }

  .lg\:text-cyan-50 {
    --tw-text-opacity: 1;
    color: rgb(236 254 255 / var(--tw-text-opacity, 1));
  }

  .lg\:text-cyan-500 {
    --tw-text-opacity: 1;
    color: rgb(6 182 212 / var(--tw-text-opacity, 1));
  }

  .lg\:text-cyan-600 {
    --tw-text-opacity: 1;
    color: rgb(8 145 178 / var(--tw-text-opacity, 1));
  }

  .lg\:text-cyan-700 {
    --tw-text-opacity: 1;
    color: rgb(14 116 144 / var(--tw-text-opacity, 1));
  }

  .lg\:text-cyan-800 {
    --tw-text-opacity: 1;
    color: rgb(21 94 117 / var(--tw-text-opacity, 1));
  }

  .lg\:text-cyan-900 {
    --tw-text-opacity: 1;
    color: rgb(22 78 99 / var(--tw-text-opacity, 1));
  }

  .lg\:text-cyan-950 {
    --tw-text-opacity: 1;
    color: rgb(8 51 68 / var(--tw-text-opacity, 1));
  }

  .lg\:text-emerald-100 {
    --tw-text-opacity: 1;
    color: rgb(209 250 229 / var(--tw-text-opacity, 1));
  }

  .lg\:text-emerald-200 {
    --tw-text-opacity: 1;
    color: rgb(167 243 208 / var(--tw-text-opacity, 1));
  }

  .lg\:text-emerald-300 {
    --tw-text-opacity: 1;
    color: rgb(110 231 183 / var(--tw-text-opacity, 1));
  }

  .lg\:text-emerald-400 {
    --tw-text-opacity: 1;
    color: rgb(52 211 153 / var(--tw-text-opacity, 1));
  }

  .lg\:text-emerald-50 {
    --tw-text-opacity: 1;
    color: rgb(236 253 245 / var(--tw-text-opacity, 1));
  }

  .lg\:text-emerald-500 {
    --tw-text-opacity: 1;
    color: rgb(16 185 129 / var(--tw-text-opacity, 1));
  }

  .lg\:text-emerald-600 {
    --tw-text-opacity: 1;
    color: rgb(5 150 105 / var(--tw-text-opacity, 1));
  }

  .lg\:text-emerald-700 {
    --tw-text-opacity: 1;
    color: rgb(4 120 87 / var(--tw-text-opacity, 1));
  }

  .lg\:text-emerald-800 {
    --tw-text-opacity: 1;
    color: rgb(6 95 70 / var(--tw-text-opacity, 1));
  }

  .lg\:text-emerald-900 {
    --tw-text-opacity: 1;
    color: rgb(6 78 59 / var(--tw-text-opacity, 1));
  }

  .lg\:text-emerald-950 {
    --tw-text-opacity: 1;
    color: rgb(2 44 34 / var(--tw-text-opacity, 1));
  }

  .lg\:text-fuchsia-100 {
    --tw-text-opacity: 1;
    color: rgb(250 232 255 / var(--tw-text-opacity, 1));
  }

  .lg\:text-fuchsia-200 {
    --tw-text-opacity: 1;
    color: rgb(245 208 254 / var(--tw-text-opacity, 1));
  }

  .lg\:text-fuchsia-300 {
    --tw-text-opacity: 1;
    color: rgb(240 171 252 / var(--tw-text-opacity, 1));
  }

  .lg\:text-fuchsia-400 {
    --tw-text-opacity: 1;
    color: rgb(232 121 249 / var(--tw-text-opacity, 1));
  }

  .lg\:text-fuchsia-50 {
    --tw-text-opacity: 1;
    color: rgb(253 244 255 / var(--tw-text-opacity, 1));
  }

  .lg\:text-fuchsia-500 {
    --tw-text-opacity: 1;
    color: rgb(217 70 239 / var(--tw-text-opacity, 1));
  }

  .lg\:text-fuchsia-600 {
    --tw-text-opacity: 1;
    color: rgb(192 38 211 / var(--tw-text-opacity, 1));
  }

  .lg\:text-fuchsia-700 {
    --tw-text-opacity: 1;
    color: rgb(162 28 175 / var(--tw-text-opacity, 1));
  }

  .lg\:text-fuchsia-800 {
    --tw-text-opacity: 1;
    color: rgb(134 25 143 / var(--tw-text-opacity, 1));
  }

  .lg\:text-fuchsia-900 {
    --tw-text-opacity: 1;
    color: rgb(112 26 117 / var(--tw-text-opacity, 1));
  }

  .lg\:text-fuchsia-950 {
    --tw-text-opacity: 1;
    color: rgb(74 4 78 / var(--tw-text-opacity, 1));
  }

  .lg\:text-gray-100 {
    --tw-text-opacity: 1;
    color: rgb(243 244 246 / var(--tw-text-opacity, 1));
  }

  .lg\:text-gray-200 {
    --tw-text-opacity: 1;
    color: rgb(229 231 235 / var(--tw-text-opacity, 1));
  }

  .lg\:text-gray-300 {
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity, 1));
  }

  .lg\:text-gray-400 {
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
  }

  .lg\:text-gray-50 {
    --tw-text-opacity: 1;
    color: rgb(249 250 251 / var(--tw-text-opacity, 1));
  }

  .lg\:text-gray-500 {
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }

  .lg\:text-gray-600 {
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }

  .lg\:text-gray-700 {
    --tw-text-opacity: 1;
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
  }

  .lg\:text-gray-800 {
    --tw-text-opacity: 1;
    color: rgb(31 41 55 / var(--tw-text-opacity, 1));
  }

  .lg\:text-gray-900 {
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }

  .lg\:text-gray-950 {
    --tw-text-opacity: 1;
    color: rgb(3 7 18 / var(--tw-text-opacity, 1));
  }

  .lg\:text-green-100 {
    --tw-text-opacity: 1;
    color: rgb(220 252 231 / var(--tw-text-opacity, 1));
  }

  .lg\:text-green-200 {
    --tw-text-opacity: 1;
    color: rgb(187 247 208 / var(--tw-text-opacity, 1));
  }

  .lg\:text-green-300 {
    --tw-text-opacity: 1;
    color: rgb(134 239 172 / var(--tw-text-opacity, 1));
  }

  .lg\:text-green-400 {
    --tw-text-opacity: 1;
    color: rgb(74 222 128 / var(--tw-text-opacity, 1));
  }

  .lg\:text-green-50 {
    --tw-text-opacity: 1;
    color: rgb(240 253 244 / var(--tw-text-opacity, 1));
  }

  .lg\:text-green-500 {
    --tw-text-opacity: 1;
    color: rgb(34 197 94 / var(--tw-text-opacity, 1));
  }

  .lg\:text-green-600 {
    --tw-text-opacity: 1;
    color: rgb(22 163 74 / var(--tw-text-opacity, 1));
  }

  .lg\:text-green-700 {
    --tw-text-opacity: 1;
    color: rgb(21 128 61 / var(--tw-text-opacity, 1));
  }

  .lg\:text-green-800 {
    --tw-text-opacity: 1;
    color: rgb(22 101 52 / var(--tw-text-opacity, 1));
  }

  .lg\:text-green-900 {
    --tw-text-opacity: 1;
    color: rgb(20 83 45 / var(--tw-text-opacity, 1));
  }

  .lg\:text-green-950 {
    --tw-text-opacity: 1;
    color: rgb(5 46 22 / var(--tw-text-opacity, 1));
  }

  .lg\:text-indigo-100 {
    --tw-text-opacity: 1;
    color: rgb(224 231 255 / var(--tw-text-opacity, 1));
  }

  .lg\:text-indigo-200 {
    --tw-text-opacity: 1;
    color: rgb(199 210 254 / var(--tw-text-opacity, 1));
  }

  .lg\:text-indigo-300 {
    --tw-text-opacity: 1;
    color: rgb(165 180 252 / var(--tw-text-opacity, 1));
  }

  .lg\:text-indigo-400 {
    --tw-text-opacity: 1;
    color: rgb(129 140 248 / var(--tw-text-opacity, 1));
  }

  .lg\:text-indigo-50 {
    --tw-text-opacity: 1;
    color: rgb(238 242 255 / var(--tw-text-opacity, 1));
  }

  .lg\:text-indigo-500 {
    --tw-text-opacity: 1;
    color: rgb(99 102 241 / var(--tw-text-opacity, 1));
  }

  .lg\:text-indigo-600 {
    --tw-text-opacity: 1;
    color: rgb(79 70 229 / var(--tw-text-opacity, 1));
  }

  .lg\:text-indigo-700 {
    --tw-text-opacity: 1;
    color: rgb(67 56 202 / var(--tw-text-opacity, 1));
  }

  .lg\:text-indigo-800 {
    --tw-text-opacity: 1;
    color: rgb(55 48 163 / var(--tw-text-opacity, 1));
  }

  .lg\:text-indigo-900 {
    --tw-text-opacity: 1;
    color: rgb(49 46 129 / var(--tw-text-opacity, 1));
  }

  .lg\:text-indigo-950 {
    --tw-text-opacity: 1;
    color: rgb(30 27 75 / var(--tw-text-opacity, 1));
  }

  .lg\:text-lime-100 {
    --tw-text-opacity: 1;
    color: rgb(236 252 203 / var(--tw-text-opacity, 1));
  }

  .lg\:text-lime-200 {
    --tw-text-opacity: 1;
    color: rgb(217 249 157 / var(--tw-text-opacity, 1));
  }

  .lg\:text-lime-300 {
    --tw-text-opacity: 1;
    color: rgb(190 242 100 / var(--tw-text-opacity, 1));
  }

  .lg\:text-lime-400 {
    --tw-text-opacity: 1;
    color: rgb(163 230 53 / var(--tw-text-opacity, 1));
  }

  .lg\:text-lime-50 {
    --tw-text-opacity: 1;
    color: rgb(247 254 231 / var(--tw-text-opacity, 1));
  }

  .lg\:text-lime-500 {
    --tw-text-opacity: 1;
    color: rgb(132 204 22 / var(--tw-text-opacity, 1));
  }

  .lg\:text-lime-600 {
    --tw-text-opacity: 1;
    color: rgb(101 163 13 / var(--tw-text-opacity, 1));
  }

  .lg\:text-lime-700 {
    --tw-text-opacity: 1;
    color: rgb(77 124 15 / var(--tw-text-opacity, 1));
  }

  .lg\:text-lime-800 {
    --tw-text-opacity: 1;
    color: rgb(63 98 18 / var(--tw-text-opacity, 1));
  }

  .lg\:text-lime-900 {
    --tw-text-opacity: 1;
    color: rgb(54 83 20 / var(--tw-text-opacity, 1));
  }

  .lg\:text-lime-950 {
    --tw-text-opacity: 1;
    color: rgb(26 46 5 / var(--tw-text-opacity, 1));
  }

  .lg\:text-neutral-100 {
    --tw-text-opacity: 1;
    color: rgb(245 245 245 / var(--tw-text-opacity, 1));
  }

  .lg\:text-neutral-200 {
    --tw-text-opacity: 1;
    color: rgb(229 229 229 / var(--tw-text-opacity, 1));
  }

  .lg\:text-neutral-300 {
    --tw-text-opacity: 1;
    color: rgb(212 212 212 / var(--tw-text-opacity, 1));
  }

  .lg\:text-neutral-400 {
    --tw-text-opacity: 1;
    color: rgb(163 163 163 / var(--tw-text-opacity, 1));
  }

  .lg\:text-neutral-50 {
    --tw-text-opacity: 1;
    color: rgb(250 250 250 / var(--tw-text-opacity, 1));
  }

  .lg\:text-neutral-500 {
    --tw-text-opacity: 1;
    color: rgb(115 115 115 / var(--tw-text-opacity, 1));
  }

  .lg\:text-neutral-600 {
    --tw-text-opacity: 1;
    color: rgb(82 82 82 / var(--tw-text-opacity, 1));
  }

  .lg\:text-neutral-700 {
    --tw-text-opacity: 1;
    color: rgb(64 64 64 / var(--tw-text-opacity, 1));
  }

  .lg\:text-neutral-800 {
    --tw-text-opacity: 1;
    color: rgb(38 38 38 / var(--tw-text-opacity, 1));
  }

  .lg\:text-neutral-900 {
    --tw-text-opacity: 1;
    color: rgb(23 23 23 / var(--tw-text-opacity, 1));
  }

  .lg\:text-neutral-950 {
    --tw-text-opacity: 1;
    color: rgb(10 10 10 / var(--tw-text-opacity, 1));
  }

  .lg\:text-orange-100 {
    --tw-text-opacity: 1;
    color: rgb(255 237 213 / var(--tw-text-opacity, 1));
  }

  .lg\:text-orange-200 {
    --tw-text-opacity: 1;
    color: rgb(254 215 170 / var(--tw-text-opacity, 1));
  }

  .lg\:text-orange-300 {
    --tw-text-opacity: 1;
    color: rgb(253 186 116 / var(--tw-text-opacity, 1));
  }

  .lg\:text-orange-400 {
    --tw-text-opacity: 1;
    color: rgb(251 146 60 / var(--tw-text-opacity, 1));
  }

  .lg\:text-orange-50 {
    --tw-text-opacity: 1;
    color: rgb(255 247 237 / var(--tw-text-opacity, 1));
  }

  .lg\:text-orange-500 {
    --tw-text-opacity: 1;
    color: rgb(249 115 22 / var(--tw-text-opacity, 1));
  }

  .lg\:text-orange-600 {
    --tw-text-opacity: 1;
    color: rgb(234 88 12 / var(--tw-text-opacity, 1));
  }

  .lg\:text-orange-700 {
    --tw-text-opacity: 1;
    color: rgb(194 65 12 / var(--tw-text-opacity, 1));
  }

  .lg\:text-orange-800 {
    --tw-text-opacity: 1;
    color: rgb(154 52 18 / var(--tw-text-opacity, 1));
  }

  .lg\:text-orange-900 {
    --tw-text-opacity: 1;
    color: rgb(124 45 18 / var(--tw-text-opacity, 1));
  }

  .lg\:text-orange-950 {
    --tw-text-opacity: 1;
    color: rgb(67 20 7 / var(--tw-text-opacity, 1));
  }

  .lg\:text-pink-100 {
    --tw-text-opacity: 1;
    color: rgb(252 231 243 / var(--tw-text-opacity, 1));
  }

  .lg\:text-pink-200 {
    --tw-text-opacity: 1;
    color: rgb(251 207 232 / var(--tw-text-opacity, 1));
  }

  .lg\:text-pink-300 {
    --tw-text-opacity: 1;
    color: rgb(249 168 212 / var(--tw-text-opacity, 1));
  }

  .lg\:text-pink-400 {
    --tw-text-opacity: 1;
    color: rgb(244 114 182 / var(--tw-text-opacity, 1));
  }

  .lg\:text-pink-50 {
    --tw-text-opacity: 1;
    color: rgb(253 242 248 / var(--tw-text-opacity, 1));
  }

  .lg\:text-pink-500 {
    --tw-text-opacity: 1;
    color: rgb(236 72 153 / var(--tw-text-opacity, 1));
  }

  .lg\:text-pink-600 {
    --tw-text-opacity: 1;
    color: rgb(219 39 119 / var(--tw-text-opacity, 1));
  }

  .lg\:text-pink-700 {
    --tw-text-opacity: 1;
    color: rgb(190 24 93 / var(--tw-text-opacity, 1));
  }

  .lg\:text-pink-800 {
    --tw-text-opacity: 1;
    color: rgb(157 23 77 / var(--tw-text-opacity, 1));
  }

  .lg\:text-pink-900 {
    --tw-text-opacity: 1;
    color: rgb(131 24 67 / var(--tw-text-opacity, 1));
  }

  .lg\:text-pink-950 {
    --tw-text-opacity: 1;
    color: rgb(80 7 36 / var(--tw-text-opacity, 1));
  }

  .lg\:text-purple-100 {
    --tw-text-opacity: 1;
    color: rgb(243 232 255 / var(--tw-text-opacity, 1));
  }

  .lg\:text-purple-200 {
    --tw-text-opacity: 1;
    color: rgb(233 213 255 / var(--tw-text-opacity, 1));
  }

  .lg\:text-purple-300 {
    --tw-text-opacity: 1;
    color: rgb(216 180 254 / var(--tw-text-opacity, 1));
  }

  .lg\:text-purple-400 {
    --tw-text-opacity: 1;
    color: rgb(192 132 252 / var(--tw-text-opacity, 1));
  }

  .lg\:text-purple-50 {
    --tw-text-opacity: 1;
    color: rgb(250 245 255 / var(--tw-text-opacity, 1));
  }

  .lg\:text-purple-500 {
    --tw-text-opacity: 1;
    color: rgb(168 85 247 / var(--tw-text-opacity, 1));
  }

  .lg\:text-purple-600 {
    --tw-text-opacity: 1;
    color: rgb(147 51 234 / var(--tw-text-opacity, 1));
  }

  .lg\:text-purple-700 {
    --tw-text-opacity: 1;
    color: rgb(126 34 206 / var(--tw-text-opacity, 1));
  }

  .lg\:text-purple-800 {
    --tw-text-opacity: 1;
    color: rgb(107 33 168 / var(--tw-text-opacity, 1));
  }

  .lg\:text-purple-900 {
    --tw-text-opacity: 1;
    color: rgb(88 28 135 / var(--tw-text-opacity, 1));
  }

  .lg\:text-purple-950 {
    --tw-text-opacity: 1;
    color: rgb(59 7 100 / var(--tw-text-opacity, 1));
  }

  .lg\:text-red-100 {
    --tw-text-opacity: 1;
    color: rgb(254 226 226 / var(--tw-text-opacity, 1));
  }

  .lg\:text-red-200 {
    --tw-text-opacity: 1;
    color: rgb(254 202 202 / var(--tw-text-opacity, 1));
  }

  .lg\:text-red-300 {
    --tw-text-opacity: 1;
    color: rgb(252 165 165 / var(--tw-text-opacity, 1));
  }

  .lg\:text-red-400 {
    --tw-text-opacity: 1;
    color: rgb(248 113 113 / var(--tw-text-opacity, 1));
  }

  .lg\:text-red-50 {
    --tw-text-opacity: 1;
    color: rgb(254 242 242 / var(--tw-text-opacity, 1));
  }

  .lg\:text-red-500 {
    --tw-text-opacity: 1;
    color: rgb(239 68 68 / var(--tw-text-opacity, 1));
  }

  .lg\:text-red-600 {
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity, 1));
  }

  .lg\:text-red-700 {
    --tw-text-opacity: 1;
    color: rgb(185 28 28 / var(--tw-text-opacity, 1));
  }

  .lg\:text-red-800 {
    --tw-text-opacity: 1;
    color: rgb(153 27 27 / var(--tw-text-opacity, 1));
  }

  .lg\:text-red-900 {
    --tw-text-opacity: 1;
    color: rgb(127 29 29 / var(--tw-text-opacity, 1));
  }

  .lg\:text-red-950 {
    --tw-text-opacity: 1;
    color: rgb(69 10 10 / var(--tw-text-opacity, 1));
  }

  .lg\:text-rose-100 {
    --tw-text-opacity: 1;
    color: rgb(255 228 230 / var(--tw-text-opacity, 1));
  }

  .lg\:text-rose-200 {
    --tw-text-opacity: 1;
    color: rgb(254 205 211 / var(--tw-text-opacity, 1));
  }

  .lg\:text-rose-300 {
    --tw-text-opacity: 1;
    color: rgb(253 164 175 / var(--tw-text-opacity, 1));
  }

  .lg\:text-rose-400 {
    --tw-text-opacity: 1;
    color: rgb(251 113 133 / var(--tw-text-opacity, 1));
  }

  .lg\:text-rose-50 {
    --tw-text-opacity: 1;
    color: rgb(255 241 242 / var(--tw-text-opacity, 1));
  }

  .lg\:text-rose-500 {
    --tw-text-opacity: 1;
    color: rgb(244 63 94 / var(--tw-text-opacity, 1));
  }

  .lg\:text-rose-600 {
    --tw-text-opacity: 1;
    color: rgb(225 29 72 / var(--tw-text-opacity, 1));
  }

  .lg\:text-rose-700 {
    --tw-text-opacity: 1;
    color: rgb(190 18 60 / var(--tw-text-opacity, 1));
  }

  .lg\:text-rose-800 {
    --tw-text-opacity: 1;
    color: rgb(159 18 57 / var(--tw-text-opacity, 1));
  }

  .lg\:text-rose-900 {
    --tw-text-opacity: 1;
    color: rgb(136 19 55 / var(--tw-text-opacity, 1));
  }

  .lg\:text-rose-950 {
    --tw-text-opacity: 1;
    color: rgb(76 5 25 / var(--tw-text-opacity, 1));
  }

  .lg\:text-sky-100 {
    --tw-text-opacity: 1;
    color: rgb(224 242 254 / var(--tw-text-opacity, 1));
  }

  .lg\:text-sky-200 {
    --tw-text-opacity: 1;
    color: rgb(186 230 253 / var(--tw-text-opacity, 1));
  }

  .lg\:text-sky-300 {
    --tw-text-opacity: 1;
    color: rgb(125 211 252 / var(--tw-text-opacity, 1));
  }

  .lg\:text-sky-400 {
    --tw-text-opacity: 1;
    color: rgb(56 189 248 / var(--tw-text-opacity, 1));
  }

  .lg\:text-sky-50 {
    --tw-text-opacity: 1;
    color: rgb(240 249 255 / var(--tw-text-opacity, 1));
  }

  .lg\:text-sky-500 {
    --tw-text-opacity: 1;
    color: rgb(14 165 233 / var(--tw-text-opacity, 1));
  }

  .lg\:text-sky-600 {
    --tw-text-opacity: 1;
    color: rgb(2 132 199 / var(--tw-text-opacity, 1));
  }

  .lg\:text-sky-700 {
    --tw-text-opacity: 1;
    color: rgb(3 105 161 / var(--tw-text-opacity, 1));
  }

  .lg\:text-sky-800 {
    --tw-text-opacity: 1;
    color: rgb(7 89 133 / var(--tw-text-opacity, 1));
  }

  .lg\:text-sky-900 {
    --tw-text-opacity: 1;
    color: rgb(12 74 110 / var(--tw-text-opacity, 1));
  }

  .lg\:text-sky-950 {
    --tw-text-opacity: 1;
    color: rgb(8 47 73 / var(--tw-text-opacity, 1));
  }

  .lg\:text-slate-100 {
    --tw-text-opacity: 1;
    color: rgb(241 245 249 / var(--tw-text-opacity, 1));
  }

  .lg\:text-slate-200 {
    --tw-text-opacity: 1;
    color: rgb(226 232 240 / var(--tw-text-opacity, 1));
  }

  .lg\:text-slate-300 {
    --tw-text-opacity: 1;
    color: rgb(203 213 225 / var(--tw-text-opacity, 1));
  }

  .lg\:text-slate-400 {
    --tw-text-opacity: 1;
    color: rgb(148 163 184 / var(--tw-text-opacity, 1));
  }

  .lg\:text-slate-50 {
    --tw-text-opacity: 1;
    color: rgb(248 250 252 / var(--tw-text-opacity, 1));
  }

  .lg\:text-slate-500 {
    --tw-text-opacity: 1;
    color: rgb(100 116 139 / var(--tw-text-opacity, 1));
  }

  .lg\:text-slate-600 {
    --tw-text-opacity: 1;
    color: rgb(71 85 105 / var(--tw-text-opacity, 1));
  }

  .lg\:text-slate-700 {
    --tw-text-opacity: 1;
    color: rgb(51 65 85 / var(--tw-text-opacity, 1));
  }

  .lg\:text-slate-800 {
    --tw-text-opacity: 1;
    color: rgb(30 41 59 / var(--tw-text-opacity, 1));
  }

  .lg\:text-slate-900 {
    --tw-text-opacity: 1;
    color: rgb(15 23 42 / var(--tw-text-opacity, 1));
  }

  .lg\:text-slate-950 {
    --tw-text-opacity: 1;
    color: rgb(2 6 23 / var(--tw-text-opacity, 1));
  }

  .lg\:text-stone-100 {
    --tw-text-opacity: 1;
    color: rgb(245 245 244 / var(--tw-text-opacity, 1));
  }

  .lg\:text-stone-200 {
    --tw-text-opacity: 1;
    color: rgb(231 229 228 / var(--tw-text-opacity, 1));
  }

  .lg\:text-stone-300 {
    --tw-text-opacity: 1;
    color: rgb(214 211 209 / var(--tw-text-opacity, 1));
  }

  .lg\:text-stone-400 {
    --tw-text-opacity: 1;
    color: rgb(168 162 158 / var(--tw-text-opacity, 1));
  }

  .lg\:text-stone-50 {
    --tw-text-opacity: 1;
    color: rgb(250 250 249 / var(--tw-text-opacity, 1));
  }

  .lg\:text-stone-500 {
    --tw-text-opacity: 1;
    color: rgb(120 113 108 / var(--tw-text-opacity, 1));
  }

  .lg\:text-stone-600 {
    --tw-text-opacity: 1;
    color: rgb(87 83 78 / var(--tw-text-opacity, 1));
  }

  .lg\:text-stone-700 {
    --tw-text-opacity: 1;
    color: rgb(68 64 60 / var(--tw-text-opacity, 1));
  }

  .lg\:text-stone-800 {
    --tw-text-opacity: 1;
    color: rgb(41 37 36 / var(--tw-text-opacity, 1));
  }

  .lg\:text-stone-900 {
    --tw-text-opacity: 1;
    color: rgb(28 25 23 / var(--tw-text-opacity, 1));
  }

  .lg\:text-stone-950 {
    --tw-text-opacity: 1;
    color: rgb(12 10 9 / var(--tw-text-opacity, 1));
  }

  .lg\:text-teal-100 {
    --tw-text-opacity: 1;
    color: rgb(204 251 241 / var(--tw-text-opacity, 1));
  }

  .lg\:text-teal-200 {
    --tw-text-opacity: 1;
    color: rgb(153 246 228 / var(--tw-text-opacity, 1));
  }

  .lg\:text-teal-300 {
    --tw-text-opacity: 1;
    color: rgb(94 234 212 / var(--tw-text-opacity, 1));
  }

  .lg\:text-teal-400 {
    --tw-text-opacity: 1;
    color: rgb(45 212 191 / var(--tw-text-opacity, 1));
  }

  .lg\:text-teal-50 {
    --tw-text-opacity: 1;
    color: rgb(240 253 250 / var(--tw-text-opacity, 1));
  }

  .lg\:text-teal-500 {
    --tw-text-opacity: 1;
    color: rgb(20 184 166 / var(--tw-text-opacity, 1));
  }

  .lg\:text-teal-600 {
    --tw-text-opacity: 1;
    color: rgb(13 148 136 / var(--tw-text-opacity, 1));
  }

  .lg\:text-teal-700 {
    --tw-text-opacity: 1;
    color: rgb(15 118 110 / var(--tw-text-opacity, 1));
  }

  .lg\:text-teal-800 {
    --tw-text-opacity: 1;
    color: rgb(17 94 89 / var(--tw-text-opacity, 1));
  }

  .lg\:text-teal-900 {
    --tw-text-opacity: 1;
    color: rgb(19 78 74 / var(--tw-text-opacity, 1));
  }

  .lg\:text-teal-950 {
    --tw-text-opacity: 1;
    color: rgb(4 47 46 / var(--tw-text-opacity, 1));
  }

  .lg\:text-violet-100 {
    --tw-text-opacity: 1;
    color: rgb(237 233 254 / var(--tw-text-opacity, 1));
  }

  .lg\:text-violet-200 {
    --tw-text-opacity: 1;
    color: rgb(221 214 254 / var(--tw-text-opacity, 1));
  }

  .lg\:text-violet-300 {
    --tw-text-opacity: 1;
    color: rgb(196 181 253 / var(--tw-text-opacity, 1));
  }

  .lg\:text-violet-400 {
    --tw-text-opacity: 1;
    color: rgb(167 139 250 / var(--tw-text-opacity, 1));
  }

  .lg\:text-violet-50 {
    --tw-text-opacity: 1;
    color: rgb(245 243 255 / var(--tw-text-opacity, 1));
  }

  .lg\:text-violet-500 {
    --tw-text-opacity: 1;
    color: rgb(139 92 246 / var(--tw-text-opacity, 1));
  }

  .lg\:text-violet-600 {
    --tw-text-opacity: 1;
    color: rgb(124 58 237 / var(--tw-text-opacity, 1));
  }

  .lg\:text-violet-700 {
    --tw-text-opacity: 1;
    color: rgb(109 40 217 / var(--tw-text-opacity, 1));
  }

  .lg\:text-violet-800 {
    --tw-text-opacity: 1;
    color: rgb(91 33 182 / var(--tw-text-opacity, 1));
  }

  .lg\:text-violet-900 {
    --tw-text-opacity: 1;
    color: rgb(76 29 149 / var(--tw-text-opacity, 1));
  }

  .lg\:text-violet-950 {
    --tw-text-opacity: 1;
    color: rgb(46 16 101 / var(--tw-text-opacity, 1));
  }

  .lg\:text-yellow-100 {
    --tw-text-opacity: 1;
    color: rgb(254 249 195 / var(--tw-text-opacity, 1));
  }

  .lg\:text-yellow-200 {
    --tw-text-opacity: 1;
    color: rgb(254 240 138 / var(--tw-text-opacity, 1));
  }

  .lg\:text-yellow-300 {
    --tw-text-opacity: 1;
    color: rgb(253 224 71 / var(--tw-text-opacity, 1));
  }

  .lg\:text-yellow-400 {
    --tw-text-opacity: 1;
    color: rgb(250 204 21 / var(--tw-text-opacity, 1));
  }

  .lg\:text-yellow-50 {
    --tw-text-opacity: 1;
    color: rgb(254 252 232 / var(--tw-text-opacity, 1));
  }

  .lg\:text-yellow-500 {
    --tw-text-opacity: 1;
    color: rgb(234 179 8 / var(--tw-text-opacity, 1));
  }

  .lg\:text-yellow-600 {
    --tw-text-opacity: 1;
    color: rgb(202 138 4 / var(--tw-text-opacity, 1));
  }

  .lg\:text-yellow-700 {
    --tw-text-opacity: 1;
    color: rgb(161 98 7 / var(--tw-text-opacity, 1));
  }

  .lg\:text-yellow-800 {
    --tw-text-opacity: 1;
    color: rgb(133 77 14 / var(--tw-text-opacity, 1));
  }

  .lg\:text-yellow-900 {
    --tw-text-opacity: 1;
    color: rgb(113 63 18 / var(--tw-text-opacity, 1));
  }

  .lg\:text-yellow-950 {
    --tw-text-opacity: 1;
    color: rgb(66 32 6 / var(--tw-text-opacity, 1));
  }

  .lg\:text-zinc-100 {
    --tw-text-opacity: 1;
    color: rgb(244 244 245 / var(--tw-text-opacity, 1));
  }

  .lg\:text-zinc-200 {
    --tw-text-opacity: 1;
    color: rgb(228 228 231 / var(--tw-text-opacity, 1));
  }

  .lg\:text-zinc-300 {
    --tw-text-opacity: 1;
    color: rgb(212 212 216 / var(--tw-text-opacity, 1));
  }

  .lg\:text-zinc-400 {
    --tw-text-opacity: 1;
    color: rgb(161 161 170 / var(--tw-text-opacity, 1));
  }

  .lg\:text-zinc-50 {
    --tw-text-opacity: 1;
    color: rgb(250 250 250 / var(--tw-text-opacity, 1));
  }

  .lg\:text-zinc-500 {
    --tw-text-opacity: 1;
    color: rgb(113 113 122 / var(--tw-text-opacity, 1));
  }

  .lg\:text-zinc-600 {
    --tw-text-opacity: 1;
    color: rgb(82 82 91 / var(--tw-text-opacity, 1));
  }

  .lg\:text-zinc-700 {
    --tw-text-opacity: 1;
    color: rgb(63 63 70 / var(--tw-text-opacity, 1));
  }

  .lg\:text-zinc-800 {
    --tw-text-opacity: 1;
    color: rgb(39 39 42 / var(--tw-text-opacity, 1));
  }

  .lg\:text-zinc-900 {
    --tw-text-opacity: 1;
    color: rgb(24 24 27 / var(--tw-text-opacity, 1));
  }

  .lg\:text-zinc-950 {
    --tw-text-opacity: 1;
    color: rgb(9 9 11 / var(--tw-text-opacity, 1));
  }

  .lg\:shadow-lg {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .lg\:shadow-md {
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .lg\:shadow-sm {
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .lg\:shadow-amber-100 {
    --tw-shadow-color: #fef3c7;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-100\/10 {
    --tw-shadow-color: rgb(254 243 199 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-100\/20 {
    --tw-shadow-color: rgb(254 243 199 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-100\/30 {
    --tw-shadow-color: rgb(254 243 199 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-100\/40 {
    --tw-shadow-color: rgb(254 243 199 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-100\/5 {
    --tw-shadow-color: rgb(254 243 199 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-100\/50 {
    --tw-shadow-color: rgb(254 243 199 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-100\/60 {
    --tw-shadow-color: rgb(254 243 199 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-100\/70 {
    --tw-shadow-color: rgb(254 243 199 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-100\/80 {
    --tw-shadow-color: rgb(254 243 199 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-100\/90 {
    --tw-shadow-color: rgb(254 243 199 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-200 {
    --tw-shadow-color: #fde68a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-200\/10 {
    --tw-shadow-color: rgb(253 230 138 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-200\/20 {
    --tw-shadow-color: rgb(253 230 138 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-200\/30 {
    --tw-shadow-color: rgb(253 230 138 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-200\/40 {
    --tw-shadow-color: rgb(253 230 138 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-200\/5 {
    --tw-shadow-color: rgb(253 230 138 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-200\/50 {
    --tw-shadow-color: rgb(253 230 138 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-200\/60 {
    --tw-shadow-color: rgb(253 230 138 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-200\/70 {
    --tw-shadow-color: rgb(253 230 138 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-200\/80 {
    --tw-shadow-color: rgb(253 230 138 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-200\/90 {
    --tw-shadow-color: rgb(253 230 138 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-300 {
    --tw-shadow-color: #fcd34d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-300\/10 {
    --tw-shadow-color: rgb(252 211 77 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-300\/20 {
    --tw-shadow-color: rgb(252 211 77 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-300\/30 {
    --tw-shadow-color: rgb(252 211 77 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-300\/40 {
    --tw-shadow-color: rgb(252 211 77 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-300\/5 {
    --tw-shadow-color: rgb(252 211 77 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-300\/50 {
    --tw-shadow-color: rgb(252 211 77 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-300\/60 {
    --tw-shadow-color: rgb(252 211 77 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-300\/70 {
    --tw-shadow-color: rgb(252 211 77 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-300\/80 {
    --tw-shadow-color: rgb(252 211 77 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-300\/90 {
    --tw-shadow-color: rgb(252 211 77 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-400 {
    --tw-shadow-color: #fbbf24;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-400\/10 {
    --tw-shadow-color: rgb(251 191 36 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-400\/20 {
    --tw-shadow-color: rgb(251 191 36 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-400\/30 {
    --tw-shadow-color: rgb(251 191 36 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-400\/40 {
    --tw-shadow-color: rgb(251 191 36 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-400\/5 {
    --tw-shadow-color: rgb(251 191 36 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-400\/50 {
    --tw-shadow-color: rgb(251 191 36 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-400\/60 {
    --tw-shadow-color: rgb(251 191 36 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-400\/70 {
    --tw-shadow-color: rgb(251 191 36 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-400\/80 {
    --tw-shadow-color: rgb(251 191 36 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-400\/90 {
    --tw-shadow-color: rgb(251 191 36 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-50 {
    --tw-shadow-color: #fffbeb;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-50\/10 {
    --tw-shadow-color: rgb(255 251 235 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-50\/20 {
    --tw-shadow-color: rgb(255 251 235 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-50\/30 {
    --tw-shadow-color: rgb(255 251 235 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-50\/40 {
    --tw-shadow-color: rgb(255 251 235 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-50\/5 {
    --tw-shadow-color: rgb(255 251 235 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-50\/50 {
    --tw-shadow-color: rgb(255 251 235 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-50\/60 {
    --tw-shadow-color: rgb(255 251 235 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-50\/70 {
    --tw-shadow-color: rgb(255 251 235 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-50\/80 {
    --tw-shadow-color: rgb(255 251 235 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-50\/90 {
    --tw-shadow-color: rgb(255 251 235 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-500 {
    --tw-shadow-color: #f59e0b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-500\/10 {
    --tw-shadow-color: rgb(245 158 11 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-500\/20 {
    --tw-shadow-color: rgb(245 158 11 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-500\/30 {
    --tw-shadow-color: rgb(245 158 11 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-500\/40 {
    --tw-shadow-color: rgb(245 158 11 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-500\/5 {
    --tw-shadow-color: rgb(245 158 11 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-500\/50 {
    --tw-shadow-color: rgb(245 158 11 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-500\/60 {
    --tw-shadow-color: rgb(245 158 11 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-500\/70 {
    --tw-shadow-color: rgb(245 158 11 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-500\/80 {
    --tw-shadow-color: rgb(245 158 11 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-500\/90 {
    --tw-shadow-color: rgb(245 158 11 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-600 {
    --tw-shadow-color: #d97706;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-600\/10 {
    --tw-shadow-color: rgb(217 119 6 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-600\/20 {
    --tw-shadow-color: rgb(217 119 6 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-600\/30 {
    --tw-shadow-color: rgb(217 119 6 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-600\/40 {
    --tw-shadow-color: rgb(217 119 6 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-600\/5 {
    --tw-shadow-color: rgb(217 119 6 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-600\/50 {
    --tw-shadow-color: rgb(217 119 6 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-600\/60 {
    --tw-shadow-color: rgb(217 119 6 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-600\/70 {
    --tw-shadow-color: rgb(217 119 6 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-600\/80 {
    --tw-shadow-color: rgb(217 119 6 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-600\/90 {
    --tw-shadow-color: rgb(217 119 6 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-700 {
    --tw-shadow-color: #b45309;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-700\/10 {
    --tw-shadow-color: rgb(180 83 9 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-700\/20 {
    --tw-shadow-color: rgb(180 83 9 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-700\/30 {
    --tw-shadow-color: rgb(180 83 9 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-700\/40 {
    --tw-shadow-color: rgb(180 83 9 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-700\/5 {
    --tw-shadow-color: rgb(180 83 9 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-700\/50 {
    --tw-shadow-color: rgb(180 83 9 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-700\/60 {
    --tw-shadow-color: rgb(180 83 9 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-700\/70 {
    --tw-shadow-color: rgb(180 83 9 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-700\/80 {
    --tw-shadow-color: rgb(180 83 9 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-700\/90 {
    --tw-shadow-color: rgb(180 83 9 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-800 {
    --tw-shadow-color: #92400e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-800\/10 {
    --tw-shadow-color: rgb(146 64 14 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-800\/20 {
    --tw-shadow-color: rgb(146 64 14 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-800\/30 {
    --tw-shadow-color: rgb(146 64 14 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-800\/40 {
    --tw-shadow-color: rgb(146 64 14 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-800\/5 {
    --tw-shadow-color: rgb(146 64 14 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-800\/50 {
    --tw-shadow-color: rgb(146 64 14 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-800\/60 {
    --tw-shadow-color: rgb(146 64 14 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-800\/70 {
    --tw-shadow-color: rgb(146 64 14 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-800\/80 {
    --tw-shadow-color: rgb(146 64 14 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-800\/90 {
    --tw-shadow-color: rgb(146 64 14 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-900 {
    --tw-shadow-color: #78350f;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-900\/10 {
    --tw-shadow-color: rgb(120 53 15 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-900\/20 {
    --tw-shadow-color: rgb(120 53 15 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-900\/30 {
    --tw-shadow-color: rgb(120 53 15 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-900\/40 {
    --tw-shadow-color: rgb(120 53 15 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-900\/5 {
    --tw-shadow-color: rgb(120 53 15 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-900\/50 {
    --tw-shadow-color: rgb(120 53 15 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-900\/60 {
    --tw-shadow-color: rgb(120 53 15 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-900\/70 {
    --tw-shadow-color: rgb(120 53 15 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-900\/80 {
    --tw-shadow-color: rgb(120 53 15 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-900\/90 {
    --tw-shadow-color: rgb(120 53 15 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-950 {
    --tw-shadow-color: #451a03;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-950\/10 {
    --tw-shadow-color: rgb(69 26 3 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-950\/20 {
    --tw-shadow-color: rgb(69 26 3 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-950\/30 {
    --tw-shadow-color: rgb(69 26 3 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-950\/40 {
    --tw-shadow-color: rgb(69 26 3 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-950\/5 {
    --tw-shadow-color: rgb(69 26 3 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-950\/50 {
    --tw-shadow-color: rgb(69 26 3 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-950\/60 {
    --tw-shadow-color: rgb(69 26 3 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-950\/70 {
    --tw-shadow-color: rgb(69 26 3 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-950\/80 {
    --tw-shadow-color: rgb(69 26 3 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-amber-950\/90 {
    --tw-shadow-color: rgb(69 26 3 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-100 {
    --tw-shadow-color: #dbeafe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-100\/10 {
    --tw-shadow-color: rgb(219 234 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-100\/20 {
    --tw-shadow-color: rgb(219 234 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-100\/30 {
    --tw-shadow-color: rgb(219 234 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-100\/40 {
    --tw-shadow-color: rgb(219 234 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-100\/5 {
    --tw-shadow-color: rgb(219 234 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-100\/50 {
    --tw-shadow-color: rgb(219 234 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-100\/60 {
    --tw-shadow-color: rgb(219 234 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-100\/70 {
    --tw-shadow-color: rgb(219 234 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-100\/80 {
    --tw-shadow-color: rgb(219 234 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-100\/90 {
    --tw-shadow-color: rgb(219 234 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-200 {
    --tw-shadow-color: #bfdbfe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-200\/10 {
    --tw-shadow-color: rgb(191 219 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-200\/20 {
    --tw-shadow-color: rgb(191 219 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-200\/30 {
    --tw-shadow-color: rgb(191 219 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-200\/40 {
    --tw-shadow-color: rgb(191 219 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-200\/5 {
    --tw-shadow-color: rgb(191 219 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-200\/50 {
    --tw-shadow-color: rgb(191 219 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-200\/60 {
    --tw-shadow-color: rgb(191 219 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-200\/70 {
    --tw-shadow-color: rgb(191 219 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-200\/80 {
    --tw-shadow-color: rgb(191 219 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-200\/90 {
    --tw-shadow-color: rgb(191 219 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-300 {
    --tw-shadow-color: #93c5fd;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-300\/10 {
    --tw-shadow-color: rgb(147 197 253 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-300\/20 {
    --tw-shadow-color: rgb(147 197 253 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-300\/30 {
    --tw-shadow-color: rgb(147 197 253 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-300\/40 {
    --tw-shadow-color: rgb(147 197 253 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-300\/5 {
    --tw-shadow-color: rgb(147 197 253 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-300\/50 {
    --tw-shadow-color: rgb(147 197 253 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-300\/60 {
    --tw-shadow-color: rgb(147 197 253 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-300\/70 {
    --tw-shadow-color: rgb(147 197 253 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-300\/80 {
    --tw-shadow-color: rgb(147 197 253 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-300\/90 {
    --tw-shadow-color: rgb(147 197 253 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-400 {
    --tw-shadow-color: #60a5fa;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-400\/10 {
    --tw-shadow-color: rgb(96 165 250 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-400\/20 {
    --tw-shadow-color: rgb(96 165 250 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-400\/30 {
    --tw-shadow-color: rgb(96 165 250 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-400\/40 {
    --tw-shadow-color: rgb(96 165 250 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-400\/5 {
    --tw-shadow-color: rgb(96 165 250 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-400\/50 {
    --tw-shadow-color: rgb(96 165 250 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-400\/60 {
    --tw-shadow-color: rgb(96 165 250 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-400\/70 {
    --tw-shadow-color: rgb(96 165 250 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-400\/80 {
    --tw-shadow-color: rgb(96 165 250 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-400\/90 {
    --tw-shadow-color: rgb(96 165 250 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-50 {
    --tw-shadow-color: #eff6ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-50\/10 {
    --tw-shadow-color: rgb(239 246 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-50\/20 {
    --tw-shadow-color: rgb(239 246 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-50\/30 {
    --tw-shadow-color: rgb(239 246 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-50\/40 {
    --tw-shadow-color: rgb(239 246 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-50\/5 {
    --tw-shadow-color: rgb(239 246 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-50\/50 {
    --tw-shadow-color: rgb(239 246 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-50\/60 {
    --tw-shadow-color: rgb(239 246 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-50\/70 {
    --tw-shadow-color: rgb(239 246 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-50\/80 {
    --tw-shadow-color: rgb(239 246 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-50\/90 {
    --tw-shadow-color: rgb(239 246 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-500 {
    --tw-shadow-color: #3b82f6;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-500\/10 {
    --tw-shadow-color: rgb(59 130 246 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-500\/20 {
    --tw-shadow-color: rgb(59 130 246 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-500\/30 {
    --tw-shadow-color: rgb(59 130 246 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-500\/40 {
    --tw-shadow-color: rgb(59 130 246 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-500\/5 {
    --tw-shadow-color: rgb(59 130 246 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-500\/50 {
    --tw-shadow-color: rgb(59 130 246 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-500\/60 {
    --tw-shadow-color: rgb(59 130 246 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-500\/70 {
    --tw-shadow-color: rgb(59 130 246 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-500\/80 {
    --tw-shadow-color: rgb(59 130 246 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-500\/90 {
    --tw-shadow-color: rgb(59 130 246 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-600 {
    --tw-shadow-color: #2563eb;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-600\/10 {
    --tw-shadow-color: rgb(37 99 235 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-600\/20 {
    --tw-shadow-color: rgb(37 99 235 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-600\/30 {
    --tw-shadow-color: rgb(37 99 235 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-600\/40 {
    --tw-shadow-color: rgb(37 99 235 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-600\/5 {
    --tw-shadow-color: rgb(37 99 235 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-600\/50 {
    --tw-shadow-color: rgb(37 99 235 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-600\/60 {
    --tw-shadow-color: rgb(37 99 235 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-600\/70 {
    --tw-shadow-color: rgb(37 99 235 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-600\/80 {
    --tw-shadow-color: rgb(37 99 235 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-600\/90 {
    --tw-shadow-color: rgb(37 99 235 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-700 {
    --tw-shadow-color: #1d4ed8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-700\/10 {
    --tw-shadow-color: rgb(29 78 216 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-700\/20 {
    --tw-shadow-color: rgb(29 78 216 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-700\/30 {
    --tw-shadow-color: rgb(29 78 216 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-700\/40 {
    --tw-shadow-color: rgb(29 78 216 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-700\/5 {
    --tw-shadow-color: rgb(29 78 216 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-700\/50 {
    --tw-shadow-color: rgb(29 78 216 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-700\/60 {
    --tw-shadow-color: rgb(29 78 216 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-700\/70 {
    --tw-shadow-color: rgb(29 78 216 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-700\/80 {
    --tw-shadow-color: rgb(29 78 216 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-700\/90 {
    --tw-shadow-color: rgb(29 78 216 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-800 {
    --tw-shadow-color: #1e40af;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-800\/10 {
    --tw-shadow-color: rgb(30 64 175 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-800\/20 {
    --tw-shadow-color: rgb(30 64 175 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-800\/30 {
    --tw-shadow-color: rgb(30 64 175 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-800\/40 {
    --tw-shadow-color: rgb(30 64 175 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-800\/5 {
    --tw-shadow-color: rgb(30 64 175 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-800\/50 {
    --tw-shadow-color: rgb(30 64 175 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-800\/60 {
    --tw-shadow-color: rgb(30 64 175 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-800\/70 {
    --tw-shadow-color: rgb(30 64 175 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-800\/80 {
    --tw-shadow-color: rgb(30 64 175 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-800\/90 {
    --tw-shadow-color: rgb(30 64 175 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-900 {
    --tw-shadow-color: #1e3a8a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-900\/10 {
    --tw-shadow-color: rgb(30 58 138 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-900\/20 {
    --tw-shadow-color: rgb(30 58 138 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-900\/30 {
    --tw-shadow-color: rgb(30 58 138 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-900\/40 {
    --tw-shadow-color: rgb(30 58 138 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-900\/5 {
    --tw-shadow-color: rgb(30 58 138 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-900\/50 {
    --tw-shadow-color: rgb(30 58 138 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-900\/60 {
    --tw-shadow-color: rgb(30 58 138 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-900\/70 {
    --tw-shadow-color: rgb(30 58 138 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-900\/80 {
    --tw-shadow-color: rgb(30 58 138 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-900\/90 {
    --tw-shadow-color: rgb(30 58 138 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-950 {
    --tw-shadow-color: #172554;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-950\/10 {
    --tw-shadow-color: rgb(23 37 84 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-950\/20 {
    --tw-shadow-color: rgb(23 37 84 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-950\/30 {
    --tw-shadow-color: rgb(23 37 84 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-950\/40 {
    --tw-shadow-color: rgb(23 37 84 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-950\/5 {
    --tw-shadow-color: rgb(23 37 84 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-950\/50 {
    --tw-shadow-color: rgb(23 37 84 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-950\/60 {
    --tw-shadow-color: rgb(23 37 84 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-950\/70 {
    --tw-shadow-color: rgb(23 37 84 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-950\/80 {
    --tw-shadow-color: rgb(23 37 84 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-blue-950\/90 {
    --tw-shadow-color: rgb(23 37 84 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-100 {
    --tw-shadow-color: #cffafe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-100\/10 {
    --tw-shadow-color: rgb(207 250 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-100\/20 {
    --tw-shadow-color: rgb(207 250 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-100\/30 {
    --tw-shadow-color: rgb(207 250 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-100\/40 {
    --tw-shadow-color: rgb(207 250 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-100\/5 {
    --tw-shadow-color: rgb(207 250 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-100\/50 {
    --tw-shadow-color: rgb(207 250 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-100\/60 {
    --tw-shadow-color: rgb(207 250 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-100\/70 {
    --tw-shadow-color: rgb(207 250 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-100\/80 {
    --tw-shadow-color: rgb(207 250 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-100\/90 {
    --tw-shadow-color: rgb(207 250 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-200 {
    --tw-shadow-color: #a5f3fc;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-200\/10 {
    --tw-shadow-color: rgb(165 243 252 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-200\/20 {
    --tw-shadow-color: rgb(165 243 252 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-200\/30 {
    --tw-shadow-color: rgb(165 243 252 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-200\/40 {
    --tw-shadow-color: rgb(165 243 252 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-200\/5 {
    --tw-shadow-color: rgb(165 243 252 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-200\/50 {
    --tw-shadow-color: rgb(165 243 252 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-200\/60 {
    --tw-shadow-color: rgb(165 243 252 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-200\/70 {
    --tw-shadow-color: rgb(165 243 252 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-200\/80 {
    --tw-shadow-color: rgb(165 243 252 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-200\/90 {
    --tw-shadow-color: rgb(165 243 252 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-300 {
    --tw-shadow-color: #67e8f9;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-300\/10 {
    --tw-shadow-color: rgb(103 232 249 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-300\/20 {
    --tw-shadow-color: rgb(103 232 249 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-300\/30 {
    --tw-shadow-color: rgb(103 232 249 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-300\/40 {
    --tw-shadow-color: rgb(103 232 249 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-300\/5 {
    --tw-shadow-color: rgb(103 232 249 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-300\/50 {
    --tw-shadow-color: rgb(103 232 249 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-300\/60 {
    --tw-shadow-color: rgb(103 232 249 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-300\/70 {
    --tw-shadow-color: rgb(103 232 249 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-300\/80 {
    --tw-shadow-color: rgb(103 232 249 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-300\/90 {
    --tw-shadow-color: rgb(103 232 249 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-400 {
    --tw-shadow-color: #22d3ee;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-400\/10 {
    --tw-shadow-color: rgb(34 211 238 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-400\/20 {
    --tw-shadow-color: rgb(34 211 238 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-400\/30 {
    --tw-shadow-color: rgb(34 211 238 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-400\/40 {
    --tw-shadow-color: rgb(34 211 238 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-400\/5 {
    --tw-shadow-color: rgb(34 211 238 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-400\/50 {
    --tw-shadow-color: rgb(34 211 238 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-400\/60 {
    --tw-shadow-color: rgb(34 211 238 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-400\/70 {
    --tw-shadow-color: rgb(34 211 238 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-400\/80 {
    --tw-shadow-color: rgb(34 211 238 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-400\/90 {
    --tw-shadow-color: rgb(34 211 238 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-50 {
    --tw-shadow-color: #ecfeff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-50\/10 {
    --tw-shadow-color: rgb(236 254 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-50\/20 {
    --tw-shadow-color: rgb(236 254 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-50\/30 {
    --tw-shadow-color: rgb(236 254 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-50\/40 {
    --tw-shadow-color: rgb(236 254 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-50\/5 {
    --tw-shadow-color: rgb(236 254 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-50\/50 {
    --tw-shadow-color: rgb(236 254 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-50\/60 {
    --tw-shadow-color: rgb(236 254 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-50\/70 {
    --tw-shadow-color: rgb(236 254 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-50\/80 {
    --tw-shadow-color: rgb(236 254 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-50\/90 {
    --tw-shadow-color: rgb(236 254 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-500 {
    --tw-shadow-color: #06b6d4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-500\/10 {
    --tw-shadow-color: rgb(6 182 212 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-500\/20 {
    --tw-shadow-color: rgb(6 182 212 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-500\/30 {
    --tw-shadow-color: rgb(6 182 212 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-500\/40 {
    --tw-shadow-color: rgb(6 182 212 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-500\/5 {
    --tw-shadow-color: rgb(6 182 212 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-500\/50 {
    --tw-shadow-color: rgb(6 182 212 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-500\/60 {
    --tw-shadow-color: rgb(6 182 212 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-500\/70 {
    --tw-shadow-color: rgb(6 182 212 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-500\/80 {
    --tw-shadow-color: rgb(6 182 212 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-500\/90 {
    --tw-shadow-color: rgb(6 182 212 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-600 {
    --tw-shadow-color: #0891b2;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-600\/10 {
    --tw-shadow-color: rgb(8 145 178 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-600\/20 {
    --tw-shadow-color: rgb(8 145 178 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-600\/30 {
    --tw-shadow-color: rgb(8 145 178 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-600\/40 {
    --tw-shadow-color: rgb(8 145 178 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-600\/5 {
    --tw-shadow-color: rgb(8 145 178 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-600\/50 {
    --tw-shadow-color: rgb(8 145 178 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-600\/60 {
    --tw-shadow-color: rgb(8 145 178 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-600\/70 {
    --tw-shadow-color: rgb(8 145 178 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-600\/80 {
    --tw-shadow-color: rgb(8 145 178 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-600\/90 {
    --tw-shadow-color: rgb(8 145 178 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-700 {
    --tw-shadow-color: #0e7490;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-700\/10 {
    --tw-shadow-color: rgb(14 116 144 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-700\/20 {
    --tw-shadow-color: rgb(14 116 144 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-700\/30 {
    --tw-shadow-color: rgb(14 116 144 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-700\/40 {
    --tw-shadow-color: rgb(14 116 144 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-700\/5 {
    --tw-shadow-color: rgb(14 116 144 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-700\/50 {
    --tw-shadow-color: rgb(14 116 144 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-700\/60 {
    --tw-shadow-color: rgb(14 116 144 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-700\/70 {
    --tw-shadow-color: rgb(14 116 144 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-700\/80 {
    --tw-shadow-color: rgb(14 116 144 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-700\/90 {
    --tw-shadow-color: rgb(14 116 144 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-800 {
    --tw-shadow-color: #155e75;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-800\/10 {
    --tw-shadow-color: rgb(21 94 117 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-800\/20 {
    --tw-shadow-color: rgb(21 94 117 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-800\/30 {
    --tw-shadow-color: rgb(21 94 117 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-800\/40 {
    --tw-shadow-color: rgb(21 94 117 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-800\/5 {
    --tw-shadow-color: rgb(21 94 117 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-800\/50 {
    --tw-shadow-color: rgb(21 94 117 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-800\/60 {
    --tw-shadow-color: rgb(21 94 117 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-800\/70 {
    --tw-shadow-color: rgb(21 94 117 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-800\/80 {
    --tw-shadow-color: rgb(21 94 117 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-800\/90 {
    --tw-shadow-color: rgb(21 94 117 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-900 {
    --tw-shadow-color: #164e63;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-900\/10 {
    --tw-shadow-color: rgb(22 78 99 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-900\/20 {
    --tw-shadow-color: rgb(22 78 99 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-900\/30 {
    --tw-shadow-color: rgb(22 78 99 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-900\/40 {
    --tw-shadow-color: rgb(22 78 99 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-900\/5 {
    --tw-shadow-color: rgb(22 78 99 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-900\/50 {
    --tw-shadow-color: rgb(22 78 99 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-900\/60 {
    --tw-shadow-color: rgb(22 78 99 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-900\/70 {
    --tw-shadow-color: rgb(22 78 99 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-900\/80 {
    --tw-shadow-color: rgb(22 78 99 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-900\/90 {
    --tw-shadow-color: rgb(22 78 99 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-950 {
    --tw-shadow-color: #083344;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-950\/10 {
    --tw-shadow-color: rgb(8 51 68 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-950\/20 {
    --tw-shadow-color: rgb(8 51 68 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-950\/30 {
    --tw-shadow-color: rgb(8 51 68 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-950\/40 {
    --tw-shadow-color: rgb(8 51 68 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-950\/5 {
    --tw-shadow-color: rgb(8 51 68 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-950\/50 {
    --tw-shadow-color: rgb(8 51 68 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-950\/60 {
    --tw-shadow-color: rgb(8 51 68 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-950\/70 {
    --tw-shadow-color: rgb(8 51 68 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-950\/80 {
    --tw-shadow-color: rgb(8 51 68 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-cyan-950\/90 {
    --tw-shadow-color: rgb(8 51 68 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-100 {
    --tw-shadow-color: #d1fae5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-100\/10 {
    --tw-shadow-color: rgb(209 250 229 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-100\/20 {
    --tw-shadow-color: rgb(209 250 229 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-100\/30 {
    --tw-shadow-color: rgb(209 250 229 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-100\/40 {
    --tw-shadow-color: rgb(209 250 229 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-100\/5 {
    --tw-shadow-color: rgb(209 250 229 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-100\/50 {
    --tw-shadow-color: rgb(209 250 229 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-100\/60 {
    --tw-shadow-color: rgb(209 250 229 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-100\/70 {
    --tw-shadow-color: rgb(209 250 229 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-100\/80 {
    --tw-shadow-color: rgb(209 250 229 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-100\/90 {
    --tw-shadow-color: rgb(209 250 229 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-200 {
    --tw-shadow-color: #a7f3d0;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-200\/10 {
    --tw-shadow-color: rgb(167 243 208 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-200\/20 {
    --tw-shadow-color: rgb(167 243 208 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-200\/30 {
    --tw-shadow-color: rgb(167 243 208 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-200\/40 {
    --tw-shadow-color: rgb(167 243 208 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-200\/5 {
    --tw-shadow-color: rgb(167 243 208 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-200\/50 {
    --tw-shadow-color: rgb(167 243 208 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-200\/60 {
    --tw-shadow-color: rgb(167 243 208 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-200\/70 {
    --tw-shadow-color: rgb(167 243 208 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-200\/80 {
    --tw-shadow-color: rgb(167 243 208 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-200\/90 {
    --tw-shadow-color: rgb(167 243 208 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-300 {
    --tw-shadow-color: #6ee7b7;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-300\/10 {
    --tw-shadow-color: rgb(110 231 183 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-300\/20 {
    --tw-shadow-color: rgb(110 231 183 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-300\/30 {
    --tw-shadow-color: rgb(110 231 183 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-300\/40 {
    --tw-shadow-color: rgb(110 231 183 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-300\/5 {
    --tw-shadow-color: rgb(110 231 183 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-300\/50 {
    --tw-shadow-color: rgb(110 231 183 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-300\/60 {
    --tw-shadow-color: rgb(110 231 183 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-300\/70 {
    --tw-shadow-color: rgb(110 231 183 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-300\/80 {
    --tw-shadow-color: rgb(110 231 183 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-300\/90 {
    --tw-shadow-color: rgb(110 231 183 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-400 {
    --tw-shadow-color: #34d399;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-400\/10 {
    --tw-shadow-color: rgb(52 211 153 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-400\/20 {
    --tw-shadow-color: rgb(52 211 153 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-400\/30 {
    --tw-shadow-color: rgb(52 211 153 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-400\/40 {
    --tw-shadow-color: rgb(52 211 153 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-400\/5 {
    --tw-shadow-color: rgb(52 211 153 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-400\/50 {
    --tw-shadow-color: rgb(52 211 153 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-400\/60 {
    --tw-shadow-color: rgb(52 211 153 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-400\/70 {
    --tw-shadow-color: rgb(52 211 153 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-400\/80 {
    --tw-shadow-color: rgb(52 211 153 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-400\/90 {
    --tw-shadow-color: rgb(52 211 153 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-50 {
    --tw-shadow-color: #ecfdf5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-50\/10 {
    --tw-shadow-color: rgb(236 253 245 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-50\/20 {
    --tw-shadow-color: rgb(236 253 245 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-50\/30 {
    --tw-shadow-color: rgb(236 253 245 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-50\/40 {
    --tw-shadow-color: rgb(236 253 245 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-50\/5 {
    --tw-shadow-color: rgb(236 253 245 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-50\/50 {
    --tw-shadow-color: rgb(236 253 245 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-50\/60 {
    --tw-shadow-color: rgb(236 253 245 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-50\/70 {
    --tw-shadow-color: rgb(236 253 245 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-50\/80 {
    --tw-shadow-color: rgb(236 253 245 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-50\/90 {
    --tw-shadow-color: rgb(236 253 245 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-500 {
    --tw-shadow-color: #10b981;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-500\/10 {
    --tw-shadow-color: rgb(16 185 129 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-500\/20 {
    --tw-shadow-color: rgb(16 185 129 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-500\/30 {
    --tw-shadow-color: rgb(16 185 129 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-500\/40 {
    --tw-shadow-color: rgb(16 185 129 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-500\/5 {
    --tw-shadow-color: rgb(16 185 129 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-500\/50 {
    --tw-shadow-color: rgb(16 185 129 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-500\/60 {
    --tw-shadow-color: rgb(16 185 129 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-500\/70 {
    --tw-shadow-color: rgb(16 185 129 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-500\/80 {
    --tw-shadow-color: rgb(16 185 129 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-500\/90 {
    --tw-shadow-color: rgb(16 185 129 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-600 {
    --tw-shadow-color: #059669;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-600\/10 {
    --tw-shadow-color: rgb(5 150 105 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-600\/20 {
    --tw-shadow-color: rgb(5 150 105 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-600\/30 {
    --tw-shadow-color: rgb(5 150 105 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-600\/40 {
    --tw-shadow-color: rgb(5 150 105 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-600\/5 {
    --tw-shadow-color: rgb(5 150 105 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-600\/50 {
    --tw-shadow-color: rgb(5 150 105 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-600\/60 {
    --tw-shadow-color: rgb(5 150 105 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-600\/70 {
    --tw-shadow-color: rgb(5 150 105 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-600\/80 {
    --tw-shadow-color: rgb(5 150 105 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-600\/90 {
    --tw-shadow-color: rgb(5 150 105 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-700 {
    --tw-shadow-color: #047857;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-700\/10 {
    --tw-shadow-color: rgb(4 120 87 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-700\/20 {
    --tw-shadow-color: rgb(4 120 87 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-700\/30 {
    --tw-shadow-color: rgb(4 120 87 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-700\/40 {
    --tw-shadow-color: rgb(4 120 87 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-700\/5 {
    --tw-shadow-color: rgb(4 120 87 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-700\/50 {
    --tw-shadow-color: rgb(4 120 87 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-700\/60 {
    --tw-shadow-color: rgb(4 120 87 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-700\/70 {
    --tw-shadow-color: rgb(4 120 87 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-700\/80 {
    --tw-shadow-color: rgb(4 120 87 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-700\/90 {
    --tw-shadow-color: rgb(4 120 87 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-800 {
    --tw-shadow-color: #065f46;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-800\/10 {
    --tw-shadow-color: rgb(6 95 70 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-800\/20 {
    --tw-shadow-color: rgb(6 95 70 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-800\/30 {
    --tw-shadow-color: rgb(6 95 70 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-800\/40 {
    --tw-shadow-color: rgb(6 95 70 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-800\/5 {
    --tw-shadow-color: rgb(6 95 70 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-800\/50 {
    --tw-shadow-color: rgb(6 95 70 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-800\/60 {
    --tw-shadow-color: rgb(6 95 70 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-800\/70 {
    --tw-shadow-color: rgb(6 95 70 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-800\/80 {
    --tw-shadow-color: rgb(6 95 70 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-800\/90 {
    --tw-shadow-color: rgb(6 95 70 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-900 {
    --tw-shadow-color: #064e3b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-900\/10 {
    --tw-shadow-color: rgb(6 78 59 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-900\/20 {
    --tw-shadow-color: rgb(6 78 59 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-900\/30 {
    --tw-shadow-color: rgb(6 78 59 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-900\/40 {
    --tw-shadow-color: rgb(6 78 59 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-900\/5 {
    --tw-shadow-color: rgb(6 78 59 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-900\/50 {
    --tw-shadow-color: rgb(6 78 59 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-900\/60 {
    --tw-shadow-color: rgb(6 78 59 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-900\/70 {
    --tw-shadow-color: rgb(6 78 59 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-900\/80 {
    --tw-shadow-color: rgb(6 78 59 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-900\/90 {
    --tw-shadow-color: rgb(6 78 59 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-950 {
    --tw-shadow-color: #022c22;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-950\/10 {
    --tw-shadow-color: rgb(2 44 34 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-950\/20 {
    --tw-shadow-color: rgb(2 44 34 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-950\/30 {
    --tw-shadow-color: rgb(2 44 34 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-950\/40 {
    --tw-shadow-color: rgb(2 44 34 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-950\/5 {
    --tw-shadow-color: rgb(2 44 34 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-950\/50 {
    --tw-shadow-color: rgb(2 44 34 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-950\/60 {
    --tw-shadow-color: rgb(2 44 34 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-950\/70 {
    --tw-shadow-color: rgb(2 44 34 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-950\/80 {
    --tw-shadow-color: rgb(2 44 34 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-emerald-950\/90 {
    --tw-shadow-color: rgb(2 44 34 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-100 {
    --tw-shadow-color: #fae8ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-100\/10 {
    --tw-shadow-color: rgb(250 232 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-100\/20 {
    --tw-shadow-color: rgb(250 232 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-100\/30 {
    --tw-shadow-color: rgb(250 232 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-100\/40 {
    --tw-shadow-color: rgb(250 232 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-100\/5 {
    --tw-shadow-color: rgb(250 232 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-100\/50 {
    --tw-shadow-color: rgb(250 232 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-100\/60 {
    --tw-shadow-color: rgb(250 232 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-100\/70 {
    --tw-shadow-color: rgb(250 232 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-100\/80 {
    --tw-shadow-color: rgb(250 232 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-100\/90 {
    --tw-shadow-color: rgb(250 232 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-200 {
    --tw-shadow-color: #f5d0fe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-200\/10 {
    --tw-shadow-color: rgb(245 208 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-200\/20 {
    --tw-shadow-color: rgb(245 208 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-200\/30 {
    --tw-shadow-color: rgb(245 208 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-200\/40 {
    --tw-shadow-color: rgb(245 208 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-200\/5 {
    --tw-shadow-color: rgb(245 208 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-200\/50 {
    --tw-shadow-color: rgb(245 208 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-200\/60 {
    --tw-shadow-color: rgb(245 208 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-200\/70 {
    --tw-shadow-color: rgb(245 208 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-200\/80 {
    --tw-shadow-color: rgb(245 208 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-200\/90 {
    --tw-shadow-color: rgb(245 208 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-300 {
    --tw-shadow-color: #f0abfc;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-300\/10 {
    --tw-shadow-color: rgb(240 171 252 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-300\/20 {
    --tw-shadow-color: rgb(240 171 252 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-300\/30 {
    --tw-shadow-color: rgb(240 171 252 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-300\/40 {
    --tw-shadow-color: rgb(240 171 252 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-300\/5 {
    --tw-shadow-color: rgb(240 171 252 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-300\/50 {
    --tw-shadow-color: rgb(240 171 252 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-300\/60 {
    --tw-shadow-color: rgb(240 171 252 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-300\/70 {
    --tw-shadow-color: rgb(240 171 252 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-300\/80 {
    --tw-shadow-color: rgb(240 171 252 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-300\/90 {
    --tw-shadow-color: rgb(240 171 252 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-400 {
    --tw-shadow-color: #e879f9;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-400\/10 {
    --tw-shadow-color: rgb(232 121 249 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-400\/20 {
    --tw-shadow-color: rgb(232 121 249 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-400\/30 {
    --tw-shadow-color: rgb(232 121 249 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-400\/40 {
    --tw-shadow-color: rgb(232 121 249 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-400\/5 {
    --tw-shadow-color: rgb(232 121 249 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-400\/50 {
    --tw-shadow-color: rgb(232 121 249 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-400\/60 {
    --tw-shadow-color: rgb(232 121 249 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-400\/70 {
    --tw-shadow-color: rgb(232 121 249 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-400\/80 {
    --tw-shadow-color: rgb(232 121 249 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-400\/90 {
    --tw-shadow-color: rgb(232 121 249 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-50 {
    --tw-shadow-color: #fdf4ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-50\/10 {
    --tw-shadow-color: rgb(253 244 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-50\/20 {
    --tw-shadow-color: rgb(253 244 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-50\/30 {
    --tw-shadow-color: rgb(253 244 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-50\/40 {
    --tw-shadow-color: rgb(253 244 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-50\/5 {
    --tw-shadow-color: rgb(253 244 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-50\/50 {
    --tw-shadow-color: rgb(253 244 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-50\/60 {
    --tw-shadow-color: rgb(253 244 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-50\/70 {
    --tw-shadow-color: rgb(253 244 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-50\/80 {
    --tw-shadow-color: rgb(253 244 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-50\/90 {
    --tw-shadow-color: rgb(253 244 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-500 {
    --tw-shadow-color: #d946ef;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-500\/10 {
    --tw-shadow-color: rgb(217 70 239 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-500\/20 {
    --tw-shadow-color: rgb(217 70 239 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-500\/30 {
    --tw-shadow-color: rgb(217 70 239 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-500\/40 {
    --tw-shadow-color: rgb(217 70 239 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-500\/5 {
    --tw-shadow-color: rgb(217 70 239 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-500\/50 {
    --tw-shadow-color: rgb(217 70 239 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-500\/60 {
    --tw-shadow-color: rgb(217 70 239 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-500\/70 {
    --tw-shadow-color: rgb(217 70 239 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-500\/80 {
    --tw-shadow-color: rgb(217 70 239 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-500\/90 {
    --tw-shadow-color: rgb(217 70 239 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-600 {
    --tw-shadow-color: #c026d3;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-600\/10 {
    --tw-shadow-color: rgb(192 38 211 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-600\/20 {
    --tw-shadow-color: rgb(192 38 211 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-600\/30 {
    --tw-shadow-color: rgb(192 38 211 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-600\/40 {
    --tw-shadow-color: rgb(192 38 211 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-600\/5 {
    --tw-shadow-color: rgb(192 38 211 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-600\/50 {
    --tw-shadow-color: rgb(192 38 211 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-600\/60 {
    --tw-shadow-color: rgb(192 38 211 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-600\/70 {
    --tw-shadow-color: rgb(192 38 211 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-600\/80 {
    --tw-shadow-color: rgb(192 38 211 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-600\/90 {
    --tw-shadow-color: rgb(192 38 211 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-700 {
    --tw-shadow-color: #a21caf;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-700\/10 {
    --tw-shadow-color: rgb(162 28 175 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-700\/20 {
    --tw-shadow-color: rgb(162 28 175 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-700\/30 {
    --tw-shadow-color: rgb(162 28 175 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-700\/40 {
    --tw-shadow-color: rgb(162 28 175 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-700\/5 {
    --tw-shadow-color: rgb(162 28 175 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-700\/50 {
    --tw-shadow-color: rgb(162 28 175 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-700\/60 {
    --tw-shadow-color: rgb(162 28 175 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-700\/70 {
    --tw-shadow-color: rgb(162 28 175 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-700\/80 {
    --tw-shadow-color: rgb(162 28 175 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-700\/90 {
    --tw-shadow-color: rgb(162 28 175 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-800 {
    --tw-shadow-color: #86198f;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-800\/10 {
    --tw-shadow-color: rgb(134 25 143 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-800\/20 {
    --tw-shadow-color: rgb(134 25 143 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-800\/30 {
    --tw-shadow-color: rgb(134 25 143 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-800\/40 {
    --tw-shadow-color: rgb(134 25 143 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-800\/5 {
    --tw-shadow-color: rgb(134 25 143 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-800\/50 {
    --tw-shadow-color: rgb(134 25 143 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-800\/60 {
    --tw-shadow-color: rgb(134 25 143 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-800\/70 {
    --tw-shadow-color: rgb(134 25 143 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-800\/80 {
    --tw-shadow-color: rgb(134 25 143 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-800\/90 {
    --tw-shadow-color: rgb(134 25 143 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-900 {
    --tw-shadow-color: #701a75;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-900\/10 {
    --tw-shadow-color: rgb(112 26 117 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-900\/20 {
    --tw-shadow-color: rgb(112 26 117 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-900\/30 {
    --tw-shadow-color: rgb(112 26 117 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-900\/40 {
    --tw-shadow-color: rgb(112 26 117 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-900\/5 {
    --tw-shadow-color: rgb(112 26 117 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-900\/50 {
    --tw-shadow-color: rgb(112 26 117 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-900\/60 {
    --tw-shadow-color: rgb(112 26 117 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-900\/70 {
    --tw-shadow-color: rgb(112 26 117 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-900\/80 {
    --tw-shadow-color: rgb(112 26 117 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-900\/90 {
    --tw-shadow-color: rgb(112 26 117 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-950 {
    --tw-shadow-color: #4a044e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-950\/10 {
    --tw-shadow-color: rgb(74 4 78 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-950\/20 {
    --tw-shadow-color: rgb(74 4 78 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-950\/30 {
    --tw-shadow-color: rgb(74 4 78 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-950\/40 {
    --tw-shadow-color: rgb(74 4 78 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-950\/5 {
    --tw-shadow-color: rgb(74 4 78 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-950\/50 {
    --tw-shadow-color: rgb(74 4 78 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-950\/60 {
    --tw-shadow-color: rgb(74 4 78 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-950\/70 {
    --tw-shadow-color: rgb(74 4 78 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-950\/80 {
    --tw-shadow-color: rgb(74 4 78 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-fuchsia-950\/90 {
    --tw-shadow-color: rgb(74 4 78 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-100 {
    --tw-shadow-color: #f3f4f6;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-100\/10 {
    --tw-shadow-color: rgb(243 244 246 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-100\/20 {
    --tw-shadow-color: rgb(243 244 246 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-100\/30 {
    --tw-shadow-color: rgb(243 244 246 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-100\/40 {
    --tw-shadow-color: rgb(243 244 246 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-100\/5 {
    --tw-shadow-color: rgb(243 244 246 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-100\/50 {
    --tw-shadow-color: rgb(243 244 246 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-100\/60 {
    --tw-shadow-color: rgb(243 244 246 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-100\/70 {
    --tw-shadow-color: rgb(243 244 246 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-100\/80 {
    --tw-shadow-color: rgb(243 244 246 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-100\/90 {
    --tw-shadow-color: rgb(243 244 246 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-200 {
    --tw-shadow-color: #e5e7eb;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-200\/10 {
    --tw-shadow-color: rgb(229 231 235 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-200\/20 {
    --tw-shadow-color: rgb(229 231 235 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-200\/30 {
    --tw-shadow-color: rgb(229 231 235 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-200\/40 {
    --tw-shadow-color: rgb(229 231 235 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-200\/5 {
    --tw-shadow-color: rgb(229 231 235 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-200\/50 {
    --tw-shadow-color: rgb(229 231 235 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-200\/60 {
    --tw-shadow-color: rgb(229 231 235 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-200\/70 {
    --tw-shadow-color: rgb(229 231 235 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-200\/80 {
    --tw-shadow-color: rgb(229 231 235 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-200\/90 {
    --tw-shadow-color: rgb(229 231 235 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-300 {
    --tw-shadow-color: #d1d5db;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-300\/10 {
    --tw-shadow-color: rgb(209 213 219 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-300\/20 {
    --tw-shadow-color: rgb(209 213 219 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-300\/30 {
    --tw-shadow-color: rgb(209 213 219 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-300\/40 {
    --tw-shadow-color: rgb(209 213 219 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-300\/5 {
    --tw-shadow-color: rgb(209 213 219 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-300\/50 {
    --tw-shadow-color: rgb(209 213 219 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-300\/60 {
    --tw-shadow-color: rgb(209 213 219 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-300\/70 {
    --tw-shadow-color: rgb(209 213 219 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-300\/80 {
    --tw-shadow-color: rgb(209 213 219 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-300\/90 {
    --tw-shadow-color: rgb(209 213 219 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-400 {
    --tw-shadow-color: #9ca3af;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-400\/10 {
    --tw-shadow-color: rgb(156 163 175 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-400\/20 {
    --tw-shadow-color: rgb(156 163 175 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-400\/30 {
    --tw-shadow-color: rgb(156 163 175 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-400\/40 {
    --tw-shadow-color: rgb(156 163 175 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-400\/5 {
    --tw-shadow-color: rgb(156 163 175 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-400\/50 {
    --tw-shadow-color: rgb(156 163 175 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-400\/60 {
    --tw-shadow-color: rgb(156 163 175 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-400\/70 {
    --tw-shadow-color: rgb(156 163 175 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-400\/80 {
    --tw-shadow-color: rgb(156 163 175 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-400\/90 {
    --tw-shadow-color: rgb(156 163 175 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-50 {
    --tw-shadow-color: #f9fafb;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-50\/10 {
    --tw-shadow-color: rgb(249 250 251 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-50\/20 {
    --tw-shadow-color: rgb(249 250 251 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-50\/30 {
    --tw-shadow-color: rgb(249 250 251 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-50\/40 {
    --tw-shadow-color: rgb(249 250 251 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-50\/5 {
    --tw-shadow-color: rgb(249 250 251 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-50\/50 {
    --tw-shadow-color: rgb(249 250 251 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-50\/60 {
    --tw-shadow-color: rgb(249 250 251 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-50\/70 {
    --tw-shadow-color: rgb(249 250 251 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-50\/80 {
    --tw-shadow-color: rgb(249 250 251 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-50\/90 {
    --tw-shadow-color: rgb(249 250 251 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-500 {
    --tw-shadow-color: #6b7280;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-500\/10 {
    --tw-shadow-color: rgb(107 114 128 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-500\/20 {
    --tw-shadow-color: rgb(107 114 128 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-500\/30 {
    --tw-shadow-color: rgb(107 114 128 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-500\/40 {
    --tw-shadow-color: rgb(107 114 128 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-500\/5 {
    --tw-shadow-color: rgb(107 114 128 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-500\/50 {
    --tw-shadow-color: rgb(107 114 128 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-500\/60 {
    --tw-shadow-color: rgb(107 114 128 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-500\/70 {
    --tw-shadow-color: rgb(107 114 128 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-500\/80 {
    --tw-shadow-color: rgb(107 114 128 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-500\/90 {
    --tw-shadow-color: rgb(107 114 128 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-600 {
    --tw-shadow-color: #4b5563;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-600\/10 {
    --tw-shadow-color: rgb(75 85 99 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-600\/20 {
    --tw-shadow-color: rgb(75 85 99 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-600\/30 {
    --tw-shadow-color: rgb(75 85 99 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-600\/40 {
    --tw-shadow-color: rgb(75 85 99 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-600\/5 {
    --tw-shadow-color: rgb(75 85 99 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-600\/50 {
    --tw-shadow-color: rgb(75 85 99 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-600\/60 {
    --tw-shadow-color: rgb(75 85 99 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-600\/70 {
    --tw-shadow-color: rgb(75 85 99 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-600\/80 {
    --tw-shadow-color: rgb(75 85 99 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-600\/90 {
    --tw-shadow-color: rgb(75 85 99 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-700 {
    --tw-shadow-color: #374151;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-700\/10 {
    --tw-shadow-color: rgb(55 65 81 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-700\/20 {
    --tw-shadow-color: rgb(55 65 81 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-700\/30 {
    --tw-shadow-color: rgb(55 65 81 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-700\/40 {
    --tw-shadow-color: rgb(55 65 81 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-700\/5 {
    --tw-shadow-color: rgb(55 65 81 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-700\/50 {
    --tw-shadow-color: rgb(55 65 81 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-700\/60 {
    --tw-shadow-color: rgb(55 65 81 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-700\/70 {
    --tw-shadow-color: rgb(55 65 81 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-700\/80 {
    --tw-shadow-color: rgb(55 65 81 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-700\/90 {
    --tw-shadow-color: rgb(55 65 81 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-800 {
    --tw-shadow-color: #1f2937;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-800\/10 {
    --tw-shadow-color: rgb(31 41 55 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-800\/20 {
    --tw-shadow-color: rgb(31 41 55 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-800\/30 {
    --tw-shadow-color: rgb(31 41 55 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-800\/40 {
    --tw-shadow-color: rgb(31 41 55 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-800\/5 {
    --tw-shadow-color: rgb(31 41 55 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-800\/50 {
    --tw-shadow-color: rgb(31 41 55 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-800\/60 {
    --tw-shadow-color: rgb(31 41 55 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-800\/70 {
    --tw-shadow-color: rgb(31 41 55 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-800\/80 {
    --tw-shadow-color: rgb(31 41 55 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-800\/90 {
    --tw-shadow-color: rgb(31 41 55 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-900 {
    --tw-shadow-color: #111827;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-900\/10 {
    --tw-shadow-color: rgb(17 24 39 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-900\/20 {
    --tw-shadow-color: rgb(17 24 39 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-900\/30 {
    --tw-shadow-color: rgb(17 24 39 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-900\/40 {
    --tw-shadow-color: rgb(17 24 39 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-900\/5 {
    --tw-shadow-color: rgb(17 24 39 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-900\/50 {
    --tw-shadow-color: rgb(17 24 39 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-900\/60 {
    --tw-shadow-color: rgb(17 24 39 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-900\/70 {
    --tw-shadow-color: rgb(17 24 39 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-900\/80 {
    --tw-shadow-color: rgb(17 24 39 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-900\/90 {
    --tw-shadow-color: rgb(17 24 39 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-950 {
    --tw-shadow-color: #030712;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-950\/10 {
    --tw-shadow-color: rgb(3 7 18 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-950\/20 {
    --tw-shadow-color: rgb(3 7 18 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-950\/30 {
    --tw-shadow-color: rgb(3 7 18 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-950\/40 {
    --tw-shadow-color: rgb(3 7 18 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-950\/5 {
    --tw-shadow-color: rgb(3 7 18 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-950\/50 {
    --tw-shadow-color: rgb(3 7 18 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-950\/60 {
    --tw-shadow-color: rgb(3 7 18 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-950\/70 {
    --tw-shadow-color: rgb(3 7 18 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-950\/80 {
    --tw-shadow-color: rgb(3 7 18 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-gray-950\/90 {
    --tw-shadow-color: rgb(3 7 18 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-100 {
    --tw-shadow-color: #dcfce7;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-100\/10 {
    --tw-shadow-color: rgb(220 252 231 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-100\/20 {
    --tw-shadow-color: rgb(220 252 231 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-100\/30 {
    --tw-shadow-color: rgb(220 252 231 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-100\/40 {
    --tw-shadow-color: rgb(220 252 231 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-100\/5 {
    --tw-shadow-color: rgb(220 252 231 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-100\/50 {
    --tw-shadow-color: rgb(220 252 231 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-100\/60 {
    --tw-shadow-color: rgb(220 252 231 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-100\/70 {
    --tw-shadow-color: rgb(220 252 231 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-100\/80 {
    --tw-shadow-color: rgb(220 252 231 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-100\/90 {
    --tw-shadow-color: rgb(220 252 231 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-200 {
    --tw-shadow-color: #bbf7d0;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-200\/10 {
    --tw-shadow-color: rgb(187 247 208 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-200\/20 {
    --tw-shadow-color: rgb(187 247 208 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-200\/30 {
    --tw-shadow-color: rgb(187 247 208 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-200\/40 {
    --tw-shadow-color: rgb(187 247 208 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-200\/5 {
    --tw-shadow-color: rgb(187 247 208 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-200\/50 {
    --tw-shadow-color: rgb(187 247 208 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-200\/60 {
    --tw-shadow-color: rgb(187 247 208 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-200\/70 {
    --tw-shadow-color: rgb(187 247 208 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-200\/80 {
    --tw-shadow-color: rgb(187 247 208 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-200\/90 {
    --tw-shadow-color: rgb(187 247 208 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-300 {
    --tw-shadow-color: #86efac;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-300\/10 {
    --tw-shadow-color: rgb(134 239 172 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-300\/20 {
    --tw-shadow-color: rgb(134 239 172 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-300\/30 {
    --tw-shadow-color: rgb(134 239 172 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-300\/40 {
    --tw-shadow-color: rgb(134 239 172 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-300\/5 {
    --tw-shadow-color: rgb(134 239 172 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-300\/50 {
    --tw-shadow-color: rgb(134 239 172 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-300\/60 {
    --tw-shadow-color: rgb(134 239 172 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-300\/70 {
    --tw-shadow-color: rgb(134 239 172 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-300\/80 {
    --tw-shadow-color: rgb(134 239 172 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-300\/90 {
    --tw-shadow-color: rgb(134 239 172 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-400 {
    --tw-shadow-color: #4ade80;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-400\/10 {
    --tw-shadow-color: rgb(74 222 128 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-400\/20 {
    --tw-shadow-color: rgb(74 222 128 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-400\/30 {
    --tw-shadow-color: rgb(74 222 128 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-400\/40 {
    --tw-shadow-color: rgb(74 222 128 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-400\/5 {
    --tw-shadow-color: rgb(74 222 128 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-400\/50 {
    --tw-shadow-color: rgb(74 222 128 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-400\/60 {
    --tw-shadow-color: rgb(74 222 128 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-400\/70 {
    --tw-shadow-color: rgb(74 222 128 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-400\/80 {
    --tw-shadow-color: rgb(74 222 128 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-400\/90 {
    --tw-shadow-color: rgb(74 222 128 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-50 {
    --tw-shadow-color: #f0fdf4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-50\/10 {
    --tw-shadow-color: rgb(240 253 244 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-50\/20 {
    --tw-shadow-color: rgb(240 253 244 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-50\/30 {
    --tw-shadow-color: rgb(240 253 244 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-50\/40 {
    --tw-shadow-color: rgb(240 253 244 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-50\/5 {
    --tw-shadow-color: rgb(240 253 244 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-50\/50 {
    --tw-shadow-color: rgb(240 253 244 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-50\/60 {
    --tw-shadow-color: rgb(240 253 244 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-50\/70 {
    --tw-shadow-color: rgb(240 253 244 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-50\/80 {
    --tw-shadow-color: rgb(240 253 244 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-50\/90 {
    --tw-shadow-color: rgb(240 253 244 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-500 {
    --tw-shadow-color: #22c55e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-500\/10 {
    --tw-shadow-color: rgb(34 197 94 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-500\/20 {
    --tw-shadow-color: rgb(34 197 94 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-500\/30 {
    --tw-shadow-color: rgb(34 197 94 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-500\/40 {
    --tw-shadow-color: rgb(34 197 94 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-500\/5 {
    --tw-shadow-color: rgb(34 197 94 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-500\/50 {
    --tw-shadow-color: rgb(34 197 94 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-500\/60 {
    --tw-shadow-color: rgb(34 197 94 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-500\/70 {
    --tw-shadow-color: rgb(34 197 94 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-500\/80 {
    --tw-shadow-color: rgb(34 197 94 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-500\/90 {
    --tw-shadow-color: rgb(34 197 94 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-600 {
    --tw-shadow-color: #16a34a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-600\/10 {
    --tw-shadow-color: rgb(22 163 74 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-600\/20 {
    --tw-shadow-color: rgb(22 163 74 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-600\/30 {
    --tw-shadow-color: rgb(22 163 74 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-600\/40 {
    --tw-shadow-color: rgb(22 163 74 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-600\/5 {
    --tw-shadow-color: rgb(22 163 74 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-600\/50 {
    --tw-shadow-color: rgb(22 163 74 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-600\/60 {
    --tw-shadow-color: rgb(22 163 74 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-600\/70 {
    --tw-shadow-color: rgb(22 163 74 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-600\/80 {
    --tw-shadow-color: rgb(22 163 74 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-600\/90 {
    --tw-shadow-color: rgb(22 163 74 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-700 {
    --tw-shadow-color: #15803d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-700\/10 {
    --tw-shadow-color: rgb(21 128 61 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-700\/20 {
    --tw-shadow-color: rgb(21 128 61 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-700\/30 {
    --tw-shadow-color: rgb(21 128 61 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-700\/40 {
    --tw-shadow-color: rgb(21 128 61 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-700\/5 {
    --tw-shadow-color: rgb(21 128 61 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-700\/50 {
    --tw-shadow-color: rgb(21 128 61 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-700\/60 {
    --tw-shadow-color: rgb(21 128 61 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-700\/70 {
    --tw-shadow-color: rgb(21 128 61 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-700\/80 {
    --tw-shadow-color: rgb(21 128 61 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-700\/90 {
    --tw-shadow-color: rgb(21 128 61 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-800 {
    --tw-shadow-color: #166534;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-800\/10 {
    --tw-shadow-color: rgb(22 101 52 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-800\/20 {
    --tw-shadow-color: rgb(22 101 52 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-800\/30 {
    --tw-shadow-color: rgb(22 101 52 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-800\/40 {
    --tw-shadow-color: rgb(22 101 52 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-800\/5 {
    --tw-shadow-color: rgb(22 101 52 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-800\/50 {
    --tw-shadow-color: rgb(22 101 52 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-800\/60 {
    --tw-shadow-color: rgb(22 101 52 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-800\/70 {
    --tw-shadow-color: rgb(22 101 52 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-800\/80 {
    --tw-shadow-color: rgb(22 101 52 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-800\/90 {
    --tw-shadow-color: rgb(22 101 52 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-900 {
    --tw-shadow-color: #14532d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-900\/10 {
    --tw-shadow-color: rgb(20 83 45 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-900\/20 {
    --tw-shadow-color: rgb(20 83 45 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-900\/30 {
    --tw-shadow-color: rgb(20 83 45 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-900\/40 {
    --tw-shadow-color: rgb(20 83 45 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-900\/5 {
    --tw-shadow-color: rgb(20 83 45 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-900\/50 {
    --tw-shadow-color: rgb(20 83 45 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-900\/60 {
    --tw-shadow-color: rgb(20 83 45 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-900\/70 {
    --tw-shadow-color: rgb(20 83 45 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-900\/80 {
    --tw-shadow-color: rgb(20 83 45 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-900\/90 {
    --tw-shadow-color: rgb(20 83 45 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-950 {
    --tw-shadow-color: #052e16;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-950\/10 {
    --tw-shadow-color: rgb(5 46 22 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-950\/20 {
    --tw-shadow-color: rgb(5 46 22 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-950\/30 {
    --tw-shadow-color: rgb(5 46 22 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-950\/40 {
    --tw-shadow-color: rgb(5 46 22 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-950\/5 {
    --tw-shadow-color: rgb(5 46 22 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-950\/50 {
    --tw-shadow-color: rgb(5 46 22 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-950\/60 {
    --tw-shadow-color: rgb(5 46 22 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-950\/70 {
    --tw-shadow-color: rgb(5 46 22 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-950\/80 {
    --tw-shadow-color: rgb(5 46 22 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-green-950\/90 {
    --tw-shadow-color: rgb(5 46 22 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-100 {
    --tw-shadow-color: #e0e7ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-100\/10 {
    --tw-shadow-color: rgb(224 231 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-100\/20 {
    --tw-shadow-color: rgb(224 231 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-100\/30 {
    --tw-shadow-color: rgb(224 231 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-100\/40 {
    --tw-shadow-color: rgb(224 231 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-100\/5 {
    --tw-shadow-color: rgb(224 231 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-100\/50 {
    --tw-shadow-color: rgb(224 231 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-100\/60 {
    --tw-shadow-color: rgb(224 231 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-100\/70 {
    --tw-shadow-color: rgb(224 231 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-100\/80 {
    --tw-shadow-color: rgb(224 231 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-100\/90 {
    --tw-shadow-color: rgb(224 231 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-200 {
    --tw-shadow-color: #c7d2fe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-200\/10 {
    --tw-shadow-color: rgb(199 210 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-200\/20 {
    --tw-shadow-color: rgb(199 210 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-200\/30 {
    --tw-shadow-color: rgb(199 210 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-200\/40 {
    --tw-shadow-color: rgb(199 210 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-200\/5 {
    --tw-shadow-color: rgb(199 210 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-200\/50 {
    --tw-shadow-color: rgb(199 210 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-200\/60 {
    --tw-shadow-color: rgb(199 210 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-200\/70 {
    --tw-shadow-color: rgb(199 210 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-200\/80 {
    --tw-shadow-color: rgb(199 210 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-200\/90 {
    --tw-shadow-color: rgb(199 210 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-300 {
    --tw-shadow-color: #a5b4fc;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-300\/10 {
    --tw-shadow-color: rgb(165 180 252 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-300\/20 {
    --tw-shadow-color: rgb(165 180 252 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-300\/30 {
    --tw-shadow-color: rgb(165 180 252 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-300\/40 {
    --tw-shadow-color: rgb(165 180 252 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-300\/5 {
    --tw-shadow-color: rgb(165 180 252 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-300\/50 {
    --tw-shadow-color: rgb(165 180 252 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-300\/60 {
    --tw-shadow-color: rgb(165 180 252 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-300\/70 {
    --tw-shadow-color: rgb(165 180 252 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-300\/80 {
    --tw-shadow-color: rgb(165 180 252 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-300\/90 {
    --tw-shadow-color: rgb(165 180 252 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-400 {
    --tw-shadow-color: #818cf8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-400\/10 {
    --tw-shadow-color: rgb(129 140 248 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-400\/20 {
    --tw-shadow-color: rgb(129 140 248 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-400\/30 {
    --tw-shadow-color: rgb(129 140 248 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-400\/40 {
    --tw-shadow-color: rgb(129 140 248 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-400\/5 {
    --tw-shadow-color: rgb(129 140 248 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-400\/50 {
    --tw-shadow-color: rgb(129 140 248 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-400\/60 {
    --tw-shadow-color: rgb(129 140 248 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-400\/70 {
    --tw-shadow-color: rgb(129 140 248 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-400\/80 {
    --tw-shadow-color: rgb(129 140 248 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-400\/90 {
    --tw-shadow-color: rgb(129 140 248 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-50 {
    --tw-shadow-color: #eef2ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-50\/10 {
    --tw-shadow-color: rgb(238 242 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-50\/20 {
    --tw-shadow-color: rgb(238 242 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-50\/30 {
    --tw-shadow-color: rgb(238 242 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-50\/40 {
    --tw-shadow-color: rgb(238 242 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-50\/5 {
    --tw-shadow-color: rgb(238 242 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-50\/50 {
    --tw-shadow-color: rgb(238 242 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-50\/60 {
    --tw-shadow-color: rgb(238 242 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-50\/70 {
    --tw-shadow-color: rgb(238 242 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-50\/80 {
    --tw-shadow-color: rgb(238 242 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-50\/90 {
    --tw-shadow-color: rgb(238 242 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-500 {
    --tw-shadow-color: #6366f1;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-500\/10 {
    --tw-shadow-color: rgb(99 102 241 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-500\/20 {
    --tw-shadow-color: rgb(99 102 241 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-500\/30 {
    --tw-shadow-color: rgb(99 102 241 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-500\/40 {
    --tw-shadow-color: rgb(99 102 241 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-500\/5 {
    --tw-shadow-color: rgb(99 102 241 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-500\/50 {
    --tw-shadow-color: rgb(99 102 241 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-500\/60 {
    --tw-shadow-color: rgb(99 102 241 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-500\/70 {
    --tw-shadow-color: rgb(99 102 241 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-500\/80 {
    --tw-shadow-color: rgb(99 102 241 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-500\/90 {
    --tw-shadow-color: rgb(99 102 241 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-600 {
    --tw-shadow-color: #4f46e5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-600\/10 {
    --tw-shadow-color: rgb(79 70 229 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-600\/20 {
    --tw-shadow-color: rgb(79 70 229 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-600\/30 {
    --tw-shadow-color: rgb(79 70 229 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-600\/40 {
    --tw-shadow-color: rgb(79 70 229 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-600\/5 {
    --tw-shadow-color: rgb(79 70 229 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-600\/50 {
    --tw-shadow-color: rgb(79 70 229 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-600\/60 {
    --tw-shadow-color: rgb(79 70 229 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-600\/70 {
    --tw-shadow-color: rgb(79 70 229 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-600\/80 {
    --tw-shadow-color: rgb(79 70 229 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-600\/90 {
    --tw-shadow-color: rgb(79 70 229 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-700 {
    --tw-shadow-color: #4338ca;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-700\/10 {
    --tw-shadow-color: rgb(67 56 202 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-700\/20 {
    --tw-shadow-color: rgb(67 56 202 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-700\/30 {
    --tw-shadow-color: rgb(67 56 202 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-700\/40 {
    --tw-shadow-color: rgb(67 56 202 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-700\/5 {
    --tw-shadow-color: rgb(67 56 202 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-700\/50 {
    --tw-shadow-color: rgb(67 56 202 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-700\/60 {
    --tw-shadow-color: rgb(67 56 202 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-700\/70 {
    --tw-shadow-color: rgb(67 56 202 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-700\/80 {
    --tw-shadow-color: rgb(67 56 202 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-700\/90 {
    --tw-shadow-color: rgb(67 56 202 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-800 {
    --tw-shadow-color: #3730a3;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-800\/10 {
    --tw-shadow-color: rgb(55 48 163 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-800\/20 {
    --tw-shadow-color: rgb(55 48 163 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-800\/30 {
    --tw-shadow-color: rgb(55 48 163 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-800\/40 {
    --tw-shadow-color: rgb(55 48 163 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-800\/5 {
    --tw-shadow-color: rgb(55 48 163 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-800\/50 {
    --tw-shadow-color: rgb(55 48 163 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-800\/60 {
    --tw-shadow-color: rgb(55 48 163 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-800\/70 {
    --tw-shadow-color: rgb(55 48 163 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-800\/80 {
    --tw-shadow-color: rgb(55 48 163 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-800\/90 {
    --tw-shadow-color: rgb(55 48 163 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-900 {
    --tw-shadow-color: #312e81;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-900\/10 {
    --tw-shadow-color: rgb(49 46 129 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-900\/20 {
    --tw-shadow-color: rgb(49 46 129 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-900\/30 {
    --tw-shadow-color: rgb(49 46 129 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-900\/40 {
    --tw-shadow-color: rgb(49 46 129 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-900\/5 {
    --tw-shadow-color: rgb(49 46 129 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-900\/50 {
    --tw-shadow-color: rgb(49 46 129 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-900\/60 {
    --tw-shadow-color: rgb(49 46 129 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-900\/70 {
    --tw-shadow-color: rgb(49 46 129 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-900\/80 {
    --tw-shadow-color: rgb(49 46 129 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-900\/90 {
    --tw-shadow-color: rgb(49 46 129 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-950 {
    --tw-shadow-color: #1e1b4b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-950\/10 {
    --tw-shadow-color: rgb(30 27 75 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-950\/20 {
    --tw-shadow-color: rgb(30 27 75 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-950\/30 {
    --tw-shadow-color: rgb(30 27 75 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-950\/40 {
    --tw-shadow-color: rgb(30 27 75 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-950\/5 {
    --tw-shadow-color: rgb(30 27 75 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-950\/50 {
    --tw-shadow-color: rgb(30 27 75 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-950\/60 {
    --tw-shadow-color: rgb(30 27 75 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-950\/70 {
    --tw-shadow-color: rgb(30 27 75 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-950\/80 {
    --tw-shadow-color: rgb(30 27 75 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-indigo-950\/90 {
    --tw-shadow-color: rgb(30 27 75 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-100 {
    --tw-shadow-color: #ecfccb;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-100\/10 {
    --tw-shadow-color: rgb(236 252 203 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-100\/20 {
    --tw-shadow-color: rgb(236 252 203 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-100\/30 {
    --tw-shadow-color: rgb(236 252 203 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-100\/40 {
    --tw-shadow-color: rgb(236 252 203 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-100\/5 {
    --tw-shadow-color: rgb(236 252 203 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-100\/50 {
    --tw-shadow-color: rgb(236 252 203 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-100\/60 {
    --tw-shadow-color: rgb(236 252 203 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-100\/70 {
    --tw-shadow-color: rgb(236 252 203 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-100\/80 {
    --tw-shadow-color: rgb(236 252 203 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-100\/90 {
    --tw-shadow-color: rgb(236 252 203 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-200 {
    --tw-shadow-color: #d9f99d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-200\/10 {
    --tw-shadow-color: rgb(217 249 157 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-200\/20 {
    --tw-shadow-color: rgb(217 249 157 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-200\/30 {
    --tw-shadow-color: rgb(217 249 157 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-200\/40 {
    --tw-shadow-color: rgb(217 249 157 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-200\/5 {
    --tw-shadow-color: rgb(217 249 157 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-200\/50 {
    --tw-shadow-color: rgb(217 249 157 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-200\/60 {
    --tw-shadow-color: rgb(217 249 157 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-200\/70 {
    --tw-shadow-color: rgb(217 249 157 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-200\/80 {
    --tw-shadow-color: rgb(217 249 157 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-200\/90 {
    --tw-shadow-color: rgb(217 249 157 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-300 {
    --tw-shadow-color: #bef264;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-300\/10 {
    --tw-shadow-color: rgb(190 242 100 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-300\/20 {
    --tw-shadow-color: rgb(190 242 100 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-300\/30 {
    --tw-shadow-color: rgb(190 242 100 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-300\/40 {
    --tw-shadow-color: rgb(190 242 100 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-300\/5 {
    --tw-shadow-color: rgb(190 242 100 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-300\/50 {
    --tw-shadow-color: rgb(190 242 100 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-300\/60 {
    --tw-shadow-color: rgb(190 242 100 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-300\/70 {
    --tw-shadow-color: rgb(190 242 100 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-300\/80 {
    --tw-shadow-color: rgb(190 242 100 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-300\/90 {
    --tw-shadow-color: rgb(190 242 100 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-400 {
    --tw-shadow-color: #a3e635;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-400\/10 {
    --tw-shadow-color: rgb(163 230 53 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-400\/20 {
    --tw-shadow-color: rgb(163 230 53 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-400\/30 {
    --tw-shadow-color: rgb(163 230 53 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-400\/40 {
    --tw-shadow-color: rgb(163 230 53 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-400\/5 {
    --tw-shadow-color: rgb(163 230 53 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-400\/50 {
    --tw-shadow-color: rgb(163 230 53 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-400\/60 {
    --tw-shadow-color: rgb(163 230 53 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-400\/70 {
    --tw-shadow-color: rgb(163 230 53 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-400\/80 {
    --tw-shadow-color: rgb(163 230 53 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-400\/90 {
    --tw-shadow-color: rgb(163 230 53 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-50 {
    --tw-shadow-color: #f7fee7;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-50\/10 {
    --tw-shadow-color: rgb(247 254 231 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-50\/20 {
    --tw-shadow-color: rgb(247 254 231 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-50\/30 {
    --tw-shadow-color: rgb(247 254 231 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-50\/40 {
    --tw-shadow-color: rgb(247 254 231 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-50\/5 {
    --tw-shadow-color: rgb(247 254 231 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-50\/50 {
    --tw-shadow-color: rgb(247 254 231 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-50\/60 {
    --tw-shadow-color: rgb(247 254 231 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-50\/70 {
    --tw-shadow-color: rgb(247 254 231 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-50\/80 {
    --tw-shadow-color: rgb(247 254 231 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-50\/90 {
    --tw-shadow-color: rgb(247 254 231 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-500 {
    --tw-shadow-color: #84cc16;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-500\/10 {
    --tw-shadow-color: rgb(132 204 22 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-500\/20 {
    --tw-shadow-color: rgb(132 204 22 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-500\/30 {
    --tw-shadow-color: rgb(132 204 22 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-500\/40 {
    --tw-shadow-color: rgb(132 204 22 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-500\/5 {
    --tw-shadow-color: rgb(132 204 22 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-500\/50 {
    --tw-shadow-color: rgb(132 204 22 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-500\/60 {
    --tw-shadow-color: rgb(132 204 22 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-500\/70 {
    --tw-shadow-color: rgb(132 204 22 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-500\/80 {
    --tw-shadow-color: rgb(132 204 22 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-500\/90 {
    --tw-shadow-color: rgb(132 204 22 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-600 {
    --tw-shadow-color: #65a30d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-600\/10 {
    --tw-shadow-color: rgb(101 163 13 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-600\/20 {
    --tw-shadow-color: rgb(101 163 13 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-600\/30 {
    --tw-shadow-color: rgb(101 163 13 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-600\/40 {
    --tw-shadow-color: rgb(101 163 13 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-600\/5 {
    --tw-shadow-color: rgb(101 163 13 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-600\/50 {
    --tw-shadow-color: rgb(101 163 13 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-600\/60 {
    --tw-shadow-color: rgb(101 163 13 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-600\/70 {
    --tw-shadow-color: rgb(101 163 13 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-600\/80 {
    --tw-shadow-color: rgb(101 163 13 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-600\/90 {
    --tw-shadow-color: rgb(101 163 13 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-700 {
    --tw-shadow-color: #4d7c0f;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-700\/10 {
    --tw-shadow-color: rgb(77 124 15 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-700\/20 {
    --tw-shadow-color: rgb(77 124 15 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-700\/30 {
    --tw-shadow-color: rgb(77 124 15 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-700\/40 {
    --tw-shadow-color: rgb(77 124 15 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-700\/5 {
    --tw-shadow-color: rgb(77 124 15 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-700\/50 {
    --tw-shadow-color: rgb(77 124 15 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-700\/60 {
    --tw-shadow-color: rgb(77 124 15 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-700\/70 {
    --tw-shadow-color: rgb(77 124 15 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-700\/80 {
    --tw-shadow-color: rgb(77 124 15 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-700\/90 {
    --tw-shadow-color: rgb(77 124 15 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-800 {
    --tw-shadow-color: #3f6212;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-800\/10 {
    --tw-shadow-color: rgb(63 98 18 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-800\/20 {
    --tw-shadow-color: rgb(63 98 18 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-800\/30 {
    --tw-shadow-color: rgb(63 98 18 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-800\/40 {
    --tw-shadow-color: rgb(63 98 18 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-800\/5 {
    --tw-shadow-color: rgb(63 98 18 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-800\/50 {
    --tw-shadow-color: rgb(63 98 18 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-800\/60 {
    --tw-shadow-color: rgb(63 98 18 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-800\/70 {
    --tw-shadow-color: rgb(63 98 18 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-800\/80 {
    --tw-shadow-color: rgb(63 98 18 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-800\/90 {
    --tw-shadow-color: rgb(63 98 18 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-900 {
    --tw-shadow-color: #365314;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-900\/10 {
    --tw-shadow-color: rgb(54 83 20 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-900\/20 {
    --tw-shadow-color: rgb(54 83 20 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-900\/30 {
    --tw-shadow-color: rgb(54 83 20 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-900\/40 {
    --tw-shadow-color: rgb(54 83 20 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-900\/5 {
    --tw-shadow-color: rgb(54 83 20 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-900\/50 {
    --tw-shadow-color: rgb(54 83 20 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-900\/60 {
    --tw-shadow-color: rgb(54 83 20 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-900\/70 {
    --tw-shadow-color: rgb(54 83 20 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-900\/80 {
    --tw-shadow-color: rgb(54 83 20 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-900\/90 {
    --tw-shadow-color: rgb(54 83 20 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-950 {
    --tw-shadow-color: #1a2e05;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-950\/10 {
    --tw-shadow-color: rgb(26 46 5 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-950\/20 {
    --tw-shadow-color: rgb(26 46 5 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-950\/30 {
    --tw-shadow-color: rgb(26 46 5 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-950\/40 {
    --tw-shadow-color: rgb(26 46 5 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-950\/5 {
    --tw-shadow-color: rgb(26 46 5 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-950\/50 {
    --tw-shadow-color: rgb(26 46 5 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-950\/60 {
    --tw-shadow-color: rgb(26 46 5 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-950\/70 {
    --tw-shadow-color: rgb(26 46 5 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-950\/80 {
    --tw-shadow-color: rgb(26 46 5 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-lime-950\/90 {
    --tw-shadow-color: rgb(26 46 5 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-100 {
    --tw-shadow-color: #f5f5f5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-100\/10 {
    --tw-shadow-color: rgb(245 245 245 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-100\/20 {
    --tw-shadow-color: rgb(245 245 245 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-100\/30 {
    --tw-shadow-color: rgb(245 245 245 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-100\/40 {
    --tw-shadow-color: rgb(245 245 245 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-100\/5 {
    --tw-shadow-color: rgb(245 245 245 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-100\/50 {
    --tw-shadow-color: rgb(245 245 245 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-100\/60 {
    --tw-shadow-color: rgb(245 245 245 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-100\/70 {
    --tw-shadow-color: rgb(245 245 245 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-100\/80 {
    --tw-shadow-color: rgb(245 245 245 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-100\/90 {
    --tw-shadow-color: rgb(245 245 245 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-200 {
    --tw-shadow-color: #e5e5e5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-200\/10 {
    --tw-shadow-color: rgb(229 229 229 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-200\/20 {
    --tw-shadow-color: rgb(229 229 229 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-200\/30 {
    --tw-shadow-color: rgb(229 229 229 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-200\/40 {
    --tw-shadow-color: rgb(229 229 229 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-200\/5 {
    --tw-shadow-color: rgb(229 229 229 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-200\/50 {
    --tw-shadow-color: rgb(229 229 229 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-200\/60 {
    --tw-shadow-color: rgb(229 229 229 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-200\/70 {
    --tw-shadow-color: rgb(229 229 229 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-200\/80 {
    --tw-shadow-color: rgb(229 229 229 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-200\/90 {
    --tw-shadow-color: rgb(229 229 229 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-300 {
    --tw-shadow-color: #d4d4d4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-300\/10 {
    --tw-shadow-color: rgb(212 212 212 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-300\/20 {
    --tw-shadow-color: rgb(212 212 212 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-300\/30 {
    --tw-shadow-color: rgb(212 212 212 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-300\/40 {
    --tw-shadow-color: rgb(212 212 212 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-300\/5 {
    --tw-shadow-color: rgb(212 212 212 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-300\/50 {
    --tw-shadow-color: rgb(212 212 212 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-300\/60 {
    --tw-shadow-color: rgb(212 212 212 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-300\/70 {
    --tw-shadow-color: rgb(212 212 212 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-300\/80 {
    --tw-shadow-color: rgb(212 212 212 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-300\/90 {
    --tw-shadow-color: rgb(212 212 212 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-400 {
    --tw-shadow-color: #a3a3a3;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-400\/10 {
    --tw-shadow-color: rgb(163 163 163 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-400\/20 {
    --tw-shadow-color: rgb(163 163 163 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-400\/30 {
    --tw-shadow-color: rgb(163 163 163 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-400\/40 {
    --tw-shadow-color: rgb(163 163 163 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-400\/5 {
    --tw-shadow-color: rgb(163 163 163 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-400\/50 {
    --tw-shadow-color: rgb(163 163 163 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-400\/60 {
    --tw-shadow-color: rgb(163 163 163 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-400\/70 {
    --tw-shadow-color: rgb(163 163 163 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-400\/80 {
    --tw-shadow-color: rgb(163 163 163 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-400\/90 {
    --tw-shadow-color: rgb(163 163 163 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-50 {
    --tw-shadow-color: #fafafa;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-50\/10 {
    --tw-shadow-color: rgb(250 250 250 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-50\/20 {
    --tw-shadow-color: rgb(250 250 250 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-50\/30 {
    --tw-shadow-color: rgb(250 250 250 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-50\/40 {
    --tw-shadow-color: rgb(250 250 250 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-50\/5 {
    --tw-shadow-color: rgb(250 250 250 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-50\/50 {
    --tw-shadow-color: rgb(250 250 250 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-50\/60 {
    --tw-shadow-color: rgb(250 250 250 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-50\/70 {
    --tw-shadow-color: rgb(250 250 250 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-50\/80 {
    --tw-shadow-color: rgb(250 250 250 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-50\/90 {
    --tw-shadow-color: rgb(250 250 250 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-500 {
    --tw-shadow-color: #737373;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-500\/10 {
    --tw-shadow-color: rgb(115 115 115 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-500\/20 {
    --tw-shadow-color: rgb(115 115 115 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-500\/30 {
    --tw-shadow-color: rgb(115 115 115 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-500\/40 {
    --tw-shadow-color: rgb(115 115 115 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-500\/5 {
    --tw-shadow-color: rgb(115 115 115 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-500\/50 {
    --tw-shadow-color: rgb(115 115 115 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-500\/60 {
    --tw-shadow-color: rgb(115 115 115 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-500\/70 {
    --tw-shadow-color: rgb(115 115 115 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-500\/80 {
    --tw-shadow-color: rgb(115 115 115 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-500\/90 {
    --tw-shadow-color: rgb(115 115 115 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-600 {
    --tw-shadow-color: #525252;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-600\/10 {
    --tw-shadow-color: rgb(82 82 82 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-600\/20 {
    --tw-shadow-color: rgb(82 82 82 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-600\/30 {
    --tw-shadow-color: rgb(82 82 82 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-600\/40 {
    --tw-shadow-color: rgb(82 82 82 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-600\/5 {
    --tw-shadow-color: rgb(82 82 82 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-600\/50 {
    --tw-shadow-color: rgb(82 82 82 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-600\/60 {
    --tw-shadow-color: rgb(82 82 82 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-600\/70 {
    --tw-shadow-color: rgb(82 82 82 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-600\/80 {
    --tw-shadow-color: rgb(82 82 82 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-600\/90 {
    --tw-shadow-color: rgb(82 82 82 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-700 {
    --tw-shadow-color: #404040;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-700\/10 {
    --tw-shadow-color: rgb(64 64 64 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-700\/20 {
    --tw-shadow-color: rgb(64 64 64 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-700\/30 {
    --tw-shadow-color: rgb(64 64 64 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-700\/40 {
    --tw-shadow-color: rgb(64 64 64 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-700\/5 {
    --tw-shadow-color: rgb(64 64 64 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-700\/50 {
    --tw-shadow-color: rgb(64 64 64 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-700\/60 {
    --tw-shadow-color: rgb(64 64 64 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-700\/70 {
    --tw-shadow-color: rgb(64 64 64 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-700\/80 {
    --tw-shadow-color: rgb(64 64 64 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-700\/90 {
    --tw-shadow-color: rgb(64 64 64 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-800 {
    --tw-shadow-color: #262626;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-800\/10 {
    --tw-shadow-color: rgb(38 38 38 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-800\/20 {
    --tw-shadow-color: rgb(38 38 38 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-800\/30 {
    --tw-shadow-color: rgb(38 38 38 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-800\/40 {
    --tw-shadow-color: rgb(38 38 38 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-800\/5 {
    --tw-shadow-color: rgb(38 38 38 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-800\/50 {
    --tw-shadow-color: rgb(38 38 38 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-800\/60 {
    --tw-shadow-color: rgb(38 38 38 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-800\/70 {
    --tw-shadow-color: rgb(38 38 38 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-800\/80 {
    --tw-shadow-color: rgb(38 38 38 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-800\/90 {
    --tw-shadow-color: rgb(38 38 38 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-900 {
    --tw-shadow-color: #171717;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-900\/10 {
    --tw-shadow-color: rgb(23 23 23 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-900\/20 {
    --tw-shadow-color: rgb(23 23 23 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-900\/30 {
    --tw-shadow-color: rgb(23 23 23 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-900\/40 {
    --tw-shadow-color: rgb(23 23 23 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-900\/5 {
    --tw-shadow-color: rgb(23 23 23 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-900\/50 {
    --tw-shadow-color: rgb(23 23 23 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-900\/60 {
    --tw-shadow-color: rgb(23 23 23 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-900\/70 {
    --tw-shadow-color: rgb(23 23 23 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-900\/80 {
    --tw-shadow-color: rgb(23 23 23 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-900\/90 {
    --tw-shadow-color: rgb(23 23 23 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-950 {
    --tw-shadow-color: #0a0a0a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-950\/10 {
    --tw-shadow-color: rgb(10 10 10 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-950\/20 {
    --tw-shadow-color: rgb(10 10 10 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-950\/30 {
    --tw-shadow-color: rgb(10 10 10 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-950\/40 {
    --tw-shadow-color: rgb(10 10 10 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-950\/5 {
    --tw-shadow-color: rgb(10 10 10 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-950\/50 {
    --tw-shadow-color: rgb(10 10 10 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-950\/60 {
    --tw-shadow-color: rgb(10 10 10 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-950\/70 {
    --tw-shadow-color: rgb(10 10 10 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-950\/80 {
    --tw-shadow-color: rgb(10 10 10 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-neutral-950\/90 {
    --tw-shadow-color: rgb(10 10 10 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-100 {
    --tw-shadow-color: #ffedd5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-100\/10 {
    --tw-shadow-color: rgb(255 237 213 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-100\/20 {
    --tw-shadow-color: rgb(255 237 213 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-100\/30 {
    --tw-shadow-color: rgb(255 237 213 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-100\/40 {
    --tw-shadow-color: rgb(255 237 213 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-100\/5 {
    --tw-shadow-color: rgb(255 237 213 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-100\/50 {
    --tw-shadow-color: rgb(255 237 213 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-100\/60 {
    --tw-shadow-color: rgb(255 237 213 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-100\/70 {
    --tw-shadow-color: rgb(255 237 213 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-100\/80 {
    --tw-shadow-color: rgb(255 237 213 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-100\/90 {
    --tw-shadow-color: rgb(255 237 213 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-200 {
    --tw-shadow-color: #fed7aa;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-200\/10 {
    --tw-shadow-color: rgb(254 215 170 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-200\/20 {
    --tw-shadow-color: rgb(254 215 170 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-200\/30 {
    --tw-shadow-color: rgb(254 215 170 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-200\/40 {
    --tw-shadow-color: rgb(254 215 170 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-200\/5 {
    --tw-shadow-color: rgb(254 215 170 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-200\/50 {
    --tw-shadow-color: rgb(254 215 170 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-200\/60 {
    --tw-shadow-color: rgb(254 215 170 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-200\/70 {
    --tw-shadow-color: rgb(254 215 170 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-200\/80 {
    --tw-shadow-color: rgb(254 215 170 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-200\/90 {
    --tw-shadow-color: rgb(254 215 170 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-300 {
    --tw-shadow-color: #fdba74;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-300\/10 {
    --tw-shadow-color: rgb(253 186 116 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-300\/20 {
    --tw-shadow-color: rgb(253 186 116 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-300\/30 {
    --tw-shadow-color: rgb(253 186 116 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-300\/40 {
    --tw-shadow-color: rgb(253 186 116 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-300\/5 {
    --tw-shadow-color: rgb(253 186 116 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-300\/50 {
    --tw-shadow-color: rgb(253 186 116 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-300\/60 {
    --tw-shadow-color: rgb(253 186 116 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-300\/70 {
    --tw-shadow-color: rgb(253 186 116 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-300\/80 {
    --tw-shadow-color: rgb(253 186 116 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-300\/90 {
    --tw-shadow-color: rgb(253 186 116 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-400 {
    --tw-shadow-color: #fb923c;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-400\/10 {
    --tw-shadow-color: rgb(251 146 60 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-400\/20 {
    --tw-shadow-color: rgb(251 146 60 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-400\/30 {
    --tw-shadow-color: rgb(251 146 60 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-400\/40 {
    --tw-shadow-color: rgb(251 146 60 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-400\/5 {
    --tw-shadow-color: rgb(251 146 60 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-400\/50 {
    --tw-shadow-color: rgb(251 146 60 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-400\/60 {
    --tw-shadow-color: rgb(251 146 60 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-400\/70 {
    --tw-shadow-color: rgb(251 146 60 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-400\/80 {
    --tw-shadow-color: rgb(251 146 60 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-400\/90 {
    --tw-shadow-color: rgb(251 146 60 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-50 {
    --tw-shadow-color: #fff7ed;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-50\/10 {
    --tw-shadow-color: rgb(255 247 237 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-50\/20 {
    --tw-shadow-color: rgb(255 247 237 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-50\/30 {
    --tw-shadow-color: rgb(255 247 237 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-50\/40 {
    --tw-shadow-color: rgb(255 247 237 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-50\/5 {
    --tw-shadow-color: rgb(255 247 237 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-50\/50 {
    --tw-shadow-color: rgb(255 247 237 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-50\/60 {
    --tw-shadow-color: rgb(255 247 237 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-50\/70 {
    --tw-shadow-color: rgb(255 247 237 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-50\/80 {
    --tw-shadow-color: rgb(255 247 237 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-50\/90 {
    --tw-shadow-color: rgb(255 247 237 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-500 {
    --tw-shadow-color: #f97316;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-500\/10 {
    --tw-shadow-color: rgb(249 115 22 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-500\/20 {
    --tw-shadow-color: rgb(249 115 22 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-500\/30 {
    --tw-shadow-color: rgb(249 115 22 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-500\/40 {
    --tw-shadow-color: rgb(249 115 22 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-500\/5 {
    --tw-shadow-color: rgb(249 115 22 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-500\/50 {
    --tw-shadow-color: rgb(249 115 22 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-500\/60 {
    --tw-shadow-color: rgb(249 115 22 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-500\/70 {
    --tw-shadow-color: rgb(249 115 22 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-500\/80 {
    --tw-shadow-color: rgb(249 115 22 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-500\/90 {
    --tw-shadow-color: rgb(249 115 22 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-600 {
    --tw-shadow-color: #ea580c;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-600\/10 {
    --tw-shadow-color: rgb(234 88 12 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-600\/20 {
    --tw-shadow-color: rgb(234 88 12 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-600\/30 {
    --tw-shadow-color: rgb(234 88 12 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-600\/40 {
    --tw-shadow-color: rgb(234 88 12 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-600\/5 {
    --tw-shadow-color: rgb(234 88 12 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-600\/50 {
    --tw-shadow-color: rgb(234 88 12 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-600\/60 {
    --tw-shadow-color: rgb(234 88 12 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-600\/70 {
    --tw-shadow-color: rgb(234 88 12 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-600\/80 {
    --tw-shadow-color: rgb(234 88 12 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-600\/90 {
    --tw-shadow-color: rgb(234 88 12 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-700 {
    --tw-shadow-color: #c2410c;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-700\/10 {
    --tw-shadow-color: rgb(194 65 12 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-700\/20 {
    --tw-shadow-color: rgb(194 65 12 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-700\/30 {
    --tw-shadow-color: rgb(194 65 12 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-700\/40 {
    --tw-shadow-color: rgb(194 65 12 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-700\/5 {
    --tw-shadow-color: rgb(194 65 12 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-700\/50 {
    --tw-shadow-color: rgb(194 65 12 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-700\/60 {
    --tw-shadow-color: rgb(194 65 12 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-700\/70 {
    --tw-shadow-color: rgb(194 65 12 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-700\/80 {
    --tw-shadow-color: rgb(194 65 12 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-700\/90 {
    --tw-shadow-color: rgb(194 65 12 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-800 {
    --tw-shadow-color: #9a3412;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-800\/10 {
    --tw-shadow-color: rgb(154 52 18 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-800\/20 {
    --tw-shadow-color: rgb(154 52 18 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-800\/30 {
    --tw-shadow-color: rgb(154 52 18 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-800\/40 {
    --tw-shadow-color: rgb(154 52 18 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-800\/5 {
    --tw-shadow-color: rgb(154 52 18 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-800\/50 {
    --tw-shadow-color: rgb(154 52 18 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-800\/60 {
    --tw-shadow-color: rgb(154 52 18 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-800\/70 {
    --tw-shadow-color: rgb(154 52 18 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-800\/80 {
    --tw-shadow-color: rgb(154 52 18 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-800\/90 {
    --tw-shadow-color: rgb(154 52 18 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-900 {
    --tw-shadow-color: #7c2d12;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-900\/10 {
    --tw-shadow-color: rgb(124 45 18 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-900\/20 {
    --tw-shadow-color: rgb(124 45 18 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-900\/30 {
    --tw-shadow-color: rgb(124 45 18 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-900\/40 {
    --tw-shadow-color: rgb(124 45 18 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-900\/5 {
    --tw-shadow-color: rgb(124 45 18 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-900\/50 {
    --tw-shadow-color: rgb(124 45 18 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-900\/60 {
    --tw-shadow-color: rgb(124 45 18 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-900\/70 {
    --tw-shadow-color: rgb(124 45 18 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-900\/80 {
    --tw-shadow-color: rgb(124 45 18 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-900\/90 {
    --tw-shadow-color: rgb(124 45 18 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-950 {
    --tw-shadow-color: #431407;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-950\/10 {
    --tw-shadow-color: rgb(67 20 7 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-950\/20 {
    --tw-shadow-color: rgb(67 20 7 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-950\/30 {
    --tw-shadow-color: rgb(67 20 7 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-950\/40 {
    --tw-shadow-color: rgb(67 20 7 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-950\/5 {
    --tw-shadow-color: rgb(67 20 7 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-950\/50 {
    --tw-shadow-color: rgb(67 20 7 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-950\/60 {
    --tw-shadow-color: rgb(67 20 7 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-950\/70 {
    --tw-shadow-color: rgb(67 20 7 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-950\/80 {
    --tw-shadow-color: rgb(67 20 7 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-orange-950\/90 {
    --tw-shadow-color: rgb(67 20 7 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-100 {
    --tw-shadow-color: #fce7f3;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-100\/10 {
    --tw-shadow-color: rgb(252 231 243 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-100\/20 {
    --tw-shadow-color: rgb(252 231 243 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-100\/30 {
    --tw-shadow-color: rgb(252 231 243 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-100\/40 {
    --tw-shadow-color: rgb(252 231 243 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-100\/5 {
    --tw-shadow-color: rgb(252 231 243 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-100\/50 {
    --tw-shadow-color: rgb(252 231 243 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-100\/60 {
    --tw-shadow-color: rgb(252 231 243 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-100\/70 {
    --tw-shadow-color: rgb(252 231 243 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-100\/80 {
    --tw-shadow-color: rgb(252 231 243 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-100\/90 {
    --tw-shadow-color: rgb(252 231 243 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-200 {
    --tw-shadow-color: #fbcfe8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-200\/10 {
    --tw-shadow-color: rgb(251 207 232 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-200\/20 {
    --tw-shadow-color: rgb(251 207 232 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-200\/30 {
    --tw-shadow-color: rgb(251 207 232 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-200\/40 {
    --tw-shadow-color: rgb(251 207 232 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-200\/5 {
    --tw-shadow-color: rgb(251 207 232 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-200\/50 {
    --tw-shadow-color: rgb(251 207 232 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-200\/60 {
    --tw-shadow-color: rgb(251 207 232 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-200\/70 {
    --tw-shadow-color: rgb(251 207 232 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-200\/80 {
    --tw-shadow-color: rgb(251 207 232 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-200\/90 {
    --tw-shadow-color: rgb(251 207 232 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-300 {
    --tw-shadow-color: #f9a8d4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-300\/10 {
    --tw-shadow-color: rgb(249 168 212 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-300\/20 {
    --tw-shadow-color: rgb(249 168 212 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-300\/30 {
    --tw-shadow-color: rgb(249 168 212 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-300\/40 {
    --tw-shadow-color: rgb(249 168 212 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-300\/5 {
    --tw-shadow-color: rgb(249 168 212 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-300\/50 {
    --tw-shadow-color: rgb(249 168 212 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-300\/60 {
    --tw-shadow-color: rgb(249 168 212 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-300\/70 {
    --tw-shadow-color: rgb(249 168 212 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-300\/80 {
    --tw-shadow-color: rgb(249 168 212 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-300\/90 {
    --tw-shadow-color: rgb(249 168 212 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-400 {
    --tw-shadow-color: #f472b6;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-400\/10 {
    --tw-shadow-color: rgb(244 114 182 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-400\/20 {
    --tw-shadow-color: rgb(244 114 182 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-400\/30 {
    --tw-shadow-color: rgb(244 114 182 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-400\/40 {
    --tw-shadow-color: rgb(244 114 182 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-400\/5 {
    --tw-shadow-color: rgb(244 114 182 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-400\/50 {
    --tw-shadow-color: rgb(244 114 182 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-400\/60 {
    --tw-shadow-color: rgb(244 114 182 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-400\/70 {
    --tw-shadow-color: rgb(244 114 182 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-400\/80 {
    --tw-shadow-color: rgb(244 114 182 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-400\/90 {
    --tw-shadow-color: rgb(244 114 182 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-50 {
    --tw-shadow-color: #fdf2f8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-50\/10 {
    --tw-shadow-color: rgb(253 242 248 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-50\/20 {
    --tw-shadow-color: rgb(253 242 248 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-50\/30 {
    --tw-shadow-color: rgb(253 242 248 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-50\/40 {
    --tw-shadow-color: rgb(253 242 248 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-50\/5 {
    --tw-shadow-color: rgb(253 242 248 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-50\/50 {
    --tw-shadow-color: rgb(253 242 248 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-50\/60 {
    --tw-shadow-color: rgb(253 242 248 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-50\/70 {
    --tw-shadow-color: rgb(253 242 248 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-50\/80 {
    --tw-shadow-color: rgb(253 242 248 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-50\/90 {
    --tw-shadow-color: rgb(253 242 248 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-500 {
    --tw-shadow-color: #ec4899;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-500\/10 {
    --tw-shadow-color: rgb(236 72 153 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-500\/20 {
    --tw-shadow-color: rgb(236 72 153 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-500\/30 {
    --tw-shadow-color: rgb(236 72 153 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-500\/40 {
    --tw-shadow-color: rgb(236 72 153 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-500\/5 {
    --tw-shadow-color: rgb(236 72 153 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-500\/50 {
    --tw-shadow-color: rgb(236 72 153 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-500\/60 {
    --tw-shadow-color: rgb(236 72 153 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-500\/70 {
    --tw-shadow-color: rgb(236 72 153 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-500\/80 {
    --tw-shadow-color: rgb(236 72 153 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-500\/90 {
    --tw-shadow-color: rgb(236 72 153 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-600 {
    --tw-shadow-color: #db2777;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-600\/10 {
    --tw-shadow-color: rgb(219 39 119 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-600\/20 {
    --tw-shadow-color: rgb(219 39 119 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-600\/30 {
    --tw-shadow-color: rgb(219 39 119 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-600\/40 {
    --tw-shadow-color: rgb(219 39 119 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-600\/5 {
    --tw-shadow-color: rgb(219 39 119 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-600\/50 {
    --tw-shadow-color: rgb(219 39 119 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-600\/60 {
    --tw-shadow-color: rgb(219 39 119 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-600\/70 {
    --tw-shadow-color: rgb(219 39 119 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-600\/80 {
    --tw-shadow-color: rgb(219 39 119 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-600\/90 {
    --tw-shadow-color: rgb(219 39 119 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-700 {
    --tw-shadow-color: #be185d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-700\/10 {
    --tw-shadow-color: rgb(190 24 93 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-700\/20 {
    --tw-shadow-color: rgb(190 24 93 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-700\/30 {
    --tw-shadow-color: rgb(190 24 93 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-700\/40 {
    --tw-shadow-color: rgb(190 24 93 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-700\/5 {
    --tw-shadow-color: rgb(190 24 93 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-700\/50 {
    --tw-shadow-color: rgb(190 24 93 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-700\/60 {
    --tw-shadow-color: rgb(190 24 93 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-700\/70 {
    --tw-shadow-color: rgb(190 24 93 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-700\/80 {
    --tw-shadow-color: rgb(190 24 93 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-700\/90 {
    --tw-shadow-color: rgb(190 24 93 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-800 {
    --tw-shadow-color: #9d174d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-800\/10 {
    --tw-shadow-color: rgb(157 23 77 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-800\/20 {
    --tw-shadow-color: rgb(157 23 77 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-800\/30 {
    --tw-shadow-color: rgb(157 23 77 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-800\/40 {
    --tw-shadow-color: rgb(157 23 77 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-800\/5 {
    --tw-shadow-color: rgb(157 23 77 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-800\/50 {
    --tw-shadow-color: rgb(157 23 77 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-800\/60 {
    --tw-shadow-color: rgb(157 23 77 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-800\/70 {
    --tw-shadow-color: rgb(157 23 77 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-800\/80 {
    --tw-shadow-color: rgb(157 23 77 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-800\/90 {
    --tw-shadow-color: rgb(157 23 77 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-900 {
    --tw-shadow-color: #831843;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-900\/10 {
    --tw-shadow-color: rgb(131 24 67 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-900\/20 {
    --tw-shadow-color: rgb(131 24 67 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-900\/30 {
    --tw-shadow-color: rgb(131 24 67 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-900\/40 {
    --tw-shadow-color: rgb(131 24 67 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-900\/5 {
    --tw-shadow-color: rgb(131 24 67 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-900\/50 {
    --tw-shadow-color: rgb(131 24 67 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-900\/60 {
    --tw-shadow-color: rgb(131 24 67 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-900\/70 {
    --tw-shadow-color: rgb(131 24 67 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-900\/80 {
    --tw-shadow-color: rgb(131 24 67 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-900\/90 {
    --tw-shadow-color: rgb(131 24 67 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-950 {
    --tw-shadow-color: #500724;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-950\/10 {
    --tw-shadow-color: rgb(80 7 36 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-950\/20 {
    --tw-shadow-color: rgb(80 7 36 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-950\/30 {
    --tw-shadow-color: rgb(80 7 36 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-950\/40 {
    --tw-shadow-color: rgb(80 7 36 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-950\/5 {
    --tw-shadow-color: rgb(80 7 36 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-950\/50 {
    --tw-shadow-color: rgb(80 7 36 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-950\/60 {
    --tw-shadow-color: rgb(80 7 36 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-950\/70 {
    --tw-shadow-color: rgb(80 7 36 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-950\/80 {
    --tw-shadow-color: rgb(80 7 36 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-pink-950\/90 {
    --tw-shadow-color: rgb(80 7 36 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-100 {
    --tw-shadow-color: #f3e8ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-100\/10 {
    --tw-shadow-color: rgb(243 232 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-100\/20 {
    --tw-shadow-color: rgb(243 232 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-100\/30 {
    --tw-shadow-color: rgb(243 232 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-100\/40 {
    --tw-shadow-color: rgb(243 232 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-100\/5 {
    --tw-shadow-color: rgb(243 232 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-100\/50 {
    --tw-shadow-color: rgb(243 232 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-100\/60 {
    --tw-shadow-color: rgb(243 232 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-100\/70 {
    --tw-shadow-color: rgb(243 232 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-100\/80 {
    --tw-shadow-color: rgb(243 232 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-100\/90 {
    --tw-shadow-color: rgb(243 232 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-200 {
    --tw-shadow-color: #e9d5ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-200\/10 {
    --tw-shadow-color: rgb(233 213 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-200\/20 {
    --tw-shadow-color: rgb(233 213 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-200\/30 {
    --tw-shadow-color: rgb(233 213 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-200\/40 {
    --tw-shadow-color: rgb(233 213 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-200\/5 {
    --tw-shadow-color: rgb(233 213 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-200\/50 {
    --tw-shadow-color: rgb(233 213 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-200\/60 {
    --tw-shadow-color: rgb(233 213 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-200\/70 {
    --tw-shadow-color: rgb(233 213 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-200\/80 {
    --tw-shadow-color: rgb(233 213 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-200\/90 {
    --tw-shadow-color: rgb(233 213 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-300 {
    --tw-shadow-color: #d8b4fe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-300\/10 {
    --tw-shadow-color: rgb(216 180 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-300\/20 {
    --tw-shadow-color: rgb(216 180 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-300\/30 {
    --tw-shadow-color: rgb(216 180 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-300\/40 {
    --tw-shadow-color: rgb(216 180 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-300\/5 {
    --tw-shadow-color: rgb(216 180 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-300\/50 {
    --tw-shadow-color: rgb(216 180 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-300\/60 {
    --tw-shadow-color: rgb(216 180 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-300\/70 {
    --tw-shadow-color: rgb(216 180 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-300\/80 {
    --tw-shadow-color: rgb(216 180 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-300\/90 {
    --tw-shadow-color: rgb(216 180 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-400 {
    --tw-shadow-color: #c084fc;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-400\/10 {
    --tw-shadow-color: rgb(192 132 252 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-400\/20 {
    --tw-shadow-color: rgb(192 132 252 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-400\/30 {
    --tw-shadow-color: rgb(192 132 252 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-400\/40 {
    --tw-shadow-color: rgb(192 132 252 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-400\/5 {
    --tw-shadow-color: rgb(192 132 252 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-400\/50 {
    --tw-shadow-color: rgb(192 132 252 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-400\/60 {
    --tw-shadow-color: rgb(192 132 252 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-400\/70 {
    --tw-shadow-color: rgb(192 132 252 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-400\/80 {
    --tw-shadow-color: rgb(192 132 252 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-400\/90 {
    --tw-shadow-color: rgb(192 132 252 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-50 {
    --tw-shadow-color: #faf5ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-50\/10 {
    --tw-shadow-color: rgb(250 245 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-50\/20 {
    --tw-shadow-color: rgb(250 245 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-50\/30 {
    --tw-shadow-color: rgb(250 245 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-50\/40 {
    --tw-shadow-color: rgb(250 245 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-50\/5 {
    --tw-shadow-color: rgb(250 245 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-50\/50 {
    --tw-shadow-color: rgb(250 245 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-50\/60 {
    --tw-shadow-color: rgb(250 245 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-50\/70 {
    --tw-shadow-color: rgb(250 245 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-50\/80 {
    --tw-shadow-color: rgb(250 245 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-50\/90 {
    --tw-shadow-color: rgb(250 245 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-500 {
    --tw-shadow-color: #a855f7;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-500\/10 {
    --tw-shadow-color: rgb(168 85 247 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-500\/20 {
    --tw-shadow-color: rgb(168 85 247 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-500\/30 {
    --tw-shadow-color: rgb(168 85 247 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-500\/40 {
    --tw-shadow-color: rgb(168 85 247 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-500\/5 {
    --tw-shadow-color: rgb(168 85 247 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-500\/50 {
    --tw-shadow-color: rgb(168 85 247 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-500\/60 {
    --tw-shadow-color: rgb(168 85 247 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-500\/70 {
    --tw-shadow-color: rgb(168 85 247 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-500\/80 {
    --tw-shadow-color: rgb(168 85 247 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-500\/90 {
    --tw-shadow-color: rgb(168 85 247 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-600 {
    --tw-shadow-color: #9333ea;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-600\/10 {
    --tw-shadow-color: rgb(147 51 234 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-600\/20 {
    --tw-shadow-color: rgb(147 51 234 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-600\/30 {
    --tw-shadow-color: rgb(147 51 234 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-600\/40 {
    --tw-shadow-color: rgb(147 51 234 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-600\/5 {
    --tw-shadow-color: rgb(147 51 234 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-600\/50 {
    --tw-shadow-color: rgb(147 51 234 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-600\/60 {
    --tw-shadow-color: rgb(147 51 234 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-600\/70 {
    --tw-shadow-color: rgb(147 51 234 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-600\/80 {
    --tw-shadow-color: rgb(147 51 234 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-600\/90 {
    --tw-shadow-color: rgb(147 51 234 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-700 {
    --tw-shadow-color: #7e22ce;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-700\/10 {
    --tw-shadow-color: rgb(126 34 206 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-700\/20 {
    --tw-shadow-color: rgb(126 34 206 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-700\/30 {
    --tw-shadow-color: rgb(126 34 206 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-700\/40 {
    --tw-shadow-color: rgb(126 34 206 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-700\/5 {
    --tw-shadow-color: rgb(126 34 206 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-700\/50 {
    --tw-shadow-color: rgb(126 34 206 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-700\/60 {
    --tw-shadow-color: rgb(126 34 206 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-700\/70 {
    --tw-shadow-color: rgb(126 34 206 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-700\/80 {
    --tw-shadow-color: rgb(126 34 206 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-700\/90 {
    --tw-shadow-color: rgb(126 34 206 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-800 {
    --tw-shadow-color: #6b21a8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-800\/10 {
    --tw-shadow-color: rgb(107 33 168 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-800\/20 {
    --tw-shadow-color: rgb(107 33 168 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-800\/30 {
    --tw-shadow-color: rgb(107 33 168 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-800\/40 {
    --tw-shadow-color: rgb(107 33 168 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-800\/5 {
    --tw-shadow-color: rgb(107 33 168 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-800\/50 {
    --tw-shadow-color: rgb(107 33 168 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-800\/60 {
    --tw-shadow-color: rgb(107 33 168 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-800\/70 {
    --tw-shadow-color: rgb(107 33 168 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-800\/80 {
    --tw-shadow-color: rgb(107 33 168 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-800\/90 {
    --tw-shadow-color: rgb(107 33 168 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-900 {
    --tw-shadow-color: #581c87;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-900\/10 {
    --tw-shadow-color: rgb(88 28 135 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-900\/20 {
    --tw-shadow-color: rgb(88 28 135 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-900\/30 {
    --tw-shadow-color: rgb(88 28 135 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-900\/40 {
    --tw-shadow-color: rgb(88 28 135 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-900\/5 {
    --tw-shadow-color: rgb(88 28 135 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-900\/50 {
    --tw-shadow-color: rgb(88 28 135 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-900\/60 {
    --tw-shadow-color: rgb(88 28 135 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-900\/70 {
    --tw-shadow-color: rgb(88 28 135 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-900\/80 {
    --tw-shadow-color: rgb(88 28 135 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-900\/90 {
    --tw-shadow-color: rgb(88 28 135 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-950 {
    --tw-shadow-color: #3b0764;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-950\/10 {
    --tw-shadow-color: rgb(59 7 100 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-950\/20 {
    --tw-shadow-color: rgb(59 7 100 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-950\/30 {
    --tw-shadow-color: rgb(59 7 100 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-950\/40 {
    --tw-shadow-color: rgb(59 7 100 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-950\/5 {
    --tw-shadow-color: rgb(59 7 100 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-950\/50 {
    --tw-shadow-color: rgb(59 7 100 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-950\/60 {
    --tw-shadow-color: rgb(59 7 100 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-950\/70 {
    --tw-shadow-color: rgb(59 7 100 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-950\/80 {
    --tw-shadow-color: rgb(59 7 100 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-purple-950\/90 {
    --tw-shadow-color: rgb(59 7 100 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-100 {
    --tw-shadow-color: #fee2e2;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-100\/10 {
    --tw-shadow-color: rgb(254 226 226 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-100\/20 {
    --tw-shadow-color: rgb(254 226 226 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-100\/30 {
    --tw-shadow-color: rgb(254 226 226 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-100\/40 {
    --tw-shadow-color: rgb(254 226 226 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-100\/5 {
    --tw-shadow-color: rgb(254 226 226 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-100\/50 {
    --tw-shadow-color: rgb(254 226 226 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-100\/60 {
    --tw-shadow-color: rgb(254 226 226 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-100\/70 {
    --tw-shadow-color: rgb(254 226 226 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-100\/80 {
    --tw-shadow-color: rgb(254 226 226 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-100\/90 {
    --tw-shadow-color: rgb(254 226 226 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-200 {
    --tw-shadow-color: #fecaca;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-200\/10 {
    --tw-shadow-color: rgb(254 202 202 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-200\/20 {
    --tw-shadow-color: rgb(254 202 202 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-200\/30 {
    --tw-shadow-color: rgb(254 202 202 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-200\/40 {
    --tw-shadow-color: rgb(254 202 202 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-200\/5 {
    --tw-shadow-color: rgb(254 202 202 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-200\/50 {
    --tw-shadow-color: rgb(254 202 202 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-200\/60 {
    --tw-shadow-color: rgb(254 202 202 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-200\/70 {
    --tw-shadow-color: rgb(254 202 202 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-200\/80 {
    --tw-shadow-color: rgb(254 202 202 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-200\/90 {
    --tw-shadow-color: rgb(254 202 202 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-300 {
    --tw-shadow-color: #fca5a5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-300\/10 {
    --tw-shadow-color: rgb(252 165 165 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-300\/20 {
    --tw-shadow-color: rgb(252 165 165 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-300\/30 {
    --tw-shadow-color: rgb(252 165 165 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-300\/40 {
    --tw-shadow-color: rgb(252 165 165 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-300\/5 {
    --tw-shadow-color: rgb(252 165 165 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-300\/50 {
    --tw-shadow-color: rgb(252 165 165 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-300\/60 {
    --tw-shadow-color: rgb(252 165 165 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-300\/70 {
    --tw-shadow-color: rgb(252 165 165 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-300\/80 {
    --tw-shadow-color: rgb(252 165 165 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-300\/90 {
    --tw-shadow-color: rgb(252 165 165 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-400 {
    --tw-shadow-color: #f87171;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-400\/10 {
    --tw-shadow-color: rgb(248 113 113 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-400\/20 {
    --tw-shadow-color: rgb(248 113 113 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-400\/30 {
    --tw-shadow-color: rgb(248 113 113 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-400\/40 {
    --tw-shadow-color: rgb(248 113 113 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-400\/5 {
    --tw-shadow-color: rgb(248 113 113 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-400\/50 {
    --tw-shadow-color: rgb(248 113 113 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-400\/60 {
    --tw-shadow-color: rgb(248 113 113 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-400\/70 {
    --tw-shadow-color: rgb(248 113 113 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-400\/80 {
    --tw-shadow-color: rgb(248 113 113 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-400\/90 {
    --tw-shadow-color: rgb(248 113 113 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-50 {
    --tw-shadow-color: #fef2f2;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-50\/10 {
    --tw-shadow-color: rgb(254 242 242 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-50\/20 {
    --tw-shadow-color: rgb(254 242 242 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-50\/30 {
    --tw-shadow-color: rgb(254 242 242 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-50\/40 {
    --tw-shadow-color: rgb(254 242 242 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-50\/5 {
    --tw-shadow-color: rgb(254 242 242 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-50\/50 {
    --tw-shadow-color: rgb(254 242 242 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-50\/60 {
    --tw-shadow-color: rgb(254 242 242 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-50\/70 {
    --tw-shadow-color: rgb(254 242 242 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-50\/80 {
    --tw-shadow-color: rgb(254 242 242 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-50\/90 {
    --tw-shadow-color: rgb(254 242 242 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-500 {
    --tw-shadow-color: #ef4444;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-500\/10 {
    --tw-shadow-color: rgb(239 68 68 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-500\/20 {
    --tw-shadow-color: rgb(239 68 68 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-500\/30 {
    --tw-shadow-color: rgb(239 68 68 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-500\/40 {
    --tw-shadow-color: rgb(239 68 68 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-500\/5 {
    --tw-shadow-color: rgb(239 68 68 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-500\/50 {
    --tw-shadow-color: rgb(239 68 68 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-500\/60 {
    --tw-shadow-color: rgb(239 68 68 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-500\/70 {
    --tw-shadow-color: rgb(239 68 68 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-500\/80 {
    --tw-shadow-color: rgb(239 68 68 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-500\/90 {
    --tw-shadow-color: rgb(239 68 68 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-600 {
    --tw-shadow-color: #dc2626;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-600\/10 {
    --tw-shadow-color: rgb(220 38 38 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-600\/20 {
    --tw-shadow-color: rgb(220 38 38 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-600\/30 {
    --tw-shadow-color: rgb(220 38 38 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-600\/40 {
    --tw-shadow-color: rgb(220 38 38 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-600\/5 {
    --tw-shadow-color: rgb(220 38 38 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-600\/50 {
    --tw-shadow-color: rgb(220 38 38 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-600\/60 {
    --tw-shadow-color: rgb(220 38 38 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-600\/70 {
    --tw-shadow-color: rgb(220 38 38 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-600\/80 {
    --tw-shadow-color: rgb(220 38 38 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-600\/90 {
    --tw-shadow-color: rgb(220 38 38 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-700 {
    --tw-shadow-color: #b91c1c;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-700\/10 {
    --tw-shadow-color: rgb(185 28 28 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-700\/20 {
    --tw-shadow-color: rgb(185 28 28 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-700\/30 {
    --tw-shadow-color: rgb(185 28 28 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-700\/40 {
    --tw-shadow-color: rgb(185 28 28 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-700\/5 {
    --tw-shadow-color: rgb(185 28 28 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-700\/50 {
    --tw-shadow-color: rgb(185 28 28 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-700\/60 {
    --tw-shadow-color: rgb(185 28 28 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-700\/70 {
    --tw-shadow-color: rgb(185 28 28 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-700\/80 {
    --tw-shadow-color: rgb(185 28 28 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-700\/90 {
    --tw-shadow-color: rgb(185 28 28 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-800 {
    --tw-shadow-color: #991b1b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-800\/10 {
    --tw-shadow-color: rgb(153 27 27 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-800\/20 {
    --tw-shadow-color: rgb(153 27 27 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-800\/30 {
    --tw-shadow-color: rgb(153 27 27 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-800\/40 {
    --tw-shadow-color: rgb(153 27 27 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-800\/5 {
    --tw-shadow-color: rgb(153 27 27 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-800\/50 {
    --tw-shadow-color: rgb(153 27 27 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-800\/60 {
    --tw-shadow-color: rgb(153 27 27 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-800\/70 {
    --tw-shadow-color: rgb(153 27 27 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-800\/80 {
    --tw-shadow-color: rgb(153 27 27 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-800\/90 {
    --tw-shadow-color: rgb(153 27 27 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-900 {
    --tw-shadow-color: #7f1d1d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-900\/10 {
    --tw-shadow-color: rgb(127 29 29 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-900\/20 {
    --tw-shadow-color: rgb(127 29 29 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-900\/30 {
    --tw-shadow-color: rgb(127 29 29 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-900\/40 {
    --tw-shadow-color: rgb(127 29 29 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-900\/5 {
    --tw-shadow-color: rgb(127 29 29 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-900\/50 {
    --tw-shadow-color: rgb(127 29 29 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-900\/60 {
    --tw-shadow-color: rgb(127 29 29 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-900\/70 {
    --tw-shadow-color: rgb(127 29 29 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-900\/80 {
    --tw-shadow-color: rgb(127 29 29 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-900\/90 {
    --tw-shadow-color: rgb(127 29 29 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-950 {
    --tw-shadow-color: #450a0a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-950\/10 {
    --tw-shadow-color: rgb(69 10 10 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-950\/20 {
    --tw-shadow-color: rgb(69 10 10 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-950\/30 {
    --tw-shadow-color: rgb(69 10 10 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-950\/40 {
    --tw-shadow-color: rgb(69 10 10 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-950\/5 {
    --tw-shadow-color: rgb(69 10 10 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-950\/50 {
    --tw-shadow-color: rgb(69 10 10 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-950\/60 {
    --tw-shadow-color: rgb(69 10 10 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-950\/70 {
    --tw-shadow-color: rgb(69 10 10 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-950\/80 {
    --tw-shadow-color: rgb(69 10 10 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-red-950\/90 {
    --tw-shadow-color: rgb(69 10 10 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-100 {
    --tw-shadow-color: #ffe4e6;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-100\/10 {
    --tw-shadow-color: rgb(255 228 230 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-100\/20 {
    --tw-shadow-color: rgb(255 228 230 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-100\/30 {
    --tw-shadow-color: rgb(255 228 230 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-100\/40 {
    --tw-shadow-color: rgb(255 228 230 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-100\/5 {
    --tw-shadow-color: rgb(255 228 230 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-100\/50 {
    --tw-shadow-color: rgb(255 228 230 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-100\/60 {
    --tw-shadow-color: rgb(255 228 230 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-100\/70 {
    --tw-shadow-color: rgb(255 228 230 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-100\/80 {
    --tw-shadow-color: rgb(255 228 230 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-100\/90 {
    --tw-shadow-color: rgb(255 228 230 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-200 {
    --tw-shadow-color: #fecdd3;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-200\/10 {
    --tw-shadow-color: rgb(254 205 211 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-200\/20 {
    --tw-shadow-color: rgb(254 205 211 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-200\/30 {
    --tw-shadow-color: rgb(254 205 211 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-200\/40 {
    --tw-shadow-color: rgb(254 205 211 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-200\/5 {
    --tw-shadow-color: rgb(254 205 211 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-200\/50 {
    --tw-shadow-color: rgb(254 205 211 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-200\/60 {
    --tw-shadow-color: rgb(254 205 211 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-200\/70 {
    --tw-shadow-color: rgb(254 205 211 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-200\/80 {
    --tw-shadow-color: rgb(254 205 211 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-200\/90 {
    --tw-shadow-color: rgb(254 205 211 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-300 {
    --tw-shadow-color: #fda4af;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-300\/10 {
    --tw-shadow-color: rgb(253 164 175 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-300\/20 {
    --tw-shadow-color: rgb(253 164 175 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-300\/30 {
    --tw-shadow-color: rgb(253 164 175 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-300\/40 {
    --tw-shadow-color: rgb(253 164 175 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-300\/5 {
    --tw-shadow-color: rgb(253 164 175 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-300\/50 {
    --tw-shadow-color: rgb(253 164 175 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-300\/60 {
    --tw-shadow-color: rgb(253 164 175 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-300\/70 {
    --tw-shadow-color: rgb(253 164 175 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-300\/80 {
    --tw-shadow-color: rgb(253 164 175 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-300\/90 {
    --tw-shadow-color: rgb(253 164 175 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-400 {
    --tw-shadow-color: #fb7185;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-400\/10 {
    --tw-shadow-color: rgb(251 113 133 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-400\/20 {
    --tw-shadow-color: rgb(251 113 133 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-400\/30 {
    --tw-shadow-color: rgb(251 113 133 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-400\/40 {
    --tw-shadow-color: rgb(251 113 133 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-400\/5 {
    --tw-shadow-color: rgb(251 113 133 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-400\/50 {
    --tw-shadow-color: rgb(251 113 133 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-400\/60 {
    --tw-shadow-color: rgb(251 113 133 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-400\/70 {
    --tw-shadow-color: rgb(251 113 133 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-400\/80 {
    --tw-shadow-color: rgb(251 113 133 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-400\/90 {
    --tw-shadow-color: rgb(251 113 133 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-50 {
    --tw-shadow-color: #fff1f2;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-50\/10 {
    --tw-shadow-color: rgb(255 241 242 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-50\/20 {
    --tw-shadow-color: rgb(255 241 242 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-50\/30 {
    --tw-shadow-color: rgb(255 241 242 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-50\/40 {
    --tw-shadow-color: rgb(255 241 242 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-50\/5 {
    --tw-shadow-color: rgb(255 241 242 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-50\/50 {
    --tw-shadow-color: rgb(255 241 242 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-50\/60 {
    --tw-shadow-color: rgb(255 241 242 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-50\/70 {
    --tw-shadow-color: rgb(255 241 242 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-50\/80 {
    --tw-shadow-color: rgb(255 241 242 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-50\/90 {
    --tw-shadow-color: rgb(255 241 242 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-500 {
    --tw-shadow-color: #f43f5e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-500\/10 {
    --tw-shadow-color: rgb(244 63 94 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-500\/20 {
    --tw-shadow-color: rgb(244 63 94 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-500\/30 {
    --tw-shadow-color: rgb(244 63 94 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-500\/40 {
    --tw-shadow-color: rgb(244 63 94 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-500\/5 {
    --tw-shadow-color: rgb(244 63 94 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-500\/50 {
    --tw-shadow-color: rgb(244 63 94 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-500\/60 {
    --tw-shadow-color: rgb(244 63 94 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-500\/70 {
    --tw-shadow-color: rgb(244 63 94 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-500\/80 {
    --tw-shadow-color: rgb(244 63 94 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-500\/90 {
    --tw-shadow-color: rgb(244 63 94 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-600 {
    --tw-shadow-color: #e11d48;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-600\/10 {
    --tw-shadow-color: rgb(225 29 72 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-600\/20 {
    --tw-shadow-color: rgb(225 29 72 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-600\/30 {
    --tw-shadow-color: rgb(225 29 72 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-600\/40 {
    --tw-shadow-color: rgb(225 29 72 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-600\/5 {
    --tw-shadow-color: rgb(225 29 72 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-600\/50 {
    --tw-shadow-color: rgb(225 29 72 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-600\/60 {
    --tw-shadow-color: rgb(225 29 72 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-600\/70 {
    --tw-shadow-color: rgb(225 29 72 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-600\/80 {
    --tw-shadow-color: rgb(225 29 72 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-600\/90 {
    --tw-shadow-color: rgb(225 29 72 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-700 {
    --tw-shadow-color: #be123c;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-700\/10 {
    --tw-shadow-color: rgb(190 18 60 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-700\/20 {
    --tw-shadow-color: rgb(190 18 60 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-700\/30 {
    --tw-shadow-color: rgb(190 18 60 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-700\/40 {
    --tw-shadow-color: rgb(190 18 60 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-700\/5 {
    --tw-shadow-color: rgb(190 18 60 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-700\/50 {
    --tw-shadow-color: rgb(190 18 60 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-700\/60 {
    --tw-shadow-color: rgb(190 18 60 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-700\/70 {
    --tw-shadow-color: rgb(190 18 60 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-700\/80 {
    --tw-shadow-color: rgb(190 18 60 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-700\/90 {
    --tw-shadow-color: rgb(190 18 60 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-800 {
    --tw-shadow-color: #9f1239;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-800\/10 {
    --tw-shadow-color: rgb(159 18 57 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-800\/20 {
    --tw-shadow-color: rgb(159 18 57 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-800\/30 {
    --tw-shadow-color: rgb(159 18 57 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-800\/40 {
    --tw-shadow-color: rgb(159 18 57 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-800\/5 {
    --tw-shadow-color: rgb(159 18 57 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-800\/50 {
    --tw-shadow-color: rgb(159 18 57 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-800\/60 {
    --tw-shadow-color: rgb(159 18 57 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-800\/70 {
    --tw-shadow-color: rgb(159 18 57 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-800\/80 {
    --tw-shadow-color: rgb(159 18 57 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-800\/90 {
    --tw-shadow-color: rgb(159 18 57 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-900 {
    --tw-shadow-color: #881337;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-900\/10 {
    --tw-shadow-color: rgb(136 19 55 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-900\/20 {
    --tw-shadow-color: rgb(136 19 55 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-900\/30 {
    --tw-shadow-color: rgb(136 19 55 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-900\/40 {
    --tw-shadow-color: rgb(136 19 55 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-900\/5 {
    --tw-shadow-color: rgb(136 19 55 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-900\/50 {
    --tw-shadow-color: rgb(136 19 55 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-900\/60 {
    --tw-shadow-color: rgb(136 19 55 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-900\/70 {
    --tw-shadow-color: rgb(136 19 55 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-900\/80 {
    --tw-shadow-color: rgb(136 19 55 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-900\/90 {
    --tw-shadow-color: rgb(136 19 55 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-950 {
    --tw-shadow-color: #4c0519;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-950\/10 {
    --tw-shadow-color: rgb(76 5 25 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-950\/20 {
    --tw-shadow-color: rgb(76 5 25 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-950\/30 {
    --tw-shadow-color: rgb(76 5 25 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-950\/40 {
    --tw-shadow-color: rgb(76 5 25 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-950\/5 {
    --tw-shadow-color: rgb(76 5 25 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-950\/50 {
    --tw-shadow-color: rgb(76 5 25 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-950\/60 {
    --tw-shadow-color: rgb(76 5 25 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-950\/70 {
    --tw-shadow-color: rgb(76 5 25 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-950\/80 {
    --tw-shadow-color: rgb(76 5 25 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-rose-950\/90 {
    --tw-shadow-color: rgb(76 5 25 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-100 {
    --tw-shadow-color: #e0f2fe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-100\/10 {
    --tw-shadow-color: rgb(224 242 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-100\/20 {
    --tw-shadow-color: rgb(224 242 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-100\/30 {
    --tw-shadow-color: rgb(224 242 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-100\/40 {
    --tw-shadow-color: rgb(224 242 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-100\/5 {
    --tw-shadow-color: rgb(224 242 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-100\/50 {
    --tw-shadow-color: rgb(224 242 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-100\/60 {
    --tw-shadow-color: rgb(224 242 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-100\/70 {
    --tw-shadow-color: rgb(224 242 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-100\/80 {
    --tw-shadow-color: rgb(224 242 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-100\/90 {
    --tw-shadow-color: rgb(224 242 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-200 {
    --tw-shadow-color: #bae6fd;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-200\/10 {
    --tw-shadow-color: rgb(186 230 253 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-200\/20 {
    --tw-shadow-color: rgb(186 230 253 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-200\/30 {
    --tw-shadow-color: rgb(186 230 253 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-200\/40 {
    --tw-shadow-color: rgb(186 230 253 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-200\/5 {
    --tw-shadow-color: rgb(186 230 253 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-200\/50 {
    --tw-shadow-color: rgb(186 230 253 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-200\/60 {
    --tw-shadow-color: rgb(186 230 253 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-200\/70 {
    --tw-shadow-color: rgb(186 230 253 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-200\/80 {
    --tw-shadow-color: rgb(186 230 253 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-200\/90 {
    --tw-shadow-color: rgb(186 230 253 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-300 {
    --tw-shadow-color: #7dd3fc;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-300\/10 {
    --tw-shadow-color: rgb(125 211 252 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-300\/20 {
    --tw-shadow-color: rgb(125 211 252 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-300\/30 {
    --tw-shadow-color: rgb(125 211 252 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-300\/40 {
    --tw-shadow-color: rgb(125 211 252 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-300\/5 {
    --tw-shadow-color: rgb(125 211 252 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-300\/50 {
    --tw-shadow-color: rgb(125 211 252 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-300\/60 {
    --tw-shadow-color: rgb(125 211 252 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-300\/70 {
    --tw-shadow-color: rgb(125 211 252 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-300\/80 {
    --tw-shadow-color: rgb(125 211 252 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-300\/90 {
    --tw-shadow-color: rgb(125 211 252 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-400 {
    --tw-shadow-color: #38bdf8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-400\/10 {
    --tw-shadow-color: rgb(56 189 248 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-400\/20 {
    --tw-shadow-color: rgb(56 189 248 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-400\/30 {
    --tw-shadow-color: rgb(56 189 248 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-400\/40 {
    --tw-shadow-color: rgb(56 189 248 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-400\/5 {
    --tw-shadow-color: rgb(56 189 248 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-400\/50 {
    --tw-shadow-color: rgb(56 189 248 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-400\/60 {
    --tw-shadow-color: rgb(56 189 248 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-400\/70 {
    --tw-shadow-color: rgb(56 189 248 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-400\/80 {
    --tw-shadow-color: rgb(56 189 248 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-400\/90 {
    --tw-shadow-color: rgb(56 189 248 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-50 {
    --tw-shadow-color: #f0f9ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-50\/10 {
    --tw-shadow-color: rgb(240 249 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-50\/20 {
    --tw-shadow-color: rgb(240 249 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-50\/30 {
    --tw-shadow-color: rgb(240 249 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-50\/40 {
    --tw-shadow-color: rgb(240 249 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-50\/5 {
    --tw-shadow-color: rgb(240 249 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-50\/50 {
    --tw-shadow-color: rgb(240 249 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-50\/60 {
    --tw-shadow-color: rgb(240 249 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-50\/70 {
    --tw-shadow-color: rgb(240 249 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-50\/80 {
    --tw-shadow-color: rgb(240 249 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-50\/90 {
    --tw-shadow-color: rgb(240 249 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-500 {
    --tw-shadow-color: #0ea5e9;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-500\/10 {
    --tw-shadow-color: rgb(14 165 233 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-500\/20 {
    --tw-shadow-color: rgb(14 165 233 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-500\/30 {
    --tw-shadow-color: rgb(14 165 233 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-500\/40 {
    --tw-shadow-color: rgb(14 165 233 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-500\/5 {
    --tw-shadow-color: rgb(14 165 233 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-500\/50 {
    --tw-shadow-color: rgb(14 165 233 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-500\/60 {
    --tw-shadow-color: rgb(14 165 233 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-500\/70 {
    --tw-shadow-color: rgb(14 165 233 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-500\/80 {
    --tw-shadow-color: rgb(14 165 233 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-500\/90 {
    --tw-shadow-color: rgb(14 165 233 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-600 {
    --tw-shadow-color: #0284c7;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-600\/10 {
    --tw-shadow-color: rgb(2 132 199 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-600\/20 {
    --tw-shadow-color: rgb(2 132 199 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-600\/30 {
    --tw-shadow-color: rgb(2 132 199 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-600\/40 {
    --tw-shadow-color: rgb(2 132 199 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-600\/5 {
    --tw-shadow-color: rgb(2 132 199 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-600\/50 {
    --tw-shadow-color: rgb(2 132 199 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-600\/60 {
    --tw-shadow-color: rgb(2 132 199 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-600\/70 {
    --tw-shadow-color: rgb(2 132 199 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-600\/80 {
    --tw-shadow-color: rgb(2 132 199 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-600\/90 {
    --tw-shadow-color: rgb(2 132 199 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-700 {
    --tw-shadow-color: #0369a1;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-700\/10 {
    --tw-shadow-color: rgb(3 105 161 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-700\/20 {
    --tw-shadow-color: rgb(3 105 161 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-700\/30 {
    --tw-shadow-color: rgb(3 105 161 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-700\/40 {
    --tw-shadow-color: rgb(3 105 161 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-700\/5 {
    --tw-shadow-color: rgb(3 105 161 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-700\/50 {
    --tw-shadow-color: rgb(3 105 161 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-700\/60 {
    --tw-shadow-color: rgb(3 105 161 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-700\/70 {
    --tw-shadow-color: rgb(3 105 161 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-700\/80 {
    --tw-shadow-color: rgb(3 105 161 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-700\/90 {
    --tw-shadow-color: rgb(3 105 161 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-800 {
    --tw-shadow-color: #075985;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-800\/10 {
    --tw-shadow-color: rgb(7 89 133 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-800\/20 {
    --tw-shadow-color: rgb(7 89 133 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-800\/30 {
    --tw-shadow-color: rgb(7 89 133 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-800\/40 {
    --tw-shadow-color: rgb(7 89 133 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-800\/5 {
    --tw-shadow-color: rgb(7 89 133 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-800\/50 {
    --tw-shadow-color: rgb(7 89 133 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-800\/60 {
    --tw-shadow-color: rgb(7 89 133 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-800\/70 {
    --tw-shadow-color: rgb(7 89 133 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-800\/80 {
    --tw-shadow-color: rgb(7 89 133 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-800\/90 {
    --tw-shadow-color: rgb(7 89 133 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-900 {
    --tw-shadow-color: #0c4a6e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-900\/10 {
    --tw-shadow-color: rgb(12 74 110 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-900\/20 {
    --tw-shadow-color: rgb(12 74 110 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-900\/30 {
    --tw-shadow-color: rgb(12 74 110 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-900\/40 {
    --tw-shadow-color: rgb(12 74 110 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-900\/5 {
    --tw-shadow-color: rgb(12 74 110 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-900\/50 {
    --tw-shadow-color: rgb(12 74 110 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-900\/60 {
    --tw-shadow-color: rgb(12 74 110 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-900\/70 {
    --tw-shadow-color: rgb(12 74 110 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-900\/80 {
    --tw-shadow-color: rgb(12 74 110 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-900\/90 {
    --tw-shadow-color: rgb(12 74 110 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-950 {
    --tw-shadow-color: #082f49;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-950\/10 {
    --tw-shadow-color: rgb(8 47 73 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-950\/20 {
    --tw-shadow-color: rgb(8 47 73 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-950\/30 {
    --tw-shadow-color: rgb(8 47 73 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-950\/40 {
    --tw-shadow-color: rgb(8 47 73 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-950\/5 {
    --tw-shadow-color: rgb(8 47 73 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-950\/50 {
    --tw-shadow-color: rgb(8 47 73 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-950\/60 {
    --tw-shadow-color: rgb(8 47 73 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-950\/70 {
    --tw-shadow-color: rgb(8 47 73 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-950\/80 {
    --tw-shadow-color: rgb(8 47 73 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-sky-950\/90 {
    --tw-shadow-color: rgb(8 47 73 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-100 {
    --tw-shadow-color: #f1f5f9;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-100\/10 {
    --tw-shadow-color: rgb(241 245 249 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-100\/20 {
    --tw-shadow-color: rgb(241 245 249 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-100\/30 {
    --tw-shadow-color: rgb(241 245 249 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-100\/40 {
    --tw-shadow-color: rgb(241 245 249 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-100\/5 {
    --tw-shadow-color: rgb(241 245 249 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-100\/50 {
    --tw-shadow-color: rgb(241 245 249 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-100\/60 {
    --tw-shadow-color: rgb(241 245 249 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-100\/70 {
    --tw-shadow-color: rgb(241 245 249 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-100\/80 {
    --tw-shadow-color: rgb(241 245 249 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-100\/90 {
    --tw-shadow-color: rgb(241 245 249 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-200 {
    --tw-shadow-color: #e2e8f0;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-200\/10 {
    --tw-shadow-color: rgb(226 232 240 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-200\/20 {
    --tw-shadow-color: rgb(226 232 240 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-200\/30 {
    --tw-shadow-color: rgb(226 232 240 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-200\/40 {
    --tw-shadow-color: rgb(226 232 240 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-200\/5 {
    --tw-shadow-color: rgb(226 232 240 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-200\/50 {
    --tw-shadow-color: rgb(226 232 240 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-200\/60 {
    --tw-shadow-color: rgb(226 232 240 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-200\/70 {
    --tw-shadow-color: rgb(226 232 240 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-200\/80 {
    --tw-shadow-color: rgb(226 232 240 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-200\/90 {
    --tw-shadow-color: rgb(226 232 240 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-300 {
    --tw-shadow-color: #cbd5e1;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-300\/10 {
    --tw-shadow-color: rgb(203 213 225 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-300\/20 {
    --tw-shadow-color: rgb(203 213 225 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-300\/30 {
    --tw-shadow-color: rgb(203 213 225 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-300\/40 {
    --tw-shadow-color: rgb(203 213 225 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-300\/5 {
    --tw-shadow-color: rgb(203 213 225 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-300\/50 {
    --tw-shadow-color: rgb(203 213 225 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-300\/60 {
    --tw-shadow-color: rgb(203 213 225 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-300\/70 {
    --tw-shadow-color: rgb(203 213 225 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-300\/80 {
    --tw-shadow-color: rgb(203 213 225 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-300\/90 {
    --tw-shadow-color: rgb(203 213 225 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-400 {
    --tw-shadow-color: #94a3b8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-400\/10 {
    --tw-shadow-color: rgb(148 163 184 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-400\/20 {
    --tw-shadow-color: rgb(148 163 184 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-400\/30 {
    --tw-shadow-color: rgb(148 163 184 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-400\/40 {
    --tw-shadow-color: rgb(148 163 184 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-400\/5 {
    --tw-shadow-color: rgb(148 163 184 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-400\/50 {
    --tw-shadow-color: rgb(148 163 184 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-400\/60 {
    --tw-shadow-color: rgb(148 163 184 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-400\/70 {
    --tw-shadow-color: rgb(148 163 184 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-400\/80 {
    --tw-shadow-color: rgb(148 163 184 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-400\/90 {
    --tw-shadow-color: rgb(148 163 184 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-50 {
    --tw-shadow-color: #f8fafc;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-50\/10 {
    --tw-shadow-color: rgb(248 250 252 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-50\/20 {
    --tw-shadow-color: rgb(248 250 252 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-50\/30 {
    --tw-shadow-color: rgb(248 250 252 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-50\/40 {
    --tw-shadow-color: rgb(248 250 252 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-50\/5 {
    --tw-shadow-color: rgb(248 250 252 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-50\/50 {
    --tw-shadow-color: rgb(248 250 252 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-50\/60 {
    --tw-shadow-color: rgb(248 250 252 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-50\/70 {
    --tw-shadow-color: rgb(248 250 252 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-50\/80 {
    --tw-shadow-color: rgb(248 250 252 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-50\/90 {
    --tw-shadow-color: rgb(248 250 252 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-500 {
    --tw-shadow-color: #64748b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-500\/10 {
    --tw-shadow-color: rgb(100 116 139 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-500\/20 {
    --tw-shadow-color: rgb(100 116 139 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-500\/30 {
    --tw-shadow-color: rgb(100 116 139 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-500\/40 {
    --tw-shadow-color: rgb(100 116 139 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-500\/5 {
    --tw-shadow-color: rgb(100 116 139 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-500\/50 {
    --tw-shadow-color: rgb(100 116 139 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-500\/60 {
    --tw-shadow-color: rgb(100 116 139 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-500\/70 {
    --tw-shadow-color: rgb(100 116 139 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-500\/80 {
    --tw-shadow-color: rgb(100 116 139 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-500\/90 {
    --tw-shadow-color: rgb(100 116 139 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-600 {
    --tw-shadow-color: #475569;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-600\/10 {
    --tw-shadow-color: rgb(71 85 105 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-600\/20 {
    --tw-shadow-color: rgb(71 85 105 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-600\/30 {
    --tw-shadow-color: rgb(71 85 105 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-600\/40 {
    --tw-shadow-color: rgb(71 85 105 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-600\/5 {
    --tw-shadow-color: rgb(71 85 105 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-600\/50 {
    --tw-shadow-color: rgb(71 85 105 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-600\/60 {
    --tw-shadow-color: rgb(71 85 105 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-600\/70 {
    --tw-shadow-color: rgb(71 85 105 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-600\/80 {
    --tw-shadow-color: rgb(71 85 105 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-600\/90 {
    --tw-shadow-color: rgb(71 85 105 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-700 {
    --tw-shadow-color: #334155;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-700\/10 {
    --tw-shadow-color: rgb(51 65 85 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-700\/20 {
    --tw-shadow-color: rgb(51 65 85 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-700\/30 {
    --tw-shadow-color: rgb(51 65 85 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-700\/40 {
    --tw-shadow-color: rgb(51 65 85 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-700\/5 {
    --tw-shadow-color: rgb(51 65 85 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-700\/50 {
    --tw-shadow-color: rgb(51 65 85 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-700\/60 {
    --tw-shadow-color: rgb(51 65 85 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-700\/70 {
    --tw-shadow-color: rgb(51 65 85 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-700\/80 {
    --tw-shadow-color: rgb(51 65 85 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-700\/90 {
    --tw-shadow-color: rgb(51 65 85 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-800 {
    --tw-shadow-color: #1e293b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-800\/10 {
    --tw-shadow-color: rgb(30 41 59 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-800\/20 {
    --tw-shadow-color: rgb(30 41 59 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-800\/30 {
    --tw-shadow-color: rgb(30 41 59 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-800\/40 {
    --tw-shadow-color: rgb(30 41 59 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-800\/5 {
    --tw-shadow-color: rgb(30 41 59 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-800\/50 {
    --tw-shadow-color: rgb(30 41 59 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-800\/60 {
    --tw-shadow-color: rgb(30 41 59 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-800\/70 {
    --tw-shadow-color: rgb(30 41 59 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-800\/80 {
    --tw-shadow-color: rgb(30 41 59 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-800\/90 {
    --tw-shadow-color: rgb(30 41 59 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-900 {
    --tw-shadow-color: #0f172a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-900\/10 {
    --tw-shadow-color: rgb(15 23 42 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-900\/20 {
    --tw-shadow-color: rgb(15 23 42 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-900\/30 {
    --tw-shadow-color: rgb(15 23 42 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-900\/40 {
    --tw-shadow-color: rgb(15 23 42 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-900\/5 {
    --tw-shadow-color: rgb(15 23 42 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-900\/50 {
    --tw-shadow-color: rgb(15 23 42 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-900\/60 {
    --tw-shadow-color: rgb(15 23 42 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-900\/70 {
    --tw-shadow-color: rgb(15 23 42 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-900\/80 {
    --tw-shadow-color: rgb(15 23 42 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-900\/90 {
    --tw-shadow-color: rgb(15 23 42 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-950 {
    --tw-shadow-color: #020617;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-950\/10 {
    --tw-shadow-color: rgb(2 6 23 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-950\/20 {
    --tw-shadow-color: rgb(2 6 23 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-950\/30 {
    --tw-shadow-color: rgb(2 6 23 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-950\/40 {
    --tw-shadow-color: rgb(2 6 23 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-950\/5 {
    --tw-shadow-color: rgb(2 6 23 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-950\/50 {
    --tw-shadow-color: rgb(2 6 23 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-950\/60 {
    --tw-shadow-color: rgb(2 6 23 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-950\/70 {
    --tw-shadow-color: rgb(2 6 23 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-950\/80 {
    --tw-shadow-color: rgb(2 6 23 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-slate-950\/90 {
    --tw-shadow-color: rgb(2 6 23 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-100 {
    --tw-shadow-color: #f5f5f4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-100\/10 {
    --tw-shadow-color: rgb(245 245 244 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-100\/20 {
    --tw-shadow-color: rgb(245 245 244 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-100\/30 {
    --tw-shadow-color: rgb(245 245 244 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-100\/40 {
    --tw-shadow-color: rgb(245 245 244 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-100\/5 {
    --tw-shadow-color: rgb(245 245 244 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-100\/50 {
    --tw-shadow-color: rgb(245 245 244 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-100\/60 {
    --tw-shadow-color: rgb(245 245 244 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-100\/70 {
    --tw-shadow-color: rgb(245 245 244 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-100\/80 {
    --tw-shadow-color: rgb(245 245 244 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-100\/90 {
    --tw-shadow-color: rgb(245 245 244 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-200 {
    --tw-shadow-color: #e7e5e4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-200\/10 {
    --tw-shadow-color: rgb(231 229 228 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-200\/20 {
    --tw-shadow-color: rgb(231 229 228 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-200\/30 {
    --tw-shadow-color: rgb(231 229 228 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-200\/40 {
    --tw-shadow-color: rgb(231 229 228 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-200\/5 {
    --tw-shadow-color: rgb(231 229 228 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-200\/50 {
    --tw-shadow-color: rgb(231 229 228 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-200\/60 {
    --tw-shadow-color: rgb(231 229 228 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-200\/70 {
    --tw-shadow-color: rgb(231 229 228 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-200\/80 {
    --tw-shadow-color: rgb(231 229 228 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-200\/90 {
    --tw-shadow-color: rgb(231 229 228 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-300 {
    --tw-shadow-color: #d6d3d1;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-300\/10 {
    --tw-shadow-color: rgb(214 211 209 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-300\/20 {
    --tw-shadow-color: rgb(214 211 209 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-300\/30 {
    --tw-shadow-color: rgb(214 211 209 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-300\/40 {
    --tw-shadow-color: rgb(214 211 209 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-300\/5 {
    --tw-shadow-color: rgb(214 211 209 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-300\/50 {
    --tw-shadow-color: rgb(214 211 209 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-300\/60 {
    --tw-shadow-color: rgb(214 211 209 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-300\/70 {
    --tw-shadow-color: rgb(214 211 209 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-300\/80 {
    --tw-shadow-color: rgb(214 211 209 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-300\/90 {
    --tw-shadow-color: rgb(214 211 209 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-400 {
    --tw-shadow-color: #a8a29e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-400\/10 {
    --tw-shadow-color: rgb(168 162 158 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-400\/20 {
    --tw-shadow-color: rgb(168 162 158 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-400\/30 {
    --tw-shadow-color: rgb(168 162 158 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-400\/40 {
    --tw-shadow-color: rgb(168 162 158 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-400\/5 {
    --tw-shadow-color: rgb(168 162 158 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-400\/50 {
    --tw-shadow-color: rgb(168 162 158 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-400\/60 {
    --tw-shadow-color: rgb(168 162 158 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-400\/70 {
    --tw-shadow-color: rgb(168 162 158 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-400\/80 {
    --tw-shadow-color: rgb(168 162 158 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-400\/90 {
    --tw-shadow-color: rgb(168 162 158 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-50 {
    --tw-shadow-color: #fafaf9;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-50\/10 {
    --tw-shadow-color: rgb(250 250 249 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-50\/20 {
    --tw-shadow-color: rgb(250 250 249 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-50\/30 {
    --tw-shadow-color: rgb(250 250 249 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-50\/40 {
    --tw-shadow-color: rgb(250 250 249 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-50\/5 {
    --tw-shadow-color: rgb(250 250 249 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-50\/50 {
    --tw-shadow-color: rgb(250 250 249 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-50\/60 {
    --tw-shadow-color: rgb(250 250 249 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-50\/70 {
    --tw-shadow-color: rgb(250 250 249 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-50\/80 {
    --tw-shadow-color: rgb(250 250 249 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-50\/90 {
    --tw-shadow-color: rgb(250 250 249 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-500 {
    --tw-shadow-color: #78716c;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-500\/10 {
    --tw-shadow-color: rgb(120 113 108 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-500\/20 {
    --tw-shadow-color: rgb(120 113 108 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-500\/30 {
    --tw-shadow-color: rgb(120 113 108 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-500\/40 {
    --tw-shadow-color: rgb(120 113 108 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-500\/5 {
    --tw-shadow-color: rgb(120 113 108 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-500\/50 {
    --tw-shadow-color: rgb(120 113 108 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-500\/60 {
    --tw-shadow-color: rgb(120 113 108 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-500\/70 {
    --tw-shadow-color: rgb(120 113 108 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-500\/80 {
    --tw-shadow-color: rgb(120 113 108 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-500\/90 {
    --tw-shadow-color: rgb(120 113 108 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-600 {
    --tw-shadow-color: #57534e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-600\/10 {
    --tw-shadow-color: rgb(87 83 78 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-600\/20 {
    --tw-shadow-color: rgb(87 83 78 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-600\/30 {
    --tw-shadow-color: rgb(87 83 78 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-600\/40 {
    --tw-shadow-color: rgb(87 83 78 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-600\/5 {
    --tw-shadow-color: rgb(87 83 78 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-600\/50 {
    --tw-shadow-color: rgb(87 83 78 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-600\/60 {
    --tw-shadow-color: rgb(87 83 78 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-600\/70 {
    --tw-shadow-color: rgb(87 83 78 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-600\/80 {
    --tw-shadow-color: rgb(87 83 78 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-600\/90 {
    --tw-shadow-color: rgb(87 83 78 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-700 {
    --tw-shadow-color: #44403c;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-700\/10 {
    --tw-shadow-color: rgb(68 64 60 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-700\/20 {
    --tw-shadow-color: rgb(68 64 60 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-700\/30 {
    --tw-shadow-color: rgb(68 64 60 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-700\/40 {
    --tw-shadow-color: rgb(68 64 60 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-700\/5 {
    --tw-shadow-color: rgb(68 64 60 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-700\/50 {
    --tw-shadow-color: rgb(68 64 60 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-700\/60 {
    --tw-shadow-color: rgb(68 64 60 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-700\/70 {
    --tw-shadow-color: rgb(68 64 60 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-700\/80 {
    --tw-shadow-color: rgb(68 64 60 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-700\/90 {
    --tw-shadow-color: rgb(68 64 60 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-800 {
    --tw-shadow-color: #292524;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-800\/10 {
    --tw-shadow-color: rgb(41 37 36 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-800\/20 {
    --tw-shadow-color: rgb(41 37 36 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-800\/30 {
    --tw-shadow-color: rgb(41 37 36 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-800\/40 {
    --tw-shadow-color: rgb(41 37 36 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-800\/5 {
    --tw-shadow-color: rgb(41 37 36 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-800\/50 {
    --tw-shadow-color: rgb(41 37 36 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-800\/60 {
    --tw-shadow-color: rgb(41 37 36 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-800\/70 {
    --tw-shadow-color: rgb(41 37 36 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-800\/80 {
    --tw-shadow-color: rgb(41 37 36 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-800\/90 {
    --tw-shadow-color: rgb(41 37 36 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-900 {
    --tw-shadow-color: #1c1917;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-900\/10 {
    --tw-shadow-color: rgb(28 25 23 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-900\/20 {
    --tw-shadow-color: rgb(28 25 23 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-900\/30 {
    --tw-shadow-color: rgb(28 25 23 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-900\/40 {
    --tw-shadow-color: rgb(28 25 23 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-900\/5 {
    --tw-shadow-color: rgb(28 25 23 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-900\/50 {
    --tw-shadow-color: rgb(28 25 23 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-900\/60 {
    --tw-shadow-color: rgb(28 25 23 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-900\/70 {
    --tw-shadow-color: rgb(28 25 23 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-900\/80 {
    --tw-shadow-color: rgb(28 25 23 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-900\/90 {
    --tw-shadow-color: rgb(28 25 23 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-950 {
    --tw-shadow-color: #0c0a09;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-950\/10 {
    --tw-shadow-color: rgb(12 10 9 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-950\/20 {
    --tw-shadow-color: rgb(12 10 9 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-950\/30 {
    --tw-shadow-color: rgb(12 10 9 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-950\/40 {
    --tw-shadow-color: rgb(12 10 9 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-950\/5 {
    --tw-shadow-color: rgb(12 10 9 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-950\/50 {
    --tw-shadow-color: rgb(12 10 9 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-950\/60 {
    --tw-shadow-color: rgb(12 10 9 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-950\/70 {
    --tw-shadow-color: rgb(12 10 9 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-950\/80 {
    --tw-shadow-color: rgb(12 10 9 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-stone-950\/90 {
    --tw-shadow-color: rgb(12 10 9 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-100 {
    --tw-shadow-color: #ccfbf1;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-100\/10 {
    --tw-shadow-color: rgb(204 251 241 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-100\/20 {
    --tw-shadow-color: rgb(204 251 241 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-100\/30 {
    --tw-shadow-color: rgb(204 251 241 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-100\/40 {
    --tw-shadow-color: rgb(204 251 241 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-100\/5 {
    --tw-shadow-color: rgb(204 251 241 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-100\/50 {
    --tw-shadow-color: rgb(204 251 241 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-100\/60 {
    --tw-shadow-color: rgb(204 251 241 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-100\/70 {
    --tw-shadow-color: rgb(204 251 241 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-100\/80 {
    --tw-shadow-color: rgb(204 251 241 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-100\/90 {
    --tw-shadow-color: rgb(204 251 241 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-200 {
    --tw-shadow-color: #99f6e4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-200\/10 {
    --tw-shadow-color: rgb(153 246 228 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-200\/20 {
    --tw-shadow-color: rgb(153 246 228 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-200\/30 {
    --tw-shadow-color: rgb(153 246 228 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-200\/40 {
    --tw-shadow-color: rgb(153 246 228 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-200\/5 {
    --tw-shadow-color: rgb(153 246 228 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-200\/50 {
    --tw-shadow-color: rgb(153 246 228 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-200\/60 {
    --tw-shadow-color: rgb(153 246 228 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-200\/70 {
    --tw-shadow-color: rgb(153 246 228 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-200\/80 {
    --tw-shadow-color: rgb(153 246 228 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-200\/90 {
    --tw-shadow-color: rgb(153 246 228 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-300 {
    --tw-shadow-color: #5eead4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-300\/10 {
    --tw-shadow-color: rgb(94 234 212 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-300\/20 {
    --tw-shadow-color: rgb(94 234 212 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-300\/30 {
    --tw-shadow-color: rgb(94 234 212 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-300\/40 {
    --tw-shadow-color: rgb(94 234 212 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-300\/5 {
    --tw-shadow-color: rgb(94 234 212 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-300\/50 {
    --tw-shadow-color: rgb(94 234 212 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-300\/60 {
    --tw-shadow-color: rgb(94 234 212 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-300\/70 {
    --tw-shadow-color: rgb(94 234 212 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-300\/80 {
    --tw-shadow-color: rgb(94 234 212 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-300\/90 {
    --tw-shadow-color: rgb(94 234 212 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-400 {
    --tw-shadow-color: #2dd4bf;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-400\/10 {
    --tw-shadow-color: rgb(45 212 191 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-400\/20 {
    --tw-shadow-color: rgb(45 212 191 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-400\/30 {
    --tw-shadow-color: rgb(45 212 191 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-400\/40 {
    --tw-shadow-color: rgb(45 212 191 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-400\/5 {
    --tw-shadow-color: rgb(45 212 191 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-400\/50 {
    --tw-shadow-color: rgb(45 212 191 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-400\/60 {
    --tw-shadow-color: rgb(45 212 191 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-400\/70 {
    --tw-shadow-color: rgb(45 212 191 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-400\/80 {
    --tw-shadow-color: rgb(45 212 191 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-400\/90 {
    --tw-shadow-color: rgb(45 212 191 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-50 {
    --tw-shadow-color: #f0fdfa;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-50\/10 {
    --tw-shadow-color: rgb(240 253 250 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-50\/20 {
    --tw-shadow-color: rgb(240 253 250 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-50\/30 {
    --tw-shadow-color: rgb(240 253 250 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-50\/40 {
    --tw-shadow-color: rgb(240 253 250 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-50\/5 {
    --tw-shadow-color: rgb(240 253 250 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-50\/50 {
    --tw-shadow-color: rgb(240 253 250 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-50\/60 {
    --tw-shadow-color: rgb(240 253 250 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-50\/70 {
    --tw-shadow-color: rgb(240 253 250 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-50\/80 {
    --tw-shadow-color: rgb(240 253 250 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-50\/90 {
    --tw-shadow-color: rgb(240 253 250 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-500 {
    --tw-shadow-color: #14b8a6;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-500\/10 {
    --tw-shadow-color: rgb(20 184 166 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-500\/20 {
    --tw-shadow-color: rgb(20 184 166 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-500\/30 {
    --tw-shadow-color: rgb(20 184 166 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-500\/40 {
    --tw-shadow-color: rgb(20 184 166 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-500\/5 {
    --tw-shadow-color: rgb(20 184 166 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-500\/50 {
    --tw-shadow-color: rgb(20 184 166 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-500\/60 {
    --tw-shadow-color: rgb(20 184 166 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-500\/70 {
    --tw-shadow-color: rgb(20 184 166 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-500\/80 {
    --tw-shadow-color: rgb(20 184 166 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-500\/90 {
    --tw-shadow-color: rgb(20 184 166 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-600 {
    --tw-shadow-color: #0d9488;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-600\/10 {
    --tw-shadow-color: rgb(13 148 136 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-600\/20 {
    --tw-shadow-color: rgb(13 148 136 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-600\/30 {
    --tw-shadow-color: rgb(13 148 136 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-600\/40 {
    --tw-shadow-color: rgb(13 148 136 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-600\/5 {
    --tw-shadow-color: rgb(13 148 136 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-600\/50 {
    --tw-shadow-color: rgb(13 148 136 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-600\/60 {
    --tw-shadow-color: rgb(13 148 136 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-600\/70 {
    --tw-shadow-color: rgb(13 148 136 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-600\/80 {
    --tw-shadow-color: rgb(13 148 136 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-600\/90 {
    --tw-shadow-color: rgb(13 148 136 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-700 {
    --tw-shadow-color: #0f766e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-700\/10 {
    --tw-shadow-color: rgb(15 118 110 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-700\/20 {
    --tw-shadow-color: rgb(15 118 110 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-700\/30 {
    --tw-shadow-color: rgb(15 118 110 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-700\/40 {
    --tw-shadow-color: rgb(15 118 110 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-700\/5 {
    --tw-shadow-color: rgb(15 118 110 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-700\/50 {
    --tw-shadow-color: rgb(15 118 110 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-700\/60 {
    --tw-shadow-color: rgb(15 118 110 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-700\/70 {
    --tw-shadow-color: rgb(15 118 110 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-700\/80 {
    --tw-shadow-color: rgb(15 118 110 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-700\/90 {
    --tw-shadow-color: rgb(15 118 110 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-800 {
    --tw-shadow-color: #115e59;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-800\/10 {
    --tw-shadow-color: rgb(17 94 89 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-800\/20 {
    --tw-shadow-color: rgb(17 94 89 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-800\/30 {
    --tw-shadow-color: rgb(17 94 89 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-800\/40 {
    --tw-shadow-color: rgb(17 94 89 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-800\/5 {
    --tw-shadow-color: rgb(17 94 89 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-800\/50 {
    --tw-shadow-color: rgb(17 94 89 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-800\/60 {
    --tw-shadow-color: rgb(17 94 89 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-800\/70 {
    --tw-shadow-color: rgb(17 94 89 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-800\/80 {
    --tw-shadow-color: rgb(17 94 89 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-800\/90 {
    --tw-shadow-color: rgb(17 94 89 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-900 {
    --tw-shadow-color: #134e4a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-900\/10 {
    --tw-shadow-color: rgb(19 78 74 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-900\/20 {
    --tw-shadow-color: rgb(19 78 74 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-900\/30 {
    --tw-shadow-color: rgb(19 78 74 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-900\/40 {
    --tw-shadow-color: rgb(19 78 74 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-900\/5 {
    --tw-shadow-color: rgb(19 78 74 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-900\/50 {
    --tw-shadow-color: rgb(19 78 74 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-900\/60 {
    --tw-shadow-color: rgb(19 78 74 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-900\/70 {
    --tw-shadow-color: rgb(19 78 74 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-900\/80 {
    --tw-shadow-color: rgb(19 78 74 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-900\/90 {
    --tw-shadow-color: rgb(19 78 74 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-950 {
    --tw-shadow-color: #042f2e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-950\/10 {
    --tw-shadow-color: rgb(4 47 46 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-950\/20 {
    --tw-shadow-color: rgb(4 47 46 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-950\/30 {
    --tw-shadow-color: rgb(4 47 46 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-950\/40 {
    --tw-shadow-color: rgb(4 47 46 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-950\/5 {
    --tw-shadow-color: rgb(4 47 46 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-950\/50 {
    --tw-shadow-color: rgb(4 47 46 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-950\/60 {
    --tw-shadow-color: rgb(4 47 46 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-950\/70 {
    --tw-shadow-color: rgb(4 47 46 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-950\/80 {
    --tw-shadow-color: rgb(4 47 46 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-teal-950\/90 {
    --tw-shadow-color: rgb(4 47 46 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-100 {
    --tw-shadow-color: #ede9fe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-100\/10 {
    --tw-shadow-color: rgb(237 233 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-100\/20 {
    --tw-shadow-color: rgb(237 233 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-100\/30 {
    --tw-shadow-color: rgb(237 233 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-100\/40 {
    --tw-shadow-color: rgb(237 233 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-100\/5 {
    --tw-shadow-color: rgb(237 233 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-100\/50 {
    --tw-shadow-color: rgb(237 233 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-100\/60 {
    --tw-shadow-color: rgb(237 233 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-100\/70 {
    --tw-shadow-color: rgb(237 233 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-100\/80 {
    --tw-shadow-color: rgb(237 233 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-100\/90 {
    --tw-shadow-color: rgb(237 233 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-200 {
    --tw-shadow-color: #ddd6fe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-200\/10 {
    --tw-shadow-color: rgb(221 214 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-200\/20 {
    --tw-shadow-color: rgb(221 214 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-200\/30 {
    --tw-shadow-color: rgb(221 214 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-200\/40 {
    --tw-shadow-color: rgb(221 214 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-200\/5 {
    --tw-shadow-color: rgb(221 214 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-200\/50 {
    --tw-shadow-color: rgb(221 214 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-200\/60 {
    --tw-shadow-color: rgb(221 214 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-200\/70 {
    --tw-shadow-color: rgb(221 214 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-200\/80 {
    --tw-shadow-color: rgb(221 214 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-200\/90 {
    --tw-shadow-color: rgb(221 214 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-300 {
    --tw-shadow-color: #c4b5fd;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-300\/10 {
    --tw-shadow-color: rgb(196 181 253 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-300\/20 {
    --tw-shadow-color: rgb(196 181 253 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-300\/30 {
    --tw-shadow-color: rgb(196 181 253 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-300\/40 {
    --tw-shadow-color: rgb(196 181 253 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-300\/5 {
    --tw-shadow-color: rgb(196 181 253 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-300\/50 {
    --tw-shadow-color: rgb(196 181 253 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-300\/60 {
    --tw-shadow-color: rgb(196 181 253 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-300\/70 {
    --tw-shadow-color: rgb(196 181 253 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-300\/80 {
    --tw-shadow-color: rgb(196 181 253 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-300\/90 {
    --tw-shadow-color: rgb(196 181 253 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-400 {
    --tw-shadow-color: #a78bfa;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-400\/10 {
    --tw-shadow-color: rgb(167 139 250 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-400\/20 {
    --tw-shadow-color: rgb(167 139 250 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-400\/30 {
    --tw-shadow-color: rgb(167 139 250 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-400\/40 {
    --tw-shadow-color: rgb(167 139 250 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-400\/5 {
    --tw-shadow-color: rgb(167 139 250 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-400\/50 {
    --tw-shadow-color: rgb(167 139 250 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-400\/60 {
    --tw-shadow-color: rgb(167 139 250 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-400\/70 {
    --tw-shadow-color: rgb(167 139 250 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-400\/80 {
    --tw-shadow-color: rgb(167 139 250 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-400\/90 {
    --tw-shadow-color: rgb(167 139 250 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-50 {
    --tw-shadow-color: #f5f3ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-50\/10 {
    --tw-shadow-color: rgb(245 243 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-50\/20 {
    --tw-shadow-color: rgb(245 243 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-50\/30 {
    --tw-shadow-color: rgb(245 243 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-50\/40 {
    --tw-shadow-color: rgb(245 243 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-50\/5 {
    --tw-shadow-color: rgb(245 243 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-50\/50 {
    --tw-shadow-color: rgb(245 243 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-50\/60 {
    --tw-shadow-color: rgb(245 243 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-50\/70 {
    --tw-shadow-color: rgb(245 243 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-50\/80 {
    --tw-shadow-color: rgb(245 243 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-50\/90 {
    --tw-shadow-color: rgb(245 243 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-500 {
    --tw-shadow-color: #8b5cf6;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-500\/10 {
    --tw-shadow-color: rgb(139 92 246 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-500\/20 {
    --tw-shadow-color: rgb(139 92 246 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-500\/30 {
    --tw-shadow-color: rgb(139 92 246 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-500\/40 {
    --tw-shadow-color: rgb(139 92 246 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-500\/5 {
    --tw-shadow-color: rgb(139 92 246 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-500\/50 {
    --tw-shadow-color: rgb(139 92 246 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-500\/60 {
    --tw-shadow-color: rgb(139 92 246 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-500\/70 {
    --tw-shadow-color: rgb(139 92 246 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-500\/80 {
    --tw-shadow-color: rgb(139 92 246 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-500\/90 {
    --tw-shadow-color: rgb(139 92 246 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-600 {
    --tw-shadow-color: #7c3aed;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-600\/10 {
    --tw-shadow-color: rgb(124 58 237 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-600\/20 {
    --tw-shadow-color: rgb(124 58 237 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-600\/30 {
    --tw-shadow-color: rgb(124 58 237 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-600\/40 {
    --tw-shadow-color: rgb(124 58 237 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-600\/5 {
    --tw-shadow-color: rgb(124 58 237 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-600\/50 {
    --tw-shadow-color: rgb(124 58 237 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-600\/60 {
    --tw-shadow-color: rgb(124 58 237 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-600\/70 {
    --tw-shadow-color: rgb(124 58 237 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-600\/80 {
    --tw-shadow-color: rgb(124 58 237 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-600\/90 {
    --tw-shadow-color: rgb(124 58 237 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-700 {
    --tw-shadow-color: #6d28d9;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-700\/10 {
    --tw-shadow-color: rgb(109 40 217 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-700\/20 {
    --tw-shadow-color: rgb(109 40 217 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-700\/30 {
    --tw-shadow-color: rgb(109 40 217 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-700\/40 {
    --tw-shadow-color: rgb(109 40 217 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-700\/5 {
    --tw-shadow-color: rgb(109 40 217 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-700\/50 {
    --tw-shadow-color: rgb(109 40 217 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-700\/60 {
    --tw-shadow-color: rgb(109 40 217 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-700\/70 {
    --tw-shadow-color: rgb(109 40 217 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-700\/80 {
    --tw-shadow-color: rgb(109 40 217 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-700\/90 {
    --tw-shadow-color: rgb(109 40 217 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-800 {
    --tw-shadow-color: #5b21b6;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-800\/10 {
    --tw-shadow-color: rgb(91 33 182 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-800\/20 {
    --tw-shadow-color: rgb(91 33 182 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-800\/30 {
    --tw-shadow-color: rgb(91 33 182 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-800\/40 {
    --tw-shadow-color: rgb(91 33 182 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-800\/5 {
    --tw-shadow-color: rgb(91 33 182 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-800\/50 {
    --tw-shadow-color: rgb(91 33 182 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-800\/60 {
    --tw-shadow-color: rgb(91 33 182 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-800\/70 {
    --tw-shadow-color: rgb(91 33 182 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-800\/80 {
    --tw-shadow-color: rgb(91 33 182 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-800\/90 {
    --tw-shadow-color: rgb(91 33 182 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-900 {
    --tw-shadow-color: #4c1d95;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-900\/10 {
    --tw-shadow-color: rgb(76 29 149 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-900\/20 {
    --tw-shadow-color: rgb(76 29 149 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-900\/30 {
    --tw-shadow-color: rgb(76 29 149 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-900\/40 {
    --tw-shadow-color: rgb(76 29 149 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-900\/5 {
    --tw-shadow-color: rgb(76 29 149 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-900\/50 {
    --tw-shadow-color: rgb(76 29 149 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-900\/60 {
    --tw-shadow-color: rgb(76 29 149 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-900\/70 {
    --tw-shadow-color: rgb(76 29 149 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-900\/80 {
    --tw-shadow-color: rgb(76 29 149 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-900\/90 {
    --tw-shadow-color: rgb(76 29 149 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-950 {
    --tw-shadow-color: #2e1065;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-950\/10 {
    --tw-shadow-color: rgb(46 16 101 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-950\/20 {
    --tw-shadow-color: rgb(46 16 101 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-950\/30 {
    --tw-shadow-color: rgb(46 16 101 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-950\/40 {
    --tw-shadow-color: rgb(46 16 101 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-950\/5 {
    --tw-shadow-color: rgb(46 16 101 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-950\/50 {
    --tw-shadow-color: rgb(46 16 101 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-950\/60 {
    --tw-shadow-color: rgb(46 16 101 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-950\/70 {
    --tw-shadow-color: rgb(46 16 101 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-950\/80 {
    --tw-shadow-color: rgb(46 16 101 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-violet-950\/90 {
    --tw-shadow-color: rgb(46 16 101 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-100 {
    --tw-shadow-color: #fef9c3;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-100\/10 {
    --tw-shadow-color: rgb(254 249 195 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-100\/20 {
    --tw-shadow-color: rgb(254 249 195 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-100\/30 {
    --tw-shadow-color: rgb(254 249 195 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-100\/40 {
    --tw-shadow-color: rgb(254 249 195 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-100\/5 {
    --tw-shadow-color: rgb(254 249 195 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-100\/50 {
    --tw-shadow-color: rgb(254 249 195 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-100\/60 {
    --tw-shadow-color: rgb(254 249 195 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-100\/70 {
    --tw-shadow-color: rgb(254 249 195 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-100\/80 {
    --tw-shadow-color: rgb(254 249 195 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-100\/90 {
    --tw-shadow-color: rgb(254 249 195 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-200 {
    --tw-shadow-color: #fef08a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-200\/10 {
    --tw-shadow-color: rgb(254 240 138 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-200\/20 {
    --tw-shadow-color: rgb(254 240 138 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-200\/30 {
    --tw-shadow-color: rgb(254 240 138 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-200\/40 {
    --tw-shadow-color: rgb(254 240 138 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-200\/5 {
    --tw-shadow-color: rgb(254 240 138 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-200\/50 {
    --tw-shadow-color: rgb(254 240 138 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-200\/60 {
    --tw-shadow-color: rgb(254 240 138 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-200\/70 {
    --tw-shadow-color: rgb(254 240 138 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-200\/80 {
    --tw-shadow-color: rgb(254 240 138 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-200\/90 {
    --tw-shadow-color: rgb(254 240 138 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-300 {
    --tw-shadow-color: #fde047;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-300\/10 {
    --tw-shadow-color: rgb(253 224 71 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-300\/20 {
    --tw-shadow-color: rgb(253 224 71 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-300\/30 {
    --tw-shadow-color: rgb(253 224 71 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-300\/40 {
    --tw-shadow-color: rgb(253 224 71 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-300\/5 {
    --tw-shadow-color: rgb(253 224 71 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-300\/50 {
    --tw-shadow-color: rgb(253 224 71 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-300\/60 {
    --tw-shadow-color: rgb(253 224 71 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-300\/70 {
    --tw-shadow-color: rgb(253 224 71 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-300\/80 {
    --tw-shadow-color: rgb(253 224 71 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-300\/90 {
    --tw-shadow-color: rgb(253 224 71 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-400 {
    --tw-shadow-color: #facc15;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-400\/10 {
    --tw-shadow-color: rgb(250 204 21 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-400\/20 {
    --tw-shadow-color: rgb(250 204 21 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-400\/30 {
    --tw-shadow-color: rgb(250 204 21 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-400\/40 {
    --tw-shadow-color: rgb(250 204 21 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-400\/5 {
    --tw-shadow-color: rgb(250 204 21 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-400\/50 {
    --tw-shadow-color: rgb(250 204 21 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-400\/60 {
    --tw-shadow-color: rgb(250 204 21 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-400\/70 {
    --tw-shadow-color: rgb(250 204 21 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-400\/80 {
    --tw-shadow-color: rgb(250 204 21 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-400\/90 {
    --tw-shadow-color: rgb(250 204 21 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-50 {
    --tw-shadow-color: #fefce8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-50\/10 {
    --tw-shadow-color: rgb(254 252 232 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-50\/20 {
    --tw-shadow-color: rgb(254 252 232 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-50\/30 {
    --tw-shadow-color: rgb(254 252 232 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-50\/40 {
    --tw-shadow-color: rgb(254 252 232 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-50\/5 {
    --tw-shadow-color: rgb(254 252 232 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-50\/50 {
    --tw-shadow-color: rgb(254 252 232 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-50\/60 {
    --tw-shadow-color: rgb(254 252 232 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-50\/70 {
    --tw-shadow-color: rgb(254 252 232 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-50\/80 {
    --tw-shadow-color: rgb(254 252 232 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-50\/90 {
    --tw-shadow-color: rgb(254 252 232 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-500 {
    --tw-shadow-color: #eab308;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-500\/10 {
    --tw-shadow-color: rgb(234 179 8 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-500\/20 {
    --tw-shadow-color: rgb(234 179 8 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-500\/30 {
    --tw-shadow-color: rgb(234 179 8 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-500\/40 {
    --tw-shadow-color: rgb(234 179 8 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-500\/5 {
    --tw-shadow-color: rgb(234 179 8 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-500\/50 {
    --tw-shadow-color: rgb(234 179 8 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-500\/60 {
    --tw-shadow-color: rgb(234 179 8 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-500\/70 {
    --tw-shadow-color: rgb(234 179 8 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-500\/80 {
    --tw-shadow-color: rgb(234 179 8 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-500\/90 {
    --tw-shadow-color: rgb(234 179 8 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-600 {
    --tw-shadow-color: #ca8a04;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-600\/10 {
    --tw-shadow-color: rgb(202 138 4 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-600\/20 {
    --tw-shadow-color: rgb(202 138 4 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-600\/30 {
    --tw-shadow-color: rgb(202 138 4 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-600\/40 {
    --tw-shadow-color: rgb(202 138 4 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-600\/5 {
    --tw-shadow-color: rgb(202 138 4 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-600\/50 {
    --tw-shadow-color: rgb(202 138 4 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-600\/60 {
    --tw-shadow-color: rgb(202 138 4 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-600\/70 {
    --tw-shadow-color: rgb(202 138 4 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-600\/80 {
    --tw-shadow-color: rgb(202 138 4 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-600\/90 {
    --tw-shadow-color: rgb(202 138 4 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-700 {
    --tw-shadow-color: #a16207;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-700\/10 {
    --tw-shadow-color: rgb(161 98 7 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-700\/20 {
    --tw-shadow-color: rgb(161 98 7 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-700\/30 {
    --tw-shadow-color: rgb(161 98 7 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-700\/40 {
    --tw-shadow-color: rgb(161 98 7 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-700\/5 {
    --tw-shadow-color: rgb(161 98 7 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-700\/50 {
    --tw-shadow-color: rgb(161 98 7 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-700\/60 {
    --tw-shadow-color: rgb(161 98 7 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-700\/70 {
    --tw-shadow-color: rgb(161 98 7 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-700\/80 {
    --tw-shadow-color: rgb(161 98 7 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-700\/90 {
    --tw-shadow-color: rgb(161 98 7 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-800 {
    --tw-shadow-color: #854d0e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-800\/10 {
    --tw-shadow-color: rgb(133 77 14 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-800\/20 {
    --tw-shadow-color: rgb(133 77 14 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-800\/30 {
    --tw-shadow-color: rgb(133 77 14 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-800\/40 {
    --tw-shadow-color: rgb(133 77 14 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-800\/5 {
    --tw-shadow-color: rgb(133 77 14 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-800\/50 {
    --tw-shadow-color: rgb(133 77 14 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-800\/60 {
    --tw-shadow-color: rgb(133 77 14 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-800\/70 {
    --tw-shadow-color: rgb(133 77 14 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-800\/80 {
    --tw-shadow-color: rgb(133 77 14 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-800\/90 {
    --tw-shadow-color: rgb(133 77 14 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-900 {
    --tw-shadow-color: #713f12;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-900\/10 {
    --tw-shadow-color: rgb(113 63 18 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-900\/20 {
    --tw-shadow-color: rgb(113 63 18 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-900\/30 {
    --tw-shadow-color: rgb(113 63 18 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-900\/40 {
    --tw-shadow-color: rgb(113 63 18 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-900\/5 {
    --tw-shadow-color: rgb(113 63 18 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-900\/50 {
    --tw-shadow-color: rgb(113 63 18 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-900\/60 {
    --tw-shadow-color: rgb(113 63 18 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-900\/70 {
    --tw-shadow-color: rgb(113 63 18 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-900\/80 {
    --tw-shadow-color: rgb(113 63 18 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-900\/90 {
    --tw-shadow-color: rgb(113 63 18 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-950 {
    --tw-shadow-color: #422006;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-950\/10 {
    --tw-shadow-color: rgb(66 32 6 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-950\/20 {
    --tw-shadow-color: rgb(66 32 6 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-950\/30 {
    --tw-shadow-color: rgb(66 32 6 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-950\/40 {
    --tw-shadow-color: rgb(66 32 6 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-950\/5 {
    --tw-shadow-color: rgb(66 32 6 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-950\/50 {
    --tw-shadow-color: rgb(66 32 6 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-950\/60 {
    --tw-shadow-color: rgb(66 32 6 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-950\/70 {
    --tw-shadow-color: rgb(66 32 6 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-950\/80 {
    --tw-shadow-color: rgb(66 32 6 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-yellow-950\/90 {
    --tw-shadow-color: rgb(66 32 6 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-100 {
    --tw-shadow-color: #f4f4f5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-100\/10 {
    --tw-shadow-color: rgb(244 244 245 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-100\/20 {
    --tw-shadow-color: rgb(244 244 245 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-100\/30 {
    --tw-shadow-color: rgb(244 244 245 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-100\/40 {
    --tw-shadow-color: rgb(244 244 245 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-100\/5 {
    --tw-shadow-color: rgb(244 244 245 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-100\/50 {
    --tw-shadow-color: rgb(244 244 245 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-100\/60 {
    --tw-shadow-color: rgb(244 244 245 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-100\/70 {
    --tw-shadow-color: rgb(244 244 245 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-100\/80 {
    --tw-shadow-color: rgb(244 244 245 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-100\/90 {
    --tw-shadow-color: rgb(244 244 245 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-200 {
    --tw-shadow-color: #e4e4e7;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-200\/10 {
    --tw-shadow-color: rgb(228 228 231 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-200\/20 {
    --tw-shadow-color: rgb(228 228 231 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-200\/30 {
    --tw-shadow-color: rgb(228 228 231 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-200\/40 {
    --tw-shadow-color: rgb(228 228 231 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-200\/5 {
    --tw-shadow-color: rgb(228 228 231 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-200\/50 {
    --tw-shadow-color: rgb(228 228 231 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-200\/60 {
    --tw-shadow-color: rgb(228 228 231 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-200\/70 {
    --tw-shadow-color: rgb(228 228 231 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-200\/80 {
    --tw-shadow-color: rgb(228 228 231 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-200\/90 {
    --tw-shadow-color: rgb(228 228 231 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-300 {
    --tw-shadow-color: #d4d4d8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-300\/10 {
    --tw-shadow-color: rgb(212 212 216 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-300\/20 {
    --tw-shadow-color: rgb(212 212 216 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-300\/30 {
    --tw-shadow-color: rgb(212 212 216 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-300\/40 {
    --tw-shadow-color: rgb(212 212 216 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-300\/5 {
    --tw-shadow-color: rgb(212 212 216 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-300\/50 {
    --tw-shadow-color: rgb(212 212 216 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-300\/60 {
    --tw-shadow-color: rgb(212 212 216 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-300\/70 {
    --tw-shadow-color: rgb(212 212 216 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-300\/80 {
    --tw-shadow-color: rgb(212 212 216 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-300\/90 {
    --tw-shadow-color: rgb(212 212 216 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-400 {
    --tw-shadow-color: #a1a1aa;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-400\/10 {
    --tw-shadow-color: rgb(161 161 170 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-400\/20 {
    --tw-shadow-color: rgb(161 161 170 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-400\/30 {
    --tw-shadow-color: rgb(161 161 170 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-400\/40 {
    --tw-shadow-color: rgb(161 161 170 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-400\/5 {
    --tw-shadow-color: rgb(161 161 170 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-400\/50 {
    --tw-shadow-color: rgb(161 161 170 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-400\/60 {
    --tw-shadow-color: rgb(161 161 170 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-400\/70 {
    --tw-shadow-color: rgb(161 161 170 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-400\/80 {
    --tw-shadow-color: rgb(161 161 170 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-400\/90 {
    --tw-shadow-color: rgb(161 161 170 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-50 {
    --tw-shadow-color: #fafafa;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-50\/10 {
    --tw-shadow-color: rgb(250 250 250 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-50\/20 {
    --tw-shadow-color: rgb(250 250 250 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-50\/30 {
    --tw-shadow-color: rgb(250 250 250 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-50\/40 {
    --tw-shadow-color: rgb(250 250 250 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-50\/5 {
    --tw-shadow-color: rgb(250 250 250 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-50\/50 {
    --tw-shadow-color: rgb(250 250 250 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-50\/60 {
    --tw-shadow-color: rgb(250 250 250 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-50\/70 {
    --tw-shadow-color: rgb(250 250 250 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-50\/80 {
    --tw-shadow-color: rgb(250 250 250 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-50\/90 {
    --tw-shadow-color: rgb(250 250 250 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-500 {
    --tw-shadow-color: #71717a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-500\/10 {
    --tw-shadow-color: rgb(113 113 122 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-500\/20 {
    --tw-shadow-color: rgb(113 113 122 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-500\/30 {
    --tw-shadow-color: rgb(113 113 122 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-500\/40 {
    --tw-shadow-color: rgb(113 113 122 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-500\/5 {
    --tw-shadow-color: rgb(113 113 122 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-500\/50 {
    --tw-shadow-color: rgb(113 113 122 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-500\/60 {
    --tw-shadow-color: rgb(113 113 122 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-500\/70 {
    --tw-shadow-color: rgb(113 113 122 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-500\/80 {
    --tw-shadow-color: rgb(113 113 122 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-500\/90 {
    --tw-shadow-color: rgb(113 113 122 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-600 {
    --tw-shadow-color: #52525b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-600\/10 {
    --tw-shadow-color: rgb(82 82 91 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-600\/20 {
    --tw-shadow-color: rgb(82 82 91 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-600\/30 {
    --tw-shadow-color: rgb(82 82 91 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-600\/40 {
    --tw-shadow-color: rgb(82 82 91 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-600\/5 {
    --tw-shadow-color: rgb(82 82 91 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-600\/50 {
    --tw-shadow-color: rgb(82 82 91 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-600\/60 {
    --tw-shadow-color: rgb(82 82 91 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-600\/70 {
    --tw-shadow-color: rgb(82 82 91 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-600\/80 {
    --tw-shadow-color: rgb(82 82 91 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-600\/90 {
    --tw-shadow-color: rgb(82 82 91 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-700 {
    --tw-shadow-color: #3f3f46;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-700\/10 {
    --tw-shadow-color: rgb(63 63 70 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-700\/20 {
    --tw-shadow-color: rgb(63 63 70 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-700\/30 {
    --tw-shadow-color: rgb(63 63 70 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-700\/40 {
    --tw-shadow-color: rgb(63 63 70 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-700\/5 {
    --tw-shadow-color: rgb(63 63 70 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-700\/50 {
    --tw-shadow-color: rgb(63 63 70 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-700\/60 {
    --tw-shadow-color: rgb(63 63 70 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-700\/70 {
    --tw-shadow-color: rgb(63 63 70 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-700\/80 {
    --tw-shadow-color: rgb(63 63 70 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-700\/90 {
    --tw-shadow-color: rgb(63 63 70 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-800 {
    --tw-shadow-color: #27272a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-800\/10 {
    --tw-shadow-color: rgb(39 39 42 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-800\/20 {
    --tw-shadow-color: rgb(39 39 42 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-800\/30 {
    --tw-shadow-color: rgb(39 39 42 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-800\/40 {
    --tw-shadow-color: rgb(39 39 42 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-800\/5 {
    --tw-shadow-color: rgb(39 39 42 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-800\/50 {
    --tw-shadow-color: rgb(39 39 42 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-800\/60 {
    --tw-shadow-color: rgb(39 39 42 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-800\/70 {
    --tw-shadow-color: rgb(39 39 42 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-800\/80 {
    --tw-shadow-color: rgb(39 39 42 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-800\/90 {
    --tw-shadow-color: rgb(39 39 42 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-900 {
    --tw-shadow-color: #18181b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-900\/10 {
    --tw-shadow-color: rgb(24 24 27 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-900\/20 {
    --tw-shadow-color: rgb(24 24 27 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-900\/30 {
    --tw-shadow-color: rgb(24 24 27 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-900\/40 {
    --tw-shadow-color: rgb(24 24 27 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-900\/5 {
    --tw-shadow-color: rgb(24 24 27 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-900\/50 {
    --tw-shadow-color: rgb(24 24 27 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-900\/60 {
    --tw-shadow-color: rgb(24 24 27 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-900\/70 {
    --tw-shadow-color: rgb(24 24 27 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-900\/80 {
    --tw-shadow-color: rgb(24 24 27 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-900\/90 {
    --tw-shadow-color: rgb(24 24 27 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-950 {
    --tw-shadow-color: #09090b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-950\/10 {
    --tw-shadow-color: rgb(9 9 11 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-950\/20 {
    --tw-shadow-color: rgb(9 9 11 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-950\/30 {
    --tw-shadow-color: rgb(9 9 11 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-950\/40 {
    --tw-shadow-color: rgb(9 9 11 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-950\/5 {
    --tw-shadow-color: rgb(9 9 11 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-950\/50 {
    --tw-shadow-color: rgb(9 9 11 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-950\/60 {
    --tw-shadow-color: rgb(9 9 11 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-950\/70 {
    --tw-shadow-color: rgb(9 9 11 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-950\/80 {
    --tw-shadow-color: rgb(9 9 11 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .lg\:shadow-zinc-950\/90 {
    --tw-shadow-color: rgb(9 9 11 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

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

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

  .lg\:ring-4 {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .lg\:ring-8 {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .lg\:ring-amber-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 243 199 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-amber-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(253 230 138 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-amber-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(252 211 77 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-amber-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(251 191 36 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-amber-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(255 251 235 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-amber-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(245 158 11 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-amber-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(217 119 6 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-amber-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(180 83 9 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-amber-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(146 64 14 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-amber-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(120 53 15 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-amber-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(69 26 3 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-black {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-blue-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(219 234 254 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-blue-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(191 219 254 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-blue-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(147 197 253 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-blue-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(96 165 250 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-blue-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(239 246 255 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-blue-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-blue-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(37 99 235 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-blue-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(29 78 216 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-blue-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(30 64 175 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-blue-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(30 58 138 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-blue-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(23 37 84 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-cyan-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(207 250 254 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-cyan-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(165 243 252 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-cyan-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(103 232 249 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-cyan-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(34 211 238 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-cyan-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(236 254 255 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-cyan-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(6 182 212 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-cyan-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(8 145 178 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-cyan-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(14 116 144 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-cyan-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(21 94 117 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-cyan-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(22 78 99 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-cyan-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(8 51 68 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-emerald-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(209 250 229 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-emerald-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(167 243 208 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-emerald-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(110 231 183 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-emerald-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(52 211 153 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-emerald-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(236 253 245 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-emerald-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(16 185 129 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-emerald-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(5 150 105 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-emerald-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(4 120 87 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-emerald-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(6 95 70 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-emerald-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(6 78 59 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-emerald-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(2 44 34 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-fuchsia-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(250 232 255 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-fuchsia-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(245 208 254 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-fuchsia-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(240 171 252 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-fuchsia-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(232 121 249 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-fuchsia-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(253 244 255 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-fuchsia-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(217 70 239 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-fuchsia-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(192 38 211 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-fuchsia-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(162 28 175 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-fuchsia-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(134 25 143 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-fuchsia-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(112 26 117 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-fuchsia-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(74 4 78 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-gray-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(243 244 246 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-gray-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-gray-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-gray-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(156 163 175 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-gray-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(249 250 251 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-gray-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(107 114 128 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-gray-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(75 85 99 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-gray-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(55 65 81 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-gray-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(31 41 55 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-gray-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(17 24 39 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-gray-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(3 7 18 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-green-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(220 252 231 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-green-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(187 247 208 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-green-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(134 239 172 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-green-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(74 222 128 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-green-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(240 253 244 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-green-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(34 197 94 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-green-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(22 163 74 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-green-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(21 128 61 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-green-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(22 101 52 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-green-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(20 83 45 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-green-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(5 46 22 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-indigo-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(224 231 255 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-indigo-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(199 210 254 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-indigo-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(165 180 252 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-indigo-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(129 140 248 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-indigo-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(238 242 255 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-indigo-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(99 102 241 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-indigo-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(79 70 229 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-indigo-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(67 56 202 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-indigo-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(55 48 163 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-indigo-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(49 46 129 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-indigo-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(30 27 75 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-lime-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(236 252 203 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-lime-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(217 249 157 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-lime-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(190 242 100 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-lime-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(163 230 53 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-lime-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(247 254 231 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-lime-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(132 204 22 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-lime-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(101 163 13 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-lime-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(77 124 15 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-lime-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(63 98 18 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-lime-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(54 83 20 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-lime-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(26 46 5 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-neutral-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(245 245 245 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-neutral-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(229 229 229 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-neutral-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(212 212 212 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-neutral-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(163 163 163 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-neutral-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(250 250 250 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-neutral-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(115 115 115 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-neutral-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(82 82 82 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-neutral-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(64 64 64 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-neutral-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(38 38 38 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-neutral-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(23 23 23 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-neutral-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(10 10 10 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-orange-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(255 237 213 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-orange-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 215 170 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-orange-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(253 186 116 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-orange-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(251 146 60 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-orange-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(255 247 237 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-orange-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(249 115 22 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-orange-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(234 88 12 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-orange-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(194 65 12 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-orange-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(154 52 18 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-orange-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(124 45 18 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-orange-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(67 20 7 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-pink-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(252 231 243 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-pink-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(251 207 232 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-pink-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(249 168 212 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-pink-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(244 114 182 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-pink-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(253 242 248 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-pink-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(236 72 153 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-pink-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(219 39 119 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-pink-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(190 24 93 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-pink-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(157 23 77 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-pink-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(131 24 67 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-pink-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(80 7 36 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-purple-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(243 232 255 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-purple-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(233 213 255 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-purple-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(216 180 254 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-purple-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(192 132 252 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-purple-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(250 245 255 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-purple-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(168 85 247 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-purple-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(147 51 234 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-purple-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(126 34 206 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-purple-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(107 33 168 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-purple-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(88 28 135 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-purple-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(59 7 100 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-red-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 226 226 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-red-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 202 202 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-red-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(252 165 165 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-red-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(248 113 113 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-red-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 242 242 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-red-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-red-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(220 38 38 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-red-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(185 28 28 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-red-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(153 27 27 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-red-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(127 29 29 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-red-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(69 10 10 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-rose-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(255 228 230 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-rose-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 205 211 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-rose-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(253 164 175 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-rose-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(251 113 133 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-rose-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(255 241 242 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-rose-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(244 63 94 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-rose-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(225 29 72 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-rose-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(190 18 60 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-rose-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(159 18 57 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-rose-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(136 19 55 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-rose-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(76 5 25 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-sky-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(224 242 254 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-sky-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(186 230 253 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-sky-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(125 211 252 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-sky-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(56 189 248 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-sky-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(240 249 255 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-sky-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(14 165 233 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-sky-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(2 132 199 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-sky-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(3 105 161 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-sky-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(7 89 133 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-sky-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(12 74 110 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-sky-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(8 47 73 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-slate-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(241 245 249 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-slate-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(226 232 240 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-slate-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(203 213 225 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-slate-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(148 163 184 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-slate-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(248 250 252 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-slate-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(100 116 139 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-slate-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(71 85 105 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-slate-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(51 65 85 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-slate-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(30 41 59 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-slate-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(15 23 42 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-slate-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(2 6 23 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-stone-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(245 245 244 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-stone-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(231 229 228 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-stone-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(214 211 209 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-stone-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(168 162 158 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-stone-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(250 250 249 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-stone-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(120 113 108 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-stone-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(87 83 78 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-stone-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(68 64 60 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-stone-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(41 37 36 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-stone-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(28 25 23 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-stone-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(12 10 9 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-teal-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(204 251 241 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-teal-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(153 246 228 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-teal-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(94 234 212 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-teal-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(45 212 191 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-teal-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(240 253 250 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-teal-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(20 184 166 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-teal-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(13 148 136 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-teal-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(15 118 110 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-teal-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(17 94 89 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-teal-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(19 78 74 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-teal-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(4 47 46 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-violet-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(237 233 254 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-violet-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(221 214 254 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-violet-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(196 181 253 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-violet-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(167 139 250 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-violet-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(245 243 255 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-violet-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(139 92 246 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-violet-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(124 58 237 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-violet-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(109 40 217 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-violet-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(91 33 182 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-violet-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(76 29 149 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-violet-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(46 16 101 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-white {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-yellow-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 249 195 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-yellow-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 240 138 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-yellow-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(253 224 71 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-yellow-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(250 204 21 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-yellow-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 252 232 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-yellow-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(234 179 8 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-yellow-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(202 138 4 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-yellow-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(161 98 7 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-yellow-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(133 77 14 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-yellow-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(113 63 18 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-yellow-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(66 32 6 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-zinc-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(244 244 245 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-zinc-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(228 228 231 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-zinc-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(212 212 216 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-zinc-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(161 161 170 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-zinc-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(250 250 250 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-zinc-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(113 113 122 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-zinc-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(82 82 91 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-zinc-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(63 63 70 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-zinc-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(39 39 42 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-zinc-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(24 24 27 / var(--tw-ring-opacity, 1));
  }

  .lg\:ring-zinc-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(9 9 11 / var(--tw-ring-opacity, 1));
  }

  .lg\:blur-2xl {
    --tw-blur: blur(40px);
    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);
  }

  .lg\:blur-3xl {
    --tw-blur: blur(64px);
    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);
  }

  .lg\:blur-lg {
    --tw-blur: blur(16px);
    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);
  }

  .lg\:blur-md {
    --tw-blur: blur(12px);
    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);
  }

  .lg\:blur-sm {
    --tw-blur: blur(4px);
    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);
  }

  .lg\:blur-xl {
    --tw-blur: blur(24px);
    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);
  }

  .lg\:drop-shadow-lg {
    --tw-drop-shadow: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
    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);
  }

  .lg\:drop-shadow-md {
    --tw-drop-shadow: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
    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);
  }

  .lg\:drop-shadow-sm {
    --tw-drop-shadow: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05));
    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);
  }

  .lg\:backdrop-blur-lg {
    --tw-backdrop-blur: blur(16px);
    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);
  }

  .lg\:backdrop-blur-md {
    --tw-backdrop-blur: blur(12px);
    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);
  }

  .lg\:motion-blur-in-lg {
    --motion-origin-blur: 16px;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-blur-in-md {
    --motion-origin-blur: 12px;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-blur-out-lg {
    --motion-end-blur: 16px;
    --motion-filter-out-animation: motion-filter-out calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-out-animation), var(--motion-translate-out-animation), var(--motion-rotate-out-animation), var(--motion-filter-out-animation), var(--motion-opacity-out-animation), var(--motion-background-color-out-animation), var(--motion-text-color-out-animation);
  }

  .lg\:motion-blur-out-md {
    --motion-end-blur: 12px;
    --motion-filter-out-animation: motion-filter-out calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-out-animation), var(--motion-translate-out-animation), var(--motion-rotate-out-animation), var(--motion-filter-out-animation), var(--motion-opacity-out-animation), var(--motion-background-color-out-animation), var(--motion-text-color-out-animation);
  }

  .lg\:motion-blur-loop-lg {
    --motion-loop-blur: 16px;
    --motion-filter-loop-animation: motion-filter-loop-mirror calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both var(--motion-filter-loop-count, var(--motion-loop-count));
    animation-composition: accumulate;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .lg\:motion-blur-loop-md {
    --motion-loop-blur: 12px;
    --motion-filter-loop-animation: motion-filter-loop-mirror calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both var(--motion-filter-loop-count, var(--motion-loop-count));
    animation-composition: accumulate;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }
}
@media (min-width: 1280px) {

  .xl\:m-0 {
    margin: 0px;
  }

  .xl\:m-1 {
    margin: 0.25rem;
  }

  .xl\:m-10 {
    margin: 2.5rem;
  }

  .xl\:m-11 {
    margin: 2.75rem;
  }

  .xl\:m-12 {
    margin: 3rem;
  }

  .xl\:m-14 {
    margin: 3.5rem;
  }

  .xl\:m-16 {
    margin: 4rem;
  }

  .xl\:m-2 {
    margin: 0.5rem;
  }

  .xl\:m-20 {
    margin: 5rem;
  }

  .xl\:m-24 {
    margin: 6rem;
  }

  .xl\:m-28 {
    margin: 7rem;
  }

  .xl\:m-3 {
    margin: 0.75rem;
  }

  .xl\:m-32 {
    margin: 8rem;
  }

  .xl\:m-36 {
    margin: 9rem;
  }

  .xl\:m-4 {
    margin: 1rem;
  }

  .xl\:m-40 {
    margin: 10rem;
  }

  .xl\:m-44 {
    margin: 11rem;
  }

  .xl\:m-48 {
    margin: 12rem;
  }

  .xl\:m-5 {
    margin: 1.25rem;
  }

  .xl\:m-52 {
    margin: 13rem;
  }

  .xl\:m-56 {
    margin: 14rem;
  }

  .xl\:m-6 {
    margin: 1.5rem;
  }

  .xl\:m-60 {
    margin: 15rem;
  }

  .xl\:m-64 {
    margin: 16rem;
  }

  .xl\:m-7 {
    margin: 1.75rem;
  }

  .xl\:m-72 {
    margin: 18rem;
  }

  .xl\:m-8 {
    margin: 2rem;
  }

  .xl\:m-80 {
    margin: 20rem;
  }

  .xl\:m-9 {
    margin: 2.25rem;
  }

  .xl\:m-96 {
    margin: 24rem;
  }

  .xl\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }

  .xl\:mx-1 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .xl\:mx-10 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .xl\:mx-11 {
    margin-left: 2.75rem;
    margin-right: 2.75rem;
  }

  .xl\:mx-12 {
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .xl\:mx-14 {
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .xl\:mx-16 {
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .xl\:mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .xl\:mx-20 {
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .xl\:mx-24 {
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .xl\:mx-28 {
    margin-left: 7rem;
    margin-right: 7rem;
  }

  .xl\:mx-3 {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .xl\:mx-32 {
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .xl\:mx-36 {
    margin-left: 9rem;
    margin-right: 9rem;
  }

  .xl\:mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .xl\:mx-40 {
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .xl\:mx-44 {
    margin-left: 11rem;
    margin-right: 11rem;
  }

  .xl\:mx-48 {
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .xl\:mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .xl\:mx-52 {
    margin-left: 13rem;
    margin-right: 13rem;
  }

  .xl\:mx-56 {
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .xl\:mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .xl\:mx-60 {
    margin-left: 15rem;
    margin-right: 15rem;
  }

  .xl\:mx-64 {
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .xl\:mx-7 {
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .xl\:mx-72 {
    margin-left: 18rem;
    margin-right: 18rem;
  }

  .xl\:mx-8 {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .xl\:mx-80 {
    margin-left: 20rem;
    margin-right: 20rem;
  }

  .xl\:mx-9 {
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .xl\:mx-96 {
    margin-left: 24rem;
    margin-right: 24rem;
  }

  .xl\:my-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .xl\:my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .xl\:my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .xl\:my-11 {
    margin-top: 2.75rem;
    margin-bottom: 2.75rem;
  }

  .xl\:my-12 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .xl\:my-14 {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .xl\:my-16 {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .xl\:my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .xl\:my-20 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .xl\:my-24 {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .xl\:my-28 {
    margin-top: 7rem;
    margin-bottom: 7rem;
  }

  .xl\:my-3 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .xl\:my-32 {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .xl\:my-36 {
    margin-top: 9rem;
    margin-bottom: 9rem;
  }

  .xl\:my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .xl\:my-40 {
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .xl\:my-44 {
    margin-top: 11rem;
    margin-bottom: 11rem;
  }

  .xl\:my-48 {
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .xl\:my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .xl\:my-52 {
    margin-top: 13rem;
    margin-bottom: 13rem;
  }

  .xl\:my-56 {
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .xl\:my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .xl\:my-60 {
    margin-top: 15rem;
    margin-bottom: 15rem;
  }

  .xl\:my-64 {
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .xl\:my-7 {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .xl\:my-72 {
    margin-top: 18rem;
    margin-bottom: 18rem;
  }

  .xl\:my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .xl\:my-80 {
    margin-top: 20rem;
    margin-bottom: 20rem;
  }

  .xl\:my-9 {
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }

  .xl\:my-96 {
    margin-top: 24rem;
    margin-bottom: 24rem;
  }

  .xl\:mb-0 {
    margin-bottom: 0px;
  }

  .xl\:mb-1 {
    margin-bottom: 0.25rem;
  }

  .xl\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .xl\:mb-11 {
    margin-bottom: 2.75rem;
  }

  .xl\:mb-12 {
    margin-bottom: 3rem;
  }

  .xl\:mb-14 {
    margin-bottom: 3.5rem;
  }

  .xl\:mb-16 {
    margin-bottom: 4rem;
  }

  .xl\:mb-2 {
    margin-bottom: 0.5rem;
  }

  .xl\:mb-20 {
    margin-bottom: 5rem;
  }

  .xl\:mb-24 {
    margin-bottom: 6rem;
  }

  .xl\:mb-28 {
    margin-bottom: 7rem;
  }

  .xl\:mb-3 {
    margin-bottom: 0.75rem;
  }

  .xl\:mb-32 {
    margin-bottom: 8rem;
  }

  .xl\:mb-36 {
    margin-bottom: 9rem;
  }

  .xl\:mb-4 {
    margin-bottom: 1rem;
  }

  .xl\:mb-40 {
    margin-bottom: 10rem;
  }

  .xl\:mb-44 {
    margin-bottom: 11rem;
  }

  .xl\:mb-48 {
    margin-bottom: 12rem;
  }

  .xl\:mb-5 {
    margin-bottom: 1.25rem;
  }

  .xl\:mb-52 {
    margin-bottom: 13rem;
  }

  .xl\:mb-56 {
    margin-bottom: 14rem;
  }

  .xl\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .xl\:mb-60 {
    margin-bottom: 15rem;
  }

  .xl\:mb-64 {
    margin-bottom: 16rem;
  }

  .xl\:mb-7 {
    margin-bottom: 1.75rem;
  }

  .xl\:mb-72 {
    margin-bottom: 18rem;
  }

  .xl\:mb-8 {
    margin-bottom: 2rem;
  }

  .xl\:mb-80 {
    margin-bottom: 20rem;
  }

  .xl\:mb-9 {
    margin-bottom: 2.25rem;
  }

  .xl\:mb-96 {
    margin-bottom: 24rem;
  }

  .xl\:ml-0 {
    margin-left: 0px;
  }

  .xl\:ml-1 {
    margin-left: 0.25rem;
  }

  .xl\:ml-10 {
    margin-left: 2.5rem;
  }

  .xl\:ml-11 {
    margin-left: 2.75rem;
  }

  .xl\:ml-12 {
    margin-left: 3rem;
  }

  .xl\:ml-14 {
    margin-left: 3.5rem;
  }

  .xl\:ml-16 {
    margin-left: 4rem;
  }

  .xl\:ml-2 {
    margin-left: 0.5rem;
  }

  .xl\:ml-20 {
    margin-left: 5rem;
  }

  .xl\:ml-24 {
    margin-left: 6rem;
  }

  .xl\:ml-28 {
    margin-left: 7rem;
  }

  .xl\:ml-3 {
    margin-left: 0.75rem;
  }

  .xl\:ml-32 {
    margin-left: 8rem;
  }

  .xl\:ml-36 {
    margin-left: 9rem;
  }

  .xl\:ml-4 {
    margin-left: 1rem;
  }

  .xl\:ml-40 {
    margin-left: 10rem;
  }

  .xl\:ml-44 {
    margin-left: 11rem;
  }

  .xl\:ml-48 {
    margin-left: 12rem;
  }

  .xl\:ml-5 {
    margin-left: 1.25rem;
  }

  .xl\:ml-52 {
    margin-left: 13rem;
  }

  .xl\:ml-56 {
    margin-left: 14rem;
  }

  .xl\:ml-6 {
    margin-left: 1.5rem;
  }

  .xl\:ml-60 {
    margin-left: 15rem;
  }

  .xl\:ml-64 {
    margin-left: 16rem;
  }

  .xl\:ml-7 {
    margin-left: 1.75rem;
  }

  .xl\:ml-72 {
    margin-left: 18rem;
  }

  .xl\:ml-8 {
    margin-left: 2rem;
  }

  .xl\:ml-80 {
    margin-left: 20rem;
  }

  .xl\:ml-9 {
    margin-left: 2.25rem;
  }

  .xl\:ml-96 {
    margin-left: 24rem;
  }

  .xl\:mr-0 {
    margin-right: 0px;
  }

  .xl\:mr-1 {
    margin-right: 0.25rem;
  }

  .xl\:mr-10 {
    margin-right: 2.5rem;
  }

  .xl\:mr-11 {
    margin-right: 2.75rem;
  }

  .xl\:mr-12 {
    margin-right: 3rem;
  }

  .xl\:mr-14 {
    margin-right: 3.5rem;
  }

  .xl\:mr-16 {
    margin-right: 4rem;
  }

  .xl\:mr-2 {
    margin-right: 0.5rem;
  }

  .xl\:mr-20 {
    margin-right: 5rem;
  }

  .xl\:mr-24 {
    margin-right: 6rem;
  }

  .xl\:mr-28 {
    margin-right: 7rem;
  }

  .xl\:mr-3 {
    margin-right: 0.75rem;
  }

  .xl\:mr-32 {
    margin-right: 8rem;
  }

  .xl\:mr-36 {
    margin-right: 9rem;
  }

  .xl\:mr-4 {
    margin-right: 1rem;
  }

  .xl\:mr-40 {
    margin-right: 10rem;
  }

  .xl\:mr-44 {
    margin-right: 11rem;
  }

  .xl\:mr-48 {
    margin-right: 12rem;
  }

  .xl\:mr-5 {
    margin-right: 1.25rem;
  }

  .xl\:mr-52 {
    margin-right: 13rem;
  }

  .xl\:mr-56 {
    margin-right: 14rem;
  }

  .xl\:mr-6 {
    margin-right: 1.5rem;
  }

  .xl\:mr-60 {
    margin-right: 15rem;
  }

  .xl\:mr-64 {
    margin-right: 16rem;
  }

  .xl\:mr-7 {
    margin-right: 1.75rem;
  }

  .xl\:mr-72 {
    margin-right: 18rem;
  }

  .xl\:mr-8 {
    margin-right: 2rem;
  }

  .xl\:mr-80 {
    margin-right: 20rem;
  }

  .xl\:mr-9 {
    margin-right: 2.25rem;
  }

  .xl\:mr-96 {
    margin-right: 24rem;
  }

  .xl\:mt-0 {
    margin-top: 0px;
  }

  .xl\:mt-1 {
    margin-top: 0.25rem;
  }

  .xl\:mt-10 {
    margin-top: 2.5rem;
  }

  .xl\:mt-11 {
    margin-top: 2.75rem;
  }

  .xl\:mt-12 {
    margin-top: 3rem;
  }

  .xl\:mt-14 {
    margin-top: 3.5rem;
  }

  .xl\:mt-16 {
    margin-top: 4rem;
  }

  .xl\:mt-2 {
    margin-top: 0.5rem;
  }

  .xl\:mt-20 {
    margin-top: 5rem;
  }

  .xl\:mt-24 {
    margin-top: 6rem;
  }

  .xl\:mt-28 {
    margin-top: 7rem;
  }

  .xl\:mt-3 {
    margin-top: 0.75rem;
  }

  .xl\:mt-32 {
    margin-top: 8rem;
  }

  .xl\:mt-36 {
    margin-top: 9rem;
  }

  .xl\:mt-4 {
    margin-top: 1rem;
  }

  .xl\:mt-40 {
    margin-top: 10rem;
  }

  .xl\:mt-44 {
    margin-top: 11rem;
  }

  .xl\:mt-48 {
    margin-top: 12rem;
  }

  .xl\:mt-5 {
    margin-top: 1.25rem;
  }

  .xl\:mt-52 {
    margin-top: 13rem;
  }

  .xl\:mt-56 {
    margin-top: 14rem;
  }

  .xl\:mt-6 {
    margin-top: 1.5rem;
  }

  .xl\:mt-60 {
    margin-top: 15rem;
  }

  .xl\:mt-64 {
    margin-top: 16rem;
  }

  .xl\:mt-7 {
    margin-top: 1.75rem;
  }

  .xl\:mt-72 {
    margin-top: 18rem;
  }

  .xl\:mt-8 {
    margin-top: 2rem;
  }

  .xl\:mt-80 {
    margin-top: 20rem;
  }

  .xl\:mt-9 {
    margin-top: 2.25rem;
  }

  .xl\:mt-96 {
    margin-top: 24rem;
  }

  .xl\:h-0 {
    height: 0px;
  }

  .xl\:h-0\.5 {
    height: 0.125rem;
  }

  .xl\:h-1 {
    height: 0.25rem;
  }

  .xl\:h-1\.5 {
    height: 0.375rem;
  }

  .xl\:h-1\/2 {
    height: 50%;
  }

  .xl\:h-1\/3 {
    height: 33.333333%;
  }

  .xl\:h-1\/4 {
    height: 25%;
  }

  .xl\:h-1\/5 {
    height: 20%;
  }

  .xl\:h-1\/6 {
    height: 16.666667%;
  }

  .xl\:h-10 {
    height: 2.5rem;
  }

  .xl\:h-11 {
    height: 2.75rem;
  }

  .xl\:h-12 {
    height: 3rem;
  }

  .xl\:h-14 {
    height: 3.5rem;
  }

  .xl\:h-16 {
    height: 4rem;
  }

  .xl\:h-2 {
    height: 0.5rem;
  }

  .xl\:h-2\.5 {
    height: 0.625rem;
  }

  .xl\:h-2\/3 {
    height: 66.666667%;
  }

  .xl\:h-2\/4 {
    height: 50%;
  }

  .xl\:h-2\/5 {
    height: 40%;
  }

  .xl\:h-2\/6 {
    height: 33.333333%;
  }

  .xl\:h-20 {
    height: 5rem;
  }

  .xl\:h-24 {
    height: 6rem;
  }

  .xl\:h-28 {
    height: 7rem;
  }

  .xl\:h-3 {
    height: 0.75rem;
  }

  .xl\:h-3\.5 {
    height: 0.875rem;
  }

  .xl\:h-3\/4 {
    height: 75%;
  }

  .xl\:h-3\/5 {
    height: 60%;
  }

  .xl\:h-3\/6 {
    height: 50%;
  }

  .xl\:h-32 {
    height: 8rem;
  }

  .xl\:h-36 {
    height: 9rem;
  }

  .xl\:h-4 {
    height: 1rem;
  }

  .xl\:h-4\/5 {
    height: 80%;
  }

  .xl\:h-4\/6 {
    height: 66.666667%;
  }

  .xl\:h-40 {
    height: 10rem;
  }

  .xl\:h-44 {
    height: 11rem;
  }

  .xl\:h-48 {
    height: 12rem;
  }

  .xl\:h-5 {
    height: 1.25rem;
  }

  .xl\:h-5\/6 {
    height: 83.333333%;
  }

  .xl\:h-52 {
    height: 13rem;
  }

  .xl\:h-56 {
    height: 14rem;
  }

  .xl\:h-6 {
    height: 1.5rem;
  }

  .xl\:h-60 {
    height: 15rem;
  }

  .xl\:h-64 {
    height: 16rem;
  }

  .xl\:h-7 {
    height: 1.75rem;
  }

  .xl\:h-72 {
    height: 18rem;
  }

  .xl\:h-8 {
    height: 2rem;
  }

  .xl\:h-80 {
    height: 20rem;
  }

  .xl\:h-9 {
    height: 2.25rem;
  }

  .xl\:h-96 {
    height: 24rem;
  }

  .xl\:h-auto {
    height: auto;
  }

  .xl\:h-dvh {
    height: 100dvh;
  }

  .xl\:h-fit {
    height: -moz-fit-content;
    height: fit-content;
  }

  .xl\:h-full {
    height: 100%;
  }

  .xl\:h-lvh {
    height: 100lvh;
  }

  .xl\:h-max {
    height: -moz-max-content;
    height: max-content;
  }

  .xl\:h-min {
    height: -moz-min-content;
    height: min-content;
  }

  .xl\:h-px {
    height: 1px;
  }

  .xl\:h-screen {
    height: 100vh;
  }

  .xl\:h-svh {
    height: 100svh;
  }

  .xl\:max-h-full {
    max-height: 100%;
  }

  .xl\:max-h-none {
    max-height: none;
  }

  .xl\:min-h-full {
    min-height: 100%;
  }

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

  .xl\:w-1\/3 {
    width: 33.333333%;
  }

  .xl\:w-1\/4 {
    width: 25%;
  }

  .xl\:w-1\/5 {
    width: 20%;
  }

  .xl\:w-1\/6 {
    width: 16.666667%;
  }

  .xl\:w-full {
    width: 100%;
  }

  .xl\:min-w-full {
    min-width: 100%;
  }

  .xl\:max-w-full {
    max-width: 100%;
  }

  .xl\:max-w-lg {
    max-width: 32rem;
  }

  .xl\:max-w-md {
    max-width: 28rem;
  }

  .xl\:max-w-none {
    max-width: none;
  }

  .xl\:max-w-screen-lg {
    max-width: 1024px;
  }

  .xl\:max-w-screen-md {
    max-width: 768px;
  }

  .xl\:scale-0 {
    --tw-scale-x: 0;
    --tw-scale-y: 0;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .xl\:scale-100 {
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .xl\:scale-105 {
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .xl\:scale-110 {
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .xl\:scale-125 {
    --tw-scale-x: 1.25;
    --tw-scale-y: 1.25;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .xl\:scale-150 {
    --tw-scale-x: 1.5;
    --tw-scale-y: 1.5;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .xl\:scale-95 {
    --tw-scale-x: .95;
    --tw-scale-y: .95;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .xl\:columns-lg {
    -moz-columns: 32rem;
         columns: 32rem;
  }

  .xl\:columns-md {
    -moz-columns: 28rem;
         columns: 28rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .xl\:gap-1 {
    gap: 0.25rem;
  }

  .xl\:gap-10 {
    gap: 2.5rem;
  }

  .xl\:gap-11 {
    gap: 2.75rem;
  }

  .xl\:gap-12 {
    gap: 3rem;
  }

  .xl\:gap-2 {
    gap: 0.5rem;
  }

  .xl\:gap-3 {
    gap: 0.75rem;
  }

  .xl\:gap-4 {
    gap: 1rem;
  }

  .xl\:gap-5 {
    gap: 1.25rem;
  }

  .xl\:gap-6 {
    gap: 1.5rem;
  }

  .xl\:gap-7 {
    gap: 1.75rem;
  }

  .xl\:gap-8 {
    gap: 2rem;
  }

  .xl\:gap-9 {
    gap: 2.25rem;
  }

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

  .xl\:rounded-md {
    border-radius: calc(var(--radius) - 2px);
  }

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

  .xl\:rounded-b-md {
    border-bottom-right-radius: calc(var(--radius) - 2px);
    border-bottom-left-radius: calc(var(--radius) - 2px);
  }

  .xl\:rounded-e-lg {
    border-start-end-radius: var(--radius);
    border-end-end-radius: var(--radius);
  }

  .xl\:rounded-e-md {
    border-start-end-radius: calc(var(--radius) - 2px);
    border-end-end-radius: calc(var(--radius) - 2px);
  }

  .xl\:rounded-l-lg {
    border-top-left-radius: var(--radius);
    border-bottom-left-radius: var(--radius);
  }

  .xl\:rounded-l-md {
    border-top-left-radius: calc(var(--radius) - 2px);
    border-bottom-left-radius: calc(var(--radius) - 2px);
  }

  .xl\:rounded-r-lg {
    border-top-right-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
  }

  .xl\:rounded-r-md {
    border-top-right-radius: calc(var(--radius) - 2px);
    border-bottom-right-radius: calc(var(--radius) - 2px);
  }

  .xl\:rounded-s-lg {
    border-start-start-radius: var(--radius);
    border-end-start-radius: var(--radius);
  }

  .xl\:rounded-s-md {
    border-start-start-radius: calc(var(--radius) - 2px);
    border-end-start-radius: calc(var(--radius) - 2px);
  }

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

  .xl\:rounded-t-md {
    border-top-left-radius: calc(var(--radius) - 2px);
    border-top-right-radius: calc(var(--radius) - 2px);
  }

  .xl\:rounded-bl-lg {
    border-bottom-left-radius: var(--radius);
  }

  .xl\:rounded-bl-md {
    border-bottom-left-radius: calc(var(--radius) - 2px);
  }

  .xl\:rounded-br-lg {
    border-bottom-right-radius: var(--radius);
  }

  .xl\:rounded-br-md {
    border-bottom-right-radius: calc(var(--radius) - 2px);
  }

  .xl\:rounded-ee-lg {
    border-end-end-radius: var(--radius);
  }

  .xl\:rounded-ee-md {
    border-end-end-radius: calc(var(--radius) - 2px);
  }

  .xl\:rounded-es-lg {
    border-end-start-radius: var(--radius);
  }

  .xl\:rounded-es-md {
    border-end-start-radius: calc(var(--radius) - 2px);
  }

  .xl\:rounded-se-lg {
    border-start-end-radius: var(--radius);
  }

  .xl\:rounded-se-md {
    border-start-end-radius: calc(var(--radius) - 2px);
  }

  .xl\:rounded-ss-lg {
    border-start-start-radius: var(--radius);
  }

  .xl\:rounded-ss-md {
    border-start-start-radius: calc(var(--radius) - 2px);
  }

  .xl\:rounded-tl-lg {
    border-top-left-radius: var(--radius);
  }

  .xl\:rounded-tl-md {
    border-top-left-radius: calc(var(--radius) - 2px);
  }

  .xl\:rounded-tr-lg {
    border-top-right-radius: var(--radius);
  }

  .xl\:rounded-tr-md {
    border-top-right-radius: calc(var(--radius) - 2px);
  }

  .xl\:border-amber-100 {
    --tw-border-opacity: 1;
    border-color: rgb(254 243 199 / var(--tw-border-opacity, 1));
  }

  .xl\:border-amber-200 {
    --tw-border-opacity: 1;
    border-color: rgb(253 230 138 / var(--tw-border-opacity, 1));
  }

  .xl\:border-amber-300 {
    --tw-border-opacity: 1;
    border-color: rgb(252 211 77 / var(--tw-border-opacity, 1));
  }

  .xl\:border-amber-400 {
    --tw-border-opacity: 1;
    border-color: rgb(251 191 36 / var(--tw-border-opacity, 1));
  }

  .xl\:border-amber-50 {
    --tw-border-opacity: 1;
    border-color: rgb(255 251 235 / var(--tw-border-opacity, 1));
  }

  .xl\:border-amber-500 {
    --tw-border-opacity: 1;
    border-color: rgb(245 158 11 / var(--tw-border-opacity, 1));
  }

  .xl\:border-amber-600 {
    --tw-border-opacity: 1;
    border-color: rgb(217 119 6 / var(--tw-border-opacity, 1));
  }

  .xl\:border-amber-700 {
    --tw-border-opacity: 1;
    border-color: rgb(180 83 9 / var(--tw-border-opacity, 1));
  }

  .xl\:border-amber-800 {
    --tw-border-opacity: 1;
    border-color: rgb(146 64 14 / var(--tw-border-opacity, 1));
  }

  .xl\:border-amber-900 {
    --tw-border-opacity: 1;
    border-color: rgb(120 53 15 / var(--tw-border-opacity, 1));
  }

  .xl\:border-amber-950 {
    --tw-border-opacity: 1;
    border-color: rgb(69 26 3 / var(--tw-border-opacity, 1));
  }

  .xl\:border-blue-100 {
    --tw-border-opacity: 1;
    border-color: rgb(219 234 254 / var(--tw-border-opacity, 1));
  }

  .xl\:border-blue-200 {
    --tw-border-opacity: 1;
    border-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
  }

  .xl\:border-blue-300 {
    --tw-border-opacity: 1;
    border-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
  }

  .xl\:border-blue-400 {
    --tw-border-opacity: 1;
    border-color: rgb(96 165 250 / var(--tw-border-opacity, 1));
  }

  .xl\:border-blue-50 {
    --tw-border-opacity: 1;
    border-color: rgb(239 246 255 / var(--tw-border-opacity, 1));
  }

  .xl\:border-blue-500 {
    --tw-border-opacity: 1;
    border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
  }

  .xl\:border-blue-600 {
    --tw-border-opacity: 1;
    border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
  }

  .xl\:border-blue-700 {
    --tw-border-opacity: 1;
    border-color: rgb(29 78 216 / var(--tw-border-opacity, 1));
  }

  .xl\:border-blue-800 {
    --tw-border-opacity: 1;
    border-color: rgb(30 64 175 / var(--tw-border-opacity, 1));
  }

  .xl\:border-blue-900 {
    --tw-border-opacity: 1;
    border-color: rgb(30 58 138 / var(--tw-border-opacity, 1));
  }

  .xl\:border-blue-950 {
    --tw-border-opacity: 1;
    border-color: rgb(23 37 84 / var(--tw-border-opacity, 1));
  }

  .xl\:border-cyan-100 {
    --tw-border-opacity: 1;
    border-color: rgb(207 250 254 / var(--tw-border-opacity, 1));
  }

  .xl\:border-cyan-200 {
    --tw-border-opacity: 1;
    border-color: rgb(165 243 252 / var(--tw-border-opacity, 1));
  }

  .xl\:border-cyan-300 {
    --tw-border-opacity: 1;
    border-color: rgb(103 232 249 / var(--tw-border-opacity, 1));
  }

  .xl\:border-cyan-400 {
    --tw-border-opacity: 1;
    border-color: rgb(34 211 238 / var(--tw-border-opacity, 1));
  }

  .xl\:border-cyan-50 {
    --tw-border-opacity: 1;
    border-color: rgb(236 254 255 / var(--tw-border-opacity, 1));
  }

  .xl\:border-cyan-500 {
    --tw-border-opacity: 1;
    border-color: rgb(6 182 212 / var(--tw-border-opacity, 1));
  }

  .xl\:border-cyan-600 {
    --tw-border-opacity: 1;
    border-color: rgb(8 145 178 / var(--tw-border-opacity, 1));
  }

  .xl\:border-cyan-700 {
    --tw-border-opacity: 1;
    border-color: rgb(14 116 144 / var(--tw-border-opacity, 1));
  }

  .xl\:border-cyan-800 {
    --tw-border-opacity: 1;
    border-color: rgb(21 94 117 / var(--tw-border-opacity, 1));
  }

  .xl\:border-cyan-900 {
    --tw-border-opacity: 1;
    border-color: rgb(22 78 99 / var(--tw-border-opacity, 1));
  }

  .xl\:border-cyan-950 {
    --tw-border-opacity: 1;
    border-color: rgb(8 51 68 / var(--tw-border-opacity, 1));
  }

  .xl\:border-emerald-100 {
    --tw-border-opacity: 1;
    border-color: rgb(209 250 229 / var(--tw-border-opacity, 1));
  }

  .xl\:border-emerald-200 {
    --tw-border-opacity: 1;
    border-color: rgb(167 243 208 / var(--tw-border-opacity, 1));
  }

  .xl\:border-emerald-300 {
    --tw-border-opacity: 1;
    border-color: rgb(110 231 183 / var(--tw-border-opacity, 1));
  }

  .xl\:border-emerald-400 {
    --tw-border-opacity: 1;
    border-color: rgb(52 211 153 / var(--tw-border-opacity, 1));
  }

  .xl\:border-emerald-50 {
    --tw-border-opacity: 1;
    border-color: rgb(236 253 245 / var(--tw-border-opacity, 1));
  }

  .xl\:border-emerald-500 {
    --tw-border-opacity: 1;
    border-color: rgb(16 185 129 / var(--tw-border-opacity, 1));
  }

  .xl\:border-emerald-600 {
    --tw-border-opacity: 1;
    border-color: rgb(5 150 105 / var(--tw-border-opacity, 1));
  }

  .xl\:border-emerald-700 {
    --tw-border-opacity: 1;
    border-color: rgb(4 120 87 / var(--tw-border-opacity, 1));
  }

  .xl\:border-emerald-800 {
    --tw-border-opacity: 1;
    border-color: rgb(6 95 70 / var(--tw-border-opacity, 1));
  }

  .xl\:border-emerald-900 {
    --tw-border-opacity: 1;
    border-color: rgb(6 78 59 / var(--tw-border-opacity, 1));
  }

  .xl\:border-emerald-950 {
    --tw-border-opacity: 1;
    border-color: rgb(2 44 34 / var(--tw-border-opacity, 1));
  }

  .xl\:border-fuchsia-100 {
    --tw-border-opacity: 1;
    border-color: rgb(250 232 255 / var(--tw-border-opacity, 1));
  }

  .xl\:border-fuchsia-200 {
    --tw-border-opacity: 1;
    border-color: rgb(245 208 254 / var(--tw-border-opacity, 1));
  }

  .xl\:border-fuchsia-300 {
    --tw-border-opacity: 1;
    border-color: rgb(240 171 252 / var(--tw-border-opacity, 1));
  }

  .xl\:border-fuchsia-400 {
    --tw-border-opacity: 1;
    border-color: rgb(232 121 249 / var(--tw-border-opacity, 1));
  }

  .xl\:border-fuchsia-50 {
    --tw-border-opacity: 1;
    border-color: rgb(253 244 255 / var(--tw-border-opacity, 1));
  }

  .xl\:border-fuchsia-500 {
    --tw-border-opacity: 1;
    border-color: rgb(217 70 239 / var(--tw-border-opacity, 1));
  }

  .xl\:border-fuchsia-600 {
    --tw-border-opacity: 1;
    border-color: rgb(192 38 211 / var(--tw-border-opacity, 1));
  }

  .xl\:border-fuchsia-700 {
    --tw-border-opacity: 1;
    border-color: rgb(162 28 175 / var(--tw-border-opacity, 1));
  }

  .xl\:border-fuchsia-800 {
    --tw-border-opacity: 1;
    border-color: rgb(134 25 143 / var(--tw-border-opacity, 1));
  }

  .xl\:border-fuchsia-900 {
    --tw-border-opacity: 1;
    border-color: rgb(112 26 117 / var(--tw-border-opacity, 1));
  }

  .xl\:border-fuchsia-950 {
    --tw-border-opacity: 1;
    border-color: rgb(74 4 78 / var(--tw-border-opacity, 1));
  }

  .xl\:border-gray-100 {
    --tw-border-opacity: 1;
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
  }

  .xl\:border-gray-200 {
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
  }

  .xl\:border-gray-300 {
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
  }

  .xl\:border-gray-400 {
    --tw-border-opacity: 1;
    border-color: rgb(156 163 175 / var(--tw-border-opacity, 1));
  }

  .xl\:border-gray-50 {
    --tw-border-opacity: 1;
    border-color: rgb(249 250 251 / var(--tw-border-opacity, 1));
  }

  .xl\:border-gray-500 {
    --tw-border-opacity: 1;
    border-color: rgb(107 114 128 / var(--tw-border-opacity, 1));
  }

  .xl\:border-gray-600 {
    --tw-border-opacity: 1;
    border-color: rgb(75 85 99 / var(--tw-border-opacity, 1));
  }

  .xl\:border-gray-700 {
    --tw-border-opacity: 1;
    border-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
  }

  .xl\:border-gray-800 {
    --tw-border-opacity: 1;
    border-color: rgb(31 41 55 / var(--tw-border-opacity, 1));
  }

  .xl\:border-gray-900 {
    --tw-border-opacity: 1;
    border-color: rgb(17 24 39 / var(--tw-border-opacity, 1));
  }

  .xl\:border-gray-950 {
    --tw-border-opacity: 1;
    border-color: rgb(3 7 18 / var(--tw-border-opacity, 1));
  }

  .xl\:border-green-100 {
    --tw-border-opacity: 1;
    border-color: rgb(220 252 231 / var(--tw-border-opacity, 1));
  }

  .xl\:border-green-200 {
    --tw-border-opacity: 1;
    border-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
  }

  .xl\:border-green-300 {
    --tw-border-opacity: 1;
    border-color: rgb(134 239 172 / var(--tw-border-opacity, 1));
  }

  .xl\:border-green-400 {
    --tw-border-opacity: 1;
    border-color: rgb(74 222 128 / var(--tw-border-opacity, 1));
  }

  .xl\:border-green-50 {
    --tw-border-opacity: 1;
    border-color: rgb(240 253 244 / var(--tw-border-opacity, 1));
  }

  .xl\:border-green-500 {
    --tw-border-opacity: 1;
    border-color: rgb(34 197 94 / var(--tw-border-opacity, 1));
  }

  .xl\:border-green-600 {
    --tw-border-opacity: 1;
    border-color: rgb(22 163 74 / var(--tw-border-opacity, 1));
  }

  .xl\:border-green-700 {
    --tw-border-opacity: 1;
    border-color: rgb(21 128 61 / var(--tw-border-opacity, 1));
  }

  .xl\:border-green-800 {
    --tw-border-opacity: 1;
    border-color: rgb(22 101 52 / var(--tw-border-opacity, 1));
  }

  .xl\:border-green-900 {
    --tw-border-opacity: 1;
    border-color: rgb(20 83 45 / var(--tw-border-opacity, 1));
  }

  .xl\:border-green-950 {
    --tw-border-opacity: 1;
    border-color: rgb(5 46 22 / var(--tw-border-opacity, 1));
  }

  .xl\:border-indigo-100 {
    --tw-border-opacity: 1;
    border-color: rgb(224 231 255 / var(--tw-border-opacity, 1));
  }

  .xl\:border-indigo-200 {
    --tw-border-opacity: 1;
    border-color: rgb(199 210 254 / var(--tw-border-opacity, 1));
  }

  .xl\:border-indigo-300 {
    --tw-border-opacity: 1;
    border-color: rgb(165 180 252 / var(--tw-border-opacity, 1));
  }

  .xl\:border-indigo-400 {
    --tw-border-opacity: 1;
    border-color: rgb(129 140 248 / var(--tw-border-opacity, 1));
  }

  .xl\:border-indigo-50 {
    --tw-border-opacity: 1;
    border-color: rgb(238 242 255 / var(--tw-border-opacity, 1));
  }

  .xl\:border-indigo-500 {
    --tw-border-opacity: 1;
    border-color: rgb(99 102 241 / var(--tw-border-opacity, 1));
  }

  .xl\:border-indigo-600 {
    --tw-border-opacity: 1;
    border-color: rgb(79 70 229 / var(--tw-border-opacity, 1));
  }

  .xl\:border-indigo-700 {
    --tw-border-opacity: 1;
    border-color: rgb(67 56 202 / var(--tw-border-opacity, 1));
  }

  .xl\:border-indigo-800 {
    --tw-border-opacity: 1;
    border-color: rgb(55 48 163 / var(--tw-border-opacity, 1));
  }

  .xl\:border-indigo-900 {
    --tw-border-opacity: 1;
    border-color: rgb(49 46 129 / var(--tw-border-opacity, 1));
  }

  .xl\:border-indigo-950 {
    --tw-border-opacity: 1;
    border-color: rgb(30 27 75 / var(--tw-border-opacity, 1));
  }

  .xl\:border-lime-100 {
    --tw-border-opacity: 1;
    border-color: rgb(236 252 203 / var(--tw-border-opacity, 1));
  }

  .xl\:border-lime-200 {
    --tw-border-opacity: 1;
    border-color: rgb(217 249 157 / var(--tw-border-opacity, 1));
  }

  .xl\:border-lime-300 {
    --tw-border-opacity: 1;
    border-color: rgb(190 242 100 / var(--tw-border-opacity, 1));
  }

  .xl\:border-lime-400 {
    --tw-border-opacity: 1;
    border-color: rgb(163 230 53 / var(--tw-border-opacity, 1));
  }

  .xl\:border-lime-50 {
    --tw-border-opacity: 1;
    border-color: rgb(247 254 231 / var(--tw-border-opacity, 1));
  }

  .xl\:border-lime-500 {
    --tw-border-opacity: 1;
    border-color: rgb(132 204 22 / var(--tw-border-opacity, 1));
  }

  .xl\:border-lime-600 {
    --tw-border-opacity: 1;
    border-color: rgb(101 163 13 / var(--tw-border-opacity, 1));
  }

  .xl\:border-lime-700 {
    --tw-border-opacity: 1;
    border-color: rgb(77 124 15 / var(--tw-border-opacity, 1));
  }

  .xl\:border-lime-800 {
    --tw-border-opacity: 1;
    border-color: rgb(63 98 18 / var(--tw-border-opacity, 1));
  }

  .xl\:border-lime-900 {
    --tw-border-opacity: 1;
    border-color: rgb(54 83 20 / var(--tw-border-opacity, 1));
  }

  .xl\:border-lime-950 {
    --tw-border-opacity: 1;
    border-color: rgb(26 46 5 / var(--tw-border-opacity, 1));
  }

  .xl\:border-neutral-100 {
    --tw-border-opacity: 1;
    border-color: rgb(245 245 245 / var(--tw-border-opacity, 1));
  }

  .xl\:border-neutral-200 {
    --tw-border-opacity: 1;
    border-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
  }

  .xl\:border-neutral-300 {
    --tw-border-opacity: 1;
    border-color: rgb(212 212 212 / var(--tw-border-opacity, 1));
  }

  .xl\:border-neutral-400 {
    --tw-border-opacity: 1;
    border-color: rgb(163 163 163 / var(--tw-border-opacity, 1));
  }

  .xl\:border-neutral-50 {
    --tw-border-opacity: 1;
    border-color: rgb(250 250 250 / var(--tw-border-opacity, 1));
  }

  .xl\:border-neutral-500 {
    --tw-border-opacity: 1;
    border-color: rgb(115 115 115 / var(--tw-border-opacity, 1));
  }

  .xl\:border-neutral-600 {
    --tw-border-opacity: 1;
    border-color: rgb(82 82 82 / var(--tw-border-opacity, 1));
  }

  .xl\:border-neutral-700 {
    --tw-border-opacity: 1;
    border-color: rgb(64 64 64 / var(--tw-border-opacity, 1));
  }

  .xl\:border-neutral-800 {
    --tw-border-opacity: 1;
    border-color: rgb(38 38 38 / var(--tw-border-opacity, 1));
  }

  .xl\:border-neutral-900 {
    --tw-border-opacity: 1;
    border-color: rgb(23 23 23 / var(--tw-border-opacity, 1));
  }

  .xl\:border-neutral-950 {
    --tw-border-opacity: 1;
    border-color: rgb(10 10 10 / var(--tw-border-opacity, 1));
  }

  .xl\:border-orange-100 {
    --tw-border-opacity: 1;
    border-color: rgb(255 237 213 / var(--tw-border-opacity, 1));
  }

  .xl\:border-orange-200 {
    --tw-border-opacity: 1;
    border-color: rgb(254 215 170 / var(--tw-border-opacity, 1));
  }

  .xl\:border-orange-300 {
    --tw-border-opacity: 1;
    border-color: rgb(253 186 116 / var(--tw-border-opacity, 1));
  }

  .xl\:border-orange-400 {
    --tw-border-opacity: 1;
    border-color: rgb(251 146 60 / var(--tw-border-opacity, 1));
  }

  .xl\:border-orange-50 {
    --tw-border-opacity: 1;
    border-color: rgb(255 247 237 / var(--tw-border-opacity, 1));
  }

  .xl\:border-orange-500 {
    --tw-border-opacity: 1;
    border-color: rgb(249 115 22 / var(--tw-border-opacity, 1));
  }

  .xl\:border-orange-600 {
    --tw-border-opacity: 1;
    border-color: rgb(234 88 12 / var(--tw-border-opacity, 1));
  }

  .xl\:border-orange-700 {
    --tw-border-opacity: 1;
    border-color: rgb(194 65 12 / var(--tw-border-opacity, 1));
  }

  .xl\:border-orange-800 {
    --tw-border-opacity: 1;
    border-color: rgb(154 52 18 / var(--tw-border-opacity, 1));
  }

  .xl\:border-orange-900 {
    --tw-border-opacity: 1;
    border-color: rgb(124 45 18 / var(--tw-border-opacity, 1));
  }

  .xl\:border-orange-950 {
    --tw-border-opacity: 1;
    border-color: rgb(67 20 7 / var(--tw-border-opacity, 1));
  }

  .xl\:border-pink-100 {
    --tw-border-opacity: 1;
    border-color: rgb(252 231 243 / var(--tw-border-opacity, 1));
  }

  .xl\:border-pink-200 {
    --tw-border-opacity: 1;
    border-color: rgb(251 207 232 / var(--tw-border-opacity, 1));
  }

  .xl\:border-pink-300 {
    --tw-border-opacity: 1;
    border-color: rgb(249 168 212 / var(--tw-border-opacity, 1));
  }

  .xl\:border-pink-400 {
    --tw-border-opacity: 1;
    border-color: rgb(244 114 182 / var(--tw-border-opacity, 1));
  }

  .xl\:border-pink-50 {
    --tw-border-opacity: 1;
    border-color: rgb(253 242 248 / var(--tw-border-opacity, 1));
  }

  .xl\:border-pink-500 {
    --tw-border-opacity: 1;
    border-color: rgb(236 72 153 / var(--tw-border-opacity, 1));
  }

  .xl\:border-pink-600 {
    --tw-border-opacity: 1;
    border-color: rgb(219 39 119 / var(--tw-border-opacity, 1));
  }

  .xl\:border-pink-700 {
    --tw-border-opacity: 1;
    border-color: rgb(190 24 93 / var(--tw-border-opacity, 1));
  }

  .xl\:border-pink-800 {
    --tw-border-opacity: 1;
    border-color: rgb(157 23 77 / var(--tw-border-opacity, 1));
  }

  .xl\:border-pink-900 {
    --tw-border-opacity: 1;
    border-color: rgb(131 24 67 / var(--tw-border-opacity, 1));
  }

  .xl\:border-pink-950 {
    --tw-border-opacity: 1;
    border-color: rgb(80 7 36 / var(--tw-border-opacity, 1));
  }

  .xl\:border-purple-100 {
    --tw-border-opacity: 1;
    border-color: rgb(243 232 255 / var(--tw-border-opacity, 1));
  }

  .xl\:border-purple-200 {
    --tw-border-opacity: 1;
    border-color: rgb(233 213 255 / var(--tw-border-opacity, 1));
  }

  .xl\:border-purple-300 {
    --tw-border-opacity: 1;
    border-color: rgb(216 180 254 / var(--tw-border-opacity, 1));
  }

  .xl\:border-purple-400 {
    --tw-border-opacity: 1;
    border-color: rgb(192 132 252 / var(--tw-border-opacity, 1));
  }

  .xl\:border-purple-50 {
    --tw-border-opacity: 1;
    border-color: rgb(250 245 255 / var(--tw-border-opacity, 1));
  }

  .xl\:border-purple-500 {
    --tw-border-opacity: 1;
    border-color: rgb(168 85 247 / var(--tw-border-opacity, 1));
  }

  .xl\:border-purple-600 {
    --tw-border-opacity: 1;
    border-color: rgb(147 51 234 / var(--tw-border-opacity, 1));
  }

  .xl\:border-purple-700 {
    --tw-border-opacity: 1;
    border-color: rgb(126 34 206 / var(--tw-border-opacity, 1));
  }

  .xl\:border-purple-800 {
    --tw-border-opacity: 1;
    border-color: rgb(107 33 168 / var(--tw-border-opacity, 1));
  }

  .xl\:border-purple-900 {
    --tw-border-opacity: 1;
    border-color: rgb(88 28 135 / var(--tw-border-opacity, 1));
  }

  .xl\:border-purple-950 {
    --tw-border-opacity: 1;
    border-color: rgb(59 7 100 / var(--tw-border-opacity, 1));
  }

  .xl\:border-red-100 {
    --tw-border-opacity: 1;
    border-color: rgb(254 226 226 / var(--tw-border-opacity, 1));
  }

  .xl\:border-red-200 {
    --tw-border-opacity: 1;
    border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
  }

  .xl\:border-red-300 {
    --tw-border-opacity: 1;
    border-color: rgb(252 165 165 / var(--tw-border-opacity, 1));
  }

  .xl\:border-red-400 {
    --tw-border-opacity: 1;
    border-color: rgb(248 113 113 / var(--tw-border-opacity, 1));
  }

  .xl\:border-red-50 {
    --tw-border-opacity: 1;
    border-color: rgb(254 242 242 / var(--tw-border-opacity, 1));
  }

  .xl\:border-red-500 {
    --tw-border-opacity: 1;
    border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
  }

  .xl\:border-red-600 {
    --tw-border-opacity: 1;
    border-color: rgb(220 38 38 / var(--tw-border-opacity, 1));
  }

  .xl\:border-red-700 {
    --tw-border-opacity: 1;
    border-color: rgb(185 28 28 / var(--tw-border-opacity, 1));
  }

  .xl\:border-red-800 {
    --tw-border-opacity: 1;
    border-color: rgb(153 27 27 / var(--tw-border-opacity, 1));
  }

  .xl\:border-red-900 {
    --tw-border-opacity: 1;
    border-color: rgb(127 29 29 / var(--tw-border-opacity, 1));
  }

  .xl\:border-red-950 {
    --tw-border-opacity: 1;
    border-color: rgb(69 10 10 / var(--tw-border-opacity, 1));
  }

  .xl\:border-rose-100 {
    --tw-border-opacity: 1;
    border-color: rgb(255 228 230 / var(--tw-border-opacity, 1));
  }

  .xl\:border-rose-200 {
    --tw-border-opacity: 1;
    border-color: rgb(254 205 211 / var(--tw-border-opacity, 1));
  }

  .xl\:border-rose-300 {
    --tw-border-opacity: 1;
    border-color: rgb(253 164 175 / var(--tw-border-opacity, 1));
  }

  .xl\:border-rose-400 {
    --tw-border-opacity: 1;
    border-color: rgb(251 113 133 / var(--tw-border-opacity, 1));
  }

  .xl\:border-rose-50 {
    --tw-border-opacity: 1;
    border-color: rgb(255 241 242 / var(--tw-border-opacity, 1));
  }

  .xl\:border-rose-500 {
    --tw-border-opacity: 1;
    border-color: rgb(244 63 94 / var(--tw-border-opacity, 1));
  }

  .xl\:border-rose-600 {
    --tw-border-opacity: 1;
    border-color: rgb(225 29 72 / var(--tw-border-opacity, 1));
  }

  .xl\:border-rose-700 {
    --tw-border-opacity: 1;
    border-color: rgb(190 18 60 / var(--tw-border-opacity, 1));
  }

  .xl\:border-rose-800 {
    --tw-border-opacity: 1;
    border-color: rgb(159 18 57 / var(--tw-border-opacity, 1));
  }

  .xl\:border-rose-900 {
    --tw-border-opacity: 1;
    border-color: rgb(136 19 55 / var(--tw-border-opacity, 1));
  }

  .xl\:border-rose-950 {
    --tw-border-opacity: 1;
    border-color: rgb(76 5 25 / var(--tw-border-opacity, 1));
  }

  .xl\:border-sky-100 {
    --tw-border-opacity: 1;
    border-color: rgb(224 242 254 / var(--tw-border-opacity, 1));
  }

  .xl\:border-sky-200 {
    --tw-border-opacity: 1;
    border-color: rgb(186 230 253 / var(--tw-border-opacity, 1));
  }

  .xl\:border-sky-300 {
    --tw-border-opacity: 1;
    border-color: rgb(125 211 252 / var(--tw-border-opacity, 1));
  }

  .xl\:border-sky-400 {
    --tw-border-opacity: 1;
    border-color: rgb(56 189 248 / var(--tw-border-opacity, 1));
  }

  .xl\:border-sky-50 {
    --tw-border-opacity: 1;
    border-color: rgb(240 249 255 / var(--tw-border-opacity, 1));
  }

  .xl\:border-sky-500 {
    --tw-border-opacity: 1;
    border-color: rgb(14 165 233 / var(--tw-border-opacity, 1));
  }

  .xl\:border-sky-600 {
    --tw-border-opacity: 1;
    border-color: rgb(2 132 199 / var(--tw-border-opacity, 1));
  }

  .xl\:border-sky-700 {
    --tw-border-opacity: 1;
    border-color: rgb(3 105 161 / var(--tw-border-opacity, 1));
  }

  .xl\:border-sky-800 {
    --tw-border-opacity: 1;
    border-color: rgb(7 89 133 / var(--tw-border-opacity, 1));
  }

  .xl\:border-sky-900 {
    --tw-border-opacity: 1;
    border-color: rgb(12 74 110 / var(--tw-border-opacity, 1));
  }

  .xl\:border-sky-950 {
    --tw-border-opacity: 1;
    border-color: rgb(8 47 73 / var(--tw-border-opacity, 1));
  }

  .xl\:border-slate-100 {
    --tw-border-opacity: 1;
    border-color: rgb(241 245 249 / var(--tw-border-opacity, 1));
  }

  .xl\:border-slate-200 {
    --tw-border-opacity: 1;
    border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
  }

  .xl\:border-slate-300 {
    --tw-border-opacity: 1;
    border-color: rgb(203 213 225 / var(--tw-border-opacity, 1));
  }

  .xl\:border-slate-400 {
    --tw-border-opacity: 1;
    border-color: rgb(148 163 184 / var(--tw-border-opacity, 1));
  }

  .xl\:border-slate-50 {
    --tw-border-opacity: 1;
    border-color: rgb(248 250 252 / var(--tw-border-opacity, 1));
  }

  .xl\:border-slate-500 {
    --tw-border-opacity: 1;
    border-color: rgb(100 116 139 / var(--tw-border-opacity, 1));
  }

  .xl\:border-slate-600 {
    --tw-border-opacity: 1;
    border-color: rgb(71 85 105 / var(--tw-border-opacity, 1));
  }

  .xl\:border-slate-700 {
    --tw-border-opacity: 1;
    border-color: rgb(51 65 85 / var(--tw-border-opacity, 1));
  }

  .xl\:border-slate-800 {
    --tw-border-opacity: 1;
    border-color: rgb(30 41 59 / var(--tw-border-opacity, 1));
  }

  .xl\:border-slate-900 {
    --tw-border-opacity: 1;
    border-color: rgb(15 23 42 / var(--tw-border-opacity, 1));
  }

  .xl\:border-slate-950 {
    --tw-border-opacity: 1;
    border-color: rgb(2 6 23 / var(--tw-border-opacity, 1));
  }

  .xl\:border-stone-100 {
    --tw-border-opacity: 1;
    border-color: rgb(245 245 244 / var(--tw-border-opacity, 1));
  }

  .xl\:border-stone-200 {
    --tw-border-opacity: 1;
    border-color: rgb(231 229 228 / var(--tw-border-opacity, 1));
  }

  .xl\:border-stone-300 {
    --tw-border-opacity: 1;
    border-color: rgb(214 211 209 / var(--tw-border-opacity, 1));
  }

  .xl\:border-stone-400 {
    --tw-border-opacity: 1;
    border-color: rgb(168 162 158 / var(--tw-border-opacity, 1));
  }

  .xl\:border-stone-50 {
    --tw-border-opacity: 1;
    border-color: rgb(250 250 249 / var(--tw-border-opacity, 1));
  }

  .xl\:border-stone-500 {
    --tw-border-opacity: 1;
    border-color: rgb(120 113 108 / var(--tw-border-opacity, 1));
  }

  .xl\:border-stone-600 {
    --tw-border-opacity: 1;
    border-color: rgb(87 83 78 / var(--tw-border-opacity, 1));
  }

  .xl\:border-stone-700 {
    --tw-border-opacity: 1;
    border-color: rgb(68 64 60 / var(--tw-border-opacity, 1));
  }

  .xl\:border-stone-800 {
    --tw-border-opacity: 1;
    border-color: rgb(41 37 36 / var(--tw-border-opacity, 1));
  }

  .xl\:border-stone-900 {
    --tw-border-opacity: 1;
    border-color: rgb(28 25 23 / var(--tw-border-opacity, 1));
  }

  .xl\:border-stone-950 {
    --tw-border-opacity: 1;
    border-color: rgb(12 10 9 / var(--tw-border-opacity, 1));
  }

  .xl\:border-teal-100 {
    --tw-border-opacity: 1;
    border-color: rgb(204 251 241 / var(--tw-border-opacity, 1));
  }

  .xl\:border-teal-200 {
    --tw-border-opacity: 1;
    border-color: rgb(153 246 228 / var(--tw-border-opacity, 1));
  }

  .xl\:border-teal-300 {
    --tw-border-opacity: 1;
    border-color: rgb(94 234 212 / var(--tw-border-opacity, 1));
  }

  .xl\:border-teal-400 {
    --tw-border-opacity: 1;
    border-color: rgb(45 212 191 / var(--tw-border-opacity, 1));
  }

  .xl\:border-teal-50 {
    --tw-border-opacity: 1;
    border-color: rgb(240 253 250 / var(--tw-border-opacity, 1));
  }

  .xl\:border-teal-500 {
    --tw-border-opacity: 1;
    border-color: rgb(20 184 166 / var(--tw-border-opacity, 1));
  }

  .xl\:border-teal-600 {
    --tw-border-opacity: 1;
    border-color: rgb(13 148 136 / var(--tw-border-opacity, 1));
  }

  .xl\:border-teal-700 {
    --tw-border-opacity: 1;
    border-color: rgb(15 118 110 / var(--tw-border-opacity, 1));
  }

  .xl\:border-teal-800 {
    --tw-border-opacity: 1;
    border-color: rgb(17 94 89 / var(--tw-border-opacity, 1));
  }

  .xl\:border-teal-900 {
    --tw-border-opacity: 1;
    border-color: rgb(19 78 74 / var(--tw-border-opacity, 1));
  }

  .xl\:border-teal-950 {
    --tw-border-opacity: 1;
    border-color: rgb(4 47 46 / var(--tw-border-opacity, 1));
  }

  .xl\:border-violet-100 {
    --tw-border-opacity: 1;
    border-color: rgb(237 233 254 / var(--tw-border-opacity, 1));
  }

  .xl\:border-violet-200 {
    --tw-border-opacity: 1;
    border-color: rgb(221 214 254 / var(--tw-border-opacity, 1));
  }

  .xl\:border-violet-300 {
    --tw-border-opacity: 1;
    border-color: rgb(196 181 253 / var(--tw-border-opacity, 1));
  }

  .xl\:border-violet-400 {
    --tw-border-opacity: 1;
    border-color: rgb(167 139 250 / var(--tw-border-opacity, 1));
  }

  .xl\:border-violet-50 {
    --tw-border-opacity: 1;
    border-color: rgb(245 243 255 / var(--tw-border-opacity, 1));
  }

  .xl\:border-violet-500 {
    --tw-border-opacity: 1;
    border-color: rgb(139 92 246 / var(--tw-border-opacity, 1));
  }

  .xl\:border-violet-600 {
    --tw-border-opacity: 1;
    border-color: rgb(124 58 237 / var(--tw-border-opacity, 1));
  }

  .xl\:border-violet-700 {
    --tw-border-opacity: 1;
    border-color: rgb(109 40 217 / var(--tw-border-opacity, 1));
  }

  .xl\:border-violet-800 {
    --tw-border-opacity: 1;
    border-color: rgb(91 33 182 / var(--tw-border-opacity, 1));
  }

  .xl\:border-violet-900 {
    --tw-border-opacity: 1;
    border-color: rgb(76 29 149 / var(--tw-border-opacity, 1));
  }

  .xl\:border-violet-950 {
    --tw-border-opacity: 1;
    border-color: rgb(46 16 101 / var(--tw-border-opacity, 1));
  }

  .xl\:border-yellow-100 {
    --tw-border-opacity: 1;
    border-color: rgb(254 249 195 / var(--tw-border-opacity, 1));
  }

  .xl\:border-yellow-200 {
    --tw-border-opacity: 1;
    border-color: rgb(254 240 138 / var(--tw-border-opacity, 1));
  }

  .xl\:border-yellow-300 {
    --tw-border-opacity: 1;
    border-color: rgb(253 224 71 / var(--tw-border-opacity, 1));
  }

  .xl\:border-yellow-400 {
    --tw-border-opacity: 1;
    border-color: rgb(250 204 21 / var(--tw-border-opacity, 1));
  }

  .xl\:border-yellow-50 {
    --tw-border-opacity: 1;
    border-color: rgb(254 252 232 / var(--tw-border-opacity, 1));
  }

  .xl\:border-yellow-500 {
    --tw-border-opacity: 1;
    border-color: rgb(234 179 8 / var(--tw-border-opacity, 1));
  }

  .xl\:border-yellow-600 {
    --tw-border-opacity: 1;
    border-color: rgb(202 138 4 / var(--tw-border-opacity, 1));
  }

  .xl\:border-yellow-700 {
    --tw-border-opacity: 1;
    border-color: rgb(161 98 7 / var(--tw-border-opacity, 1));
  }

  .xl\:border-yellow-800 {
    --tw-border-opacity: 1;
    border-color: rgb(133 77 14 / var(--tw-border-opacity, 1));
  }

  .xl\:border-yellow-900 {
    --tw-border-opacity: 1;
    border-color: rgb(113 63 18 / var(--tw-border-opacity, 1));
  }

  .xl\:border-yellow-950 {
    --tw-border-opacity: 1;
    border-color: rgb(66 32 6 / var(--tw-border-opacity, 1));
  }

  .xl\:border-zinc-100 {
    --tw-border-opacity: 1;
    border-color: rgb(244 244 245 / var(--tw-border-opacity, 1));
  }

  .xl\:border-zinc-200 {
    --tw-border-opacity: 1;
    border-color: rgb(228 228 231 / var(--tw-border-opacity, 1));
  }

  .xl\:border-zinc-300 {
    --tw-border-opacity: 1;
    border-color: rgb(212 212 216 / var(--tw-border-opacity, 1));
  }

  .xl\:border-zinc-400 {
    --tw-border-opacity: 1;
    border-color: rgb(161 161 170 / var(--tw-border-opacity, 1));
  }

  .xl\:border-zinc-50 {
    --tw-border-opacity: 1;
    border-color: rgb(250 250 250 / var(--tw-border-opacity, 1));
  }

  .xl\:border-zinc-500 {
    --tw-border-opacity: 1;
    border-color: rgb(113 113 122 / var(--tw-border-opacity, 1));
  }

  .xl\:border-zinc-600 {
    --tw-border-opacity: 1;
    border-color: rgb(82 82 91 / var(--tw-border-opacity, 1));
  }

  .xl\:border-zinc-700 {
    --tw-border-opacity: 1;
    border-color: rgb(63 63 70 / var(--tw-border-opacity, 1));
  }

  .xl\:border-zinc-800 {
    --tw-border-opacity: 1;
    border-color: rgb(39 39 42 / var(--tw-border-opacity, 1));
  }

  .xl\:border-zinc-900 {
    --tw-border-opacity: 1;
    border-color: rgb(24 24 27 / var(--tw-border-opacity, 1));
  }

  .xl\:border-zinc-950 {
    --tw-border-opacity: 1;
    border-color: rgb(9 9 11 / var(--tw-border-opacity, 1));
  }

  .xl\:bg-amber-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 243 199 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-amber-100\/10 {
    background-color: rgb(254 243 199 / 0.1);
  }

  .xl\:bg-amber-100\/20 {
    background-color: rgb(254 243 199 / 0.2);
  }

  .xl\:bg-amber-100\/30 {
    background-color: rgb(254 243 199 / 0.3);
  }

  .xl\:bg-amber-100\/40 {
    background-color: rgb(254 243 199 / 0.4);
  }

  .xl\:bg-amber-100\/5 {
    background-color: rgb(254 243 199 / 0.05);
  }

  .xl\:bg-amber-100\/50 {
    background-color: rgb(254 243 199 / 0.5);
  }

  .xl\:bg-amber-100\/60 {
    background-color: rgb(254 243 199 / 0.6);
  }

  .xl\:bg-amber-100\/70 {
    background-color: rgb(254 243 199 / 0.7);
  }

  .xl\:bg-amber-100\/80 {
    background-color: rgb(254 243 199 / 0.8);
  }

  .xl\:bg-amber-100\/90 {
    background-color: rgb(254 243 199 / 0.9);
  }

  .xl\:bg-amber-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(253 230 138 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-amber-200\/10 {
    background-color: rgb(253 230 138 / 0.1);
  }

  .xl\:bg-amber-200\/20 {
    background-color: rgb(253 230 138 / 0.2);
  }

  .xl\:bg-amber-200\/30 {
    background-color: rgb(253 230 138 / 0.3);
  }

  .xl\:bg-amber-200\/40 {
    background-color: rgb(253 230 138 / 0.4);
  }

  .xl\:bg-amber-200\/5 {
    background-color: rgb(253 230 138 / 0.05);
  }

  .xl\:bg-amber-200\/50 {
    background-color: rgb(253 230 138 / 0.5);
  }

  .xl\:bg-amber-200\/60 {
    background-color: rgb(253 230 138 / 0.6);
  }

  .xl\:bg-amber-200\/70 {
    background-color: rgb(253 230 138 / 0.7);
  }

  .xl\:bg-amber-200\/80 {
    background-color: rgb(253 230 138 / 0.8);
  }

  .xl\:bg-amber-200\/90 {
    background-color: rgb(253 230 138 / 0.9);
  }

  .xl\:bg-amber-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(252 211 77 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-amber-300\/10 {
    background-color: rgb(252 211 77 / 0.1);
  }

  .xl\:bg-amber-300\/20 {
    background-color: rgb(252 211 77 / 0.2);
  }

  .xl\:bg-amber-300\/30 {
    background-color: rgb(252 211 77 / 0.3);
  }

  .xl\:bg-amber-300\/40 {
    background-color: rgb(252 211 77 / 0.4);
  }

  .xl\:bg-amber-300\/5 {
    background-color: rgb(252 211 77 / 0.05);
  }

  .xl\:bg-amber-300\/50 {
    background-color: rgb(252 211 77 / 0.5);
  }

  .xl\:bg-amber-300\/60 {
    background-color: rgb(252 211 77 / 0.6);
  }

  .xl\:bg-amber-300\/70 {
    background-color: rgb(252 211 77 / 0.7);
  }

  .xl\:bg-amber-300\/80 {
    background-color: rgb(252 211 77 / 0.8);
  }

  .xl\:bg-amber-300\/90 {
    background-color: rgb(252 211 77 / 0.9);
  }

  .xl\:bg-amber-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(251 191 36 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-amber-400\/10 {
    background-color: rgb(251 191 36 / 0.1);
  }

  .xl\:bg-amber-400\/20 {
    background-color: rgb(251 191 36 / 0.2);
  }

  .xl\:bg-amber-400\/30 {
    background-color: rgb(251 191 36 / 0.3);
  }

  .xl\:bg-amber-400\/40 {
    background-color: rgb(251 191 36 / 0.4);
  }

  .xl\:bg-amber-400\/5 {
    background-color: rgb(251 191 36 / 0.05);
  }

  .xl\:bg-amber-400\/50 {
    background-color: rgb(251 191 36 / 0.5);
  }

  .xl\:bg-amber-400\/60 {
    background-color: rgb(251 191 36 / 0.6);
  }

  .xl\:bg-amber-400\/70 {
    background-color: rgb(251 191 36 / 0.7);
  }

  .xl\:bg-amber-400\/80 {
    background-color: rgb(251 191 36 / 0.8);
  }

  .xl\:bg-amber-400\/90 {
    background-color: rgb(251 191 36 / 0.9);
  }

  .xl\:bg-amber-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 251 235 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-amber-50\/10 {
    background-color: rgb(255 251 235 / 0.1);
  }

  .xl\:bg-amber-50\/20 {
    background-color: rgb(255 251 235 / 0.2);
  }

  .xl\:bg-amber-50\/30 {
    background-color: rgb(255 251 235 / 0.3);
  }

  .xl\:bg-amber-50\/40 {
    background-color: rgb(255 251 235 / 0.4);
  }

  .xl\:bg-amber-50\/5 {
    background-color: rgb(255 251 235 / 0.05);
  }

  .xl\:bg-amber-50\/50 {
    background-color: rgb(255 251 235 / 0.5);
  }

  .xl\:bg-amber-50\/60 {
    background-color: rgb(255 251 235 / 0.6);
  }

  .xl\:bg-amber-50\/70 {
    background-color: rgb(255 251 235 / 0.7);
  }

  .xl\:bg-amber-50\/80 {
    background-color: rgb(255 251 235 / 0.8);
  }

  .xl\:bg-amber-50\/90 {
    background-color: rgb(255 251 235 / 0.9);
  }

  .xl\:bg-amber-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(245 158 11 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-amber-500\/10 {
    background-color: rgb(245 158 11 / 0.1);
  }

  .xl\:bg-amber-500\/20 {
    background-color: rgb(245 158 11 / 0.2);
  }

  .xl\:bg-amber-500\/30 {
    background-color: rgb(245 158 11 / 0.3);
  }

  .xl\:bg-amber-500\/40 {
    background-color: rgb(245 158 11 / 0.4);
  }

  .xl\:bg-amber-500\/5 {
    background-color: rgb(245 158 11 / 0.05);
  }

  .xl\:bg-amber-500\/50 {
    background-color: rgb(245 158 11 / 0.5);
  }

  .xl\:bg-amber-500\/60 {
    background-color: rgb(245 158 11 / 0.6);
  }

  .xl\:bg-amber-500\/70 {
    background-color: rgb(245 158 11 / 0.7);
  }

  .xl\:bg-amber-500\/80 {
    background-color: rgb(245 158 11 / 0.8);
  }

  .xl\:bg-amber-500\/90 {
    background-color: rgb(245 158 11 / 0.9);
  }

  .xl\:bg-amber-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(217 119 6 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-amber-600\/10 {
    background-color: rgb(217 119 6 / 0.1);
  }

  .xl\:bg-amber-600\/20 {
    background-color: rgb(217 119 6 / 0.2);
  }

  .xl\:bg-amber-600\/30 {
    background-color: rgb(217 119 6 / 0.3);
  }

  .xl\:bg-amber-600\/40 {
    background-color: rgb(217 119 6 / 0.4);
  }

  .xl\:bg-amber-600\/5 {
    background-color: rgb(217 119 6 / 0.05);
  }

  .xl\:bg-amber-600\/50 {
    background-color: rgb(217 119 6 / 0.5);
  }

  .xl\:bg-amber-600\/60 {
    background-color: rgb(217 119 6 / 0.6);
  }

  .xl\:bg-amber-600\/70 {
    background-color: rgb(217 119 6 / 0.7);
  }

  .xl\:bg-amber-600\/80 {
    background-color: rgb(217 119 6 / 0.8);
  }

  .xl\:bg-amber-600\/90 {
    background-color: rgb(217 119 6 / 0.9);
  }

  .xl\:bg-amber-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(180 83 9 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-amber-700\/10 {
    background-color: rgb(180 83 9 / 0.1);
  }

  .xl\:bg-amber-700\/20 {
    background-color: rgb(180 83 9 / 0.2);
  }

  .xl\:bg-amber-700\/30 {
    background-color: rgb(180 83 9 / 0.3);
  }

  .xl\:bg-amber-700\/40 {
    background-color: rgb(180 83 9 / 0.4);
  }

  .xl\:bg-amber-700\/5 {
    background-color: rgb(180 83 9 / 0.05);
  }

  .xl\:bg-amber-700\/50 {
    background-color: rgb(180 83 9 / 0.5);
  }

  .xl\:bg-amber-700\/60 {
    background-color: rgb(180 83 9 / 0.6);
  }

  .xl\:bg-amber-700\/70 {
    background-color: rgb(180 83 9 / 0.7);
  }

  .xl\:bg-amber-700\/80 {
    background-color: rgb(180 83 9 / 0.8);
  }

  .xl\:bg-amber-700\/90 {
    background-color: rgb(180 83 9 / 0.9);
  }

  .xl\:bg-amber-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(146 64 14 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-amber-800\/10 {
    background-color: rgb(146 64 14 / 0.1);
  }

  .xl\:bg-amber-800\/20 {
    background-color: rgb(146 64 14 / 0.2);
  }

  .xl\:bg-amber-800\/30 {
    background-color: rgb(146 64 14 / 0.3);
  }

  .xl\:bg-amber-800\/40 {
    background-color: rgb(146 64 14 / 0.4);
  }

  .xl\:bg-amber-800\/5 {
    background-color: rgb(146 64 14 / 0.05);
  }

  .xl\:bg-amber-800\/50 {
    background-color: rgb(146 64 14 / 0.5);
  }

  .xl\:bg-amber-800\/60 {
    background-color: rgb(146 64 14 / 0.6);
  }

  .xl\:bg-amber-800\/70 {
    background-color: rgb(146 64 14 / 0.7);
  }

  .xl\:bg-amber-800\/80 {
    background-color: rgb(146 64 14 / 0.8);
  }

  .xl\:bg-amber-800\/90 {
    background-color: rgb(146 64 14 / 0.9);
  }

  .xl\:bg-amber-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(120 53 15 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-amber-900\/10 {
    background-color: rgb(120 53 15 / 0.1);
  }

  .xl\:bg-amber-900\/20 {
    background-color: rgb(120 53 15 / 0.2);
  }

  .xl\:bg-amber-900\/30 {
    background-color: rgb(120 53 15 / 0.3);
  }

  .xl\:bg-amber-900\/40 {
    background-color: rgb(120 53 15 / 0.4);
  }

  .xl\:bg-amber-900\/5 {
    background-color: rgb(120 53 15 / 0.05);
  }

  .xl\:bg-amber-900\/50 {
    background-color: rgb(120 53 15 / 0.5);
  }

  .xl\:bg-amber-900\/60 {
    background-color: rgb(120 53 15 / 0.6);
  }

  .xl\:bg-amber-900\/70 {
    background-color: rgb(120 53 15 / 0.7);
  }

  .xl\:bg-amber-900\/80 {
    background-color: rgb(120 53 15 / 0.8);
  }

  .xl\:bg-amber-900\/90 {
    background-color: rgb(120 53 15 / 0.9);
  }

  .xl\:bg-amber-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(69 26 3 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-amber-950\/10 {
    background-color: rgb(69 26 3 / 0.1);
  }

  .xl\:bg-amber-950\/20 {
    background-color: rgb(69 26 3 / 0.2);
  }

  .xl\:bg-amber-950\/30 {
    background-color: rgb(69 26 3 / 0.3);
  }

  .xl\:bg-amber-950\/40 {
    background-color: rgb(69 26 3 / 0.4);
  }

  .xl\:bg-amber-950\/5 {
    background-color: rgb(69 26 3 / 0.05);
  }

  .xl\:bg-amber-950\/50 {
    background-color: rgb(69 26 3 / 0.5);
  }

  .xl\:bg-amber-950\/60 {
    background-color: rgb(69 26 3 / 0.6);
  }

  .xl\:bg-amber-950\/70 {
    background-color: rgb(69 26 3 / 0.7);
  }

  .xl\:bg-amber-950\/80 {
    background-color: rgb(69 26 3 / 0.8);
  }

  .xl\:bg-amber-950\/90 {
    background-color: rgb(69 26 3 / 0.9);
  }

  .xl\:bg-blue-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-blue-100\/10 {
    background-color: rgb(219 234 254 / 0.1);
  }

  .xl\:bg-blue-100\/20 {
    background-color: rgb(219 234 254 / 0.2);
  }

  .xl\:bg-blue-100\/30 {
    background-color: rgb(219 234 254 / 0.3);
  }

  .xl\:bg-blue-100\/40 {
    background-color: rgb(219 234 254 / 0.4);
  }

  .xl\:bg-blue-100\/5 {
    background-color: rgb(219 234 254 / 0.05);
  }

  .xl\:bg-blue-100\/50 {
    background-color: rgb(219 234 254 / 0.5);
  }

  .xl\:bg-blue-100\/60 {
    background-color: rgb(219 234 254 / 0.6);
  }

  .xl\:bg-blue-100\/70 {
    background-color: rgb(219 234 254 / 0.7);
  }

  .xl\:bg-blue-100\/80 {
    background-color: rgb(219 234 254 / 0.8);
  }

  .xl\:bg-blue-100\/90 {
    background-color: rgb(219 234 254 / 0.9);
  }

  .xl\:bg-blue-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(191 219 254 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-blue-200\/10 {
    background-color: rgb(191 219 254 / 0.1);
  }

  .xl\:bg-blue-200\/20 {
    background-color: rgb(191 219 254 / 0.2);
  }

  .xl\:bg-blue-200\/30 {
    background-color: rgb(191 219 254 / 0.3);
  }

  .xl\:bg-blue-200\/40 {
    background-color: rgb(191 219 254 / 0.4);
  }

  .xl\:bg-blue-200\/5 {
    background-color: rgb(191 219 254 / 0.05);
  }

  .xl\:bg-blue-200\/50 {
    background-color: rgb(191 219 254 / 0.5);
  }

  .xl\:bg-blue-200\/60 {
    background-color: rgb(191 219 254 / 0.6);
  }

  .xl\:bg-blue-200\/70 {
    background-color: rgb(191 219 254 / 0.7);
  }

  .xl\:bg-blue-200\/80 {
    background-color: rgb(191 219 254 / 0.8);
  }

  .xl\:bg-blue-200\/90 {
    background-color: rgb(191 219 254 / 0.9);
  }

  .xl\:bg-blue-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(147 197 253 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-blue-300\/10 {
    background-color: rgb(147 197 253 / 0.1);
  }

  .xl\:bg-blue-300\/20 {
    background-color: rgb(147 197 253 / 0.2);
  }

  .xl\:bg-blue-300\/30 {
    background-color: rgb(147 197 253 / 0.3);
  }

  .xl\:bg-blue-300\/40 {
    background-color: rgb(147 197 253 / 0.4);
  }

  .xl\:bg-blue-300\/5 {
    background-color: rgb(147 197 253 / 0.05);
  }

  .xl\:bg-blue-300\/50 {
    background-color: rgb(147 197 253 / 0.5);
  }

  .xl\:bg-blue-300\/60 {
    background-color: rgb(147 197 253 / 0.6);
  }

  .xl\:bg-blue-300\/70 {
    background-color: rgb(147 197 253 / 0.7);
  }

  .xl\:bg-blue-300\/80 {
    background-color: rgb(147 197 253 / 0.8);
  }

  .xl\:bg-blue-300\/90 {
    background-color: rgb(147 197 253 / 0.9);
  }

  .xl\:bg-blue-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(96 165 250 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-blue-400\/10 {
    background-color: rgb(96 165 250 / 0.1);
  }

  .xl\:bg-blue-400\/20 {
    background-color: rgb(96 165 250 / 0.2);
  }

  .xl\:bg-blue-400\/30 {
    background-color: rgb(96 165 250 / 0.3);
  }

  .xl\:bg-blue-400\/40 {
    background-color: rgb(96 165 250 / 0.4);
  }

  .xl\:bg-blue-400\/5 {
    background-color: rgb(96 165 250 / 0.05);
  }

  .xl\:bg-blue-400\/50 {
    background-color: rgb(96 165 250 / 0.5);
  }

  .xl\:bg-blue-400\/60 {
    background-color: rgb(96 165 250 / 0.6);
  }

  .xl\:bg-blue-400\/70 {
    background-color: rgb(96 165 250 / 0.7);
  }

  .xl\:bg-blue-400\/80 {
    background-color: rgb(96 165 250 / 0.8);
  }

  .xl\:bg-blue-400\/90 {
    background-color: rgb(96 165 250 / 0.9);
  }

  .xl\:bg-blue-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-blue-50\/10 {
    background-color: rgb(239 246 255 / 0.1);
  }

  .xl\:bg-blue-50\/20 {
    background-color: rgb(239 246 255 / 0.2);
  }

  .xl\:bg-blue-50\/30 {
    background-color: rgb(239 246 255 / 0.3);
  }

  .xl\:bg-blue-50\/40 {
    background-color: rgb(239 246 255 / 0.4);
  }

  .xl\:bg-blue-50\/5 {
    background-color: rgb(239 246 255 / 0.05);
  }

  .xl\:bg-blue-50\/50 {
    background-color: rgb(239 246 255 / 0.5);
  }

  .xl\:bg-blue-50\/60 {
    background-color: rgb(239 246 255 / 0.6);
  }

  .xl\:bg-blue-50\/70 {
    background-color: rgb(239 246 255 / 0.7);
  }

  .xl\:bg-blue-50\/80 {
    background-color: rgb(239 246 255 / 0.8);
  }

  .xl\:bg-blue-50\/90 {
    background-color: rgb(239 246 255 / 0.9);
  }

  .xl\:bg-blue-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-blue-500\/10 {
    background-color: rgb(59 130 246 / 0.1);
  }

  .xl\:bg-blue-500\/20 {
    background-color: rgb(59 130 246 / 0.2);
  }

  .xl\:bg-blue-500\/30 {
    background-color: rgb(59 130 246 / 0.3);
  }

  .xl\:bg-blue-500\/40 {
    background-color: rgb(59 130 246 / 0.4);
  }

  .xl\:bg-blue-500\/5 {
    background-color: rgb(59 130 246 / 0.05);
  }

  .xl\:bg-blue-500\/50 {
    background-color: rgb(59 130 246 / 0.5);
  }

  .xl\:bg-blue-500\/60 {
    background-color: rgb(59 130 246 / 0.6);
  }

  .xl\:bg-blue-500\/70 {
    background-color: rgb(59 130 246 / 0.7);
  }

  .xl\:bg-blue-500\/80 {
    background-color: rgb(59 130 246 / 0.8);
  }

  .xl\:bg-blue-500\/90 {
    background-color: rgb(59 130 246 / 0.9);
  }

  .xl\:bg-blue-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-blue-600\/10 {
    background-color: rgb(37 99 235 / 0.1);
  }

  .xl\:bg-blue-600\/20 {
    background-color: rgb(37 99 235 / 0.2);
  }

  .xl\:bg-blue-600\/30 {
    background-color: rgb(37 99 235 / 0.3);
  }

  .xl\:bg-blue-600\/40 {
    background-color: rgb(37 99 235 / 0.4);
  }

  .xl\:bg-blue-600\/5 {
    background-color: rgb(37 99 235 / 0.05);
  }

  .xl\:bg-blue-600\/50 {
    background-color: rgb(37 99 235 / 0.5);
  }

  .xl\:bg-blue-600\/60 {
    background-color: rgb(37 99 235 / 0.6);
  }

  .xl\:bg-blue-600\/70 {
    background-color: rgb(37 99 235 / 0.7);
  }

  .xl\:bg-blue-600\/80 {
    background-color: rgb(37 99 235 / 0.8);
  }

  .xl\:bg-blue-600\/90 {
    background-color: rgb(37 99 235 / 0.9);
  }

  .xl\:bg-blue-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-blue-700\/10 {
    background-color: rgb(29 78 216 / 0.1);
  }

  .xl\:bg-blue-700\/20 {
    background-color: rgb(29 78 216 / 0.2);
  }

  .xl\:bg-blue-700\/30 {
    background-color: rgb(29 78 216 / 0.3);
  }

  .xl\:bg-blue-700\/40 {
    background-color: rgb(29 78 216 / 0.4);
  }

  .xl\:bg-blue-700\/5 {
    background-color: rgb(29 78 216 / 0.05);
  }

  .xl\:bg-blue-700\/50 {
    background-color: rgb(29 78 216 / 0.5);
  }

  .xl\:bg-blue-700\/60 {
    background-color: rgb(29 78 216 / 0.6);
  }

  .xl\:bg-blue-700\/70 {
    background-color: rgb(29 78 216 / 0.7);
  }

  .xl\:bg-blue-700\/80 {
    background-color: rgb(29 78 216 / 0.8);
  }

  .xl\:bg-blue-700\/90 {
    background-color: rgb(29 78 216 / 0.9);
  }

  .xl\:bg-blue-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(30 64 175 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-blue-800\/10 {
    background-color: rgb(30 64 175 / 0.1);
  }

  .xl\:bg-blue-800\/20 {
    background-color: rgb(30 64 175 / 0.2);
  }

  .xl\:bg-blue-800\/30 {
    background-color: rgb(30 64 175 / 0.3);
  }

  .xl\:bg-blue-800\/40 {
    background-color: rgb(30 64 175 / 0.4);
  }

  .xl\:bg-blue-800\/5 {
    background-color: rgb(30 64 175 / 0.05);
  }

  .xl\:bg-blue-800\/50 {
    background-color: rgb(30 64 175 / 0.5);
  }

  .xl\:bg-blue-800\/60 {
    background-color: rgb(30 64 175 / 0.6);
  }

  .xl\:bg-blue-800\/70 {
    background-color: rgb(30 64 175 / 0.7);
  }

  .xl\:bg-blue-800\/80 {
    background-color: rgb(30 64 175 / 0.8);
  }

  .xl\:bg-blue-800\/90 {
    background-color: rgb(30 64 175 / 0.9);
  }

  .xl\:bg-blue-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(30 58 138 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-blue-900\/10 {
    background-color: rgb(30 58 138 / 0.1);
  }

  .xl\:bg-blue-900\/20 {
    background-color: rgb(30 58 138 / 0.2);
  }

  .xl\:bg-blue-900\/30 {
    background-color: rgb(30 58 138 / 0.3);
  }

  .xl\:bg-blue-900\/40 {
    background-color: rgb(30 58 138 / 0.4);
  }

  .xl\:bg-blue-900\/5 {
    background-color: rgb(30 58 138 / 0.05);
  }

  .xl\:bg-blue-900\/50 {
    background-color: rgb(30 58 138 / 0.5);
  }

  .xl\:bg-blue-900\/60 {
    background-color: rgb(30 58 138 / 0.6);
  }

  .xl\:bg-blue-900\/70 {
    background-color: rgb(30 58 138 / 0.7);
  }

  .xl\:bg-blue-900\/80 {
    background-color: rgb(30 58 138 / 0.8);
  }

  .xl\:bg-blue-900\/90 {
    background-color: rgb(30 58 138 / 0.9);
  }

  .xl\:bg-blue-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(23 37 84 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-blue-950\/10 {
    background-color: rgb(23 37 84 / 0.1);
  }

  .xl\:bg-blue-950\/20 {
    background-color: rgb(23 37 84 / 0.2);
  }

  .xl\:bg-blue-950\/30 {
    background-color: rgb(23 37 84 / 0.3);
  }

  .xl\:bg-blue-950\/40 {
    background-color: rgb(23 37 84 / 0.4);
  }

  .xl\:bg-blue-950\/5 {
    background-color: rgb(23 37 84 / 0.05);
  }

  .xl\:bg-blue-950\/50 {
    background-color: rgb(23 37 84 / 0.5);
  }

  .xl\:bg-blue-950\/60 {
    background-color: rgb(23 37 84 / 0.6);
  }

  .xl\:bg-blue-950\/70 {
    background-color: rgb(23 37 84 / 0.7);
  }

  .xl\:bg-blue-950\/80 {
    background-color: rgb(23 37 84 / 0.8);
  }

  .xl\:bg-blue-950\/90 {
    background-color: rgb(23 37 84 / 0.9);
  }

  .xl\:bg-cyan-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(207 250 254 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-cyan-100\/10 {
    background-color: rgb(207 250 254 / 0.1);
  }

  .xl\:bg-cyan-100\/20 {
    background-color: rgb(207 250 254 / 0.2);
  }

  .xl\:bg-cyan-100\/30 {
    background-color: rgb(207 250 254 / 0.3);
  }

  .xl\:bg-cyan-100\/40 {
    background-color: rgb(207 250 254 / 0.4);
  }

  .xl\:bg-cyan-100\/5 {
    background-color: rgb(207 250 254 / 0.05);
  }

  .xl\:bg-cyan-100\/50 {
    background-color: rgb(207 250 254 / 0.5);
  }

  .xl\:bg-cyan-100\/60 {
    background-color: rgb(207 250 254 / 0.6);
  }

  .xl\:bg-cyan-100\/70 {
    background-color: rgb(207 250 254 / 0.7);
  }

  .xl\:bg-cyan-100\/80 {
    background-color: rgb(207 250 254 / 0.8);
  }

  .xl\:bg-cyan-100\/90 {
    background-color: rgb(207 250 254 / 0.9);
  }

  .xl\:bg-cyan-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(165 243 252 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-cyan-200\/10 {
    background-color: rgb(165 243 252 / 0.1);
  }

  .xl\:bg-cyan-200\/20 {
    background-color: rgb(165 243 252 / 0.2);
  }

  .xl\:bg-cyan-200\/30 {
    background-color: rgb(165 243 252 / 0.3);
  }

  .xl\:bg-cyan-200\/40 {
    background-color: rgb(165 243 252 / 0.4);
  }

  .xl\:bg-cyan-200\/5 {
    background-color: rgb(165 243 252 / 0.05);
  }

  .xl\:bg-cyan-200\/50 {
    background-color: rgb(165 243 252 / 0.5);
  }

  .xl\:bg-cyan-200\/60 {
    background-color: rgb(165 243 252 / 0.6);
  }

  .xl\:bg-cyan-200\/70 {
    background-color: rgb(165 243 252 / 0.7);
  }

  .xl\:bg-cyan-200\/80 {
    background-color: rgb(165 243 252 / 0.8);
  }

  .xl\:bg-cyan-200\/90 {
    background-color: rgb(165 243 252 / 0.9);
  }

  .xl\:bg-cyan-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(103 232 249 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-cyan-300\/10 {
    background-color: rgb(103 232 249 / 0.1);
  }

  .xl\:bg-cyan-300\/20 {
    background-color: rgb(103 232 249 / 0.2);
  }

  .xl\:bg-cyan-300\/30 {
    background-color: rgb(103 232 249 / 0.3);
  }

  .xl\:bg-cyan-300\/40 {
    background-color: rgb(103 232 249 / 0.4);
  }

  .xl\:bg-cyan-300\/5 {
    background-color: rgb(103 232 249 / 0.05);
  }

  .xl\:bg-cyan-300\/50 {
    background-color: rgb(103 232 249 / 0.5);
  }

  .xl\:bg-cyan-300\/60 {
    background-color: rgb(103 232 249 / 0.6);
  }

  .xl\:bg-cyan-300\/70 {
    background-color: rgb(103 232 249 / 0.7);
  }

  .xl\:bg-cyan-300\/80 {
    background-color: rgb(103 232 249 / 0.8);
  }

  .xl\:bg-cyan-300\/90 {
    background-color: rgb(103 232 249 / 0.9);
  }

  .xl\:bg-cyan-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(34 211 238 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-cyan-400\/10 {
    background-color: rgb(34 211 238 / 0.1);
  }

  .xl\:bg-cyan-400\/20 {
    background-color: rgb(34 211 238 / 0.2);
  }

  .xl\:bg-cyan-400\/30 {
    background-color: rgb(34 211 238 / 0.3);
  }

  .xl\:bg-cyan-400\/40 {
    background-color: rgb(34 211 238 / 0.4);
  }

  .xl\:bg-cyan-400\/5 {
    background-color: rgb(34 211 238 / 0.05);
  }

  .xl\:bg-cyan-400\/50 {
    background-color: rgb(34 211 238 / 0.5);
  }

  .xl\:bg-cyan-400\/60 {
    background-color: rgb(34 211 238 / 0.6);
  }

  .xl\:bg-cyan-400\/70 {
    background-color: rgb(34 211 238 / 0.7);
  }

  .xl\:bg-cyan-400\/80 {
    background-color: rgb(34 211 238 / 0.8);
  }

  .xl\:bg-cyan-400\/90 {
    background-color: rgb(34 211 238 / 0.9);
  }

  .xl\:bg-cyan-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(236 254 255 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-cyan-50\/10 {
    background-color: rgb(236 254 255 / 0.1);
  }

  .xl\:bg-cyan-50\/20 {
    background-color: rgb(236 254 255 / 0.2);
  }

  .xl\:bg-cyan-50\/30 {
    background-color: rgb(236 254 255 / 0.3);
  }

  .xl\:bg-cyan-50\/40 {
    background-color: rgb(236 254 255 / 0.4);
  }

  .xl\:bg-cyan-50\/5 {
    background-color: rgb(236 254 255 / 0.05);
  }

  .xl\:bg-cyan-50\/50 {
    background-color: rgb(236 254 255 / 0.5);
  }

  .xl\:bg-cyan-50\/60 {
    background-color: rgb(236 254 255 / 0.6);
  }

  .xl\:bg-cyan-50\/70 {
    background-color: rgb(236 254 255 / 0.7);
  }

  .xl\:bg-cyan-50\/80 {
    background-color: rgb(236 254 255 / 0.8);
  }

  .xl\:bg-cyan-50\/90 {
    background-color: rgb(236 254 255 / 0.9);
  }

  .xl\:bg-cyan-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(6 182 212 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-cyan-500\/10 {
    background-color: rgb(6 182 212 / 0.1);
  }

  .xl\:bg-cyan-500\/20 {
    background-color: rgb(6 182 212 / 0.2);
  }

  .xl\:bg-cyan-500\/30 {
    background-color: rgb(6 182 212 / 0.3);
  }

  .xl\:bg-cyan-500\/40 {
    background-color: rgb(6 182 212 / 0.4);
  }

  .xl\:bg-cyan-500\/5 {
    background-color: rgb(6 182 212 / 0.05);
  }

  .xl\:bg-cyan-500\/50 {
    background-color: rgb(6 182 212 / 0.5);
  }

  .xl\:bg-cyan-500\/60 {
    background-color: rgb(6 182 212 / 0.6);
  }

  .xl\:bg-cyan-500\/70 {
    background-color: rgb(6 182 212 / 0.7);
  }

  .xl\:bg-cyan-500\/80 {
    background-color: rgb(6 182 212 / 0.8);
  }

  .xl\:bg-cyan-500\/90 {
    background-color: rgb(6 182 212 / 0.9);
  }

  .xl\:bg-cyan-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(8 145 178 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-cyan-600\/10 {
    background-color: rgb(8 145 178 / 0.1);
  }

  .xl\:bg-cyan-600\/20 {
    background-color: rgb(8 145 178 / 0.2);
  }

  .xl\:bg-cyan-600\/30 {
    background-color: rgb(8 145 178 / 0.3);
  }

  .xl\:bg-cyan-600\/40 {
    background-color: rgb(8 145 178 / 0.4);
  }

  .xl\:bg-cyan-600\/5 {
    background-color: rgb(8 145 178 / 0.05);
  }

  .xl\:bg-cyan-600\/50 {
    background-color: rgb(8 145 178 / 0.5);
  }

  .xl\:bg-cyan-600\/60 {
    background-color: rgb(8 145 178 / 0.6);
  }

  .xl\:bg-cyan-600\/70 {
    background-color: rgb(8 145 178 / 0.7);
  }

  .xl\:bg-cyan-600\/80 {
    background-color: rgb(8 145 178 / 0.8);
  }

  .xl\:bg-cyan-600\/90 {
    background-color: rgb(8 145 178 / 0.9);
  }

  .xl\:bg-cyan-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(14 116 144 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-cyan-700\/10 {
    background-color: rgb(14 116 144 / 0.1);
  }

  .xl\:bg-cyan-700\/20 {
    background-color: rgb(14 116 144 / 0.2);
  }

  .xl\:bg-cyan-700\/30 {
    background-color: rgb(14 116 144 / 0.3);
  }

  .xl\:bg-cyan-700\/40 {
    background-color: rgb(14 116 144 / 0.4);
  }

  .xl\:bg-cyan-700\/5 {
    background-color: rgb(14 116 144 / 0.05);
  }

  .xl\:bg-cyan-700\/50 {
    background-color: rgb(14 116 144 / 0.5);
  }

  .xl\:bg-cyan-700\/60 {
    background-color: rgb(14 116 144 / 0.6);
  }

  .xl\:bg-cyan-700\/70 {
    background-color: rgb(14 116 144 / 0.7);
  }

  .xl\:bg-cyan-700\/80 {
    background-color: rgb(14 116 144 / 0.8);
  }

  .xl\:bg-cyan-700\/90 {
    background-color: rgb(14 116 144 / 0.9);
  }

  .xl\:bg-cyan-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(21 94 117 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-cyan-800\/10 {
    background-color: rgb(21 94 117 / 0.1);
  }

  .xl\:bg-cyan-800\/20 {
    background-color: rgb(21 94 117 / 0.2);
  }

  .xl\:bg-cyan-800\/30 {
    background-color: rgb(21 94 117 / 0.3);
  }

  .xl\:bg-cyan-800\/40 {
    background-color: rgb(21 94 117 / 0.4);
  }

  .xl\:bg-cyan-800\/5 {
    background-color: rgb(21 94 117 / 0.05);
  }

  .xl\:bg-cyan-800\/50 {
    background-color: rgb(21 94 117 / 0.5);
  }

  .xl\:bg-cyan-800\/60 {
    background-color: rgb(21 94 117 / 0.6);
  }

  .xl\:bg-cyan-800\/70 {
    background-color: rgb(21 94 117 / 0.7);
  }

  .xl\:bg-cyan-800\/80 {
    background-color: rgb(21 94 117 / 0.8);
  }

  .xl\:bg-cyan-800\/90 {
    background-color: rgb(21 94 117 / 0.9);
  }

  .xl\:bg-cyan-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(22 78 99 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-cyan-900\/10 {
    background-color: rgb(22 78 99 / 0.1);
  }

  .xl\:bg-cyan-900\/20 {
    background-color: rgb(22 78 99 / 0.2);
  }

  .xl\:bg-cyan-900\/30 {
    background-color: rgb(22 78 99 / 0.3);
  }

  .xl\:bg-cyan-900\/40 {
    background-color: rgb(22 78 99 / 0.4);
  }

  .xl\:bg-cyan-900\/5 {
    background-color: rgb(22 78 99 / 0.05);
  }

  .xl\:bg-cyan-900\/50 {
    background-color: rgb(22 78 99 / 0.5);
  }

  .xl\:bg-cyan-900\/60 {
    background-color: rgb(22 78 99 / 0.6);
  }

  .xl\:bg-cyan-900\/70 {
    background-color: rgb(22 78 99 / 0.7);
  }

  .xl\:bg-cyan-900\/80 {
    background-color: rgb(22 78 99 / 0.8);
  }

  .xl\:bg-cyan-900\/90 {
    background-color: rgb(22 78 99 / 0.9);
  }

  .xl\:bg-cyan-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(8 51 68 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-cyan-950\/10 {
    background-color: rgb(8 51 68 / 0.1);
  }

  .xl\:bg-cyan-950\/20 {
    background-color: rgb(8 51 68 / 0.2);
  }

  .xl\:bg-cyan-950\/30 {
    background-color: rgb(8 51 68 / 0.3);
  }

  .xl\:bg-cyan-950\/40 {
    background-color: rgb(8 51 68 / 0.4);
  }

  .xl\:bg-cyan-950\/5 {
    background-color: rgb(8 51 68 / 0.05);
  }

  .xl\:bg-cyan-950\/50 {
    background-color: rgb(8 51 68 / 0.5);
  }

  .xl\:bg-cyan-950\/60 {
    background-color: rgb(8 51 68 / 0.6);
  }

  .xl\:bg-cyan-950\/70 {
    background-color: rgb(8 51 68 / 0.7);
  }

  .xl\:bg-cyan-950\/80 {
    background-color: rgb(8 51 68 / 0.8);
  }

  .xl\:bg-cyan-950\/90 {
    background-color: rgb(8 51 68 / 0.9);
  }

  .xl\:bg-emerald-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(209 250 229 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-emerald-100\/10 {
    background-color: rgb(209 250 229 / 0.1);
  }

  .xl\:bg-emerald-100\/20 {
    background-color: rgb(209 250 229 / 0.2);
  }

  .xl\:bg-emerald-100\/30 {
    background-color: rgb(209 250 229 / 0.3);
  }

  .xl\:bg-emerald-100\/40 {
    background-color: rgb(209 250 229 / 0.4);
  }

  .xl\:bg-emerald-100\/5 {
    background-color: rgb(209 250 229 / 0.05);
  }

  .xl\:bg-emerald-100\/50 {
    background-color: rgb(209 250 229 / 0.5);
  }

  .xl\:bg-emerald-100\/60 {
    background-color: rgb(209 250 229 / 0.6);
  }

  .xl\:bg-emerald-100\/70 {
    background-color: rgb(209 250 229 / 0.7);
  }

  .xl\:bg-emerald-100\/80 {
    background-color: rgb(209 250 229 / 0.8);
  }

  .xl\:bg-emerald-100\/90 {
    background-color: rgb(209 250 229 / 0.9);
  }

  .xl\:bg-emerald-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(167 243 208 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-emerald-200\/10 {
    background-color: rgb(167 243 208 / 0.1);
  }

  .xl\:bg-emerald-200\/20 {
    background-color: rgb(167 243 208 / 0.2);
  }

  .xl\:bg-emerald-200\/30 {
    background-color: rgb(167 243 208 / 0.3);
  }

  .xl\:bg-emerald-200\/40 {
    background-color: rgb(167 243 208 / 0.4);
  }

  .xl\:bg-emerald-200\/5 {
    background-color: rgb(167 243 208 / 0.05);
  }

  .xl\:bg-emerald-200\/50 {
    background-color: rgb(167 243 208 / 0.5);
  }

  .xl\:bg-emerald-200\/60 {
    background-color: rgb(167 243 208 / 0.6);
  }

  .xl\:bg-emerald-200\/70 {
    background-color: rgb(167 243 208 / 0.7);
  }

  .xl\:bg-emerald-200\/80 {
    background-color: rgb(167 243 208 / 0.8);
  }

  .xl\:bg-emerald-200\/90 {
    background-color: rgb(167 243 208 / 0.9);
  }

  .xl\:bg-emerald-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(110 231 183 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-emerald-300\/10 {
    background-color: rgb(110 231 183 / 0.1);
  }

  .xl\:bg-emerald-300\/20 {
    background-color: rgb(110 231 183 / 0.2);
  }

  .xl\:bg-emerald-300\/30 {
    background-color: rgb(110 231 183 / 0.3);
  }

  .xl\:bg-emerald-300\/40 {
    background-color: rgb(110 231 183 / 0.4);
  }

  .xl\:bg-emerald-300\/5 {
    background-color: rgb(110 231 183 / 0.05);
  }

  .xl\:bg-emerald-300\/50 {
    background-color: rgb(110 231 183 / 0.5);
  }

  .xl\:bg-emerald-300\/60 {
    background-color: rgb(110 231 183 / 0.6);
  }

  .xl\:bg-emerald-300\/70 {
    background-color: rgb(110 231 183 / 0.7);
  }

  .xl\:bg-emerald-300\/80 {
    background-color: rgb(110 231 183 / 0.8);
  }

  .xl\:bg-emerald-300\/90 {
    background-color: rgb(110 231 183 / 0.9);
  }

  .xl\:bg-emerald-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(52 211 153 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-emerald-400\/10 {
    background-color: rgb(52 211 153 / 0.1);
  }

  .xl\:bg-emerald-400\/20 {
    background-color: rgb(52 211 153 / 0.2);
  }

  .xl\:bg-emerald-400\/30 {
    background-color: rgb(52 211 153 / 0.3);
  }

  .xl\:bg-emerald-400\/40 {
    background-color: rgb(52 211 153 / 0.4);
  }

  .xl\:bg-emerald-400\/5 {
    background-color: rgb(52 211 153 / 0.05);
  }

  .xl\:bg-emerald-400\/50 {
    background-color: rgb(52 211 153 / 0.5);
  }

  .xl\:bg-emerald-400\/60 {
    background-color: rgb(52 211 153 / 0.6);
  }

  .xl\:bg-emerald-400\/70 {
    background-color: rgb(52 211 153 / 0.7);
  }

  .xl\:bg-emerald-400\/80 {
    background-color: rgb(52 211 153 / 0.8);
  }

  .xl\:bg-emerald-400\/90 {
    background-color: rgb(52 211 153 / 0.9);
  }

  .xl\:bg-emerald-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(236 253 245 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-emerald-50\/10 {
    background-color: rgb(236 253 245 / 0.1);
  }

  .xl\:bg-emerald-50\/20 {
    background-color: rgb(236 253 245 / 0.2);
  }

  .xl\:bg-emerald-50\/30 {
    background-color: rgb(236 253 245 / 0.3);
  }

  .xl\:bg-emerald-50\/40 {
    background-color: rgb(236 253 245 / 0.4);
  }

  .xl\:bg-emerald-50\/5 {
    background-color: rgb(236 253 245 / 0.05);
  }

  .xl\:bg-emerald-50\/50 {
    background-color: rgb(236 253 245 / 0.5);
  }

  .xl\:bg-emerald-50\/60 {
    background-color: rgb(236 253 245 / 0.6);
  }

  .xl\:bg-emerald-50\/70 {
    background-color: rgb(236 253 245 / 0.7);
  }

  .xl\:bg-emerald-50\/80 {
    background-color: rgb(236 253 245 / 0.8);
  }

  .xl\:bg-emerald-50\/90 {
    background-color: rgb(236 253 245 / 0.9);
  }

  .xl\:bg-emerald-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(16 185 129 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-emerald-500\/10 {
    background-color: rgb(16 185 129 / 0.1);
  }

  .xl\:bg-emerald-500\/20 {
    background-color: rgb(16 185 129 / 0.2);
  }

  .xl\:bg-emerald-500\/30 {
    background-color: rgb(16 185 129 / 0.3);
  }

  .xl\:bg-emerald-500\/40 {
    background-color: rgb(16 185 129 / 0.4);
  }

  .xl\:bg-emerald-500\/5 {
    background-color: rgb(16 185 129 / 0.05);
  }

  .xl\:bg-emerald-500\/50 {
    background-color: rgb(16 185 129 / 0.5);
  }

  .xl\:bg-emerald-500\/60 {
    background-color: rgb(16 185 129 / 0.6);
  }

  .xl\:bg-emerald-500\/70 {
    background-color: rgb(16 185 129 / 0.7);
  }

  .xl\:bg-emerald-500\/80 {
    background-color: rgb(16 185 129 / 0.8);
  }

  .xl\:bg-emerald-500\/90 {
    background-color: rgb(16 185 129 / 0.9);
  }

  .xl\:bg-emerald-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(5 150 105 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-emerald-600\/10 {
    background-color: rgb(5 150 105 / 0.1);
  }

  .xl\:bg-emerald-600\/20 {
    background-color: rgb(5 150 105 / 0.2);
  }

  .xl\:bg-emerald-600\/30 {
    background-color: rgb(5 150 105 / 0.3);
  }

  .xl\:bg-emerald-600\/40 {
    background-color: rgb(5 150 105 / 0.4);
  }

  .xl\:bg-emerald-600\/5 {
    background-color: rgb(5 150 105 / 0.05);
  }

  .xl\:bg-emerald-600\/50 {
    background-color: rgb(5 150 105 / 0.5);
  }

  .xl\:bg-emerald-600\/60 {
    background-color: rgb(5 150 105 / 0.6);
  }

  .xl\:bg-emerald-600\/70 {
    background-color: rgb(5 150 105 / 0.7);
  }

  .xl\:bg-emerald-600\/80 {
    background-color: rgb(5 150 105 / 0.8);
  }

  .xl\:bg-emerald-600\/90 {
    background-color: rgb(5 150 105 / 0.9);
  }

  .xl\:bg-emerald-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(4 120 87 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-emerald-700\/10 {
    background-color: rgb(4 120 87 / 0.1);
  }

  .xl\:bg-emerald-700\/20 {
    background-color: rgb(4 120 87 / 0.2);
  }

  .xl\:bg-emerald-700\/30 {
    background-color: rgb(4 120 87 / 0.3);
  }

  .xl\:bg-emerald-700\/40 {
    background-color: rgb(4 120 87 / 0.4);
  }

  .xl\:bg-emerald-700\/5 {
    background-color: rgb(4 120 87 / 0.05);
  }

  .xl\:bg-emerald-700\/50 {
    background-color: rgb(4 120 87 / 0.5);
  }

  .xl\:bg-emerald-700\/60 {
    background-color: rgb(4 120 87 / 0.6);
  }

  .xl\:bg-emerald-700\/70 {
    background-color: rgb(4 120 87 / 0.7);
  }

  .xl\:bg-emerald-700\/80 {
    background-color: rgb(4 120 87 / 0.8);
  }

  .xl\:bg-emerald-700\/90 {
    background-color: rgb(4 120 87 / 0.9);
  }

  .xl\:bg-emerald-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(6 95 70 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-emerald-800\/10 {
    background-color: rgb(6 95 70 / 0.1);
  }

  .xl\:bg-emerald-800\/20 {
    background-color: rgb(6 95 70 / 0.2);
  }

  .xl\:bg-emerald-800\/30 {
    background-color: rgb(6 95 70 / 0.3);
  }

  .xl\:bg-emerald-800\/40 {
    background-color: rgb(6 95 70 / 0.4);
  }

  .xl\:bg-emerald-800\/5 {
    background-color: rgb(6 95 70 / 0.05);
  }

  .xl\:bg-emerald-800\/50 {
    background-color: rgb(6 95 70 / 0.5);
  }

  .xl\:bg-emerald-800\/60 {
    background-color: rgb(6 95 70 / 0.6);
  }

  .xl\:bg-emerald-800\/70 {
    background-color: rgb(6 95 70 / 0.7);
  }

  .xl\:bg-emerald-800\/80 {
    background-color: rgb(6 95 70 / 0.8);
  }

  .xl\:bg-emerald-800\/90 {
    background-color: rgb(6 95 70 / 0.9);
  }

  .xl\:bg-emerald-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(6 78 59 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-emerald-900\/10 {
    background-color: rgb(6 78 59 / 0.1);
  }

  .xl\:bg-emerald-900\/20 {
    background-color: rgb(6 78 59 / 0.2);
  }

  .xl\:bg-emerald-900\/30 {
    background-color: rgb(6 78 59 / 0.3);
  }

  .xl\:bg-emerald-900\/40 {
    background-color: rgb(6 78 59 / 0.4);
  }

  .xl\:bg-emerald-900\/5 {
    background-color: rgb(6 78 59 / 0.05);
  }

  .xl\:bg-emerald-900\/50 {
    background-color: rgb(6 78 59 / 0.5);
  }

  .xl\:bg-emerald-900\/60 {
    background-color: rgb(6 78 59 / 0.6);
  }

  .xl\:bg-emerald-900\/70 {
    background-color: rgb(6 78 59 / 0.7);
  }

  .xl\:bg-emerald-900\/80 {
    background-color: rgb(6 78 59 / 0.8);
  }

  .xl\:bg-emerald-900\/90 {
    background-color: rgb(6 78 59 / 0.9);
  }

  .xl\:bg-emerald-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(2 44 34 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-emerald-950\/10 {
    background-color: rgb(2 44 34 / 0.1);
  }

  .xl\:bg-emerald-950\/20 {
    background-color: rgb(2 44 34 / 0.2);
  }

  .xl\:bg-emerald-950\/30 {
    background-color: rgb(2 44 34 / 0.3);
  }

  .xl\:bg-emerald-950\/40 {
    background-color: rgb(2 44 34 / 0.4);
  }

  .xl\:bg-emerald-950\/5 {
    background-color: rgb(2 44 34 / 0.05);
  }

  .xl\:bg-emerald-950\/50 {
    background-color: rgb(2 44 34 / 0.5);
  }

  .xl\:bg-emerald-950\/60 {
    background-color: rgb(2 44 34 / 0.6);
  }

  .xl\:bg-emerald-950\/70 {
    background-color: rgb(2 44 34 / 0.7);
  }

  .xl\:bg-emerald-950\/80 {
    background-color: rgb(2 44 34 / 0.8);
  }

  .xl\:bg-emerald-950\/90 {
    background-color: rgb(2 44 34 / 0.9);
  }

  .xl\:bg-fuchsia-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 232 255 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-fuchsia-100\/10 {
    background-color: rgb(250 232 255 / 0.1);
  }

  .xl\:bg-fuchsia-100\/20 {
    background-color: rgb(250 232 255 / 0.2);
  }

  .xl\:bg-fuchsia-100\/30 {
    background-color: rgb(250 232 255 / 0.3);
  }

  .xl\:bg-fuchsia-100\/40 {
    background-color: rgb(250 232 255 / 0.4);
  }

  .xl\:bg-fuchsia-100\/5 {
    background-color: rgb(250 232 255 / 0.05);
  }

  .xl\:bg-fuchsia-100\/50 {
    background-color: rgb(250 232 255 / 0.5);
  }

  .xl\:bg-fuchsia-100\/60 {
    background-color: rgb(250 232 255 / 0.6);
  }

  .xl\:bg-fuchsia-100\/70 {
    background-color: rgb(250 232 255 / 0.7);
  }

  .xl\:bg-fuchsia-100\/80 {
    background-color: rgb(250 232 255 / 0.8);
  }

  .xl\:bg-fuchsia-100\/90 {
    background-color: rgb(250 232 255 / 0.9);
  }

  .xl\:bg-fuchsia-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(245 208 254 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-fuchsia-200\/10 {
    background-color: rgb(245 208 254 / 0.1);
  }

  .xl\:bg-fuchsia-200\/20 {
    background-color: rgb(245 208 254 / 0.2);
  }

  .xl\:bg-fuchsia-200\/30 {
    background-color: rgb(245 208 254 / 0.3);
  }

  .xl\:bg-fuchsia-200\/40 {
    background-color: rgb(245 208 254 / 0.4);
  }

  .xl\:bg-fuchsia-200\/5 {
    background-color: rgb(245 208 254 / 0.05);
  }

  .xl\:bg-fuchsia-200\/50 {
    background-color: rgb(245 208 254 / 0.5);
  }

  .xl\:bg-fuchsia-200\/60 {
    background-color: rgb(245 208 254 / 0.6);
  }

  .xl\:bg-fuchsia-200\/70 {
    background-color: rgb(245 208 254 / 0.7);
  }

  .xl\:bg-fuchsia-200\/80 {
    background-color: rgb(245 208 254 / 0.8);
  }

  .xl\:bg-fuchsia-200\/90 {
    background-color: rgb(245 208 254 / 0.9);
  }

  .xl\:bg-fuchsia-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(240 171 252 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-fuchsia-300\/10 {
    background-color: rgb(240 171 252 / 0.1);
  }

  .xl\:bg-fuchsia-300\/20 {
    background-color: rgb(240 171 252 / 0.2);
  }

  .xl\:bg-fuchsia-300\/30 {
    background-color: rgb(240 171 252 / 0.3);
  }

  .xl\:bg-fuchsia-300\/40 {
    background-color: rgb(240 171 252 / 0.4);
  }

  .xl\:bg-fuchsia-300\/5 {
    background-color: rgb(240 171 252 / 0.05);
  }

  .xl\:bg-fuchsia-300\/50 {
    background-color: rgb(240 171 252 / 0.5);
  }

  .xl\:bg-fuchsia-300\/60 {
    background-color: rgb(240 171 252 / 0.6);
  }

  .xl\:bg-fuchsia-300\/70 {
    background-color: rgb(240 171 252 / 0.7);
  }

  .xl\:bg-fuchsia-300\/80 {
    background-color: rgb(240 171 252 / 0.8);
  }

  .xl\:bg-fuchsia-300\/90 {
    background-color: rgb(240 171 252 / 0.9);
  }

  .xl\:bg-fuchsia-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(232 121 249 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-fuchsia-400\/10 {
    background-color: rgb(232 121 249 / 0.1);
  }

  .xl\:bg-fuchsia-400\/20 {
    background-color: rgb(232 121 249 / 0.2);
  }

  .xl\:bg-fuchsia-400\/30 {
    background-color: rgb(232 121 249 / 0.3);
  }

  .xl\:bg-fuchsia-400\/40 {
    background-color: rgb(232 121 249 / 0.4);
  }

  .xl\:bg-fuchsia-400\/5 {
    background-color: rgb(232 121 249 / 0.05);
  }

  .xl\:bg-fuchsia-400\/50 {
    background-color: rgb(232 121 249 / 0.5);
  }

  .xl\:bg-fuchsia-400\/60 {
    background-color: rgb(232 121 249 / 0.6);
  }

  .xl\:bg-fuchsia-400\/70 {
    background-color: rgb(232 121 249 / 0.7);
  }

  .xl\:bg-fuchsia-400\/80 {
    background-color: rgb(232 121 249 / 0.8);
  }

  .xl\:bg-fuchsia-400\/90 {
    background-color: rgb(232 121 249 / 0.9);
  }

  .xl\:bg-fuchsia-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(253 244 255 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-fuchsia-50\/10 {
    background-color: rgb(253 244 255 / 0.1);
  }

  .xl\:bg-fuchsia-50\/20 {
    background-color: rgb(253 244 255 / 0.2);
  }

  .xl\:bg-fuchsia-50\/30 {
    background-color: rgb(253 244 255 / 0.3);
  }

  .xl\:bg-fuchsia-50\/40 {
    background-color: rgb(253 244 255 / 0.4);
  }

  .xl\:bg-fuchsia-50\/5 {
    background-color: rgb(253 244 255 / 0.05);
  }

  .xl\:bg-fuchsia-50\/50 {
    background-color: rgb(253 244 255 / 0.5);
  }

  .xl\:bg-fuchsia-50\/60 {
    background-color: rgb(253 244 255 / 0.6);
  }

  .xl\:bg-fuchsia-50\/70 {
    background-color: rgb(253 244 255 / 0.7);
  }

  .xl\:bg-fuchsia-50\/80 {
    background-color: rgb(253 244 255 / 0.8);
  }

  .xl\:bg-fuchsia-50\/90 {
    background-color: rgb(253 244 255 / 0.9);
  }

  .xl\:bg-fuchsia-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(217 70 239 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-fuchsia-500\/10 {
    background-color: rgb(217 70 239 / 0.1);
  }

  .xl\:bg-fuchsia-500\/20 {
    background-color: rgb(217 70 239 / 0.2);
  }

  .xl\:bg-fuchsia-500\/30 {
    background-color: rgb(217 70 239 / 0.3);
  }

  .xl\:bg-fuchsia-500\/40 {
    background-color: rgb(217 70 239 / 0.4);
  }

  .xl\:bg-fuchsia-500\/5 {
    background-color: rgb(217 70 239 / 0.05);
  }

  .xl\:bg-fuchsia-500\/50 {
    background-color: rgb(217 70 239 / 0.5);
  }

  .xl\:bg-fuchsia-500\/60 {
    background-color: rgb(217 70 239 / 0.6);
  }

  .xl\:bg-fuchsia-500\/70 {
    background-color: rgb(217 70 239 / 0.7);
  }

  .xl\:bg-fuchsia-500\/80 {
    background-color: rgb(217 70 239 / 0.8);
  }

  .xl\:bg-fuchsia-500\/90 {
    background-color: rgb(217 70 239 / 0.9);
  }

  .xl\:bg-fuchsia-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(192 38 211 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-fuchsia-600\/10 {
    background-color: rgb(192 38 211 / 0.1);
  }

  .xl\:bg-fuchsia-600\/20 {
    background-color: rgb(192 38 211 / 0.2);
  }

  .xl\:bg-fuchsia-600\/30 {
    background-color: rgb(192 38 211 / 0.3);
  }

  .xl\:bg-fuchsia-600\/40 {
    background-color: rgb(192 38 211 / 0.4);
  }

  .xl\:bg-fuchsia-600\/5 {
    background-color: rgb(192 38 211 / 0.05);
  }

  .xl\:bg-fuchsia-600\/50 {
    background-color: rgb(192 38 211 / 0.5);
  }

  .xl\:bg-fuchsia-600\/60 {
    background-color: rgb(192 38 211 / 0.6);
  }

  .xl\:bg-fuchsia-600\/70 {
    background-color: rgb(192 38 211 / 0.7);
  }

  .xl\:bg-fuchsia-600\/80 {
    background-color: rgb(192 38 211 / 0.8);
  }

  .xl\:bg-fuchsia-600\/90 {
    background-color: rgb(192 38 211 / 0.9);
  }

  .xl\:bg-fuchsia-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(162 28 175 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-fuchsia-700\/10 {
    background-color: rgb(162 28 175 / 0.1);
  }

  .xl\:bg-fuchsia-700\/20 {
    background-color: rgb(162 28 175 / 0.2);
  }

  .xl\:bg-fuchsia-700\/30 {
    background-color: rgb(162 28 175 / 0.3);
  }

  .xl\:bg-fuchsia-700\/40 {
    background-color: rgb(162 28 175 / 0.4);
  }

  .xl\:bg-fuchsia-700\/5 {
    background-color: rgb(162 28 175 / 0.05);
  }

  .xl\:bg-fuchsia-700\/50 {
    background-color: rgb(162 28 175 / 0.5);
  }

  .xl\:bg-fuchsia-700\/60 {
    background-color: rgb(162 28 175 / 0.6);
  }

  .xl\:bg-fuchsia-700\/70 {
    background-color: rgb(162 28 175 / 0.7);
  }

  .xl\:bg-fuchsia-700\/80 {
    background-color: rgb(162 28 175 / 0.8);
  }

  .xl\:bg-fuchsia-700\/90 {
    background-color: rgb(162 28 175 / 0.9);
  }

  .xl\:bg-fuchsia-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(134 25 143 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-fuchsia-800\/10 {
    background-color: rgb(134 25 143 / 0.1);
  }

  .xl\:bg-fuchsia-800\/20 {
    background-color: rgb(134 25 143 / 0.2);
  }

  .xl\:bg-fuchsia-800\/30 {
    background-color: rgb(134 25 143 / 0.3);
  }

  .xl\:bg-fuchsia-800\/40 {
    background-color: rgb(134 25 143 / 0.4);
  }

  .xl\:bg-fuchsia-800\/5 {
    background-color: rgb(134 25 143 / 0.05);
  }

  .xl\:bg-fuchsia-800\/50 {
    background-color: rgb(134 25 143 / 0.5);
  }

  .xl\:bg-fuchsia-800\/60 {
    background-color: rgb(134 25 143 / 0.6);
  }

  .xl\:bg-fuchsia-800\/70 {
    background-color: rgb(134 25 143 / 0.7);
  }

  .xl\:bg-fuchsia-800\/80 {
    background-color: rgb(134 25 143 / 0.8);
  }

  .xl\:bg-fuchsia-800\/90 {
    background-color: rgb(134 25 143 / 0.9);
  }

  .xl\:bg-fuchsia-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(112 26 117 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-fuchsia-900\/10 {
    background-color: rgb(112 26 117 / 0.1);
  }

  .xl\:bg-fuchsia-900\/20 {
    background-color: rgb(112 26 117 / 0.2);
  }

  .xl\:bg-fuchsia-900\/30 {
    background-color: rgb(112 26 117 / 0.3);
  }

  .xl\:bg-fuchsia-900\/40 {
    background-color: rgb(112 26 117 / 0.4);
  }

  .xl\:bg-fuchsia-900\/5 {
    background-color: rgb(112 26 117 / 0.05);
  }

  .xl\:bg-fuchsia-900\/50 {
    background-color: rgb(112 26 117 / 0.5);
  }

  .xl\:bg-fuchsia-900\/60 {
    background-color: rgb(112 26 117 / 0.6);
  }

  .xl\:bg-fuchsia-900\/70 {
    background-color: rgb(112 26 117 / 0.7);
  }

  .xl\:bg-fuchsia-900\/80 {
    background-color: rgb(112 26 117 / 0.8);
  }

  .xl\:bg-fuchsia-900\/90 {
    background-color: rgb(112 26 117 / 0.9);
  }

  .xl\:bg-fuchsia-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(74 4 78 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-fuchsia-950\/10 {
    background-color: rgb(74 4 78 / 0.1);
  }

  .xl\:bg-fuchsia-950\/20 {
    background-color: rgb(74 4 78 / 0.2);
  }

  .xl\:bg-fuchsia-950\/30 {
    background-color: rgb(74 4 78 / 0.3);
  }

  .xl\:bg-fuchsia-950\/40 {
    background-color: rgb(74 4 78 / 0.4);
  }

  .xl\:bg-fuchsia-950\/5 {
    background-color: rgb(74 4 78 / 0.05);
  }

  .xl\:bg-fuchsia-950\/50 {
    background-color: rgb(74 4 78 / 0.5);
  }

  .xl\:bg-fuchsia-950\/60 {
    background-color: rgb(74 4 78 / 0.6);
  }

  .xl\:bg-fuchsia-950\/70 {
    background-color: rgb(74 4 78 / 0.7);
  }

  .xl\:bg-fuchsia-950\/80 {
    background-color: rgb(74 4 78 / 0.8);
  }

  .xl\:bg-fuchsia-950\/90 {
    background-color: rgb(74 4 78 / 0.9);
  }

  .xl\:bg-gray-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-gray-100\/10 {
    background-color: rgb(243 244 246 / 0.1);
  }

  .xl\:bg-gray-100\/20 {
    background-color: rgb(243 244 246 / 0.2);
  }

  .xl\:bg-gray-100\/30 {
    background-color: rgb(243 244 246 / 0.3);
  }

  .xl\:bg-gray-100\/40 {
    background-color: rgb(243 244 246 / 0.4);
  }

  .xl\:bg-gray-100\/5 {
    background-color: rgb(243 244 246 / 0.05);
  }

  .xl\:bg-gray-100\/50 {
    background-color: rgb(243 244 246 / 0.5);
  }

  .xl\:bg-gray-100\/60 {
    background-color: rgb(243 244 246 / 0.6);
  }

  .xl\:bg-gray-100\/70 {
    background-color: rgb(243 244 246 / 0.7);
  }

  .xl\:bg-gray-100\/80 {
    background-color: rgb(243 244 246 / 0.8);
  }

  .xl\:bg-gray-100\/90 {
    background-color: rgb(243 244 246 / 0.9);
  }

  .xl\:bg-gray-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-gray-200\/10 {
    background-color: rgb(229 231 235 / 0.1);
  }

  .xl\:bg-gray-200\/20 {
    background-color: rgb(229 231 235 / 0.2);
  }

  .xl\:bg-gray-200\/30 {
    background-color: rgb(229 231 235 / 0.3);
  }

  .xl\:bg-gray-200\/40 {
    background-color: rgb(229 231 235 / 0.4);
  }

  .xl\:bg-gray-200\/5 {
    background-color: rgb(229 231 235 / 0.05);
  }

  .xl\:bg-gray-200\/50 {
    background-color: rgb(229 231 235 / 0.5);
  }

  .xl\:bg-gray-200\/60 {
    background-color: rgb(229 231 235 / 0.6);
  }

  .xl\:bg-gray-200\/70 {
    background-color: rgb(229 231 235 / 0.7);
  }

  .xl\:bg-gray-200\/80 {
    background-color: rgb(229 231 235 / 0.8);
  }

  .xl\:bg-gray-200\/90 {
    background-color: rgb(229 231 235 / 0.9);
  }

  .xl\:bg-gray-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-gray-300\/10 {
    background-color: rgb(209 213 219 / 0.1);
  }

  .xl\:bg-gray-300\/20 {
    background-color: rgb(209 213 219 / 0.2);
  }

  .xl\:bg-gray-300\/30 {
    background-color: rgb(209 213 219 / 0.3);
  }

  .xl\:bg-gray-300\/40 {
    background-color: rgb(209 213 219 / 0.4);
  }

  .xl\:bg-gray-300\/5 {
    background-color: rgb(209 213 219 / 0.05);
  }

  .xl\:bg-gray-300\/50 {
    background-color: rgb(209 213 219 / 0.5);
  }

  .xl\:bg-gray-300\/60 {
    background-color: rgb(209 213 219 / 0.6);
  }

  .xl\:bg-gray-300\/70 {
    background-color: rgb(209 213 219 / 0.7);
  }

  .xl\:bg-gray-300\/80 {
    background-color: rgb(209 213 219 / 0.8);
  }

  .xl\:bg-gray-300\/90 {
    background-color: rgb(209 213 219 / 0.9);
  }

  .xl\:bg-gray-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(156 163 175 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-gray-400\/10 {
    background-color: rgb(156 163 175 / 0.1);
  }

  .xl\:bg-gray-400\/20 {
    background-color: rgb(156 163 175 / 0.2);
  }

  .xl\:bg-gray-400\/30 {
    background-color: rgb(156 163 175 / 0.3);
  }

  .xl\:bg-gray-400\/40 {
    background-color: rgb(156 163 175 / 0.4);
  }

  .xl\:bg-gray-400\/5 {
    background-color: rgb(156 163 175 / 0.05);
  }

  .xl\:bg-gray-400\/50 {
    background-color: rgb(156 163 175 / 0.5);
  }

  .xl\:bg-gray-400\/60 {
    background-color: rgb(156 163 175 / 0.6);
  }

  .xl\:bg-gray-400\/70 {
    background-color: rgb(156 163 175 / 0.7);
  }

  .xl\:bg-gray-400\/80 {
    background-color: rgb(156 163 175 / 0.8);
  }

  .xl\:bg-gray-400\/90 {
    background-color: rgb(156 163 175 / 0.9);
  }

  .xl\:bg-gray-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-gray-50\/10 {
    background-color: rgb(249 250 251 / 0.1);
  }

  .xl\:bg-gray-50\/20 {
    background-color: rgb(249 250 251 / 0.2);
  }

  .xl\:bg-gray-50\/30 {
    background-color: rgb(249 250 251 / 0.3);
  }

  .xl\:bg-gray-50\/40 {
    background-color: rgb(249 250 251 / 0.4);
  }

  .xl\:bg-gray-50\/5 {
    background-color: rgb(249 250 251 / 0.05);
  }

  .xl\:bg-gray-50\/50 {
    background-color: rgb(249 250 251 / 0.5);
  }

  .xl\:bg-gray-50\/60 {
    background-color: rgb(249 250 251 / 0.6);
  }

  .xl\:bg-gray-50\/70 {
    background-color: rgb(249 250 251 / 0.7);
  }

  .xl\:bg-gray-50\/80 {
    background-color: rgb(249 250 251 / 0.8);
  }

  .xl\:bg-gray-50\/90 {
    background-color: rgb(249 250 251 / 0.9);
  }

  .xl\:bg-gray-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(107 114 128 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-gray-500\/10 {
    background-color: rgb(107 114 128 / 0.1);
  }

  .xl\:bg-gray-500\/20 {
    background-color: rgb(107 114 128 / 0.2);
  }

  .xl\:bg-gray-500\/30 {
    background-color: rgb(107 114 128 / 0.3);
  }

  .xl\:bg-gray-500\/40 {
    background-color: rgb(107 114 128 / 0.4);
  }

  .xl\:bg-gray-500\/5 {
    background-color: rgb(107 114 128 / 0.05);
  }

  .xl\:bg-gray-500\/50 {
    background-color: rgb(107 114 128 / 0.5);
  }

  .xl\:bg-gray-500\/60 {
    background-color: rgb(107 114 128 / 0.6);
  }

  .xl\:bg-gray-500\/70 {
    background-color: rgb(107 114 128 / 0.7);
  }

  .xl\:bg-gray-500\/80 {
    background-color: rgb(107 114 128 / 0.8);
  }

  .xl\:bg-gray-500\/90 {
    background-color: rgb(107 114 128 / 0.9);
  }

  .xl\:bg-gray-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-gray-600\/10 {
    background-color: rgb(75 85 99 / 0.1);
  }

  .xl\:bg-gray-600\/20 {
    background-color: rgb(75 85 99 / 0.2);
  }

  .xl\:bg-gray-600\/30 {
    background-color: rgb(75 85 99 / 0.3);
  }

  .xl\:bg-gray-600\/40 {
    background-color: rgb(75 85 99 / 0.4);
  }

  .xl\:bg-gray-600\/5 {
    background-color: rgb(75 85 99 / 0.05);
  }

  .xl\:bg-gray-600\/50 {
    background-color: rgb(75 85 99 / 0.5);
  }

  .xl\:bg-gray-600\/60 {
    background-color: rgb(75 85 99 / 0.6);
  }

  .xl\:bg-gray-600\/70 {
    background-color: rgb(75 85 99 / 0.7);
  }

  .xl\:bg-gray-600\/80 {
    background-color: rgb(75 85 99 / 0.8);
  }

  .xl\:bg-gray-600\/90 {
    background-color: rgb(75 85 99 / 0.9);
  }

  .xl\:bg-gray-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-gray-700\/10 {
    background-color: rgb(55 65 81 / 0.1);
  }

  .xl\:bg-gray-700\/20 {
    background-color: rgb(55 65 81 / 0.2);
  }

  .xl\:bg-gray-700\/30 {
    background-color: rgb(55 65 81 / 0.3);
  }

  .xl\:bg-gray-700\/40 {
    background-color: rgb(55 65 81 / 0.4);
  }

  .xl\:bg-gray-700\/5 {
    background-color: rgb(55 65 81 / 0.05);
  }

  .xl\:bg-gray-700\/50 {
    background-color: rgb(55 65 81 / 0.5);
  }

  .xl\:bg-gray-700\/60 {
    background-color: rgb(55 65 81 / 0.6);
  }

  .xl\:bg-gray-700\/70 {
    background-color: rgb(55 65 81 / 0.7);
  }

  .xl\:bg-gray-700\/80 {
    background-color: rgb(55 65 81 / 0.8);
  }

  .xl\:bg-gray-700\/90 {
    background-color: rgb(55 65 81 / 0.9);
  }

  .xl\:bg-gray-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-gray-800\/10 {
    background-color: rgb(31 41 55 / 0.1);
  }

  .xl\:bg-gray-800\/20 {
    background-color: rgb(31 41 55 / 0.2);
  }

  .xl\:bg-gray-800\/30 {
    background-color: rgb(31 41 55 / 0.3);
  }

  .xl\:bg-gray-800\/40 {
    background-color: rgb(31 41 55 / 0.4);
  }

  .xl\:bg-gray-800\/5 {
    background-color: rgb(31 41 55 / 0.05);
  }

  .xl\:bg-gray-800\/50 {
    background-color: rgb(31 41 55 / 0.5);
  }

  .xl\:bg-gray-800\/60 {
    background-color: rgb(31 41 55 / 0.6);
  }

  .xl\:bg-gray-800\/70 {
    background-color: rgb(31 41 55 / 0.7);
  }

  .xl\:bg-gray-800\/80 {
    background-color: rgb(31 41 55 / 0.8);
  }

  .xl\:bg-gray-800\/90 {
    background-color: rgb(31 41 55 / 0.9);
  }

  .xl\:bg-gray-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-gray-900\/10 {
    background-color: rgb(17 24 39 / 0.1);
  }

  .xl\:bg-gray-900\/20 {
    background-color: rgb(17 24 39 / 0.2);
  }

  .xl\:bg-gray-900\/30 {
    background-color: rgb(17 24 39 / 0.3);
  }

  .xl\:bg-gray-900\/40 {
    background-color: rgb(17 24 39 / 0.4);
  }

  .xl\:bg-gray-900\/5 {
    background-color: rgb(17 24 39 / 0.05);
  }

  .xl\:bg-gray-900\/50 {
    background-color: rgb(17 24 39 / 0.5);
  }

  .xl\:bg-gray-900\/60 {
    background-color: rgb(17 24 39 / 0.6);
  }

  .xl\:bg-gray-900\/70 {
    background-color: rgb(17 24 39 / 0.7);
  }

  .xl\:bg-gray-900\/80 {
    background-color: rgb(17 24 39 / 0.8);
  }

  .xl\:bg-gray-900\/90 {
    background-color: rgb(17 24 39 / 0.9);
  }

  .xl\:bg-gray-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(3 7 18 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-gray-950\/10 {
    background-color: rgb(3 7 18 / 0.1);
  }

  .xl\:bg-gray-950\/20 {
    background-color: rgb(3 7 18 / 0.2);
  }

  .xl\:bg-gray-950\/30 {
    background-color: rgb(3 7 18 / 0.3);
  }

  .xl\:bg-gray-950\/40 {
    background-color: rgb(3 7 18 / 0.4);
  }

  .xl\:bg-gray-950\/5 {
    background-color: rgb(3 7 18 / 0.05);
  }

  .xl\:bg-gray-950\/50 {
    background-color: rgb(3 7 18 / 0.5);
  }

  .xl\:bg-gray-950\/60 {
    background-color: rgb(3 7 18 / 0.6);
  }

  .xl\:bg-gray-950\/70 {
    background-color: rgb(3 7 18 / 0.7);
  }

  .xl\:bg-gray-950\/80 {
    background-color: rgb(3 7 18 / 0.8);
  }

  .xl\:bg-gray-950\/90 {
    background-color: rgb(3 7 18 / 0.9);
  }

  .xl\:bg-green-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-green-100\/10 {
    background-color: rgb(220 252 231 / 0.1);
  }

  .xl\:bg-green-100\/20 {
    background-color: rgb(220 252 231 / 0.2);
  }

  .xl\:bg-green-100\/30 {
    background-color: rgb(220 252 231 / 0.3);
  }

  .xl\:bg-green-100\/40 {
    background-color: rgb(220 252 231 / 0.4);
  }

  .xl\:bg-green-100\/5 {
    background-color: rgb(220 252 231 / 0.05);
  }

  .xl\:bg-green-100\/50 {
    background-color: rgb(220 252 231 / 0.5);
  }

  .xl\:bg-green-100\/60 {
    background-color: rgb(220 252 231 / 0.6);
  }

  .xl\:bg-green-100\/70 {
    background-color: rgb(220 252 231 / 0.7);
  }

  .xl\:bg-green-100\/80 {
    background-color: rgb(220 252 231 / 0.8);
  }

  .xl\:bg-green-100\/90 {
    background-color: rgb(220 252 231 / 0.9);
  }

  .xl\:bg-green-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(187 247 208 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-green-200\/10 {
    background-color: rgb(187 247 208 / 0.1);
  }

  .xl\:bg-green-200\/20 {
    background-color: rgb(187 247 208 / 0.2);
  }

  .xl\:bg-green-200\/30 {
    background-color: rgb(187 247 208 / 0.3);
  }

  .xl\:bg-green-200\/40 {
    background-color: rgb(187 247 208 / 0.4);
  }

  .xl\:bg-green-200\/5 {
    background-color: rgb(187 247 208 / 0.05);
  }

  .xl\:bg-green-200\/50 {
    background-color: rgb(187 247 208 / 0.5);
  }

  .xl\:bg-green-200\/60 {
    background-color: rgb(187 247 208 / 0.6);
  }

  .xl\:bg-green-200\/70 {
    background-color: rgb(187 247 208 / 0.7);
  }

  .xl\:bg-green-200\/80 {
    background-color: rgb(187 247 208 / 0.8);
  }

  .xl\:bg-green-200\/90 {
    background-color: rgb(187 247 208 / 0.9);
  }

  .xl\:bg-green-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(134 239 172 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-green-300\/10 {
    background-color: rgb(134 239 172 / 0.1);
  }

  .xl\:bg-green-300\/20 {
    background-color: rgb(134 239 172 / 0.2);
  }

  .xl\:bg-green-300\/30 {
    background-color: rgb(134 239 172 / 0.3);
  }

  .xl\:bg-green-300\/40 {
    background-color: rgb(134 239 172 / 0.4);
  }

  .xl\:bg-green-300\/5 {
    background-color: rgb(134 239 172 / 0.05);
  }

  .xl\:bg-green-300\/50 {
    background-color: rgb(134 239 172 / 0.5);
  }

  .xl\:bg-green-300\/60 {
    background-color: rgb(134 239 172 / 0.6);
  }

  .xl\:bg-green-300\/70 {
    background-color: rgb(134 239 172 / 0.7);
  }

  .xl\:bg-green-300\/80 {
    background-color: rgb(134 239 172 / 0.8);
  }

  .xl\:bg-green-300\/90 {
    background-color: rgb(134 239 172 / 0.9);
  }

  .xl\:bg-green-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(74 222 128 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-green-400\/10 {
    background-color: rgb(74 222 128 / 0.1);
  }

  .xl\:bg-green-400\/20 {
    background-color: rgb(74 222 128 / 0.2);
  }

  .xl\:bg-green-400\/30 {
    background-color: rgb(74 222 128 / 0.3);
  }

  .xl\:bg-green-400\/40 {
    background-color: rgb(74 222 128 / 0.4);
  }

  .xl\:bg-green-400\/5 {
    background-color: rgb(74 222 128 / 0.05);
  }

  .xl\:bg-green-400\/50 {
    background-color: rgb(74 222 128 / 0.5);
  }

  .xl\:bg-green-400\/60 {
    background-color: rgb(74 222 128 / 0.6);
  }

  .xl\:bg-green-400\/70 {
    background-color: rgb(74 222 128 / 0.7);
  }

  .xl\:bg-green-400\/80 {
    background-color: rgb(74 222 128 / 0.8);
  }

  .xl\:bg-green-400\/90 {
    background-color: rgb(74 222 128 / 0.9);
  }

  .xl\:bg-green-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-green-50\/10 {
    background-color: rgb(240 253 244 / 0.1);
  }

  .xl\:bg-green-50\/20 {
    background-color: rgb(240 253 244 / 0.2);
  }

  .xl\:bg-green-50\/30 {
    background-color: rgb(240 253 244 / 0.3);
  }

  .xl\:bg-green-50\/40 {
    background-color: rgb(240 253 244 / 0.4);
  }

  .xl\:bg-green-50\/5 {
    background-color: rgb(240 253 244 / 0.05);
  }

  .xl\:bg-green-50\/50 {
    background-color: rgb(240 253 244 / 0.5);
  }

  .xl\:bg-green-50\/60 {
    background-color: rgb(240 253 244 / 0.6);
  }

  .xl\:bg-green-50\/70 {
    background-color: rgb(240 253 244 / 0.7);
  }

  .xl\:bg-green-50\/80 {
    background-color: rgb(240 253 244 / 0.8);
  }

  .xl\:bg-green-50\/90 {
    background-color: rgb(240 253 244 / 0.9);
  }

  .xl\:bg-green-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-green-500\/10 {
    background-color: rgb(34 197 94 / 0.1);
  }

  .xl\:bg-green-500\/20 {
    background-color: rgb(34 197 94 / 0.2);
  }

  .xl\:bg-green-500\/30 {
    background-color: rgb(34 197 94 / 0.3);
  }

  .xl\:bg-green-500\/40 {
    background-color: rgb(34 197 94 / 0.4);
  }

  .xl\:bg-green-500\/5 {
    background-color: rgb(34 197 94 / 0.05);
  }

  .xl\:bg-green-500\/50 {
    background-color: rgb(34 197 94 / 0.5);
  }

  .xl\:bg-green-500\/60 {
    background-color: rgb(34 197 94 / 0.6);
  }

  .xl\:bg-green-500\/70 {
    background-color: rgb(34 197 94 / 0.7);
  }

  .xl\:bg-green-500\/80 {
    background-color: rgb(34 197 94 / 0.8);
  }

  .xl\:bg-green-500\/90 {
    background-color: rgb(34 197 94 / 0.9);
  }

  .xl\:bg-green-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-green-600\/10 {
    background-color: rgb(22 163 74 / 0.1);
  }

  .xl\:bg-green-600\/20 {
    background-color: rgb(22 163 74 / 0.2);
  }

  .xl\:bg-green-600\/30 {
    background-color: rgb(22 163 74 / 0.3);
  }

  .xl\:bg-green-600\/40 {
    background-color: rgb(22 163 74 / 0.4);
  }

  .xl\:bg-green-600\/5 {
    background-color: rgb(22 163 74 / 0.05);
  }

  .xl\:bg-green-600\/50 {
    background-color: rgb(22 163 74 / 0.5);
  }

  .xl\:bg-green-600\/60 {
    background-color: rgb(22 163 74 / 0.6);
  }

  .xl\:bg-green-600\/70 {
    background-color: rgb(22 163 74 / 0.7);
  }

  .xl\:bg-green-600\/80 {
    background-color: rgb(22 163 74 / 0.8);
  }

  .xl\:bg-green-600\/90 {
    background-color: rgb(22 163 74 / 0.9);
  }

  .xl\:bg-green-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(21 128 61 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-green-700\/10 {
    background-color: rgb(21 128 61 / 0.1);
  }

  .xl\:bg-green-700\/20 {
    background-color: rgb(21 128 61 / 0.2);
  }

  .xl\:bg-green-700\/30 {
    background-color: rgb(21 128 61 / 0.3);
  }

  .xl\:bg-green-700\/40 {
    background-color: rgb(21 128 61 / 0.4);
  }

  .xl\:bg-green-700\/5 {
    background-color: rgb(21 128 61 / 0.05);
  }

  .xl\:bg-green-700\/50 {
    background-color: rgb(21 128 61 / 0.5);
  }

  .xl\:bg-green-700\/60 {
    background-color: rgb(21 128 61 / 0.6);
  }

  .xl\:bg-green-700\/70 {
    background-color: rgb(21 128 61 / 0.7);
  }

  .xl\:bg-green-700\/80 {
    background-color: rgb(21 128 61 / 0.8);
  }

  .xl\:bg-green-700\/90 {
    background-color: rgb(21 128 61 / 0.9);
  }

  .xl\:bg-green-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(22 101 52 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-green-800\/10 {
    background-color: rgb(22 101 52 / 0.1);
  }

  .xl\:bg-green-800\/20 {
    background-color: rgb(22 101 52 / 0.2);
  }

  .xl\:bg-green-800\/30 {
    background-color: rgb(22 101 52 / 0.3);
  }

  .xl\:bg-green-800\/40 {
    background-color: rgb(22 101 52 / 0.4);
  }

  .xl\:bg-green-800\/5 {
    background-color: rgb(22 101 52 / 0.05);
  }

  .xl\:bg-green-800\/50 {
    background-color: rgb(22 101 52 / 0.5);
  }

  .xl\:bg-green-800\/60 {
    background-color: rgb(22 101 52 / 0.6);
  }

  .xl\:bg-green-800\/70 {
    background-color: rgb(22 101 52 / 0.7);
  }

  .xl\:bg-green-800\/80 {
    background-color: rgb(22 101 52 / 0.8);
  }

  .xl\:bg-green-800\/90 {
    background-color: rgb(22 101 52 / 0.9);
  }

  .xl\:bg-green-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(20 83 45 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-green-900\/10 {
    background-color: rgb(20 83 45 / 0.1);
  }

  .xl\:bg-green-900\/20 {
    background-color: rgb(20 83 45 / 0.2);
  }

  .xl\:bg-green-900\/30 {
    background-color: rgb(20 83 45 / 0.3);
  }

  .xl\:bg-green-900\/40 {
    background-color: rgb(20 83 45 / 0.4);
  }

  .xl\:bg-green-900\/5 {
    background-color: rgb(20 83 45 / 0.05);
  }

  .xl\:bg-green-900\/50 {
    background-color: rgb(20 83 45 / 0.5);
  }

  .xl\:bg-green-900\/60 {
    background-color: rgb(20 83 45 / 0.6);
  }

  .xl\:bg-green-900\/70 {
    background-color: rgb(20 83 45 / 0.7);
  }

  .xl\:bg-green-900\/80 {
    background-color: rgb(20 83 45 / 0.8);
  }

  .xl\:bg-green-900\/90 {
    background-color: rgb(20 83 45 / 0.9);
  }

  .xl\:bg-green-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(5 46 22 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-green-950\/10 {
    background-color: rgb(5 46 22 / 0.1);
  }

  .xl\:bg-green-950\/20 {
    background-color: rgb(5 46 22 / 0.2);
  }

  .xl\:bg-green-950\/30 {
    background-color: rgb(5 46 22 / 0.3);
  }

  .xl\:bg-green-950\/40 {
    background-color: rgb(5 46 22 / 0.4);
  }

  .xl\:bg-green-950\/5 {
    background-color: rgb(5 46 22 / 0.05);
  }

  .xl\:bg-green-950\/50 {
    background-color: rgb(5 46 22 / 0.5);
  }

  .xl\:bg-green-950\/60 {
    background-color: rgb(5 46 22 / 0.6);
  }

  .xl\:bg-green-950\/70 {
    background-color: rgb(5 46 22 / 0.7);
  }

  .xl\:bg-green-950\/80 {
    background-color: rgb(5 46 22 / 0.8);
  }

  .xl\:bg-green-950\/90 {
    background-color: rgb(5 46 22 / 0.9);
  }

  .xl\:bg-indigo-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(224 231 255 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-indigo-100\/10 {
    background-color: rgb(224 231 255 / 0.1);
  }

  .xl\:bg-indigo-100\/20 {
    background-color: rgb(224 231 255 / 0.2);
  }

  .xl\:bg-indigo-100\/30 {
    background-color: rgb(224 231 255 / 0.3);
  }

  .xl\:bg-indigo-100\/40 {
    background-color: rgb(224 231 255 / 0.4);
  }

  .xl\:bg-indigo-100\/5 {
    background-color: rgb(224 231 255 / 0.05);
  }

  .xl\:bg-indigo-100\/50 {
    background-color: rgb(224 231 255 / 0.5);
  }

  .xl\:bg-indigo-100\/60 {
    background-color: rgb(224 231 255 / 0.6);
  }

  .xl\:bg-indigo-100\/70 {
    background-color: rgb(224 231 255 / 0.7);
  }

  .xl\:bg-indigo-100\/80 {
    background-color: rgb(224 231 255 / 0.8);
  }

  .xl\:bg-indigo-100\/90 {
    background-color: rgb(224 231 255 / 0.9);
  }

  .xl\:bg-indigo-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(199 210 254 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-indigo-200\/10 {
    background-color: rgb(199 210 254 / 0.1);
  }

  .xl\:bg-indigo-200\/20 {
    background-color: rgb(199 210 254 / 0.2);
  }

  .xl\:bg-indigo-200\/30 {
    background-color: rgb(199 210 254 / 0.3);
  }

  .xl\:bg-indigo-200\/40 {
    background-color: rgb(199 210 254 / 0.4);
  }

  .xl\:bg-indigo-200\/5 {
    background-color: rgb(199 210 254 / 0.05);
  }

  .xl\:bg-indigo-200\/50 {
    background-color: rgb(199 210 254 / 0.5);
  }

  .xl\:bg-indigo-200\/60 {
    background-color: rgb(199 210 254 / 0.6);
  }

  .xl\:bg-indigo-200\/70 {
    background-color: rgb(199 210 254 / 0.7);
  }

  .xl\:bg-indigo-200\/80 {
    background-color: rgb(199 210 254 / 0.8);
  }

  .xl\:bg-indigo-200\/90 {
    background-color: rgb(199 210 254 / 0.9);
  }

  .xl\:bg-indigo-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(165 180 252 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-indigo-300\/10 {
    background-color: rgb(165 180 252 / 0.1);
  }

  .xl\:bg-indigo-300\/20 {
    background-color: rgb(165 180 252 / 0.2);
  }

  .xl\:bg-indigo-300\/30 {
    background-color: rgb(165 180 252 / 0.3);
  }

  .xl\:bg-indigo-300\/40 {
    background-color: rgb(165 180 252 / 0.4);
  }

  .xl\:bg-indigo-300\/5 {
    background-color: rgb(165 180 252 / 0.05);
  }

  .xl\:bg-indigo-300\/50 {
    background-color: rgb(165 180 252 / 0.5);
  }

  .xl\:bg-indigo-300\/60 {
    background-color: rgb(165 180 252 / 0.6);
  }

  .xl\:bg-indigo-300\/70 {
    background-color: rgb(165 180 252 / 0.7);
  }

  .xl\:bg-indigo-300\/80 {
    background-color: rgb(165 180 252 / 0.8);
  }

  .xl\:bg-indigo-300\/90 {
    background-color: rgb(165 180 252 / 0.9);
  }

  .xl\:bg-indigo-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(129 140 248 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-indigo-400\/10 {
    background-color: rgb(129 140 248 / 0.1);
  }

  .xl\:bg-indigo-400\/20 {
    background-color: rgb(129 140 248 / 0.2);
  }

  .xl\:bg-indigo-400\/30 {
    background-color: rgb(129 140 248 / 0.3);
  }

  .xl\:bg-indigo-400\/40 {
    background-color: rgb(129 140 248 / 0.4);
  }

  .xl\:bg-indigo-400\/5 {
    background-color: rgb(129 140 248 / 0.05);
  }

  .xl\:bg-indigo-400\/50 {
    background-color: rgb(129 140 248 / 0.5);
  }

  .xl\:bg-indigo-400\/60 {
    background-color: rgb(129 140 248 / 0.6);
  }

  .xl\:bg-indigo-400\/70 {
    background-color: rgb(129 140 248 / 0.7);
  }

  .xl\:bg-indigo-400\/80 {
    background-color: rgb(129 140 248 / 0.8);
  }

  .xl\:bg-indigo-400\/90 {
    background-color: rgb(129 140 248 / 0.9);
  }

  .xl\:bg-indigo-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(238 242 255 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-indigo-50\/10 {
    background-color: rgb(238 242 255 / 0.1);
  }

  .xl\:bg-indigo-50\/20 {
    background-color: rgb(238 242 255 / 0.2);
  }

  .xl\:bg-indigo-50\/30 {
    background-color: rgb(238 242 255 / 0.3);
  }

  .xl\:bg-indigo-50\/40 {
    background-color: rgb(238 242 255 / 0.4);
  }

  .xl\:bg-indigo-50\/5 {
    background-color: rgb(238 242 255 / 0.05);
  }

  .xl\:bg-indigo-50\/50 {
    background-color: rgb(238 242 255 / 0.5);
  }

  .xl\:bg-indigo-50\/60 {
    background-color: rgb(238 242 255 / 0.6);
  }

  .xl\:bg-indigo-50\/70 {
    background-color: rgb(238 242 255 / 0.7);
  }

  .xl\:bg-indigo-50\/80 {
    background-color: rgb(238 242 255 / 0.8);
  }

  .xl\:bg-indigo-50\/90 {
    background-color: rgb(238 242 255 / 0.9);
  }

  .xl\:bg-indigo-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(99 102 241 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-indigo-500\/10 {
    background-color: rgb(99 102 241 / 0.1);
  }

  .xl\:bg-indigo-500\/20 {
    background-color: rgb(99 102 241 / 0.2);
  }

  .xl\:bg-indigo-500\/30 {
    background-color: rgb(99 102 241 / 0.3);
  }

  .xl\:bg-indigo-500\/40 {
    background-color: rgb(99 102 241 / 0.4);
  }

  .xl\:bg-indigo-500\/5 {
    background-color: rgb(99 102 241 / 0.05);
  }

  .xl\:bg-indigo-500\/50 {
    background-color: rgb(99 102 241 / 0.5);
  }

  .xl\:bg-indigo-500\/60 {
    background-color: rgb(99 102 241 / 0.6);
  }

  .xl\:bg-indigo-500\/70 {
    background-color: rgb(99 102 241 / 0.7);
  }

  .xl\:bg-indigo-500\/80 {
    background-color: rgb(99 102 241 / 0.8);
  }

  .xl\:bg-indigo-500\/90 {
    background-color: rgb(99 102 241 / 0.9);
  }

  .xl\:bg-indigo-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(79 70 229 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-indigo-600\/10 {
    background-color: rgb(79 70 229 / 0.1);
  }

  .xl\:bg-indigo-600\/20 {
    background-color: rgb(79 70 229 / 0.2);
  }

  .xl\:bg-indigo-600\/30 {
    background-color: rgb(79 70 229 / 0.3);
  }

  .xl\:bg-indigo-600\/40 {
    background-color: rgb(79 70 229 / 0.4);
  }

  .xl\:bg-indigo-600\/5 {
    background-color: rgb(79 70 229 / 0.05);
  }

  .xl\:bg-indigo-600\/50 {
    background-color: rgb(79 70 229 / 0.5);
  }

  .xl\:bg-indigo-600\/60 {
    background-color: rgb(79 70 229 / 0.6);
  }

  .xl\:bg-indigo-600\/70 {
    background-color: rgb(79 70 229 / 0.7);
  }

  .xl\:bg-indigo-600\/80 {
    background-color: rgb(79 70 229 / 0.8);
  }

  .xl\:bg-indigo-600\/90 {
    background-color: rgb(79 70 229 / 0.9);
  }

  .xl\:bg-indigo-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(67 56 202 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-indigo-700\/10 {
    background-color: rgb(67 56 202 / 0.1);
  }

  .xl\:bg-indigo-700\/20 {
    background-color: rgb(67 56 202 / 0.2);
  }

  .xl\:bg-indigo-700\/30 {
    background-color: rgb(67 56 202 / 0.3);
  }

  .xl\:bg-indigo-700\/40 {
    background-color: rgb(67 56 202 / 0.4);
  }

  .xl\:bg-indigo-700\/5 {
    background-color: rgb(67 56 202 / 0.05);
  }

  .xl\:bg-indigo-700\/50 {
    background-color: rgb(67 56 202 / 0.5);
  }

  .xl\:bg-indigo-700\/60 {
    background-color: rgb(67 56 202 / 0.6);
  }

  .xl\:bg-indigo-700\/70 {
    background-color: rgb(67 56 202 / 0.7);
  }

  .xl\:bg-indigo-700\/80 {
    background-color: rgb(67 56 202 / 0.8);
  }

  .xl\:bg-indigo-700\/90 {
    background-color: rgb(67 56 202 / 0.9);
  }

  .xl\:bg-indigo-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(55 48 163 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-indigo-800\/10 {
    background-color: rgb(55 48 163 / 0.1);
  }

  .xl\:bg-indigo-800\/20 {
    background-color: rgb(55 48 163 / 0.2);
  }

  .xl\:bg-indigo-800\/30 {
    background-color: rgb(55 48 163 / 0.3);
  }

  .xl\:bg-indigo-800\/40 {
    background-color: rgb(55 48 163 / 0.4);
  }

  .xl\:bg-indigo-800\/5 {
    background-color: rgb(55 48 163 / 0.05);
  }

  .xl\:bg-indigo-800\/50 {
    background-color: rgb(55 48 163 / 0.5);
  }

  .xl\:bg-indigo-800\/60 {
    background-color: rgb(55 48 163 / 0.6);
  }

  .xl\:bg-indigo-800\/70 {
    background-color: rgb(55 48 163 / 0.7);
  }

  .xl\:bg-indigo-800\/80 {
    background-color: rgb(55 48 163 / 0.8);
  }

  .xl\:bg-indigo-800\/90 {
    background-color: rgb(55 48 163 / 0.9);
  }

  .xl\:bg-indigo-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(49 46 129 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-indigo-900\/10 {
    background-color: rgb(49 46 129 / 0.1);
  }

  .xl\:bg-indigo-900\/20 {
    background-color: rgb(49 46 129 / 0.2);
  }

  .xl\:bg-indigo-900\/30 {
    background-color: rgb(49 46 129 / 0.3);
  }

  .xl\:bg-indigo-900\/40 {
    background-color: rgb(49 46 129 / 0.4);
  }

  .xl\:bg-indigo-900\/5 {
    background-color: rgb(49 46 129 / 0.05);
  }

  .xl\:bg-indigo-900\/50 {
    background-color: rgb(49 46 129 / 0.5);
  }

  .xl\:bg-indigo-900\/60 {
    background-color: rgb(49 46 129 / 0.6);
  }

  .xl\:bg-indigo-900\/70 {
    background-color: rgb(49 46 129 / 0.7);
  }

  .xl\:bg-indigo-900\/80 {
    background-color: rgb(49 46 129 / 0.8);
  }

  .xl\:bg-indigo-900\/90 {
    background-color: rgb(49 46 129 / 0.9);
  }

  .xl\:bg-indigo-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(30 27 75 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-indigo-950\/10 {
    background-color: rgb(30 27 75 / 0.1);
  }

  .xl\:bg-indigo-950\/20 {
    background-color: rgb(30 27 75 / 0.2);
  }

  .xl\:bg-indigo-950\/30 {
    background-color: rgb(30 27 75 / 0.3);
  }

  .xl\:bg-indigo-950\/40 {
    background-color: rgb(30 27 75 / 0.4);
  }

  .xl\:bg-indigo-950\/5 {
    background-color: rgb(30 27 75 / 0.05);
  }

  .xl\:bg-indigo-950\/50 {
    background-color: rgb(30 27 75 / 0.5);
  }

  .xl\:bg-indigo-950\/60 {
    background-color: rgb(30 27 75 / 0.6);
  }

  .xl\:bg-indigo-950\/70 {
    background-color: rgb(30 27 75 / 0.7);
  }

  .xl\:bg-indigo-950\/80 {
    background-color: rgb(30 27 75 / 0.8);
  }

  .xl\:bg-indigo-950\/90 {
    background-color: rgb(30 27 75 / 0.9);
  }

  .xl\:bg-lime-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(236 252 203 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-lime-100\/10 {
    background-color: rgb(236 252 203 / 0.1);
  }

  .xl\:bg-lime-100\/20 {
    background-color: rgb(236 252 203 / 0.2);
  }

  .xl\:bg-lime-100\/30 {
    background-color: rgb(236 252 203 / 0.3);
  }

  .xl\:bg-lime-100\/40 {
    background-color: rgb(236 252 203 / 0.4);
  }

  .xl\:bg-lime-100\/5 {
    background-color: rgb(236 252 203 / 0.05);
  }

  .xl\:bg-lime-100\/50 {
    background-color: rgb(236 252 203 / 0.5);
  }

  .xl\:bg-lime-100\/60 {
    background-color: rgb(236 252 203 / 0.6);
  }

  .xl\:bg-lime-100\/70 {
    background-color: rgb(236 252 203 / 0.7);
  }

  .xl\:bg-lime-100\/80 {
    background-color: rgb(236 252 203 / 0.8);
  }

  .xl\:bg-lime-100\/90 {
    background-color: rgb(236 252 203 / 0.9);
  }

  .xl\:bg-lime-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(217 249 157 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-lime-200\/10 {
    background-color: rgb(217 249 157 / 0.1);
  }

  .xl\:bg-lime-200\/20 {
    background-color: rgb(217 249 157 / 0.2);
  }

  .xl\:bg-lime-200\/30 {
    background-color: rgb(217 249 157 / 0.3);
  }

  .xl\:bg-lime-200\/40 {
    background-color: rgb(217 249 157 / 0.4);
  }

  .xl\:bg-lime-200\/5 {
    background-color: rgb(217 249 157 / 0.05);
  }

  .xl\:bg-lime-200\/50 {
    background-color: rgb(217 249 157 / 0.5);
  }

  .xl\:bg-lime-200\/60 {
    background-color: rgb(217 249 157 / 0.6);
  }

  .xl\:bg-lime-200\/70 {
    background-color: rgb(217 249 157 / 0.7);
  }

  .xl\:bg-lime-200\/80 {
    background-color: rgb(217 249 157 / 0.8);
  }

  .xl\:bg-lime-200\/90 {
    background-color: rgb(217 249 157 / 0.9);
  }

  .xl\:bg-lime-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(190 242 100 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-lime-300\/10 {
    background-color: rgb(190 242 100 / 0.1);
  }

  .xl\:bg-lime-300\/20 {
    background-color: rgb(190 242 100 / 0.2);
  }

  .xl\:bg-lime-300\/30 {
    background-color: rgb(190 242 100 / 0.3);
  }

  .xl\:bg-lime-300\/40 {
    background-color: rgb(190 242 100 / 0.4);
  }

  .xl\:bg-lime-300\/5 {
    background-color: rgb(190 242 100 / 0.05);
  }

  .xl\:bg-lime-300\/50 {
    background-color: rgb(190 242 100 / 0.5);
  }

  .xl\:bg-lime-300\/60 {
    background-color: rgb(190 242 100 / 0.6);
  }

  .xl\:bg-lime-300\/70 {
    background-color: rgb(190 242 100 / 0.7);
  }

  .xl\:bg-lime-300\/80 {
    background-color: rgb(190 242 100 / 0.8);
  }

  .xl\:bg-lime-300\/90 {
    background-color: rgb(190 242 100 / 0.9);
  }

  .xl\:bg-lime-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(163 230 53 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-lime-400\/10 {
    background-color: rgb(163 230 53 / 0.1);
  }

  .xl\:bg-lime-400\/20 {
    background-color: rgb(163 230 53 / 0.2);
  }

  .xl\:bg-lime-400\/30 {
    background-color: rgb(163 230 53 / 0.3);
  }

  .xl\:bg-lime-400\/40 {
    background-color: rgb(163 230 53 / 0.4);
  }

  .xl\:bg-lime-400\/5 {
    background-color: rgb(163 230 53 / 0.05);
  }

  .xl\:bg-lime-400\/50 {
    background-color: rgb(163 230 53 / 0.5);
  }

  .xl\:bg-lime-400\/60 {
    background-color: rgb(163 230 53 / 0.6);
  }

  .xl\:bg-lime-400\/70 {
    background-color: rgb(163 230 53 / 0.7);
  }

  .xl\:bg-lime-400\/80 {
    background-color: rgb(163 230 53 / 0.8);
  }

  .xl\:bg-lime-400\/90 {
    background-color: rgb(163 230 53 / 0.9);
  }

  .xl\:bg-lime-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(247 254 231 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-lime-50\/10 {
    background-color: rgb(247 254 231 / 0.1);
  }

  .xl\:bg-lime-50\/20 {
    background-color: rgb(247 254 231 / 0.2);
  }

  .xl\:bg-lime-50\/30 {
    background-color: rgb(247 254 231 / 0.3);
  }

  .xl\:bg-lime-50\/40 {
    background-color: rgb(247 254 231 / 0.4);
  }

  .xl\:bg-lime-50\/5 {
    background-color: rgb(247 254 231 / 0.05);
  }

  .xl\:bg-lime-50\/50 {
    background-color: rgb(247 254 231 / 0.5);
  }

  .xl\:bg-lime-50\/60 {
    background-color: rgb(247 254 231 / 0.6);
  }

  .xl\:bg-lime-50\/70 {
    background-color: rgb(247 254 231 / 0.7);
  }

  .xl\:bg-lime-50\/80 {
    background-color: rgb(247 254 231 / 0.8);
  }

  .xl\:bg-lime-50\/90 {
    background-color: rgb(247 254 231 / 0.9);
  }

  .xl\:bg-lime-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(132 204 22 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-lime-500\/10 {
    background-color: rgb(132 204 22 / 0.1);
  }

  .xl\:bg-lime-500\/20 {
    background-color: rgb(132 204 22 / 0.2);
  }

  .xl\:bg-lime-500\/30 {
    background-color: rgb(132 204 22 / 0.3);
  }

  .xl\:bg-lime-500\/40 {
    background-color: rgb(132 204 22 / 0.4);
  }

  .xl\:bg-lime-500\/5 {
    background-color: rgb(132 204 22 / 0.05);
  }

  .xl\:bg-lime-500\/50 {
    background-color: rgb(132 204 22 / 0.5);
  }

  .xl\:bg-lime-500\/60 {
    background-color: rgb(132 204 22 / 0.6);
  }

  .xl\:bg-lime-500\/70 {
    background-color: rgb(132 204 22 / 0.7);
  }

  .xl\:bg-lime-500\/80 {
    background-color: rgb(132 204 22 / 0.8);
  }

  .xl\:bg-lime-500\/90 {
    background-color: rgb(132 204 22 / 0.9);
  }

  .xl\:bg-lime-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(101 163 13 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-lime-600\/10 {
    background-color: rgb(101 163 13 / 0.1);
  }

  .xl\:bg-lime-600\/20 {
    background-color: rgb(101 163 13 / 0.2);
  }

  .xl\:bg-lime-600\/30 {
    background-color: rgb(101 163 13 / 0.3);
  }

  .xl\:bg-lime-600\/40 {
    background-color: rgb(101 163 13 / 0.4);
  }

  .xl\:bg-lime-600\/5 {
    background-color: rgb(101 163 13 / 0.05);
  }

  .xl\:bg-lime-600\/50 {
    background-color: rgb(101 163 13 / 0.5);
  }

  .xl\:bg-lime-600\/60 {
    background-color: rgb(101 163 13 / 0.6);
  }

  .xl\:bg-lime-600\/70 {
    background-color: rgb(101 163 13 / 0.7);
  }

  .xl\:bg-lime-600\/80 {
    background-color: rgb(101 163 13 / 0.8);
  }

  .xl\:bg-lime-600\/90 {
    background-color: rgb(101 163 13 / 0.9);
  }

  .xl\:bg-lime-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(77 124 15 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-lime-700\/10 {
    background-color: rgb(77 124 15 / 0.1);
  }

  .xl\:bg-lime-700\/20 {
    background-color: rgb(77 124 15 / 0.2);
  }

  .xl\:bg-lime-700\/30 {
    background-color: rgb(77 124 15 / 0.3);
  }

  .xl\:bg-lime-700\/40 {
    background-color: rgb(77 124 15 / 0.4);
  }

  .xl\:bg-lime-700\/5 {
    background-color: rgb(77 124 15 / 0.05);
  }

  .xl\:bg-lime-700\/50 {
    background-color: rgb(77 124 15 / 0.5);
  }

  .xl\:bg-lime-700\/60 {
    background-color: rgb(77 124 15 / 0.6);
  }

  .xl\:bg-lime-700\/70 {
    background-color: rgb(77 124 15 / 0.7);
  }

  .xl\:bg-lime-700\/80 {
    background-color: rgb(77 124 15 / 0.8);
  }

  .xl\:bg-lime-700\/90 {
    background-color: rgb(77 124 15 / 0.9);
  }

  .xl\:bg-lime-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(63 98 18 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-lime-800\/10 {
    background-color: rgb(63 98 18 / 0.1);
  }

  .xl\:bg-lime-800\/20 {
    background-color: rgb(63 98 18 / 0.2);
  }

  .xl\:bg-lime-800\/30 {
    background-color: rgb(63 98 18 / 0.3);
  }

  .xl\:bg-lime-800\/40 {
    background-color: rgb(63 98 18 / 0.4);
  }

  .xl\:bg-lime-800\/5 {
    background-color: rgb(63 98 18 / 0.05);
  }

  .xl\:bg-lime-800\/50 {
    background-color: rgb(63 98 18 / 0.5);
  }

  .xl\:bg-lime-800\/60 {
    background-color: rgb(63 98 18 / 0.6);
  }

  .xl\:bg-lime-800\/70 {
    background-color: rgb(63 98 18 / 0.7);
  }

  .xl\:bg-lime-800\/80 {
    background-color: rgb(63 98 18 / 0.8);
  }

  .xl\:bg-lime-800\/90 {
    background-color: rgb(63 98 18 / 0.9);
  }

  .xl\:bg-lime-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(54 83 20 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-lime-900\/10 {
    background-color: rgb(54 83 20 / 0.1);
  }

  .xl\:bg-lime-900\/20 {
    background-color: rgb(54 83 20 / 0.2);
  }

  .xl\:bg-lime-900\/30 {
    background-color: rgb(54 83 20 / 0.3);
  }

  .xl\:bg-lime-900\/40 {
    background-color: rgb(54 83 20 / 0.4);
  }

  .xl\:bg-lime-900\/5 {
    background-color: rgb(54 83 20 / 0.05);
  }

  .xl\:bg-lime-900\/50 {
    background-color: rgb(54 83 20 / 0.5);
  }

  .xl\:bg-lime-900\/60 {
    background-color: rgb(54 83 20 / 0.6);
  }

  .xl\:bg-lime-900\/70 {
    background-color: rgb(54 83 20 / 0.7);
  }

  .xl\:bg-lime-900\/80 {
    background-color: rgb(54 83 20 / 0.8);
  }

  .xl\:bg-lime-900\/90 {
    background-color: rgb(54 83 20 / 0.9);
  }

  .xl\:bg-lime-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(26 46 5 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-lime-950\/10 {
    background-color: rgb(26 46 5 / 0.1);
  }

  .xl\:bg-lime-950\/20 {
    background-color: rgb(26 46 5 / 0.2);
  }

  .xl\:bg-lime-950\/30 {
    background-color: rgb(26 46 5 / 0.3);
  }

  .xl\:bg-lime-950\/40 {
    background-color: rgb(26 46 5 / 0.4);
  }

  .xl\:bg-lime-950\/5 {
    background-color: rgb(26 46 5 / 0.05);
  }

  .xl\:bg-lime-950\/50 {
    background-color: rgb(26 46 5 / 0.5);
  }

  .xl\:bg-lime-950\/60 {
    background-color: rgb(26 46 5 / 0.6);
  }

  .xl\:bg-lime-950\/70 {
    background-color: rgb(26 46 5 / 0.7);
  }

  .xl\:bg-lime-950\/80 {
    background-color: rgb(26 46 5 / 0.8);
  }

  .xl\:bg-lime-950\/90 {
    background-color: rgb(26 46 5 / 0.9);
  }

  .xl\:bg-neutral-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(245 245 245 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-neutral-100\/10 {
    background-color: rgb(245 245 245 / 0.1);
  }

  .xl\:bg-neutral-100\/20 {
    background-color: rgb(245 245 245 / 0.2);
  }

  .xl\:bg-neutral-100\/30 {
    background-color: rgb(245 245 245 / 0.3);
  }

  .xl\:bg-neutral-100\/40 {
    background-color: rgb(245 245 245 / 0.4);
  }

  .xl\:bg-neutral-100\/5 {
    background-color: rgb(245 245 245 / 0.05);
  }

  .xl\:bg-neutral-100\/50 {
    background-color: rgb(245 245 245 / 0.5);
  }

  .xl\:bg-neutral-100\/60 {
    background-color: rgb(245 245 245 / 0.6);
  }

  .xl\:bg-neutral-100\/70 {
    background-color: rgb(245 245 245 / 0.7);
  }

  .xl\:bg-neutral-100\/80 {
    background-color: rgb(245 245 245 / 0.8);
  }

  .xl\:bg-neutral-100\/90 {
    background-color: rgb(245 245 245 / 0.9);
  }

  .xl\:bg-neutral-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(229 229 229 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-neutral-200\/10 {
    background-color: rgb(229 229 229 / 0.1);
  }

  .xl\:bg-neutral-200\/20 {
    background-color: rgb(229 229 229 / 0.2);
  }

  .xl\:bg-neutral-200\/30 {
    background-color: rgb(229 229 229 / 0.3);
  }

  .xl\:bg-neutral-200\/40 {
    background-color: rgb(229 229 229 / 0.4);
  }

  .xl\:bg-neutral-200\/5 {
    background-color: rgb(229 229 229 / 0.05);
  }

  .xl\:bg-neutral-200\/50 {
    background-color: rgb(229 229 229 / 0.5);
  }

  .xl\:bg-neutral-200\/60 {
    background-color: rgb(229 229 229 / 0.6);
  }

  .xl\:bg-neutral-200\/70 {
    background-color: rgb(229 229 229 / 0.7);
  }

  .xl\:bg-neutral-200\/80 {
    background-color: rgb(229 229 229 / 0.8);
  }

  .xl\:bg-neutral-200\/90 {
    background-color: rgb(229 229 229 / 0.9);
  }

  .xl\:bg-neutral-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(212 212 212 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-neutral-300\/10 {
    background-color: rgb(212 212 212 / 0.1);
  }

  .xl\:bg-neutral-300\/20 {
    background-color: rgb(212 212 212 / 0.2);
  }

  .xl\:bg-neutral-300\/30 {
    background-color: rgb(212 212 212 / 0.3);
  }

  .xl\:bg-neutral-300\/40 {
    background-color: rgb(212 212 212 / 0.4);
  }

  .xl\:bg-neutral-300\/5 {
    background-color: rgb(212 212 212 / 0.05);
  }

  .xl\:bg-neutral-300\/50 {
    background-color: rgb(212 212 212 / 0.5);
  }

  .xl\:bg-neutral-300\/60 {
    background-color: rgb(212 212 212 / 0.6);
  }

  .xl\:bg-neutral-300\/70 {
    background-color: rgb(212 212 212 / 0.7);
  }

  .xl\:bg-neutral-300\/80 {
    background-color: rgb(212 212 212 / 0.8);
  }

  .xl\:bg-neutral-300\/90 {
    background-color: rgb(212 212 212 / 0.9);
  }

  .xl\:bg-neutral-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(163 163 163 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-neutral-400\/10 {
    background-color: rgb(163 163 163 / 0.1);
  }

  .xl\:bg-neutral-400\/20 {
    background-color: rgb(163 163 163 / 0.2);
  }

  .xl\:bg-neutral-400\/30 {
    background-color: rgb(163 163 163 / 0.3);
  }

  .xl\:bg-neutral-400\/40 {
    background-color: rgb(163 163 163 / 0.4);
  }

  .xl\:bg-neutral-400\/5 {
    background-color: rgb(163 163 163 / 0.05);
  }

  .xl\:bg-neutral-400\/50 {
    background-color: rgb(163 163 163 / 0.5);
  }

  .xl\:bg-neutral-400\/60 {
    background-color: rgb(163 163 163 / 0.6);
  }

  .xl\:bg-neutral-400\/70 {
    background-color: rgb(163 163 163 / 0.7);
  }

  .xl\:bg-neutral-400\/80 {
    background-color: rgb(163 163 163 / 0.8);
  }

  .xl\:bg-neutral-400\/90 {
    background-color: rgb(163 163 163 / 0.9);
  }

  .xl\:bg-neutral-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-neutral-50\/10 {
    background-color: rgb(250 250 250 / 0.1);
  }

  .xl\:bg-neutral-50\/20 {
    background-color: rgb(250 250 250 / 0.2);
  }

  .xl\:bg-neutral-50\/30 {
    background-color: rgb(250 250 250 / 0.3);
  }

  .xl\:bg-neutral-50\/40 {
    background-color: rgb(250 250 250 / 0.4);
  }

  .xl\:bg-neutral-50\/5 {
    background-color: rgb(250 250 250 / 0.05);
  }

  .xl\:bg-neutral-50\/50 {
    background-color: rgb(250 250 250 / 0.5);
  }

  .xl\:bg-neutral-50\/60 {
    background-color: rgb(250 250 250 / 0.6);
  }

  .xl\:bg-neutral-50\/70 {
    background-color: rgb(250 250 250 / 0.7);
  }

  .xl\:bg-neutral-50\/80 {
    background-color: rgb(250 250 250 / 0.8);
  }

  .xl\:bg-neutral-50\/90 {
    background-color: rgb(250 250 250 / 0.9);
  }

  .xl\:bg-neutral-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(115 115 115 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-neutral-500\/10 {
    background-color: rgb(115 115 115 / 0.1);
  }

  .xl\:bg-neutral-500\/20 {
    background-color: rgb(115 115 115 / 0.2);
  }

  .xl\:bg-neutral-500\/30 {
    background-color: rgb(115 115 115 / 0.3);
  }

  .xl\:bg-neutral-500\/40 {
    background-color: rgb(115 115 115 / 0.4);
  }

  .xl\:bg-neutral-500\/5 {
    background-color: rgb(115 115 115 / 0.05);
  }

  .xl\:bg-neutral-500\/50 {
    background-color: rgb(115 115 115 / 0.5);
  }

  .xl\:bg-neutral-500\/60 {
    background-color: rgb(115 115 115 / 0.6);
  }

  .xl\:bg-neutral-500\/70 {
    background-color: rgb(115 115 115 / 0.7);
  }

  .xl\:bg-neutral-500\/80 {
    background-color: rgb(115 115 115 / 0.8);
  }

  .xl\:bg-neutral-500\/90 {
    background-color: rgb(115 115 115 / 0.9);
  }

  .xl\:bg-neutral-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(82 82 82 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-neutral-600\/10 {
    background-color: rgb(82 82 82 / 0.1);
  }

  .xl\:bg-neutral-600\/20 {
    background-color: rgb(82 82 82 / 0.2);
  }

  .xl\:bg-neutral-600\/30 {
    background-color: rgb(82 82 82 / 0.3);
  }

  .xl\:bg-neutral-600\/40 {
    background-color: rgb(82 82 82 / 0.4);
  }

  .xl\:bg-neutral-600\/5 {
    background-color: rgb(82 82 82 / 0.05);
  }

  .xl\:bg-neutral-600\/50 {
    background-color: rgb(82 82 82 / 0.5);
  }

  .xl\:bg-neutral-600\/60 {
    background-color: rgb(82 82 82 / 0.6);
  }

  .xl\:bg-neutral-600\/70 {
    background-color: rgb(82 82 82 / 0.7);
  }

  .xl\:bg-neutral-600\/80 {
    background-color: rgb(82 82 82 / 0.8);
  }

  .xl\:bg-neutral-600\/90 {
    background-color: rgb(82 82 82 / 0.9);
  }

  .xl\:bg-neutral-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(64 64 64 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-neutral-700\/10 {
    background-color: rgb(64 64 64 / 0.1);
  }

  .xl\:bg-neutral-700\/20 {
    background-color: rgb(64 64 64 / 0.2);
  }

  .xl\:bg-neutral-700\/30 {
    background-color: rgb(64 64 64 / 0.3);
  }

  .xl\:bg-neutral-700\/40 {
    background-color: rgb(64 64 64 / 0.4);
  }

  .xl\:bg-neutral-700\/5 {
    background-color: rgb(64 64 64 / 0.05);
  }

  .xl\:bg-neutral-700\/50 {
    background-color: rgb(64 64 64 / 0.5);
  }

  .xl\:bg-neutral-700\/60 {
    background-color: rgb(64 64 64 / 0.6);
  }

  .xl\:bg-neutral-700\/70 {
    background-color: rgb(64 64 64 / 0.7);
  }

  .xl\:bg-neutral-700\/80 {
    background-color: rgb(64 64 64 / 0.8);
  }

  .xl\:bg-neutral-700\/90 {
    background-color: rgb(64 64 64 / 0.9);
  }

  .xl\:bg-neutral-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(38 38 38 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-neutral-800\/10 {
    background-color: rgb(38 38 38 / 0.1);
  }

  .xl\:bg-neutral-800\/20 {
    background-color: rgb(38 38 38 / 0.2);
  }

  .xl\:bg-neutral-800\/30 {
    background-color: rgb(38 38 38 / 0.3);
  }

  .xl\:bg-neutral-800\/40 {
    background-color: rgb(38 38 38 / 0.4);
  }

  .xl\:bg-neutral-800\/5 {
    background-color: rgb(38 38 38 / 0.05);
  }

  .xl\:bg-neutral-800\/50 {
    background-color: rgb(38 38 38 / 0.5);
  }

  .xl\:bg-neutral-800\/60 {
    background-color: rgb(38 38 38 / 0.6);
  }

  .xl\:bg-neutral-800\/70 {
    background-color: rgb(38 38 38 / 0.7);
  }

  .xl\:bg-neutral-800\/80 {
    background-color: rgb(38 38 38 / 0.8);
  }

  .xl\:bg-neutral-800\/90 {
    background-color: rgb(38 38 38 / 0.9);
  }

  .xl\:bg-neutral-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(23 23 23 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-neutral-900\/10 {
    background-color: rgb(23 23 23 / 0.1);
  }

  .xl\:bg-neutral-900\/20 {
    background-color: rgb(23 23 23 / 0.2);
  }

  .xl\:bg-neutral-900\/30 {
    background-color: rgb(23 23 23 / 0.3);
  }

  .xl\:bg-neutral-900\/40 {
    background-color: rgb(23 23 23 / 0.4);
  }

  .xl\:bg-neutral-900\/5 {
    background-color: rgb(23 23 23 / 0.05);
  }

  .xl\:bg-neutral-900\/50 {
    background-color: rgb(23 23 23 / 0.5);
  }

  .xl\:bg-neutral-900\/60 {
    background-color: rgb(23 23 23 / 0.6);
  }

  .xl\:bg-neutral-900\/70 {
    background-color: rgb(23 23 23 / 0.7);
  }

  .xl\:bg-neutral-900\/80 {
    background-color: rgb(23 23 23 / 0.8);
  }

  .xl\:bg-neutral-900\/90 {
    background-color: rgb(23 23 23 / 0.9);
  }

  .xl\:bg-neutral-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(10 10 10 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-neutral-950\/10 {
    background-color: rgb(10 10 10 / 0.1);
  }

  .xl\:bg-neutral-950\/20 {
    background-color: rgb(10 10 10 / 0.2);
  }

  .xl\:bg-neutral-950\/30 {
    background-color: rgb(10 10 10 / 0.3);
  }

  .xl\:bg-neutral-950\/40 {
    background-color: rgb(10 10 10 / 0.4);
  }

  .xl\:bg-neutral-950\/5 {
    background-color: rgb(10 10 10 / 0.05);
  }

  .xl\:bg-neutral-950\/50 {
    background-color: rgb(10 10 10 / 0.5);
  }

  .xl\:bg-neutral-950\/60 {
    background-color: rgb(10 10 10 / 0.6);
  }

  .xl\:bg-neutral-950\/70 {
    background-color: rgb(10 10 10 / 0.7);
  }

  .xl\:bg-neutral-950\/80 {
    background-color: rgb(10 10 10 / 0.8);
  }

  .xl\:bg-neutral-950\/90 {
    background-color: rgb(10 10 10 / 0.9);
  }

  .xl\:bg-orange-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 237 213 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-orange-100\/10 {
    background-color: rgb(255 237 213 / 0.1);
  }

  .xl\:bg-orange-100\/20 {
    background-color: rgb(255 237 213 / 0.2);
  }

  .xl\:bg-orange-100\/30 {
    background-color: rgb(255 237 213 / 0.3);
  }

  .xl\:bg-orange-100\/40 {
    background-color: rgb(255 237 213 / 0.4);
  }

  .xl\:bg-orange-100\/5 {
    background-color: rgb(255 237 213 / 0.05);
  }

  .xl\:bg-orange-100\/50 {
    background-color: rgb(255 237 213 / 0.5);
  }

  .xl\:bg-orange-100\/60 {
    background-color: rgb(255 237 213 / 0.6);
  }

  .xl\:bg-orange-100\/70 {
    background-color: rgb(255 237 213 / 0.7);
  }

  .xl\:bg-orange-100\/80 {
    background-color: rgb(255 237 213 / 0.8);
  }

  .xl\:bg-orange-100\/90 {
    background-color: rgb(255 237 213 / 0.9);
  }

  .xl\:bg-orange-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 215 170 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-orange-200\/10 {
    background-color: rgb(254 215 170 / 0.1);
  }

  .xl\:bg-orange-200\/20 {
    background-color: rgb(254 215 170 / 0.2);
  }

  .xl\:bg-orange-200\/30 {
    background-color: rgb(254 215 170 / 0.3);
  }

  .xl\:bg-orange-200\/40 {
    background-color: rgb(254 215 170 / 0.4);
  }

  .xl\:bg-orange-200\/5 {
    background-color: rgb(254 215 170 / 0.05);
  }

  .xl\:bg-orange-200\/50 {
    background-color: rgb(254 215 170 / 0.5);
  }

  .xl\:bg-orange-200\/60 {
    background-color: rgb(254 215 170 / 0.6);
  }

  .xl\:bg-orange-200\/70 {
    background-color: rgb(254 215 170 / 0.7);
  }

  .xl\:bg-orange-200\/80 {
    background-color: rgb(254 215 170 / 0.8);
  }

  .xl\:bg-orange-200\/90 {
    background-color: rgb(254 215 170 / 0.9);
  }

  .xl\:bg-orange-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(253 186 116 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-orange-300\/10 {
    background-color: rgb(253 186 116 / 0.1);
  }

  .xl\:bg-orange-300\/20 {
    background-color: rgb(253 186 116 / 0.2);
  }

  .xl\:bg-orange-300\/30 {
    background-color: rgb(253 186 116 / 0.3);
  }

  .xl\:bg-orange-300\/40 {
    background-color: rgb(253 186 116 / 0.4);
  }

  .xl\:bg-orange-300\/5 {
    background-color: rgb(253 186 116 / 0.05);
  }

  .xl\:bg-orange-300\/50 {
    background-color: rgb(253 186 116 / 0.5);
  }

  .xl\:bg-orange-300\/60 {
    background-color: rgb(253 186 116 / 0.6);
  }

  .xl\:bg-orange-300\/70 {
    background-color: rgb(253 186 116 / 0.7);
  }

  .xl\:bg-orange-300\/80 {
    background-color: rgb(253 186 116 / 0.8);
  }

  .xl\:bg-orange-300\/90 {
    background-color: rgb(253 186 116 / 0.9);
  }

  .xl\:bg-orange-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(251 146 60 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-orange-400\/10 {
    background-color: rgb(251 146 60 / 0.1);
  }

  .xl\:bg-orange-400\/20 {
    background-color: rgb(251 146 60 / 0.2);
  }

  .xl\:bg-orange-400\/30 {
    background-color: rgb(251 146 60 / 0.3);
  }

  .xl\:bg-orange-400\/40 {
    background-color: rgb(251 146 60 / 0.4);
  }

  .xl\:bg-orange-400\/5 {
    background-color: rgb(251 146 60 / 0.05);
  }

  .xl\:bg-orange-400\/50 {
    background-color: rgb(251 146 60 / 0.5);
  }

  .xl\:bg-orange-400\/60 {
    background-color: rgb(251 146 60 / 0.6);
  }

  .xl\:bg-orange-400\/70 {
    background-color: rgb(251 146 60 / 0.7);
  }

  .xl\:bg-orange-400\/80 {
    background-color: rgb(251 146 60 / 0.8);
  }

  .xl\:bg-orange-400\/90 {
    background-color: rgb(251 146 60 / 0.9);
  }

  .xl\:bg-orange-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 247 237 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-orange-50\/10 {
    background-color: rgb(255 247 237 / 0.1);
  }

  .xl\:bg-orange-50\/20 {
    background-color: rgb(255 247 237 / 0.2);
  }

  .xl\:bg-orange-50\/30 {
    background-color: rgb(255 247 237 / 0.3);
  }

  .xl\:bg-orange-50\/40 {
    background-color: rgb(255 247 237 / 0.4);
  }

  .xl\:bg-orange-50\/5 {
    background-color: rgb(255 247 237 / 0.05);
  }

  .xl\:bg-orange-50\/50 {
    background-color: rgb(255 247 237 / 0.5);
  }

  .xl\:bg-orange-50\/60 {
    background-color: rgb(255 247 237 / 0.6);
  }

  .xl\:bg-orange-50\/70 {
    background-color: rgb(255 247 237 / 0.7);
  }

  .xl\:bg-orange-50\/80 {
    background-color: rgb(255 247 237 / 0.8);
  }

  .xl\:bg-orange-50\/90 {
    background-color: rgb(255 247 237 / 0.9);
  }

  .xl\:bg-orange-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-orange-500\/10 {
    background-color: rgb(249 115 22 / 0.1);
  }

  .xl\:bg-orange-500\/20 {
    background-color: rgb(249 115 22 / 0.2);
  }

  .xl\:bg-orange-500\/30 {
    background-color: rgb(249 115 22 / 0.3);
  }

  .xl\:bg-orange-500\/40 {
    background-color: rgb(249 115 22 / 0.4);
  }

  .xl\:bg-orange-500\/5 {
    background-color: rgb(249 115 22 / 0.05);
  }

  .xl\:bg-orange-500\/50 {
    background-color: rgb(249 115 22 / 0.5);
  }

  .xl\:bg-orange-500\/60 {
    background-color: rgb(249 115 22 / 0.6);
  }

  .xl\:bg-orange-500\/70 {
    background-color: rgb(249 115 22 / 0.7);
  }

  .xl\:bg-orange-500\/80 {
    background-color: rgb(249 115 22 / 0.8);
  }

  .xl\:bg-orange-500\/90 {
    background-color: rgb(249 115 22 / 0.9);
  }

  .xl\:bg-orange-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(234 88 12 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-orange-600\/10 {
    background-color: rgb(234 88 12 / 0.1);
  }

  .xl\:bg-orange-600\/20 {
    background-color: rgb(234 88 12 / 0.2);
  }

  .xl\:bg-orange-600\/30 {
    background-color: rgb(234 88 12 / 0.3);
  }

  .xl\:bg-orange-600\/40 {
    background-color: rgb(234 88 12 / 0.4);
  }

  .xl\:bg-orange-600\/5 {
    background-color: rgb(234 88 12 / 0.05);
  }

  .xl\:bg-orange-600\/50 {
    background-color: rgb(234 88 12 / 0.5);
  }

  .xl\:bg-orange-600\/60 {
    background-color: rgb(234 88 12 / 0.6);
  }

  .xl\:bg-orange-600\/70 {
    background-color: rgb(234 88 12 / 0.7);
  }

  .xl\:bg-orange-600\/80 {
    background-color: rgb(234 88 12 / 0.8);
  }

  .xl\:bg-orange-600\/90 {
    background-color: rgb(234 88 12 / 0.9);
  }

  .xl\:bg-orange-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(194 65 12 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-orange-700\/10 {
    background-color: rgb(194 65 12 / 0.1);
  }

  .xl\:bg-orange-700\/20 {
    background-color: rgb(194 65 12 / 0.2);
  }

  .xl\:bg-orange-700\/30 {
    background-color: rgb(194 65 12 / 0.3);
  }

  .xl\:bg-orange-700\/40 {
    background-color: rgb(194 65 12 / 0.4);
  }

  .xl\:bg-orange-700\/5 {
    background-color: rgb(194 65 12 / 0.05);
  }

  .xl\:bg-orange-700\/50 {
    background-color: rgb(194 65 12 / 0.5);
  }

  .xl\:bg-orange-700\/60 {
    background-color: rgb(194 65 12 / 0.6);
  }

  .xl\:bg-orange-700\/70 {
    background-color: rgb(194 65 12 / 0.7);
  }

  .xl\:bg-orange-700\/80 {
    background-color: rgb(194 65 12 / 0.8);
  }

  .xl\:bg-orange-700\/90 {
    background-color: rgb(194 65 12 / 0.9);
  }

  .xl\:bg-orange-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(154 52 18 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-orange-800\/10 {
    background-color: rgb(154 52 18 / 0.1);
  }

  .xl\:bg-orange-800\/20 {
    background-color: rgb(154 52 18 / 0.2);
  }

  .xl\:bg-orange-800\/30 {
    background-color: rgb(154 52 18 / 0.3);
  }

  .xl\:bg-orange-800\/40 {
    background-color: rgb(154 52 18 / 0.4);
  }

  .xl\:bg-orange-800\/5 {
    background-color: rgb(154 52 18 / 0.05);
  }

  .xl\:bg-orange-800\/50 {
    background-color: rgb(154 52 18 / 0.5);
  }

  .xl\:bg-orange-800\/60 {
    background-color: rgb(154 52 18 / 0.6);
  }

  .xl\:bg-orange-800\/70 {
    background-color: rgb(154 52 18 / 0.7);
  }

  .xl\:bg-orange-800\/80 {
    background-color: rgb(154 52 18 / 0.8);
  }

  .xl\:bg-orange-800\/90 {
    background-color: rgb(154 52 18 / 0.9);
  }

  .xl\:bg-orange-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(124 45 18 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-orange-900\/10 {
    background-color: rgb(124 45 18 / 0.1);
  }

  .xl\:bg-orange-900\/20 {
    background-color: rgb(124 45 18 / 0.2);
  }

  .xl\:bg-orange-900\/30 {
    background-color: rgb(124 45 18 / 0.3);
  }

  .xl\:bg-orange-900\/40 {
    background-color: rgb(124 45 18 / 0.4);
  }

  .xl\:bg-orange-900\/5 {
    background-color: rgb(124 45 18 / 0.05);
  }

  .xl\:bg-orange-900\/50 {
    background-color: rgb(124 45 18 / 0.5);
  }

  .xl\:bg-orange-900\/60 {
    background-color: rgb(124 45 18 / 0.6);
  }

  .xl\:bg-orange-900\/70 {
    background-color: rgb(124 45 18 / 0.7);
  }

  .xl\:bg-orange-900\/80 {
    background-color: rgb(124 45 18 / 0.8);
  }

  .xl\:bg-orange-900\/90 {
    background-color: rgb(124 45 18 / 0.9);
  }

  .xl\:bg-orange-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(67 20 7 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-orange-950\/10 {
    background-color: rgb(67 20 7 / 0.1);
  }

  .xl\:bg-orange-950\/20 {
    background-color: rgb(67 20 7 / 0.2);
  }

  .xl\:bg-orange-950\/30 {
    background-color: rgb(67 20 7 / 0.3);
  }

  .xl\:bg-orange-950\/40 {
    background-color: rgb(67 20 7 / 0.4);
  }

  .xl\:bg-orange-950\/5 {
    background-color: rgb(67 20 7 / 0.05);
  }

  .xl\:bg-orange-950\/50 {
    background-color: rgb(67 20 7 / 0.5);
  }

  .xl\:bg-orange-950\/60 {
    background-color: rgb(67 20 7 / 0.6);
  }

  .xl\:bg-orange-950\/70 {
    background-color: rgb(67 20 7 / 0.7);
  }

  .xl\:bg-orange-950\/80 {
    background-color: rgb(67 20 7 / 0.8);
  }

  .xl\:bg-orange-950\/90 {
    background-color: rgb(67 20 7 / 0.9);
  }

  .xl\:bg-pink-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(252 231 243 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-pink-100\/10 {
    background-color: rgb(252 231 243 / 0.1);
  }

  .xl\:bg-pink-100\/20 {
    background-color: rgb(252 231 243 / 0.2);
  }

  .xl\:bg-pink-100\/30 {
    background-color: rgb(252 231 243 / 0.3);
  }

  .xl\:bg-pink-100\/40 {
    background-color: rgb(252 231 243 / 0.4);
  }

  .xl\:bg-pink-100\/5 {
    background-color: rgb(252 231 243 / 0.05);
  }

  .xl\:bg-pink-100\/50 {
    background-color: rgb(252 231 243 / 0.5);
  }

  .xl\:bg-pink-100\/60 {
    background-color: rgb(252 231 243 / 0.6);
  }

  .xl\:bg-pink-100\/70 {
    background-color: rgb(252 231 243 / 0.7);
  }

  .xl\:bg-pink-100\/80 {
    background-color: rgb(252 231 243 / 0.8);
  }

  .xl\:bg-pink-100\/90 {
    background-color: rgb(252 231 243 / 0.9);
  }

  .xl\:bg-pink-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(251 207 232 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-pink-200\/10 {
    background-color: rgb(251 207 232 / 0.1);
  }

  .xl\:bg-pink-200\/20 {
    background-color: rgb(251 207 232 / 0.2);
  }

  .xl\:bg-pink-200\/30 {
    background-color: rgb(251 207 232 / 0.3);
  }

  .xl\:bg-pink-200\/40 {
    background-color: rgb(251 207 232 / 0.4);
  }

  .xl\:bg-pink-200\/5 {
    background-color: rgb(251 207 232 / 0.05);
  }

  .xl\:bg-pink-200\/50 {
    background-color: rgb(251 207 232 / 0.5);
  }

  .xl\:bg-pink-200\/60 {
    background-color: rgb(251 207 232 / 0.6);
  }

  .xl\:bg-pink-200\/70 {
    background-color: rgb(251 207 232 / 0.7);
  }

  .xl\:bg-pink-200\/80 {
    background-color: rgb(251 207 232 / 0.8);
  }

  .xl\:bg-pink-200\/90 {
    background-color: rgb(251 207 232 / 0.9);
  }

  .xl\:bg-pink-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(249 168 212 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-pink-300\/10 {
    background-color: rgb(249 168 212 / 0.1);
  }

  .xl\:bg-pink-300\/20 {
    background-color: rgb(249 168 212 / 0.2);
  }

  .xl\:bg-pink-300\/30 {
    background-color: rgb(249 168 212 / 0.3);
  }

  .xl\:bg-pink-300\/40 {
    background-color: rgb(249 168 212 / 0.4);
  }

  .xl\:bg-pink-300\/5 {
    background-color: rgb(249 168 212 / 0.05);
  }

  .xl\:bg-pink-300\/50 {
    background-color: rgb(249 168 212 / 0.5);
  }

  .xl\:bg-pink-300\/60 {
    background-color: rgb(249 168 212 / 0.6);
  }

  .xl\:bg-pink-300\/70 {
    background-color: rgb(249 168 212 / 0.7);
  }

  .xl\:bg-pink-300\/80 {
    background-color: rgb(249 168 212 / 0.8);
  }

  .xl\:bg-pink-300\/90 {
    background-color: rgb(249 168 212 / 0.9);
  }

  .xl\:bg-pink-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(244 114 182 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-pink-400\/10 {
    background-color: rgb(244 114 182 / 0.1);
  }

  .xl\:bg-pink-400\/20 {
    background-color: rgb(244 114 182 / 0.2);
  }

  .xl\:bg-pink-400\/30 {
    background-color: rgb(244 114 182 / 0.3);
  }

  .xl\:bg-pink-400\/40 {
    background-color: rgb(244 114 182 / 0.4);
  }

  .xl\:bg-pink-400\/5 {
    background-color: rgb(244 114 182 / 0.05);
  }

  .xl\:bg-pink-400\/50 {
    background-color: rgb(244 114 182 / 0.5);
  }

  .xl\:bg-pink-400\/60 {
    background-color: rgb(244 114 182 / 0.6);
  }

  .xl\:bg-pink-400\/70 {
    background-color: rgb(244 114 182 / 0.7);
  }

  .xl\:bg-pink-400\/80 {
    background-color: rgb(244 114 182 / 0.8);
  }

  .xl\:bg-pink-400\/90 {
    background-color: rgb(244 114 182 / 0.9);
  }

  .xl\:bg-pink-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(253 242 248 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-pink-50\/10 {
    background-color: rgb(253 242 248 / 0.1);
  }

  .xl\:bg-pink-50\/20 {
    background-color: rgb(253 242 248 / 0.2);
  }

  .xl\:bg-pink-50\/30 {
    background-color: rgb(253 242 248 / 0.3);
  }

  .xl\:bg-pink-50\/40 {
    background-color: rgb(253 242 248 / 0.4);
  }

  .xl\:bg-pink-50\/5 {
    background-color: rgb(253 242 248 / 0.05);
  }

  .xl\:bg-pink-50\/50 {
    background-color: rgb(253 242 248 / 0.5);
  }

  .xl\:bg-pink-50\/60 {
    background-color: rgb(253 242 248 / 0.6);
  }

  .xl\:bg-pink-50\/70 {
    background-color: rgb(253 242 248 / 0.7);
  }

  .xl\:bg-pink-50\/80 {
    background-color: rgb(253 242 248 / 0.8);
  }

  .xl\:bg-pink-50\/90 {
    background-color: rgb(253 242 248 / 0.9);
  }

  .xl\:bg-pink-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(236 72 153 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-pink-500\/10 {
    background-color: rgb(236 72 153 / 0.1);
  }

  .xl\:bg-pink-500\/20 {
    background-color: rgb(236 72 153 / 0.2);
  }

  .xl\:bg-pink-500\/30 {
    background-color: rgb(236 72 153 / 0.3);
  }

  .xl\:bg-pink-500\/40 {
    background-color: rgb(236 72 153 / 0.4);
  }

  .xl\:bg-pink-500\/5 {
    background-color: rgb(236 72 153 / 0.05);
  }

  .xl\:bg-pink-500\/50 {
    background-color: rgb(236 72 153 / 0.5);
  }

  .xl\:bg-pink-500\/60 {
    background-color: rgb(236 72 153 / 0.6);
  }

  .xl\:bg-pink-500\/70 {
    background-color: rgb(236 72 153 / 0.7);
  }

  .xl\:bg-pink-500\/80 {
    background-color: rgb(236 72 153 / 0.8);
  }

  .xl\:bg-pink-500\/90 {
    background-color: rgb(236 72 153 / 0.9);
  }

  .xl\:bg-pink-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(219 39 119 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-pink-600\/10 {
    background-color: rgb(219 39 119 / 0.1);
  }

  .xl\:bg-pink-600\/20 {
    background-color: rgb(219 39 119 / 0.2);
  }

  .xl\:bg-pink-600\/30 {
    background-color: rgb(219 39 119 / 0.3);
  }

  .xl\:bg-pink-600\/40 {
    background-color: rgb(219 39 119 / 0.4);
  }

  .xl\:bg-pink-600\/5 {
    background-color: rgb(219 39 119 / 0.05);
  }

  .xl\:bg-pink-600\/50 {
    background-color: rgb(219 39 119 / 0.5);
  }

  .xl\:bg-pink-600\/60 {
    background-color: rgb(219 39 119 / 0.6);
  }

  .xl\:bg-pink-600\/70 {
    background-color: rgb(219 39 119 / 0.7);
  }

  .xl\:bg-pink-600\/80 {
    background-color: rgb(219 39 119 / 0.8);
  }

  .xl\:bg-pink-600\/90 {
    background-color: rgb(219 39 119 / 0.9);
  }

  .xl\:bg-pink-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(190 24 93 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-pink-700\/10 {
    background-color: rgb(190 24 93 / 0.1);
  }

  .xl\:bg-pink-700\/20 {
    background-color: rgb(190 24 93 / 0.2);
  }

  .xl\:bg-pink-700\/30 {
    background-color: rgb(190 24 93 / 0.3);
  }

  .xl\:bg-pink-700\/40 {
    background-color: rgb(190 24 93 / 0.4);
  }

  .xl\:bg-pink-700\/5 {
    background-color: rgb(190 24 93 / 0.05);
  }

  .xl\:bg-pink-700\/50 {
    background-color: rgb(190 24 93 / 0.5);
  }

  .xl\:bg-pink-700\/60 {
    background-color: rgb(190 24 93 / 0.6);
  }

  .xl\:bg-pink-700\/70 {
    background-color: rgb(190 24 93 / 0.7);
  }

  .xl\:bg-pink-700\/80 {
    background-color: rgb(190 24 93 / 0.8);
  }

  .xl\:bg-pink-700\/90 {
    background-color: rgb(190 24 93 / 0.9);
  }

  .xl\:bg-pink-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(157 23 77 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-pink-800\/10 {
    background-color: rgb(157 23 77 / 0.1);
  }

  .xl\:bg-pink-800\/20 {
    background-color: rgb(157 23 77 / 0.2);
  }

  .xl\:bg-pink-800\/30 {
    background-color: rgb(157 23 77 / 0.3);
  }

  .xl\:bg-pink-800\/40 {
    background-color: rgb(157 23 77 / 0.4);
  }

  .xl\:bg-pink-800\/5 {
    background-color: rgb(157 23 77 / 0.05);
  }

  .xl\:bg-pink-800\/50 {
    background-color: rgb(157 23 77 / 0.5);
  }

  .xl\:bg-pink-800\/60 {
    background-color: rgb(157 23 77 / 0.6);
  }

  .xl\:bg-pink-800\/70 {
    background-color: rgb(157 23 77 / 0.7);
  }

  .xl\:bg-pink-800\/80 {
    background-color: rgb(157 23 77 / 0.8);
  }

  .xl\:bg-pink-800\/90 {
    background-color: rgb(157 23 77 / 0.9);
  }

  .xl\:bg-pink-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(131 24 67 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-pink-900\/10 {
    background-color: rgb(131 24 67 / 0.1);
  }

  .xl\:bg-pink-900\/20 {
    background-color: rgb(131 24 67 / 0.2);
  }

  .xl\:bg-pink-900\/30 {
    background-color: rgb(131 24 67 / 0.3);
  }

  .xl\:bg-pink-900\/40 {
    background-color: rgb(131 24 67 / 0.4);
  }

  .xl\:bg-pink-900\/5 {
    background-color: rgb(131 24 67 / 0.05);
  }

  .xl\:bg-pink-900\/50 {
    background-color: rgb(131 24 67 / 0.5);
  }

  .xl\:bg-pink-900\/60 {
    background-color: rgb(131 24 67 / 0.6);
  }

  .xl\:bg-pink-900\/70 {
    background-color: rgb(131 24 67 / 0.7);
  }

  .xl\:bg-pink-900\/80 {
    background-color: rgb(131 24 67 / 0.8);
  }

  .xl\:bg-pink-900\/90 {
    background-color: rgb(131 24 67 / 0.9);
  }

  .xl\:bg-pink-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(80 7 36 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-pink-950\/10 {
    background-color: rgb(80 7 36 / 0.1);
  }

  .xl\:bg-pink-950\/20 {
    background-color: rgb(80 7 36 / 0.2);
  }

  .xl\:bg-pink-950\/30 {
    background-color: rgb(80 7 36 / 0.3);
  }

  .xl\:bg-pink-950\/40 {
    background-color: rgb(80 7 36 / 0.4);
  }

  .xl\:bg-pink-950\/5 {
    background-color: rgb(80 7 36 / 0.05);
  }

  .xl\:bg-pink-950\/50 {
    background-color: rgb(80 7 36 / 0.5);
  }

  .xl\:bg-pink-950\/60 {
    background-color: rgb(80 7 36 / 0.6);
  }

  .xl\:bg-pink-950\/70 {
    background-color: rgb(80 7 36 / 0.7);
  }

  .xl\:bg-pink-950\/80 {
    background-color: rgb(80 7 36 / 0.8);
  }

  .xl\:bg-pink-950\/90 {
    background-color: rgb(80 7 36 / 0.9);
  }

  .xl\:bg-purple-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(243 232 255 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-purple-100\/10 {
    background-color: rgb(243 232 255 / 0.1);
  }

  .xl\:bg-purple-100\/20 {
    background-color: rgb(243 232 255 / 0.2);
  }

  .xl\:bg-purple-100\/30 {
    background-color: rgb(243 232 255 / 0.3);
  }

  .xl\:bg-purple-100\/40 {
    background-color: rgb(243 232 255 / 0.4);
  }

  .xl\:bg-purple-100\/5 {
    background-color: rgb(243 232 255 / 0.05);
  }

  .xl\:bg-purple-100\/50 {
    background-color: rgb(243 232 255 / 0.5);
  }

  .xl\:bg-purple-100\/60 {
    background-color: rgb(243 232 255 / 0.6);
  }

  .xl\:bg-purple-100\/70 {
    background-color: rgb(243 232 255 / 0.7);
  }

  .xl\:bg-purple-100\/80 {
    background-color: rgb(243 232 255 / 0.8);
  }

  .xl\:bg-purple-100\/90 {
    background-color: rgb(243 232 255 / 0.9);
  }

  .xl\:bg-purple-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(233 213 255 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-purple-200\/10 {
    background-color: rgb(233 213 255 / 0.1);
  }

  .xl\:bg-purple-200\/20 {
    background-color: rgb(233 213 255 / 0.2);
  }

  .xl\:bg-purple-200\/30 {
    background-color: rgb(233 213 255 / 0.3);
  }

  .xl\:bg-purple-200\/40 {
    background-color: rgb(233 213 255 / 0.4);
  }

  .xl\:bg-purple-200\/5 {
    background-color: rgb(233 213 255 / 0.05);
  }

  .xl\:bg-purple-200\/50 {
    background-color: rgb(233 213 255 / 0.5);
  }

  .xl\:bg-purple-200\/60 {
    background-color: rgb(233 213 255 / 0.6);
  }

  .xl\:bg-purple-200\/70 {
    background-color: rgb(233 213 255 / 0.7);
  }

  .xl\:bg-purple-200\/80 {
    background-color: rgb(233 213 255 / 0.8);
  }

  .xl\:bg-purple-200\/90 {
    background-color: rgb(233 213 255 / 0.9);
  }

  .xl\:bg-purple-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(216 180 254 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-purple-300\/10 {
    background-color: rgb(216 180 254 / 0.1);
  }

  .xl\:bg-purple-300\/20 {
    background-color: rgb(216 180 254 / 0.2);
  }

  .xl\:bg-purple-300\/30 {
    background-color: rgb(216 180 254 / 0.3);
  }

  .xl\:bg-purple-300\/40 {
    background-color: rgb(216 180 254 / 0.4);
  }

  .xl\:bg-purple-300\/5 {
    background-color: rgb(216 180 254 / 0.05);
  }

  .xl\:bg-purple-300\/50 {
    background-color: rgb(216 180 254 / 0.5);
  }

  .xl\:bg-purple-300\/60 {
    background-color: rgb(216 180 254 / 0.6);
  }

  .xl\:bg-purple-300\/70 {
    background-color: rgb(216 180 254 / 0.7);
  }

  .xl\:bg-purple-300\/80 {
    background-color: rgb(216 180 254 / 0.8);
  }

  .xl\:bg-purple-300\/90 {
    background-color: rgb(216 180 254 / 0.9);
  }

  .xl\:bg-purple-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(192 132 252 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-purple-400\/10 {
    background-color: rgb(192 132 252 / 0.1);
  }

  .xl\:bg-purple-400\/20 {
    background-color: rgb(192 132 252 / 0.2);
  }

  .xl\:bg-purple-400\/30 {
    background-color: rgb(192 132 252 / 0.3);
  }

  .xl\:bg-purple-400\/40 {
    background-color: rgb(192 132 252 / 0.4);
  }

  .xl\:bg-purple-400\/5 {
    background-color: rgb(192 132 252 / 0.05);
  }

  .xl\:bg-purple-400\/50 {
    background-color: rgb(192 132 252 / 0.5);
  }

  .xl\:bg-purple-400\/60 {
    background-color: rgb(192 132 252 / 0.6);
  }

  .xl\:bg-purple-400\/70 {
    background-color: rgb(192 132 252 / 0.7);
  }

  .xl\:bg-purple-400\/80 {
    background-color: rgb(192 132 252 / 0.8);
  }

  .xl\:bg-purple-400\/90 {
    background-color: rgb(192 132 252 / 0.9);
  }

  .xl\:bg-purple-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 245 255 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-purple-50\/10 {
    background-color: rgb(250 245 255 / 0.1);
  }

  .xl\:bg-purple-50\/20 {
    background-color: rgb(250 245 255 / 0.2);
  }

  .xl\:bg-purple-50\/30 {
    background-color: rgb(250 245 255 / 0.3);
  }

  .xl\:bg-purple-50\/40 {
    background-color: rgb(250 245 255 / 0.4);
  }

  .xl\:bg-purple-50\/5 {
    background-color: rgb(250 245 255 / 0.05);
  }

  .xl\:bg-purple-50\/50 {
    background-color: rgb(250 245 255 / 0.5);
  }

  .xl\:bg-purple-50\/60 {
    background-color: rgb(250 245 255 / 0.6);
  }

  .xl\:bg-purple-50\/70 {
    background-color: rgb(250 245 255 / 0.7);
  }

  .xl\:bg-purple-50\/80 {
    background-color: rgb(250 245 255 / 0.8);
  }

  .xl\:bg-purple-50\/90 {
    background-color: rgb(250 245 255 / 0.9);
  }

  .xl\:bg-purple-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(168 85 247 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-purple-500\/10 {
    background-color: rgb(168 85 247 / 0.1);
  }

  .xl\:bg-purple-500\/20 {
    background-color: rgb(168 85 247 / 0.2);
  }

  .xl\:bg-purple-500\/30 {
    background-color: rgb(168 85 247 / 0.3);
  }

  .xl\:bg-purple-500\/40 {
    background-color: rgb(168 85 247 / 0.4);
  }

  .xl\:bg-purple-500\/5 {
    background-color: rgb(168 85 247 / 0.05);
  }

  .xl\:bg-purple-500\/50 {
    background-color: rgb(168 85 247 / 0.5);
  }

  .xl\:bg-purple-500\/60 {
    background-color: rgb(168 85 247 / 0.6);
  }

  .xl\:bg-purple-500\/70 {
    background-color: rgb(168 85 247 / 0.7);
  }

  .xl\:bg-purple-500\/80 {
    background-color: rgb(168 85 247 / 0.8);
  }

  .xl\:bg-purple-500\/90 {
    background-color: rgb(168 85 247 / 0.9);
  }

  .xl\:bg-purple-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(147 51 234 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-purple-600\/10 {
    background-color: rgb(147 51 234 / 0.1);
  }

  .xl\:bg-purple-600\/20 {
    background-color: rgb(147 51 234 / 0.2);
  }

  .xl\:bg-purple-600\/30 {
    background-color: rgb(147 51 234 / 0.3);
  }

  .xl\:bg-purple-600\/40 {
    background-color: rgb(147 51 234 / 0.4);
  }

  .xl\:bg-purple-600\/5 {
    background-color: rgb(147 51 234 / 0.05);
  }

  .xl\:bg-purple-600\/50 {
    background-color: rgb(147 51 234 / 0.5);
  }

  .xl\:bg-purple-600\/60 {
    background-color: rgb(147 51 234 / 0.6);
  }

  .xl\:bg-purple-600\/70 {
    background-color: rgb(147 51 234 / 0.7);
  }

  .xl\:bg-purple-600\/80 {
    background-color: rgb(147 51 234 / 0.8);
  }

  .xl\:bg-purple-600\/90 {
    background-color: rgb(147 51 234 / 0.9);
  }

  .xl\:bg-purple-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(126 34 206 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-purple-700\/10 {
    background-color: rgb(126 34 206 / 0.1);
  }

  .xl\:bg-purple-700\/20 {
    background-color: rgb(126 34 206 / 0.2);
  }

  .xl\:bg-purple-700\/30 {
    background-color: rgb(126 34 206 / 0.3);
  }

  .xl\:bg-purple-700\/40 {
    background-color: rgb(126 34 206 / 0.4);
  }

  .xl\:bg-purple-700\/5 {
    background-color: rgb(126 34 206 / 0.05);
  }

  .xl\:bg-purple-700\/50 {
    background-color: rgb(126 34 206 / 0.5);
  }

  .xl\:bg-purple-700\/60 {
    background-color: rgb(126 34 206 / 0.6);
  }

  .xl\:bg-purple-700\/70 {
    background-color: rgb(126 34 206 / 0.7);
  }

  .xl\:bg-purple-700\/80 {
    background-color: rgb(126 34 206 / 0.8);
  }

  .xl\:bg-purple-700\/90 {
    background-color: rgb(126 34 206 / 0.9);
  }

  .xl\:bg-purple-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(107 33 168 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-purple-800\/10 {
    background-color: rgb(107 33 168 / 0.1);
  }

  .xl\:bg-purple-800\/20 {
    background-color: rgb(107 33 168 / 0.2);
  }

  .xl\:bg-purple-800\/30 {
    background-color: rgb(107 33 168 / 0.3);
  }

  .xl\:bg-purple-800\/40 {
    background-color: rgb(107 33 168 / 0.4);
  }

  .xl\:bg-purple-800\/5 {
    background-color: rgb(107 33 168 / 0.05);
  }

  .xl\:bg-purple-800\/50 {
    background-color: rgb(107 33 168 / 0.5);
  }

  .xl\:bg-purple-800\/60 {
    background-color: rgb(107 33 168 / 0.6);
  }

  .xl\:bg-purple-800\/70 {
    background-color: rgb(107 33 168 / 0.7);
  }

  .xl\:bg-purple-800\/80 {
    background-color: rgb(107 33 168 / 0.8);
  }

  .xl\:bg-purple-800\/90 {
    background-color: rgb(107 33 168 / 0.9);
  }

  .xl\:bg-purple-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(88 28 135 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-purple-900\/10 {
    background-color: rgb(88 28 135 / 0.1);
  }

  .xl\:bg-purple-900\/20 {
    background-color: rgb(88 28 135 / 0.2);
  }

  .xl\:bg-purple-900\/30 {
    background-color: rgb(88 28 135 / 0.3);
  }

  .xl\:bg-purple-900\/40 {
    background-color: rgb(88 28 135 / 0.4);
  }

  .xl\:bg-purple-900\/5 {
    background-color: rgb(88 28 135 / 0.05);
  }

  .xl\:bg-purple-900\/50 {
    background-color: rgb(88 28 135 / 0.5);
  }

  .xl\:bg-purple-900\/60 {
    background-color: rgb(88 28 135 / 0.6);
  }

  .xl\:bg-purple-900\/70 {
    background-color: rgb(88 28 135 / 0.7);
  }

  .xl\:bg-purple-900\/80 {
    background-color: rgb(88 28 135 / 0.8);
  }

  .xl\:bg-purple-900\/90 {
    background-color: rgb(88 28 135 / 0.9);
  }

  .xl\:bg-purple-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(59 7 100 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-purple-950\/10 {
    background-color: rgb(59 7 100 / 0.1);
  }

  .xl\:bg-purple-950\/20 {
    background-color: rgb(59 7 100 / 0.2);
  }

  .xl\:bg-purple-950\/30 {
    background-color: rgb(59 7 100 / 0.3);
  }

  .xl\:bg-purple-950\/40 {
    background-color: rgb(59 7 100 / 0.4);
  }

  .xl\:bg-purple-950\/5 {
    background-color: rgb(59 7 100 / 0.05);
  }

  .xl\:bg-purple-950\/50 {
    background-color: rgb(59 7 100 / 0.5);
  }

  .xl\:bg-purple-950\/60 {
    background-color: rgb(59 7 100 / 0.6);
  }

  .xl\:bg-purple-950\/70 {
    background-color: rgb(59 7 100 / 0.7);
  }

  .xl\:bg-purple-950\/80 {
    background-color: rgb(59 7 100 / 0.8);
  }

  .xl\:bg-purple-950\/90 {
    background-color: rgb(59 7 100 / 0.9);
  }

  .xl\:bg-red-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-red-100\/10 {
    background-color: rgb(254 226 226 / 0.1);
  }

  .xl\:bg-red-100\/20 {
    background-color: rgb(254 226 226 / 0.2);
  }

  .xl\:bg-red-100\/30 {
    background-color: rgb(254 226 226 / 0.3);
  }

  .xl\:bg-red-100\/40 {
    background-color: rgb(254 226 226 / 0.4);
  }

  .xl\:bg-red-100\/5 {
    background-color: rgb(254 226 226 / 0.05);
  }

  .xl\:bg-red-100\/50 {
    background-color: rgb(254 226 226 / 0.5);
  }

  .xl\:bg-red-100\/60 {
    background-color: rgb(254 226 226 / 0.6);
  }

  .xl\:bg-red-100\/70 {
    background-color: rgb(254 226 226 / 0.7);
  }

  .xl\:bg-red-100\/80 {
    background-color: rgb(254 226 226 / 0.8);
  }

  .xl\:bg-red-100\/90 {
    background-color: rgb(254 226 226 / 0.9);
  }

  .xl\:bg-red-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 202 202 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-red-200\/10 {
    background-color: rgb(254 202 202 / 0.1);
  }

  .xl\:bg-red-200\/20 {
    background-color: rgb(254 202 202 / 0.2);
  }

  .xl\:bg-red-200\/30 {
    background-color: rgb(254 202 202 / 0.3);
  }

  .xl\:bg-red-200\/40 {
    background-color: rgb(254 202 202 / 0.4);
  }

  .xl\:bg-red-200\/5 {
    background-color: rgb(254 202 202 / 0.05);
  }

  .xl\:bg-red-200\/50 {
    background-color: rgb(254 202 202 / 0.5);
  }

  .xl\:bg-red-200\/60 {
    background-color: rgb(254 202 202 / 0.6);
  }

  .xl\:bg-red-200\/70 {
    background-color: rgb(254 202 202 / 0.7);
  }

  .xl\:bg-red-200\/80 {
    background-color: rgb(254 202 202 / 0.8);
  }

  .xl\:bg-red-200\/90 {
    background-color: rgb(254 202 202 / 0.9);
  }

  .xl\:bg-red-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(252 165 165 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-red-300\/10 {
    background-color: rgb(252 165 165 / 0.1);
  }

  .xl\:bg-red-300\/20 {
    background-color: rgb(252 165 165 / 0.2);
  }

  .xl\:bg-red-300\/30 {
    background-color: rgb(252 165 165 / 0.3);
  }

  .xl\:bg-red-300\/40 {
    background-color: rgb(252 165 165 / 0.4);
  }

  .xl\:bg-red-300\/5 {
    background-color: rgb(252 165 165 / 0.05);
  }

  .xl\:bg-red-300\/50 {
    background-color: rgb(252 165 165 / 0.5);
  }

  .xl\:bg-red-300\/60 {
    background-color: rgb(252 165 165 / 0.6);
  }

  .xl\:bg-red-300\/70 {
    background-color: rgb(252 165 165 / 0.7);
  }

  .xl\:bg-red-300\/80 {
    background-color: rgb(252 165 165 / 0.8);
  }

  .xl\:bg-red-300\/90 {
    background-color: rgb(252 165 165 / 0.9);
  }

  .xl\:bg-red-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(248 113 113 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-red-400\/10 {
    background-color: rgb(248 113 113 / 0.1);
  }

  .xl\:bg-red-400\/20 {
    background-color: rgb(248 113 113 / 0.2);
  }

  .xl\:bg-red-400\/30 {
    background-color: rgb(248 113 113 / 0.3);
  }

  .xl\:bg-red-400\/40 {
    background-color: rgb(248 113 113 / 0.4);
  }

  .xl\:bg-red-400\/5 {
    background-color: rgb(248 113 113 / 0.05);
  }

  .xl\:bg-red-400\/50 {
    background-color: rgb(248 113 113 / 0.5);
  }

  .xl\:bg-red-400\/60 {
    background-color: rgb(248 113 113 / 0.6);
  }

  .xl\:bg-red-400\/70 {
    background-color: rgb(248 113 113 / 0.7);
  }

  .xl\:bg-red-400\/80 {
    background-color: rgb(248 113 113 / 0.8);
  }

  .xl\:bg-red-400\/90 {
    background-color: rgb(248 113 113 / 0.9);
  }

  .xl\:bg-red-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-red-50\/10 {
    background-color: rgb(254 242 242 / 0.1);
  }

  .xl\:bg-red-50\/20 {
    background-color: rgb(254 242 242 / 0.2);
  }

  .xl\:bg-red-50\/30 {
    background-color: rgb(254 242 242 / 0.3);
  }

  .xl\:bg-red-50\/40 {
    background-color: rgb(254 242 242 / 0.4);
  }

  .xl\:bg-red-50\/5 {
    background-color: rgb(254 242 242 / 0.05);
  }

  .xl\:bg-red-50\/50 {
    background-color: rgb(254 242 242 / 0.5);
  }

  .xl\:bg-red-50\/60 {
    background-color: rgb(254 242 242 / 0.6);
  }

  .xl\:bg-red-50\/70 {
    background-color: rgb(254 242 242 / 0.7);
  }

  .xl\:bg-red-50\/80 {
    background-color: rgb(254 242 242 / 0.8);
  }

  .xl\:bg-red-50\/90 {
    background-color: rgb(254 242 242 / 0.9);
  }

  .xl\:bg-red-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-red-500\/10 {
    background-color: rgb(239 68 68 / 0.1);
  }

  .xl\:bg-red-500\/20 {
    background-color: rgb(239 68 68 / 0.2);
  }

  .xl\:bg-red-500\/30 {
    background-color: rgb(239 68 68 / 0.3);
  }

  .xl\:bg-red-500\/40 {
    background-color: rgb(239 68 68 / 0.4);
  }

  .xl\:bg-red-500\/5 {
    background-color: rgb(239 68 68 / 0.05);
  }

  .xl\:bg-red-500\/50 {
    background-color: rgb(239 68 68 / 0.5);
  }

  .xl\:bg-red-500\/60 {
    background-color: rgb(239 68 68 / 0.6);
  }

  .xl\:bg-red-500\/70 {
    background-color: rgb(239 68 68 / 0.7);
  }

  .xl\:bg-red-500\/80 {
    background-color: rgb(239 68 68 / 0.8);
  }

  .xl\:bg-red-500\/90 {
    background-color: rgb(239 68 68 / 0.9);
  }

  .xl\:bg-red-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-red-600\/10 {
    background-color: rgb(220 38 38 / 0.1);
  }

  .xl\:bg-red-600\/20 {
    background-color: rgb(220 38 38 / 0.2);
  }

  .xl\:bg-red-600\/30 {
    background-color: rgb(220 38 38 / 0.3);
  }

  .xl\:bg-red-600\/40 {
    background-color: rgb(220 38 38 / 0.4);
  }

  .xl\:bg-red-600\/5 {
    background-color: rgb(220 38 38 / 0.05);
  }

  .xl\:bg-red-600\/50 {
    background-color: rgb(220 38 38 / 0.5);
  }

  .xl\:bg-red-600\/60 {
    background-color: rgb(220 38 38 / 0.6);
  }

  .xl\:bg-red-600\/70 {
    background-color: rgb(220 38 38 / 0.7);
  }

  .xl\:bg-red-600\/80 {
    background-color: rgb(220 38 38 / 0.8);
  }

  .xl\:bg-red-600\/90 {
    background-color: rgb(220 38 38 / 0.9);
  }

  .xl\:bg-red-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-red-700\/10 {
    background-color: rgb(185 28 28 / 0.1);
  }

  .xl\:bg-red-700\/20 {
    background-color: rgb(185 28 28 / 0.2);
  }

  .xl\:bg-red-700\/30 {
    background-color: rgb(185 28 28 / 0.3);
  }

  .xl\:bg-red-700\/40 {
    background-color: rgb(185 28 28 / 0.4);
  }

  .xl\:bg-red-700\/5 {
    background-color: rgb(185 28 28 / 0.05);
  }

  .xl\:bg-red-700\/50 {
    background-color: rgb(185 28 28 / 0.5);
  }

  .xl\:bg-red-700\/60 {
    background-color: rgb(185 28 28 / 0.6);
  }

  .xl\:bg-red-700\/70 {
    background-color: rgb(185 28 28 / 0.7);
  }

  .xl\:bg-red-700\/80 {
    background-color: rgb(185 28 28 / 0.8);
  }

  .xl\:bg-red-700\/90 {
    background-color: rgb(185 28 28 / 0.9);
  }

  .xl\:bg-red-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(153 27 27 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-red-800\/10 {
    background-color: rgb(153 27 27 / 0.1);
  }

  .xl\:bg-red-800\/20 {
    background-color: rgb(153 27 27 / 0.2);
  }

  .xl\:bg-red-800\/30 {
    background-color: rgb(153 27 27 / 0.3);
  }

  .xl\:bg-red-800\/40 {
    background-color: rgb(153 27 27 / 0.4);
  }

  .xl\:bg-red-800\/5 {
    background-color: rgb(153 27 27 / 0.05);
  }

  .xl\:bg-red-800\/50 {
    background-color: rgb(153 27 27 / 0.5);
  }

  .xl\:bg-red-800\/60 {
    background-color: rgb(153 27 27 / 0.6);
  }

  .xl\:bg-red-800\/70 {
    background-color: rgb(153 27 27 / 0.7);
  }

  .xl\:bg-red-800\/80 {
    background-color: rgb(153 27 27 / 0.8);
  }

  .xl\:bg-red-800\/90 {
    background-color: rgb(153 27 27 / 0.9);
  }

  .xl\:bg-red-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(127 29 29 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-red-900\/10 {
    background-color: rgb(127 29 29 / 0.1);
  }

  .xl\:bg-red-900\/20 {
    background-color: rgb(127 29 29 / 0.2);
  }

  .xl\:bg-red-900\/30 {
    background-color: rgb(127 29 29 / 0.3);
  }

  .xl\:bg-red-900\/40 {
    background-color: rgb(127 29 29 / 0.4);
  }

  .xl\:bg-red-900\/5 {
    background-color: rgb(127 29 29 / 0.05);
  }

  .xl\:bg-red-900\/50 {
    background-color: rgb(127 29 29 / 0.5);
  }

  .xl\:bg-red-900\/60 {
    background-color: rgb(127 29 29 / 0.6);
  }

  .xl\:bg-red-900\/70 {
    background-color: rgb(127 29 29 / 0.7);
  }

  .xl\:bg-red-900\/80 {
    background-color: rgb(127 29 29 / 0.8);
  }

  .xl\:bg-red-900\/90 {
    background-color: rgb(127 29 29 / 0.9);
  }

  .xl\:bg-red-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(69 10 10 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-red-950\/10 {
    background-color: rgb(69 10 10 / 0.1);
  }

  .xl\:bg-red-950\/20 {
    background-color: rgb(69 10 10 / 0.2);
  }

  .xl\:bg-red-950\/30 {
    background-color: rgb(69 10 10 / 0.3);
  }

  .xl\:bg-red-950\/40 {
    background-color: rgb(69 10 10 / 0.4);
  }

  .xl\:bg-red-950\/5 {
    background-color: rgb(69 10 10 / 0.05);
  }

  .xl\:bg-red-950\/50 {
    background-color: rgb(69 10 10 / 0.5);
  }

  .xl\:bg-red-950\/60 {
    background-color: rgb(69 10 10 / 0.6);
  }

  .xl\:bg-red-950\/70 {
    background-color: rgb(69 10 10 / 0.7);
  }

  .xl\:bg-red-950\/80 {
    background-color: rgb(69 10 10 / 0.8);
  }

  .xl\:bg-red-950\/90 {
    background-color: rgb(69 10 10 / 0.9);
  }

  .xl\:bg-rose-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 228 230 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-rose-100\/10 {
    background-color: rgb(255 228 230 / 0.1);
  }

  .xl\:bg-rose-100\/20 {
    background-color: rgb(255 228 230 / 0.2);
  }

  .xl\:bg-rose-100\/30 {
    background-color: rgb(255 228 230 / 0.3);
  }

  .xl\:bg-rose-100\/40 {
    background-color: rgb(255 228 230 / 0.4);
  }

  .xl\:bg-rose-100\/5 {
    background-color: rgb(255 228 230 / 0.05);
  }

  .xl\:bg-rose-100\/50 {
    background-color: rgb(255 228 230 / 0.5);
  }

  .xl\:bg-rose-100\/60 {
    background-color: rgb(255 228 230 / 0.6);
  }

  .xl\:bg-rose-100\/70 {
    background-color: rgb(255 228 230 / 0.7);
  }

  .xl\:bg-rose-100\/80 {
    background-color: rgb(255 228 230 / 0.8);
  }

  .xl\:bg-rose-100\/90 {
    background-color: rgb(255 228 230 / 0.9);
  }

  .xl\:bg-rose-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 205 211 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-rose-200\/10 {
    background-color: rgb(254 205 211 / 0.1);
  }

  .xl\:bg-rose-200\/20 {
    background-color: rgb(254 205 211 / 0.2);
  }

  .xl\:bg-rose-200\/30 {
    background-color: rgb(254 205 211 / 0.3);
  }

  .xl\:bg-rose-200\/40 {
    background-color: rgb(254 205 211 / 0.4);
  }

  .xl\:bg-rose-200\/5 {
    background-color: rgb(254 205 211 / 0.05);
  }

  .xl\:bg-rose-200\/50 {
    background-color: rgb(254 205 211 / 0.5);
  }

  .xl\:bg-rose-200\/60 {
    background-color: rgb(254 205 211 / 0.6);
  }

  .xl\:bg-rose-200\/70 {
    background-color: rgb(254 205 211 / 0.7);
  }

  .xl\:bg-rose-200\/80 {
    background-color: rgb(254 205 211 / 0.8);
  }

  .xl\:bg-rose-200\/90 {
    background-color: rgb(254 205 211 / 0.9);
  }

  .xl\:bg-rose-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(253 164 175 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-rose-300\/10 {
    background-color: rgb(253 164 175 / 0.1);
  }

  .xl\:bg-rose-300\/20 {
    background-color: rgb(253 164 175 / 0.2);
  }

  .xl\:bg-rose-300\/30 {
    background-color: rgb(253 164 175 / 0.3);
  }

  .xl\:bg-rose-300\/40 {
    background-color: rgb(253 164 175 / 0.4);
  }

  .xl\:bg-rose-300\/5 {
    background-color: rgb(253 164 175 / 0.05);
  }

  .xl\:bg-rose-300\/50 {
    background-color: rgb(253 164 175 / 0.5);
  }

  .xl\:bg-rose-300\/60 {
    background-color: rgb(253 164 175 / 0.6);
  }

  .xl\:bg-rose-300\/70 {
    background-color: rgb(253 164 175 / 0.7);
  }

  .xl\:bg-rose-300\/80 {
    background-color: rgb(253 164 175 / 0.8);
  }

  .xl\:bg-rose-300\/90 {
    background-color: rgb(253 164 175 / 0.9);
  }

  .xl\:bg-rose-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(251 113 133 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-rose-400\/10 {
    background-color: rgb(251 113 133 / 0.1);
  }

  .xl\:bg-rose-400\/20 {
    background-color: rgb(251 113 133 / 0.2);
  }

  .xl\:bg-rose-400\/30 {
    background-color: rgb(251 113 133 / 0.3);
  }

  .xl\:bg-rose-400\/40 {
    background-color: rgb(251 113 133 / 0.4);
  }

  .xl\:bg-rose-400\/5 {
    background-color: rgb(251 113 133 / 0.05);
  }

  .xl\:bg-rose-400\/50 {
    background-color: rgb(251 113 133 / 0.5);
  }

  .xl\:bg-rose-400\/60 {
    background-color: rgb(251 113 133 / 0.6);
  }

  .xl\:bg-rose-400\/70 {
    background-color: rgb(251 113 133 / 0.7);
  }

  .xl\:bg-rose-400\/80 {
    background-color: rgb(251 113 133 / 0.8);
  }

  .xl\:bg-rose-400\/90 {
    background-color: rgb(251 113 133 / 0.9);
  }

  .xl\:bg-rose-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 241 242 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-rose-50\/10 {
    background-color: rgb(255 241 242 / 0.1);
  }

  .xl\:bg-rose-50\/20 {
    background-color: rgb(255 241 242 / 0.2);
  }

  .xl\:bg-rose-50\/30 {
    background-color: rgb(255 241 242 / 0.3);
  }

  .xl\:bg-rose-50\/40 {
    background-color: rgb(255 241 242 / 0.4);
  }

  .xl\:bg-rose-50\/5 {
    background-color: rgb(255 241 242 / 0.05);
  }

  .xl\:bg-rose-50\/50 {
    background-color: rgb(255 241 242 / 0.5);
  }

  .xl\:bg-rose-50\/60 {
    background-color: rgb(255 241 242 / 0.6);
  }

  .xl\:bg-rose-50\/70 {
    background-color: rgb(255 241 242 / 0.7);
  }

  .xl\:bg-rose-50\/80 {
    background-color: rgb(255 241 242 / 0.8);
  }

  .xl\:bg-rose-50\/90 {
    background-color: rgb(255 241 242 / 0.9);
  }

  .xl\:bg-rose-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(244 63 94 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-rose-500\/10 {
    background-color: rgb(244 63 94 / 0.1);
  }

  .xl\:bg-rose-500\/20 {
    background-color: rgb(244 63 94 / 0.2);
  }

  .xl\:bg-rose-500\/30 {
    background-color: rgb(244 63 94 / 0.3);
  }

  .xl\:bg-rose-500\/40 {
    background-color: rgb(244 63 94 / 0.4);
  }

  .xl\:bg-rose-500\/5 {
    background-color: rgb(244 63 94 / 0.05);
  }

  .xl\:bg-rose-500\/50 {
    background-color: rgb(244 63 94 / 0.5);
  }

  .xl\:bg-rose-500\/60 {
    background-color: rgb(244 63 94 / 0.6);
  }

  .xl\:bg-rose-500\/70 {
    background-color: rgb(244 63 94 / 0.7);
  }

  .xl\:bg-rose-500\/80 {
    background-color: rgb(244 63 94 / 0.8);
  }

  .xl\:bg-rose-500\/90 {
    background-color: rgb(244 63 94 / 0.9);
  }

  .xl\:bg-rose-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(225 29 72 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-rose-600\/10 {
    background-color: rgb(225 29 72 / 0.1);
  }

  .xl\:bg-rose-600\/20 {
    background-color: rgb(225 29 72 / 0.2);
  }

  .xl\:bg-rose-600\/30 {
    background-color: rgb(225 29 72 / 0.3);
  }

  .xl\:bg-rose-600\/40 {
    background-color: rgb(225 29 72 / 0.4);
  }

  .xl\:bg-rose-600\/5 {
    background-color: rgb(225 29 72 / 0.05);
  }

  .xl\:bg-rose-600\/50 {
    background-color: rgb(225 29 72 / 0.5);
  }

  .xl\:bg-rose-600\/60 {
    background-color: rgb(225 29 72 / 0.6);
  }

  .xl\:bg-rose-600\/70 {
    background-color: rgb(225 29 72 / 0.7);
  }

  .xl\:bg-rose-600\/80 {
    background-color: rgb(225 29 72 / 0.8);
  }

  .xl\:bg-rose-600\/90 {
    background-color: rgb(225 29 72 / 0.9);
  }

  .xl\:bg-rose-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(190 18 60 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-rose-700\/10 {
    background-color: rgb(190 18 60 / 0.1);
  }

  .xl\:bg-rose-700\/20 {
    background-color: rgb(190 18 60 / 0.2);
  }

  .xl\:bg-rose-700\/30 {
    background-color: rgb(190 18 60 / 0.3);
  }

  .xl\:bg-rose-700\/40 {
    background-color: rgb(190 18 60 / 0.4);
  }

  .xl\:bg-rose-700\/5 {
    background-color: rgb(190 18 60 / 0.05);
  }

  .xl\:bg-rose-700\/50 {
    background-color: rgb(190 18 60 / 0.5);
  }

  .xl\:bg-rose-700\/60 {
    background-color: rgb(190 18 60 / 0.6);
  }

  .xl\:bg-rose-700\/70 {
    background-color: rgb(190 18 60 / 0.7);
  }

  .xl\:bg-rose-700\/80 {
    background-color: rgb(190 18 60 / 0.8);
  }

  .xl\:bg-rose-700\/90 {
    background-color: rgb(190 18 60 / 0.9);
  }

  .xl\:bg-rose-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(159 18 57 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-rose-800\/10 {
    background-color: rgb(159 18 57 / 0.1);
  }

  .xl\:bg-rose-800\/20 {
    background-color: rgb(159 18 57 / 0.2);
  }

  .xl\:bg-rose-800\/30 {
    background-color: rgb(159 18 57 / 0.3);
  }

  .xl\:bg-rose-800\/40 {
    background-color: rgb(159 18 57 / 0.4);
  }

  .xl\:bg-rose-800\/5 {
    background-color: rgb(159 18 57 / 0.05);
  }

  .xl\:bg-rose-800\/50 {
    background-color: rgb(159 18 57 / 0.5);
  }

  .xl\:bg-rose-800\/60 {
    background-color: rgb(159 18 57 / 0.6);
  }

  .xl\:bg-rose-800\/70 {
    background-color: rgb(159 18 57 / 0.7);
  }

  .xl\:bg-rose-800\/80 {
    background-color: rgb(159 18 57 / 0.8);
  }

  .xl\:bg-rose-800\/90 {
    background-color: rgb(159 18 57 / 0.9);
  }

  .xl\:bg-rose-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(136 19 55 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-rose-900\/10 {
    background-color: rgb(136 19 55 / 0.1);
  }

  .xl\:bg-rose-900\/20 {
    background-color: rgb(136 19 55 / 0.2);
  }

  .xl\:bg-rose-900\/30 {
    background-color: rgb(136 19 55 / 0.3);
  }

  .xl\:bg-rose-900\/40 {
    background-color: rgb(136 19 55 / 0.4);
  }

  .xl\:bg-rose-900\/5 {
    background-color: rgb(136 19 55 / 0.05);
  }

  .xl\:bg-rose-900\/50 {
    background-color: rgb(136 19 55 / 0.5);
  }

  .xl\:bg-rose-900\/60 {
    background-color: rgb(136 19 55 / 0.6);
  }

  .xl\:bg-rose-900\/70 {
    background-color: rgb(136 19 55 / 0.7);
  }

  .xl\:bg-rose-900\/80 {
    background-color: rgb(136 19 55 / 0.8);
  }

  .xl\:bg-rose-900\/90 {
    background-color: rgb(136 19 55 / 0.9);
  }

  .xl\:bg-rose-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(76 5 25 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-rose-950\/10 {
    background-color: rgb(76 5 25 / 0.1);
  }

  .xl\:bg-rose-950\/20 {
    background-color: rgb(76 5 25 / 0.2);
  }

  .xl\:bg-rose-950\/30 {
    background-color: rgb(76 5 25 / 0.3);
  }

  .xl\:bg-rose-950\/40 {
    background-color: rgb(76 5 25 / 0.4);
  }

  .xl\:bg-rose-950\/5 {
    background-color: rgb(76 5 25 / 0.05);
  }

  .xl\:bg-rose-950\/50 {
    background-color: rgb(76 5 25 / 0.5);
  }

  .xl\:bg-rose-950\/60 {
    background-color: rgb(76 5 25 / 0.6);
  }

  .xl\:bg-rose-950\/70 {
    background-color: rgb(76 5 25 / 0.7);
  }

  .xl\:bg-rose-950\/80 {
    background-color: rgb(76 5 25 / 0.8);
  }

  .xl\:bg-rose-950\/90 {
    background-color: rgb(76 5 25 / 0.9);
  }

  .xl\:bg-sky-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(224 242 254 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-sky-100\/10 {
    background-color: rgb(224 242 254 / 0.1);
  }

  .xl\:bg-sky-100\/20 {
    background-color: rgb(224 242 254 / 0.2);
  }

  .xl\:bg-sky-100\/30 {
    background-color: rgb(224 242 254 / 0.3);
  }

  .xl\:bg-sky-100\/40 {
    background-color: rgb(224 242 254 / 0.4);
  }

  .xl\:bg-sky-100\/5 {
    background-color: rgb(224 242 254 / 0.05);
  }

  .xl\:bg-sky-100\/50 {
    background-color: rgb(224 242 254 / 0.5);
  }

  .xl\:bg-sky-100\/60 {
    background-color: rgb(224 242 254 / 0.6);
  }

  .xl\:bg-sky-100\/70 {
    background-color: rgb(224 242 254 / 0.7);
  }

  .xl\:bg-sky-100\/80 {
    background-color: rgb(224 242 254 / 0.8);
  }

  .xl\:bg-sky-100\/90 {
    background-color: rgb(224 242 254 / 0.9);
  }

  .xl\:bg-sky-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(186 230 253 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-sky-200\/10 {
    background-color: rgb(186 230 253 / 0.1);
  }

  .xl\:bg-sky-200\/20 {
    background-color: rgb(186 230 253 / 0.2);
  }

  .xl\:bg-sky-200\/30 {
    background-color: rgb(186 230 253 / 0.3);
  }

  .xl\:bg-sky-200\/40 {
    background-color: rgb(186 230 253 / 0.4);
  }

  .xl\:bg-sky-200\/5 {
    background-color: rgb(186 230 253 / 0.05);
  }

  .xl\:bg-sky-200\/50 {
    background-color: rgb(186 230 253 / 0.5);
  }

  .xl\:bg-sky-200\/60 {
    background-color: rgb(186 230 253 / 0.6);
  }

  .xl\:bg-sky-200\/70 {
    background-color: rgb(186 230 253 / 0.7);
  }

  .xl\:bg-sky-200\/80 {
    background-color: rgb(186 230 253 / 0.8);
  }

  .xl\:bg-sky-200\/90 {
    background-color: rgb(186 230 253 / 0.9);
  }

  .xl\:bg-sky-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(125 211 252 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-sky-300\/10 {
    background-color: rgb(125 211 252 / 0.1);
  }

  .xl\:bg-sky-300\/20 {
    background-color: rgb(125 211 252 / 0.2);
  }

  .xl\:bg-sky-300\/30 {
    background-color: rgb(125 211 252 / 0.3);
  }

  .xl\:bg-sky-300\/40 {
    background-color: rgb(125 211 252 / 0.4);
  }

  .xl\:bg-sky-300\/5 {
    background-color: rgb(125 211 252 / 0.05);
  }

  .xl\:bg-sky-300\/50 {
    background-color: rgb(125 211 252 / 0.5);
  }

  .xl\:bg-sky-300\/60 {
    background-color: rgb(125 211 252 / 0.6);
  }

  .xl\:bg-sky-300\/70 {
    background-color: rgb(125 211 252 / 0.7);
  }

  .xl\:bg-sky-300\/80 {
    background-color: rgb(125 211 252 / 0.8);
  }

  .xl\:bg-sky-300\/90 {
    background-color: rgb(125 211 252 / 0.9);
  }

  .xl\:bg-sky-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(56 189 248 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-sky-400\/10 {
    background-color: rgb(56 189 248 / 0.1);
  }

  .xl\:bg-sky-400\/20 {
    background-color: rgb(56 189 248 / 0.2);
  }

  .xl\:bg-sky-400\/30 {
    background-color: rgb(56 189 248 / 0.3);
  }

  .xl\:bg-sky-400\/40 {
    background-color: rgb(56 189 248 / 0.4);
  }

  .xl\:bg-sky-400\/5 {
    background-color: rgb(56 189 248 / 0.05);
  }

  .xl\:bg-sky-400\/50 {
    background-color: rgb(56 189 248 / 0.5);
  }

  .xl\:bg-sky-400\/60 {
    background-color: rgb(56 189 248 / 0.6);
  }

  .xl\:bg-sky-400\/70 {
    background-color: rgb(56 189 248 / 0.7);
  }

  .xl\:bg-sky-400\/80 {
    background-color: rgb(56 189 248 / 0.8);
  }

  .xl\:bg-sky-400\/90 {
    background-color: rgb(56 189 248 / 0.9);
  }

  .xl\:bg-sky-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(240 249 255 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-sky-50\/10 {
    background-color: rgb(240 249 255 / 0.1);
  }

  .xl\:bg-sky-50\/20 {
    background-color: rgb(240 249 255 / 0.2);
  }

  .xl\:bg-sky-50\/30 {
    background-color: rgb(240 249 255 / 0.3);
  }

  .xl\:bg-sky-50\/40 {
    background-color: rgb(240 249 255 / 0.4);
  }

  .xl\:bg-sky-50\/5 {
    background-color: rgb(240 249 255 / 0.05);
  }

  .xl\:bg-sky-50\/50 {
    background-color: rgb(240 249 255 / 0.5);
  }

  .xl\:bg-sky-50\/60 {
    background-color: rgb(240 249 255 / 0.6);
  }

  .xl\:bg-sky-50\/70 {
    background-color: rgb(240 249 255 / 0.7);
  }

  .xl\:bg-sky-50\/80 {
    background-color: rgb(240 249 255 / 0.8);
  }

  .xl\:bg-sky-50\/90 {
    background-color: rgb(240 249 255 / 0.9);
  }

  .xl\:bg-sky-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(14 165 233 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-sky-500\/10 {
    background-color: rgb(14 165 233 / 0.1);
  }

  .xl\:bg-sky-500\/20 {
    background-color: rgb(14 165 233 / 0.2);
  }

  .xl\:bg-sky-500\/30 {
    background-color: rgb(14 165 233 / 0.3);
  }

  .xl\:bg-sky-500\/40 {
    background-color: rgb(14 165 233 / 0.4);
  }

  .xl\:bg-sky-500\/5 {
    background-color: rgb(14 165 233 / 0.05);
  }

  .xl\:bg-sky-500\/50 {
    background-color: rgb(14 165 233 / 0.5);
  }

  .xl\:bg-sky-500\/60 {
    background-color: rgb(14 165 233 / 0.6);
  }

  .xl\:bg-sky-500\/70 {
    background-color: rgb(14 165 233 / 0.7);
  }

  .xl\:bg-sky-500\/80 {
    background-color: rgb(14 165 233 / 0.8);
  }

  .xl\:bg-sky-500\/90 {
    background-color: rgb(14 165 233 / 0.9);
  }

  .xl\:bg-sky-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(2 132 199 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-sky-600\/10 {
    background-color: rgb(2 132 199 / 0.1);
  }

  .xl\:bg-sky-600\/20 {
    background-color: rgb(2 132 199 / 0.2);
  }

  .xl\:bg-sky-600\/30 {
    background-color: rgb(2 132 199 / 0.3);
  }

  .xl\:bg-sky-600\/40 {
    background-color: rgb(2 132 199 / 0.4);
  }

  .xl\:bg-sky-600\/5 {
    background-color: rgb(2 132 199 / 0.05);
  }

  .xl\:bg-sky-600\/50 {
    background-color: rgb(2 132 199 / 0.5);
  }

  .xl\:bg-sky-600\/60 {
    background-color: rgb(2 132 199 / 0.6);
  }

  .xl\:bg-sky-600\/70 {
    background-color: rgb(2 132 199 / 0.7);
  }

  .xl\:bg-sky-600\/80 {
    background-color: rgb(2 132 199 / 0.8);
  }

  .xl\:bg-sky-600\/90 {
    background-color: rgb(2 132 199 / 0.9);
  }

  .xl\:bg-sky-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(3 105 161 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-sky-700\/10 {
    background-color: rgb(3 105 161 / 0.1);
  }

  .xl\:bg-sky-700\/20 {
    background-color: rgb(3 105 161 / 0.2);
  }

  .xl\:bg-sky-700\/30 {
    background-color: rgb(3 105 161 / 0.3);
  }

  .xl\:bg-sky-700\/40 {
    background-color: rgb(3 105 161 / 0.4);
  }

  .xl\:bg-sky-700\/5 {
    background-color: rgb(3 105 161 / 0.05);
  }

  .xl\:bg-sky-700\/50 {
    background-color: rgb(3 105 161 / 0.5);
  }

  .xl\:bg-sky-700\/60 {
    background-color: rgb(3 105 161 / 0.6);
  }

  .xl\:bg-sky-700\/70 {
    background-color: rgb(3 105 161 / 0.7);
  }

  .xl\:bg-sky-700\/80 {
    background-color: rgb(3 105 161 / 0.8);
  }

  .xl\:bg-sky-700\/90 {
    background-color: rgb(3 105 161 / 0.9);
  }

  .xl\:bg-sky-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(7 89 133 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-sky-800\/10 {
    background-color: rgb(7 89 133 / 0.1);
  }

  .xl\:bg-sky-800\/20 {
    background-color: rgb(7 89 133 / 0.2);
  }

  .xl\:bg-sky-800\/30 {
    background-color: rgb(7 89 133 / 0.3);
  }

  .xl\:bg-sky-800\/40 {
    background-color: rgb(7 89 133 / 0.4);
  }

  .xl\:bg-sky-800\/5 {
    background-color: rgb(7 89 133 / 0.05);
  }

  .xl\:bg-sky-800\/50 {
    background-color: rgb(7 89 133 / 0.5);
  }

  .xl\:bg-sky-800\/60 {
    background-color: rgb(7 89 133 / 0.6);
  }

  .xl\:bg-sky-800\/70 {
    background-color: rgb(7 89 133 / 0.7);
  }

  .xl\:bg-sky-800\/80 {
    background-color: rgb(7 89 133 / 0.8);
  }

  .xl\:bg-sky-800\/90 {
    background-color: rgb(7 89 133 / 0.9);
  }

  .xl\:bg-sky-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(12 74 110 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-sky-900\/10 {
    background-color: rgb(12 74 110 / 0.1);
  }

  .xl\:bg-sky-900\/20 {
    background-color: rgb(12 74 110 / 0.2);
  }

  .xl\:bg-sky-900\/30 {
    background-color: rgb(12 74 110 / 0.3);
  }

  .xl\:bg-sky-900\/40 {
    background-color: rgb(12 74 110 / 0.4);
  }

  .xl\:bg-sky-900\/5 {
    background-color: rgb(12 74 110 / 0.05);
  }

  .xl\:bg-sky-900\/50 {
    background-color: rgb(12 74 110 / 0.5);
  }

  .xl\:bg-sky-900\/60 {
    background-color: rgb(12 74 110 / 0.6);
  }

  .xl\:bg-sky-900\/70 {
    background-color: rgb(12 74 110 / 0.7);
  }

  .xl\:bg-sky-900\/80 {
    background-color: rgb(12 74 110 / 0.8);
  }

  .xl\:bg-sky-900\/90 {
    background-color: rgb(12 74 110 / 0.9);
  }

  .xl\:bg-sky-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(8 47 73 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-sky-950\/10 {
    background-color: rgb(8 47 73 / 0.1);
  }

  .xl\:bg-sky-950\/20 {
    background-color: rgb(8 47 73 / 0.2);
  }

  .xl\:bg-sky-950\/30 {
    background-color: rgb(8 47 73 / 0.3);
  }

  .xl\:bg-sky-950\/40 {
    background-color: rgb(8 47 73 / 0.4);
  }

  .xl\:bg-sky-950\/5 {
    background-color: rgb(8 47 73 / 0.05);
  }

  .xl\:bg-sky-950\/50 {
    background-color: rgb(8 47 73 / 0.5);
  }

  .xl\:bg-sky-950\/60 {
    background-color: rgb(8 47 73 / 0.6);
  }

  .xl\:bg-sky-950\/70 {
    background-color: rgb(8 47 73 / 0.7);
  }

  .xl\:bg-sky-950\/80 {
    background-color: rgb(8 47 73 / 0.8);
  }

  .xl\:bg-sky-950\/90 {
    background-color: rgb(8 47 73 / 0.9);
  }

  .xl\:bg-slate-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-slate-100\/10 {
    background-color: rgb(241 245 249 / 0.1);
  }

  .xl\:bg-slate-100\/20 {
    background-color: rgb(241 245 249 / 0.2);
  }

  .xl\:bg-slate-100\/30 {
    background-color: rgb(241 245 249 / 0.3);
  }

  .xl\:bg-slate-100\/40 {
    background-color: rgb(241 245 249 / 0.4);
  }

  .xl\:bg-slate-100\/5 {
    background-color: rgb(241 245 249 / 0.05);
  }

  .xl\:bg-slate-100\/50 {
    background-color: rgb(241 245 249 / 0.5);
  }

  .xl\:bg-slate-100\/60 {
    background-color: rgb(241 245 249 / 0.6);
  }

  .xl\:bg-slate-100\/70 {
    background-color: rgb(241 245 249 / 0.7);
  }

  .xl\:bg-slate-100\/80 {
    background-color: rgb(241 245 249 / 0.8);
  }

  .xl\:bg-slate-100\/90 {
    background-color: rgb(241 245 249 / 0.9);
  }

  .xl\:bg-slate-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(226 232 240 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-slate-200\/10 {
    background-color: rgb(226 232 240 / 0.1);
  }

  .xl\:bg-slate-200\/20 {
    background-color: rgb(226 232 240 / 0.2);
  }

  .xl\:bg-slate-200\/30 {
    background-color: rgb(226 232 240 / 0.3);
  }

  .xl\:bg-slate-200\/40 {
    background-color: rgb(226 232 240 / 0.4);
  }

  .xl\:bg-slate-200\/5 {
    background-color: rgb(226 232 240 / 0.05);
  }

  .xl\:bg-slate-200\/50 {
    background-color: rgb(226 232 240 / 0.5);
  }

  .xl\:bg-slate-200\/60 {
    background-color: rgb(226 232 240 / 0.6);
  }

  .xl\:bg-slate-200\/70 {
    background-color: rgb(226 232 240 / 0.7);
  }

  .xl\:bg-slate-200\/80 {
    background-color: rgb(226 232 240 / 0.8);
  }

  .xl\:bg-slate-200\/90 {
    background-color: rgb(226 232 240 / 0.9);
  }

  .xl\:bg-slate-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(203 213 225 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-slate-300\/10 {
    background-color: rgb(203 213 225 / 0.1);
  }

  .xl\:bg-slate-300\/20 {
    background-color: rgb(203 213 225 / 0.2);
  }

  .xl\:bg-slate-300\/30 {
    background-color: rgb(203 213 225 / 0.3);
  }

  .xl\:bg-slate-300\/40 {
    background-color: rgb(203 213 225 / 0.4);
  }

  .xl\:bg-slate-300\/5 {
    background-color: rgb(203 213 225 / 0.05);
  }

  .xl\:bg-slate-300\/50 {
    background-color: rgb(203 213 225 / 0.5);
  }

  .xl\:bg-slate-300\/60 {
    background-color: rgb(203 213 225 / 0.6);
  }

  .xl\:bg-slate-300\/70 {
    background-color: rgb(203 213 225 / 0.7);
  }

  .xl\:bg-slate-300\/80 {
    background-color: rgb(203 213 225 / 0.8);
  }

  .xl\:bg-slate-300\/90 {
    background-color: rgb(203 213 225 / 0.9);
  }

  .xl\:bg-slate-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(148 163 184 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-slate-400\/10 {
    background-color: rgb(148 163 184 / 0.1);
  }

  .xl\:bg-slate-400\/20 {
    background-color: rgb(148 163 184 / 0.2);
  }

  .xl\:bg-slate-400\/30 {
    background-color: rgb(148 163 184 / 0.3);
  }

  .xl\:bg-slate-400\/40 {
    background-color: rgb(148 163 184 / 0.4);
  }

  .xl\:bg-slate-400\/5 {
    background-color: rgb(148 163 184 / 0.05);
  }

  .xl\:bg-slate-400\/50 {
    background-color: rgb(148 163 184 / 0.5);
  }

  .xl\:bg-slate-400\/60 {
    background-color: rgb(148 163 184 / 0.6);
  }

  .xl\:bg-slate-400\/70 {
    background-color: rgb(148 163 184 / 0.7);
  }

  .xl\:bg-slate-400\/80 {
    background-color: rgb(148 163 184 / 0.8);
  }

  .xl\:bg-slate-400\/90 {
    background-color: rgb(148 163 184 / 0.9);
  }

  .xl\:bg-slate-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-slate-50\/10 {
    background-color: rgb(248 250 252 / 0.1);
  }

  .xl\:bg-slate-50\/20 {
    background-color: rgb(248 250 252 / 0.2);
  }

  .xl\:bg-slate-50\/30 {
    background-color: rgb(248 250 252 / 0.3);
  }

  .xl\:bg-slate-50\/40 {
    background-color: rgb(248 250 252 / 0.4);
  }

  .xl\:bg-slate-50\/5 {
    background-color: rgb(248 250 252 / 0.05);
  }

  .xl\:bg-slate-50\/50 {
    background-color: rgb(248 250 252 / 0.5);
  }

  .xl\:bg-slate-50\/60 {
    background-color: rgb(248 250 252 / 0.6);
  }

  .xl\:bg-slate-50\/70 {
    background-color: rgb(248 250 252 / 0.7);
  }

  .xl\:bg-slate-50\/80 {
    background-color: rgb(248 250 252 / 0.8);
  }

  .xl\:bg-slate-50\/90 {
    background-color: rgb(248 250 252 / 0.9);
  }

  .xl\:bg-slate-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(100 116 139 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-slate-500\/10 {
    background-color: rgb(100 116 139 / 0.1);
  }

  .xl\:bg-slate-500\/20 {
    background-color: rgb(100 116 139 / 0.2);
  }

  .xl\:bg-slate-500\/30 {
    background-color: rgb(100 116 139 / 0.3);
  }

  .xl\:bg-slate-500\/40 {
    background-color: rgb(100 116 139 / 0.4);
  }

  .xl\:bg-slate-500\/5 {
    background-color: rgb(100 116 139 / 0.05);
  }

  .xl\:bg-slate-500\/50 {
    background-color: rgb(100 116 139 / 0.5);
  }

  .xl\:bg-slate-500\/60 {
    background-color: rgb(100 116 139 / 0.6);
  }

  .xl\:bg-slate-500\/70 {
    background-color: rgb(100 116 139 / 0.7);
  }

  .xl\:bg-slate-500\/80 {
    background-color: rgb(100 116 139 / 0.8);
  }

  .xl\:bg-slate-500\/90 {
    background-color: rgb(100 116 139 / 0.9);
  }

  .xl\:bg-slate-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(71 85 105 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-slate-600\/10 {
    background-color: rgb(71 85 105 / 0.1);
  }

  .xl\:bg-slate-600\/20 {
    background-color: rgb(71 85 105 / 0.2);
  }

  .xl\:bg-slate-600\/30 {
    background-color: rgb(71 85 105 / 0.3);
  }

  .xl\:bg-slate-600\/40 {
    background-color: rgb(71 85 105 / 0.4);
  }

  .xl\:bg-slate-600\/5 {
    background-color: rgb(71 85 105 / 0.05);
  }

  .xl\:bg-slate-600\/50 {
    background-color: rgb(71 85 105 / 0.5);
  }

  .xl\:bg-slate-600\/60 {
    background-color: rgb(71 85 105 / 0.6);
  }

  .xl\:bg-slate-600\/70 {
    background-color: rgb(71 85 105 / 0.7);
  }

  .xl\:bg-slate-600\/80 {
    background-color: rgb(71 85 105 / 0.8);
  }

  .xl\:bg-slate-600\/90 {
    background-color: rgb(71 85 105 / 0.9);
  }

  .xl\:bg-slate-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(51 65 85 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-slate-700\/10 {
    background-color: rgb(51 65 85 / 0.1);
  }

  .xl\:bg-slate-700\/20 {
    background-color: rgb(51 65 85 / 0.2);
  }

  .xl\:bg-slate-700\/30 {
    background-color: rgb(51 65 85 / 0.3);
  }

  .xl\:bg-slate-700\/40 {
    background-color: rgb(51 65 85 / 0.4);
  }

  .xl\:bg-slate-700\/5 {
    background-color: rgb(51 65 85 / 0.05);
  }

  .xl\:bg-slate-700\/50 {
    background-color: rgb(51 65 85 / 0.5);
  }

  .xl\:bg-slate-700\/60 {
    background-color: rgb(51 65 85 / 0.6);
  }

  .xl\:bg-slate-700\/70 {
    background-color: rgb(51 65 85 / 0.7);
  }

  .xl\:bg-slate-700\/80 {
    background-color: rgb(51 65 85 / 0.8);
  }

  .xl\:bg-slate-700\/90 {
    background-color: rgb(51 65 85 / 0.9);
  }

  .xl\:bg-slate-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(30 41 59 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-slate-800\/10 {
    background-color: rgb(30 41 59 / 0.1);
  }

  .xl\:bg-slate-800\/20 {
    background-color: rgb(30 41 59 / 0.2);
  }

  .xl\:bg-slate-800\/30 {
    background-color: rgb(30 41 59 / 0.3);
  }

  .xl\:bg-slate-800\/40 {
    background-color: rgb(30 41 59 / 0.4);
  }

  .xl\:bg-slate-800\/5 {
    background-color: rgb(30 41 59 / 0.05);
  }

  .xl\:bg-slate-800\/50 {
    background-color: rgb(30 41 59 / 0.5);
  }

  .xl\:bg-slate-800\/60 {
    background-color: rgb(30 41 59 / 0.6);
  }

  .xl\:bg-slate-800\/70 {
    background-color: rgb(30 41 59 / 0.7);
  }

  .xl\:bg-slate-800\/80 {
    background-color: rgb(30 41 59 / 0.8);
  }

  .xl\:bg-slate-800\/90 {
    background-color: rgb(30 41 59 / 0.9);
  }

  .xl\:bg-slate-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(15 23 42 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-slate-900\/10 {
    background-color: rgb(15 23 42 / 0.1);
  }

  .xl\:bg-slate-900\/20 {
    background-color: rgb(15 23 42 / 0.2);
  }

  .xl\:bg-slate-900\/30 {
    background-color: rgb(15 23 42 / 0.3);
  }

  .xl\:bg-slate-900\/40 {
    background-color: rgb(15 23 42 / 0.4);
  }

  .xl\:bg-slate-900\/5 {
    background-color: rgb(15 23 42 / 0.05);
  }

  .xl\:bg-slate-900\/50 {
    background-color: rgb(15 23 42 / 0.5);
  }

  .xl\:bg-slate-900\/60 {
    background-color: rgb(15 23 42 / 0.6);
  }

  .xl\:bg-slate-900\/70 {
    background-color: rgb(15 23 42 / 0.7);
  }

  .xl\:bg-slate-900\/80 {
    background-color: rgb(15 23 42 / 0.8);
  }

  .xl\:bg-slate-900\/90 {
    background-color: rgb(15 23 42 / 0.9);
  }

  .xl\:bg-slate-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(2 6 23 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-slate-950\/10 {
    background-color: rgb(2 6 23 / 0.1);
  }

  .xl\:bg-slate-950\/20 {
    background-color: rgb(2 6 23 / 0.2);
  }

  .xl\:bg-slate-950\/30 {
    background-color: rgb(2 6 23 / 0.3);
  }

  .xl\:bg-slate-950\/40 {
    background-color: rgb(2 6 23 / 0.4);
  }

  .xl\:bg-slate-950\/5 {
    background-color: rgb(2 6 23 / 0.05);
  }

  .xl\:bg-slate-950\/50 {
    background-color: rgb(2 6 23 / 0.5);
  }

  .xl\:bg-slate-950\/60 {
    background-color: rgb(2 6 23 / 0.6);
  }

  .xl\:bg-slate-950\/70 {
    background-color: rgb(2 6 23 / 0.7);
  }

  .xl\:bg-slate-950\/80 {
    background-color: rgb(2 6 23 / 0.8);
  }

  .xl\:bg-slate-950\/90 {
    background-color: rgb(2 6 23 / 0.9);
  }

  .xl\:bg-stone-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(245 245 244 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-stone-100\/10 {
    background-color: rgb(245 245 244 / 0.1);
  }

  .xl\:bg-stone-100\/20 {
    background-color: rgb(245 245 244 / 0.2);
  }

  .xl\:bg-stone-100\/30 {
    background-color: rgb(245 245 244 / 0.3);
  }

  .xl\:bg-stone-100\/40 {
    background-color: rgb(245 245 244 / 0.4);
  }

  .xl\:bg-stone-100\/5 {
    background-color: rgb(245 245 244 / 0.05);
  }

  .xl\:bg-stone-100\/50 {
    background-color: rgb(245 245 244 / 0.5);
  }

  .xl\:bg-stone-100\/60 {
    background-color: rgb(245 245 244 / 0.6);
  }

  .xl\:bg-stone-100\/70 {
    background-color: rgb(245 245 244 / 0.7);
  }

  .xl\:bg-stone-100\/80 {
    background-color: rgb(245 245 244 / 0.8);
  }

  .xl\:bg-stone-100\/90 {
    background-color: rgb(245 245 244 / 0.9);
  }

  .xl\:bg-stone-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(231 229 228 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-stone-200\/10 {
    background-color: rgb(231 229 228 / 0.1);
  }

  .xl\:bg-stone-200\/20 {
    background-color: rgb(231 229 228 / 0.2);
  }

  .xl\:bg-stone-200\/30 {
    background-color: rgb(231 229 228 / 0.3);
  }

  .xl\:bg-stone-200\/40 {
    background-color: rgb(231 229 228 / 0.4);
  }

  .xl\:bg-stone-200\/5 {
    background-color: rgb(231 229 228 / 0.05);
  }

  .xl\:bg-stone-200\/50 {
    background-color: rgb(231 229 228 / 0.5);
  }

  .xl\:bg-stone-200\/60 {
    background-color: rgb(231 229 228 / 0.6);
  }

  .xl\:bg-stone-200\/70 {
    background-color: rgb(231 229 228 / 0.7);
  }

  .xl\:bg-stone-200\/80 {
    background-color: rgb(231 229 228 / 0.8);
  }

  .xl\:bg-stone-200\/90 {
    background-color: rgb(231 229 228 / 0.9);
  }

  .xl\:bg-stone-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(214 211 209 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-stone-300\/10 {
    background-color: rgb(214 211 209 / 0.1);
  }

  .xl\:bg-stone-300\/20 {
    background-color: rgb(214 211 209 / 0.2);
  }

  .xl\:bg-stone-300\/30 {
    background-color: rgb(214 211 209 / 0.3);
  }

  .xl\:bg-stone-300\/40 {
    background-color: rgb(214 211 209 / 0.4);
  }

  .xl\:bg-stone-300\/5 {
    background-color: rgb(214 211 209 / 0.05);
  }

  .xl\:bg-stone-300\/50 {
    background-color: rgb(214 211 209 / 0.5);
  }

  .xl\:bg-stone-300\/60 {
    background-color: rgb(214 211 209 / 0.6);
  }

  .xl\:bg-stone-300\/70 {
    background-color: rgb(214 211 209 / 0.7);
  }

  .xl\:bg-stone-300\/80 {
    background-color: rgb(214 211 209 / 0.8);
  }

  .xl\:bg-stone-300\/90 {
    background-color: rgb(214 211 209 / 0.9);
  }

  .xl\:bg-stone-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(168 162 158 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-stone-400\/10 {
    background-color: rgb(168 162 158 / 0.1);
  }

  .xl\:bg-stone-400\/20 {
    background-color: rgb(168 162 158 / 0.2);
  }

  .xl\:bg-stone-400\/30 {
    background-color: rgb(168 162 158 / 0.3);
  }

  .xl\:bg-stone-400\/40 {
    background-color: rgb(168 162 158 / 0.4);
  }

  .xl\:bg-stone-400\/5 {
    background-color: rgb(168 162 158 / 0.05);
  }

  .xl\:bg-stone-400\/50 {
    background-color: rgb(168 162 158 / 0.5);
  }

  .xl\:bg-stone-400\/60 {
    background-color: rgb(168 162 158 / 0.6);
  }

  .xl\:bg-stone-400\/70 {
    background-color: rgb(168 162 158 / 0.7);
  }

  .xl\:bg-stone-400\/80 {
    background-color: rgb(168 162 158 / 0.8);
  }

  .xl\:bg-stone-400\/90 {
    background-color: rgb(168 162 158 / 0.9);
  }

  .xl\:bg-stone-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 250 249 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-stone-50\/10 {
    background-color: rgb(250 250 249 / 0.1);
  }

  .xl\:bg-stone-50\/20 {
    background-color: rgb(250 250 249 / 0.2);
  }

  .xl\:bg-stone-50\/30 {
    background-color: rgb(250 250 249 / 0.3);
  }

  .xl\:bg-stone-50\/40 {
    background-color: rgb(250 250 249 / 0.4);
  }

  .xl\:bg-stone-50\/5 {
    background-color: rgb(250 250 249 / 0.05);
  }

  .xl\:bg-stone-50\/50 {
    background-color: rgb(250 250 249 / 0.5);
  }

  .xl\:bg-stone-50\/60 {
    background-color: rgb(250 250 249 / 0.6);
  }

  .xl\:bg-stone-50\/70 {
    background-color: rgb(250 250 249 / 0.7);
  }

  .xl\:bg-stone-50\/80 {
    background-color: rgb(250 250 249 / 0.8);
  }

  .xl\:bg-stone-50\/90 {
    background-color: rgb(250 250 249 / 0.9);
  }

  .xl\:bg-stone-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(120 113 108 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-stone-500\/10 {
    background-color: rgb(120 113 108 / 0.1);
  }

  .xl\:bg-stone-500\/20 {
    background-color: rgb(120 113 108 / 0.2);
  }

  .xl\:bg-stone-500\/30 {
    background-color: rgb(120 113 108 / 0.3);
  }

  .xl\:bg-stone-500\/40 {
    background-color: rgb(120 113 108 / 0.4);
  }

  .xl\:bg-stone-500\/5 {
    background-color: rgb(120 113 108 / 0.05);
  }

  .xl\:bg-stone-500\/50 {
    background-color: rgb(120 113 108 / 0.5);
  }

  .xl\:bg-stone-500\/60 {
    background-color: rgb(120 113 108 / 0.6);
  }

  .xl\:bg-stone-500\/70 {
    background-color: rgb(120 113 108 / 0.7);
  }

  .xl\:bg-stone-500\/80 {
    background-color: rgb(120 113 108 / 0.8);
  }

  .xl\:bg-stone-500\/90 {
    background-color: rgb(120 113 108 / 0.9);
  }

  .xl\:bg-stone-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(87 83 78 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-stone-600\/10 {
    background-color: rgb(87 83 78 / 0.1);
  }

  .xl\:bg-stone-600\/20 {
    background-color: rgb(87 83 78 / 0.2);
  }

  .xl\:bg-stone-600\/30 {
    background-color: rgb(87 83 78 / 0.3);
  }

  .xl\:bg-stone-600\/40 {
    background-color: rgb(87 83 78 / 0.4);
  }

  .xl\:bg-stone-600\/5 {
    background-color: rgb(87 83 78 / 0.05);
  }

  .xl\:bg-stone-600\/50 {
    background-color: rgb(87 83 78 / 0.5);
  }

  .xl\:bg-stone-600\/60 {
    background-color: rgb(87 83 78 / 0.6);
  }

  .xl\:bg-stone-600\/70 {
    background-color: rgb(87 83 78 / 0.7);
  }

  .xl\:bg-stone-600\/80 {
    background-color: rgb(87 83 78 / 0.8);
  }

  .xl\:bg-stone-600\/90 {
    background-color: rgb(87 83 78 / 0.9);
  }

  .xl\:bg-stone-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(68 64 60 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-stone-700\/10 {
    background-color: rgb(68 64 60 / 0.1);
  }

  .xl\:bg-stone-700\/20 {
    background-color: rgb(68 64 60 / 0.2);
  }

  .xl\:bg-stone-700\/30 {
    background-color: rgb(68 64 60 / 0.3);
  }

  .xl\:bg-stone-700\/40 {
    background-color: rgb(68 64 60 / 0.4);
  }

  .xl\:bg-stone-700\/5 {
    background-color: rgb(68 64 60 / 0.05);
  }

  .xl\:bg-stone-700\/50 {
    background-color: rgb(68 64 60 / 0.5);
  }

  .xl\:bg-stone-700\/60 {
    background-color: rgb(68 64 60 / 0.6);
  }

  .xl\:bg-stone-700\/70 {
    background-color: rgb(68 64 60 / 0.7);
  }

  .xl\:bg-stone-700\/80 {
    background-color: rgb(68 64 60 / 0.8);
  }

  .xl\:bg-stone-700\/90 {
    background-color: rgb(68 64 60 / 0.9);
  }

  .xl\:bg-stone-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(41 37 36 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-stone-800\/10 {
    background-color: rgb(41 37 36 / 0.1);
  }

  .xl\:bg-stone-800\/20 {
    background-color: rgb(41 37 36 / 0.2);
  }

  .xl\:bg-stone-800\/30 {
    background-color: rgb(41 37 36 / 0.3);
  }

  .xl\:bg-stone-800\/40 {
    background-color: rgb(41 37 36 / 0.4);
  }

  .xl\:bg-stone-800\/5 {
    background-color: rgb(41 37 36 / 0.05);
  }

  .xl\:bg-stone-800\/50 {
    background-color: rgb(41 37 36 / 0.5);
  }

  .xl\:bg-stone-800\/60 {
    background-color: rgb(41 37 36 / 0.6);
  }

  .xl\:bg-stone-800\/70 {
    background-color: rgb(41 37 36 / 0.7);
  }

  .xl\:bg-stone-800\/80 {
    background-color: rgb(41 37 36 / 0.8);
  }

  .xl\:bg-stone-800\/90 {
    background-color: rgb(41 37 36 / 0.9);
  }

  .xl\:bg-stone-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(28 25 23 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-stone-900\/10 {
    background-color: rgb(28 25 23 / 0.1);
  }

  .xl\:bg-stone-900\/20 {
    background-color: rgb(28 25 23 / 0.2);
  }

  .xl\:bg-stone-900\/30 {
    background-color: rgb(28 25 23 / 0.3);
  }

  .xl\:bg-stone-900\/40 {
    background-color: rgb(28 25 23 / 0.4);
  }

  .xl\:bg-stone-900\/5 {
    background-color: rgb(28 25 23 / 0.05);
  }

  .xl\:bg-stone-900\/50 {
    background-color: rgb(28 25 23 / 0.5);
  }

  .xl\:bg-stone-900\/60 {
    background-color: rgb(28 25 23 / 0.6);
  }

  .xl\:bg-stone-900\/70 {
    background-color: rgb(28 25 23 / 0.7);
  }

  .xl\:bg-stone-900\/80 {
    background-color: rgb(28 25 23 / 0.8);
  }

  .xl\:bg-stone-900\/90 {
    background-color: rgb(28 25 23 / 0.9);
  }

  .xl\:bg-stone-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(12 10 9 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-stone-950\/10 {
    background-color: rgb(12 10 9 / 0.1);
  }

  .xl\:bg-stone-950\/20 {
    background-color: rgb(12 10 9 / 0.2);
  }

  .xl\:bg-stone-950\/30 {
    background-color: rgb(12 10 9 / 0.3);
  }

  .xl\:bg-stone-950\/40 {
    background-color: rgb(12 10 9 / 0.4);
  }

  .xl\:bg-stone-950\/5 {
    background-color: rgb(12 10 9 / 0.05);
  }

  .xl\:bg-stone-950\/50 {
    background-color: rgb(12 10 9 / 0.5);
  }

  .xl\:bg-stone-950\/60 {
    background-color: rgb(12 10 9 / 0.6);
  }

  .xl\:bg-stone-950\/70 {
    background-color: rgb(12 10 9 / 0.7);
  }

  .xl\:bg-stone-950\/80 {
    background-color: rgb(12 10 9 / 0.8);
  }

  .xl\:bg-stone-950\/90 {
    background-color: rgb(12 10 9 / 0.9);
  }

  .xl\:bg-teal-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(204 251 241 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-teal-100\/10 {
    background-color: rgb(204 251 241 / 0.1);
  }

  .xl\:bg-teal-100\/20 {
    background-color: rgb(204 251 241 / 0.2);
  }

  .xl\:bg-teal-100\/30 {
    background-color: rgb(204 251 241 / 0.3);
  }

  .xl\:bg-teal-100\/40 {
    background-color: rgb(204 251 241 / 0.4);
  }

  .xl\:bg-teal-100\/5 {
    background-color: rgb(204 251 241 / 0.05);
  }

  .xl\:bg-teal-100\/50 {
    background-color: rgb(204 251 241 / 0.5);
  }

  .xl\:bg-teal-100\/60 {
    background-color: rgb(204 251 241 / 0.6);
  }

  .xl\:bg-teal-100\/70 {
    background-color: rgb(204 251 241 / 0.7);
  }

  .xl\:bg-teal-100\/80 {
    background-color: rgb(204 251 241 / 0.8);
  }

  .xl\:bg-teal-100\/90 {
    background-color: rgb(204 251 241 / 0.9);
  }

  .xl\:bg-teal-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(153 246 228 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-teal-200\/10 {
    background-color: rgb(153 246 228 / 0.1);
  }

  .xl\:bg-teal-200\/20 {
    background-color: rgb(153 246 228 / 0.2);
  }

  .xl\:bg-teal-200\/30 {
    background-color: rgb(153 246 228 / 0.3);
  }

  .xl\:bg-teal-200\/40 {
    background-color: rgb(153 246 228 / 0.4);
  }

  .xl\:bg-teal-200\/5 {
    background-color: rgb(153 246 228 / 0.05);
  }

  .xl\:bg-teal-200\/50 {
    background-color: rgb(153 246 228 / 0.5);
  }

  .xl\:bg-teal-200\/60 {
    background-color: rgb(153 246 228 / 0.6);
  }

  .xl\:bg-teal-200\/70 {
    background-color: rgb(153 246 228 / 0.7);
  }

  .xl\:bg-teal-200\/80 {
    background-color: rgb(153 246 228 / 0.8);
  }

  .xl\:bg-teal-200\/90 {
    background-color: rgb(153 246 228 / 0.9);
  }

  .xl\:bg-teal-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(94 234 212 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-teal-300\/10 {
    background-color: rgb(94 234 212 / 0.1);
  }

  .xl\:bg-teal-300\/20 {
    background-color: rgb(94 234 212 / 0.2);
  }

  .xl\:bg-teal-300\/30 {
    background-color: rgb(94 234 212 / 0.3);
  }

  .xl\:bg-teal-300\/40 {
    background-color: rgb(94 234 212 / 0.4);
  }

  .xl\:bg-teal-300\/5 {
    background-color: rgb(94 234 212 / 0.05);
  }

  .xl\:bg-teal-300\/50 {
    background-color: rgb(94 234 212 / 0.5);
  }

  .xl\:bg-teal-300\/60 {
    background-color: rgb(94 234 212 / 0.6);
  }

  .xl\:bg-teal-300\/70 {
    background-color: rgb(94 234 212 / 0.7);
  }

  .xl\:bg-teal-300\/80 {
    background-color: rgb(94 234 212 / 0.8);
  }

  .xl\:bg-teal-300\/90 {
    background-color: rgb(94 234 212 / 0.9);
  }

  .xl\:bg-teal-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(45 212 191 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-teal-400\/10 {
    background-color: rgb(45 212 191 / 0.1);
  }

  .xl\:bg-teal-400\/20 {
    background-color: rgb(45 212 191 / 0.2);
  }

  .xl\:bg-teal-400\/30 {
    background-color: rgb(45 212 191 / 0.3);
  }

  .xl\:bg-teal-400\/40 {
    background-color: rgb(45 212 191 / 0.4);
  }

  .xl\:bg-teal-400\/5 {
    background-color: rgb(45 212 191 / 0.05);
  }

  .xl\:bg-teal-400\/50 {
    background-color: rgb(45 212 191 / 0.5);
  }

  .xl\:bg-teal-400\/60 {
    background-color: rgb(45 212 191 / 0.6);
  }

  .xl\:bg-teal-400\/70 {
    background-color: rgb(45 212 191 / 0.7);
  }

  .xl\:bg-teal-400\/80 {
    background-color: rgb(45 212 191 / 0.8);
  }

  .xl\:bg-teal-400\/90 {
    background-color: rgb(45 212 191 / 0.9);
  }

  .xl\:bg-teal-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(240 253 250 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-teal-50\/10 {
    background-color: rgb(240 253 250 / 0.1);
  }

  .xl\:bg-teal-50\/20 {
    background-color: rgb(240 253 250 / 0.2);
  }

  .xl\:bg-teal-50\/30 {
    background-color: rgb(240 253 250 / 0.3);
  }

  .xl\:bg-teal-50\/40 {
    background-color: rgb(240 253 250 / 0.4);
  }

  .xl\:bg-teal-50\/5 {
    background-color: rgb(240 253 250 / 0.05);
  }

  .xl\:bg-teal-50\/50 {
    background-color: rgb(240 253 250 / 0.5);
  }

  .xl\:bg-teal-50\/60 {
    background-color: rgb(240 253 250 / 0.6);
  }

  .xl\:bg-teal-50\/70 {
    background-color: rgb(240 253 250 / 0.7);
  }

  .xl\:bg-teal-50\/80 {
    background-color: rgb(240 253 250 / 0.8);
  }

  .xl\:bg-teal-50\/90 {
    background-color: rgb(240 253 250 / 0.9);
  }

  .xl\:bg-teal-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(20 184 166 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-teal-500\/10 {
    background-color: rgb(20 184 166 / 0.1);
  }

  .xl\:bg-teal-500\/20 {
    background-color: rgb(20 184 166 / 0.2);
  }

  .xl\:bg-teal-500\/30 {
    background-color: rgb(20 184 166 / 0.3);
  }

  .xl\:bg-teal-500\/40 {
    background-color: rgb(20 184 166 / 0.4);
  }

  .xl\:bg-teal-500\/5 {
    background-color: rgb(20 184 166 / 0.05);
  }

  .xl\:bg-teal-500\/50 {
    background-color: rgb(20 184 166 / 0.5);
  }

  .xl\:bg-teal-500\/60 {
    background-color: rgb(20 184 166 / 0.6);
  }

  .xl\:bg-teal-500\/70 {
    background-color: rgb(20 184 166 / 0.7);
  }

  .xl\:bg-teal-500\/80 {
    background-color: rgb(20 184 166 / 0.8);
  }

  .xl\:bg-teal-500\/90 {
    background-color: rgb(20 184 166 / 0.9);
  }

  .xl\:bg-teal-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(13 148 136 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-teal-600\/10 {
    background-color: rgb(13 148 136 / 0.1);
  }

  .xl\:bg-teal-600\/20 {
    background-color: rgb(13 148 136 / 0.2);
  }

  .xl\:bg-teal-600\/30 {
    background-color: rgb(13 148 136 / 0.3);
  }

  .xl\:bg-teal-600\/40 {
    background-color: rgb(13 148 136 / 0.4);
  }

  .xl\:bg-teal-600\/5 {
    background-color: rgb(13 148 136 / 0.05);
  }

  .xl\:bg-teal-600\/50 {
    background-color: rgb(13 148 136 / 0.5);
  }

  .xl\:bg-teal-600\/60 {
    background-color: rgb(13 148 136 / 0.6);
  }

  .xl\:bg-teal-600\/70 {
    background-color: rgb(13 148 136 / 0.7);
  }

  .xl\:bg-teal-600\/80 {
    background-color: rgb(13 148 136 / 0.8);
  }

  .xl\:bg-teal-600\/90 {
    background-color: rgb(13 148 136 / 0.9);
  }

  .xl\:bg-teal-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(15 118 110 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-teal-700\/10 {
    background-color: rgb(15 118 110 / 0.1);
  }

  .xl\:bg-teal-700\/20 {
    background-color: rgb(15 118 110 / 0.2);
  }

  .xl\:bg-teal-700\/30 {
    background-color: rgb(15 118 110 / 0.3);
  }

  .xl\:bg-teal-700\/40 {
    background-color: rgb(15 118 110 / 0.4);
  }

  .xl\:bg-teal-700\/5 {
    background-color: rgb(15 118 110 / 0.05);
  }

  .xl\:bg-teal-700\/50 {
    background-color: rgb(15 118 110 / 0.5);
  }

  .xl\:bg-teal-700\/60 {
    background-color: rgb(15 118 110 / 0.6);
  }

  .xl\:bg-teal-700\/70 {
    background-color: rgb(15 118 110 / 0.7);
  }

  .xl\:bg-teal-700\/80 {
    background-color: rgb(15 118 110 / 0.8);
  }

  .xl\:bg-teal-700\/90 {
    background-color: rgb(15 118 110 / 0.9);
  }

  .xl\:bg-teal-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(17 94 89 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-teal-800\/10 {
    background-color: rgb(17 94 89 / 0.1);
  }

  .xl\:bg-teal-800\/20 {
    background-color: rgb(17 94 89 / 0.2);
  }

  .xl\:bg-teal-800\/30 {
    background-color: rgb(17 94 89 / 0.3);
  }

  .xl\:bg-teal-800\/40 {
    background-color: rgb(17 94 89 / 0.4);
  }

  .xl\:bg-teal-800\/5 {
    background-color: rgb(17 94 89 / 0.05);
  }

  .xl\:bg-teal-800\/50 {
    background-color: rgb(17 94 89 / 0.5);
  }

  .xl\:bg-teal-800\/60 {
    background-color: rgb(17 94 89 / 0.6);
  }

  .xl\:bg-teal-800\/70 {
    background-color: rgb(17 94 89 / 0.7);
  }

  .xl\:bg-teal-800\/80 {
    background-color: rgb(17 94 89 / 0.8);
  }

  .xl\:bg-teal-800\/90 {
    background-color: rgb(17 94 89 / 0.9);
  }

  .xl\:bg-teal-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(19 78 74 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-teal-900\/10 {
    background-color: rgb(19 78 74 / 0.1);
  }

  .xl\:bg-teal-900\/20 {
    background-color: rgb(19 78 74 / 0.2);
  }

  .xl\:bg-teal-900\/30 {
    background-color: rgb(19 78 74 / 0.3);
  }

  .xl\:bg-teal-900\/40 {
    background-color: rgb(19 78 74 / 0.4);
  }

  .xl\:bg-teal-900\/5 {
    background-color: rgb(19 78 74 / 0.05);
  }

  .xl\:bg-teal-900\/50 {
    background-color: rgb(19 78 74 / 0.5);
  }

  .xl\:bg-teal-900\/60 {
    background-color: rgb(19 78 74 / 0.6);
  }

  .xl\:bg-teal-900\/70 {
    background-color: rgb(19 78 74 / 0.7);
  }

  .xl\:bg-teal-900\/80 {
    background-color: rgb(19 78 74 / 0.8);
  }

  .xl\:bg-teal-900\/90 {
    background-color: rgb(19 78 74 / 0.9);
  }

  .xl\:bg-teal-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(4 47 46 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-teal-950\/10 {
    background-color: rgb(4 47 46 / 0.1);
  }

  .xl\:bg-teal-950\/20 {
    background-color: rgb(4 47 46 / 0.2);
  }

  .xl\:bg-teal-950\/30 {
    background-color: rgb(4 47 46 / 0.3);
  }

  .xl\:bg-teal-950\/40 {
    background-color: rgb(4 47 46 / 0.4);
  }

  .xl\:bg-teal-950\/5 {
    background-color: rgb(4 47 46 / 0.05);
  }

  .xl\:bg-teal-950\/50 {
    background-color: rgb(4 47 46 / 0.5);
  }

  .xl\:bg-teal-950\/60 {
    background-color: rgb(4 47 46 / 0.6);
  }

  .xl\:bg-teal-950\/70 {
    background-color: rgb(4 47 46 / 0.7);
  }

  .xl\:bg-teal-950\/80 {
    background-color: rgb(4 47 46 / 0.8);
  }

  .xl\:bg-teal-950\/90 {
    background-color: rgb(4 47 46 / 0.9);
  }

  .xl\:bg-violet-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(237 233 254 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-violet-100\/10 {
    background-color: rgb(237 233 254 / 0.1);
  }

  .xl\:bg-violet-100\/20 {
    background-color: rgb(237 233 254 / 0.2);
  }

  .xl\:bg-violet-100\/30 {
    background-color: rgb(237 233 254 / 0.3);
  }

  .xl\:bg-violet-100\/40 {
    background-color: rgb(237 233 254 / 0.4);
  }

  .xl\:bg-violet-100\/5 {
    background-color: rgb(237 233 254 / 0.05);
  }

  .xl\:bg-violet-100\/50 {
    background-color: rgb(237 233 254 / 0.5);
  }

  .xl\:bg-violet-100\/60 {
    background-color: rgb(237 233 254 / 0.6);
  }

  .xl\:bg-violet-100\/70 {
    background-color: rgb(237 233 254 / 0.7);
  }

  .xl\:bg-violet-100\/80 {
    background-color: rgb(237 233 254 / 0.8);
  }

  .xl\:bg-violet-100\/90 {
    background-color: rgb(237 233 254 / 0.9);
  }

  .xl\:bg-violet-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(221 214 254 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-violet-200\/10 {
    background-color: rgb(221 214 254 / 0.1);
  }

  .xl\:bg-violet-200\/20 {
    background-color: rgb(221 214 254 / 0.2);
  }

  .xl\:bg-violet-200\/30 {
    background-color: rgb(221 214 254 / 0.3);
  }

  .xl\:bg-violet-200\/40 {
    background-color: rgb(221 214 254 / 0.4);
  }

  .xl\:bg-violet-200\/5 {
    background-color: rgb(221 214 254 / 0.05);
  }

  .xl\:bg-violet-200\/50 {
    background-color: rgb(221 214 254 / 0.5);
  }

  .xl\:bg-violet-200\/60 {
    background-color: rgb(221 214 254 / 0.6);
  }

  .xl\:bg-violet-200\/70 {
    background-color: rgb(221 214 254 / 0.7);
  }

  .xl\:bg-violet-200\/80 {
    background-color: rgb(221 214 254 / 0.8);
  }

  .xl\:bg-violet-200\/90 {
    background-color: rgb(221 214 254 / 0.9);
  }

  .xl\:bg-violet-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(196 181 253 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-violet-300\/10 {
    background-color: rgb(196 181 253 / 0.1);
  }

  .xl\:bg-violet-300\/20 {
    background-color: rgb(196 181 253 / 0.2);
  }

  .xl\:bg-violet-300\/30 {
    background-color: rgb(196 181 253 / 0.3);
  }

  .xl\:bg-violet-300\/40 {
    background-color: rgb(196 181 253 / 0.4);
  }

  .xl\:bg-violet-300\/5 {
    background-color: rgb(196 181 253 / 0.05);
  }

  .xl\:bg-violet-300\/50 {
    background-color: rgb(196 181 253 / 0.5);
  }

  .xl\:bg-violet-300\/60 {
    background-color: rgb(196 181 253 / 0.6);
  }

  .xl\:bg-violet-300\/70 {
    background-color: rgb(196 181 253 / 0.7);
  }

  .xl\:bg-violet-300\/80 {
    background-color: rgb(196 181 253 / 0.8);
  }

  .xl\:bg-violet-300\/90 {
    background-color: rgb(196 181 253 / 0.9);
  }

  .xl\:bg-violet-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(167 139 250 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-violet-400\/10 {
    background-color: rgb(167 139 250 / 0.1);
  }

  .xl\:bg-violet-400\/20 {
    background-color: rgb(167 139 250 / 0.2);
  }

  .xl\:bg-violet-400\/30 {
    background-color: rgb(167 139 250 / 0.3);
  }

  .xl\:bg-violet-400\/40 {
    background-color: rgb(167 139 250 / 0.4);
  }

  .xl\:bg-violet-400\/5 {
    background-color: rgb(167 139 250 / 0.05);
  }

  .xl\:bg-violet-400\/50 {
    background-color: rgb(167 139 250 / 0.5);
  }

  .xl\:bg-violet-400\/60 {
    background-color: rgb(167 139 250 / 0.6);
  }

  .xl\:bg-violet-400\/70 {
    background-color: rgb(167 139 250 / 0.7);
  }

  .xl\:bg-violet-400\/80 {
    background-color: rgb(167 139 250 / 0.8);
  }

  .xl\:bg-violet-400\/90 {
    background-color: rgb(167 139 250 / 0.9);
  }

  .xl\:bg-violet-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(245 243 255 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-violet-50\/10 {
    background-color: rgb(245 243 255 / 0.1);
  }

  .xl\:bg-violet-50\/20 {
    background-color: rgb(245 243 255 / 0.2);
  }

  .xl\:bg-violet-50\/30 {
    background-color: rgb(245 243 255 / 0.3);
  }

  .xl\:bg-violet-50\/40 {
    background-color: rgb(245 243 255 / 0.4);
  }

  .xl\:bg-violet-50\/5 {
    background-color: rgb(245 243 255 / 0.05);
  }

  .xl\:bg-violet-50\/50 {
    background-color: rgb(245 243 255 / 0.5);
  }

  .xl\:bg-violet-50\/60 {
    background-color: rgb(245 243 255 / 0.6);
  }

  .xl\:bg-violet-50\/70 {
    background-color: rgb(245 243 255 / 0.7);
  }

  .xl\:bg-violet-50\/80 {
    background-color: rgb(245 243 255 / 0.8);
  }

  .xl\:bg-violet-50\/90 {
    background-color: rgb(245 243 255 / 0.9);
  }

  .xl\:bg-violet-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(139 92 246 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-violet-500\/10 {
    background-color: rgb(139 92 246 / 0.1);
  }

  .xl\:bg-violet-500\/20 {
    background-color: rgb(139 92 246 / 0.2);
  }

  .xl\:bg-violet-500\/30 {
    background-color: rgb(139 92 246 / 0.3);
  }

  .xl\:bg-violet-500\/40 {
    background-color: rgb(139 92 246 / 0.4);
  }

  .xl\:bg-violet-500\/5 {
    background-color: rgb(139 92 246 / 0.05);
  }

  .xl\:bg-violet-500\/50 {
    background-color: rgb(139 92 246 / 0.5);
  }

  .xl\:bg-violet-500\/60 {
    background-color: rgb(139 92 246 / 0.6);
  }

  .xl\:bg-violet-500\/70 {
    background-color: rgb(139 92 246 / 0.7);
  }

  .xl\:bg-violet-500\/80 {
    background-color: rgb(139 92 246 / 0.8);
  }

  .xl\:bg-violet-500\/90 {
    background-color: rgb(139 92 246 / 0.9);
  }

  .xl\:bg-violet-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(124 58 237 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-violet-600\/10 {
    background-color: rgb(124 58 237 / 0.1);
  }

  .xl\:bg-violet-600\/20 {
    background-color: rgb(124 58 237 / 0.2);
  }

  .xl\:bg-violet-600\/30 {
    background-color: rgb(124 58 237 / 0.3);
  }

  .xl\:bg-violet-600\/40 {
    background-color: rgb(124 58 237 / 0.4);
  }

  .xl\:bg-violet-600\/5 {
    background-color: rgb(124 58 237 / 0.05);
  }

  .xl\:bg-violet-600\/50 {
    background-color: rgb(124 58 237 / 0.5);
  }

  .xl\:bg-violet-600\/60 {
    background-color: rgb(124 58 237 / 0.6);
  }

  .xl\:bg-violet-600\/70 {
    background-color: rgb(124 58 237 / 0.7);
  }

  .xl\:bg-violet-600\/80 {
    background-color: rgb(124 58 237 / 0.8);
  }

  .xl\:bg-violet-600\/90 {
    background-color: rgb(124 58 237 / 0.9);
  }

  .xl\:bg-violet-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(109 40 217 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-violet-700\/10 {
    background-color: rgb(109 40 217 / 0.1);
  }

  .xl\:bg-violet-700\/20 {
    background-color: rgb(109 40 217 / 0.2);
  }

  .xl\:bg-violet-700\/30 {
    background-color: rgb(109 40 217 / 0.3);
  }

  .xl\:bg-violet-700\/40 {
    background-color: rgb(109 40 217 / 0.4);
  }

  .xl\:bg-violet-700\/5 {
    background-color: rgb(109 40 217 / 0.05);
  }

  .xl\:bg-violet-700\/50 {
    background-color: rgb(109 40 217 / 0.5);
  }

  .xl\:bg-violet-700\/60 {
    background-color: rgb(109 40 217 / 0.6);
  }

  .xl\:bg-violet-700\/70 {
    background-color: rgb(109 40 217 / 0.7);
  }

  .xl\:bg-violet-700\/80 {
    background-color: rgb(109 40 217 / 0.8);
  }

  .xl\:bg-violet-700\/90 {
    background-color: rgb(109 40 217 / 0.9);
  }

  .xl\:bg-violet-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(91 33 182 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-violet-800\/10 {
    background-color: rgb(91 33 182 / 0.1);
  }

  .xl\:bg-violet-800\/20 {
    background-color: rgb(91 33 182 / 0.2);
  }

  .xl\:bg-violet-800\/30 {
    background-color: rgb(91 33 182 / 0.3);
  }

  .xl\:bg-violet-800\/40 {
    background-color: rgb(91 33 182 / 0.4);
  }

  .xl\:bg-violet-800\/5 {
    background-color: rgb(91 33 182 / 0.05);
  }

  .xl\:bg-violet-800\/50 {
    background-color: rgb(91 33 182 / 0.5);
  }

  .xl\:bg-violet-800\/60 {
    background-color: rgb(91 33 182 / 0.6);
  }

  .xl\:bg-violet-800\/70 {
    background-color: rgb(91 33 182 / 0.7);
  }

  .xl\:bg-violet-800\/80 {
    background-color: rgb(91 33 182 / 0.8);
  }

  .xl\:bg-violet-800\/90 {
    background-color: rgb(91 33 182 / 0.9);
  }

  .xl\:bg-violet-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(76 29 149 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-violet-900\/10 {
    background-color: rgb(76 29 149 / 0.1);
  }

  .xl\:bg-violet-900\/20 {
    background-color: rgb(76 29 149 / 0.2);
  }

  .xl\:bg-violet-900\/30 {
    background-color: rgb(76 29 149 / 0.3);
  }

  .xl\:bg-violet-900\/40 {
    background-color: rgb(76 29 149 / 0.4);
  }

  .xl\:bg-violet-900\/5 {
    background-color: rgb(76 29 149 / 0.05);
  }

  .xl\:bg-violet-900\/50 {
    background-color: rgb(76 29 149 / 0.5);
  }

  .xl\:bg-violet-900\/60 {
    background-color: rgb(76 29 149 / 0.6);
  }

  .xl\:bg-violet-900\/70 {
    background-color: rgb(76 29 149 / 0.7);
  }

  .xl\:bg-violet-900\/80 {
    background-color: rgb(76 29 149 / 0.8);
  }

  .xl\:bg-violet-900\/90 {
    background-color: rgb(76 29 149 / 0.9);
  }

  .xl\:bg-violet-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(46 16 101 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-violet-950\/10 {
    background-color: rgb(46 16 101 / 0.1);
  }

  .xl\:bg-violet-950\/20 {
    background-color: rgb(46 16 101 / 0.2);
  }

  .xl\:bg-violet-950\/30 {
    background-color: rgb(46 16 101 / 0.3);
  }

  .xl\:bg-violet-950\/40 {
    background-color: rgb(46 16 101 / 0.4);
  }

  .xl\:bg-violet-950\/5 {
    background-color: rgb(46 16 101 / 0.05);
  }

  .xl\:bg-violet-950\/50 {
    background-color: rgb(46 16 101 / 0.5);
  }

  .xl\:bg-violet-950\/60 {
    background-color: rgb(46 16 101 / 0.6);
  }

  .xl\:bg-violet-950\/70 {
    background-color: rgb(46 16 101 / 0.7);
  }

  .xl\:bg-violet-950\/80 {
    background-color: rgb(46 16 101 / 0.8);
  }

  .xl\:bg-violet-950\/90 {
    background-color: rgb(46 16 101 / 0.9);
  }

  .xl\:bg-yellow-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-yellow-100\/10 {
    background-color: rgb(254 249 195 / 0.1);
  }

  .xl\:bg-yellow-100\/20 {
    background-color: rgb(254 249 195 / 0.2);
  }

  .xl\:bg-yellow-100\/30 {
    background-color: rgb(254 249 195 / 0.3);
  }

  .xl\:bg-yellow-100\/40 {
    background-color: rgb(254 249 195 / 0.4);
  }

  .xl\:bg-yellow-100\/5 {
    background-color: rgb(254 249 195 / 0.05);
  }

  .xl\:bg-yellow-100\/50 {
    background-color: rgb(254 249 195 / 0.5);
  }

  .xl\:bg-yellow-100\/60 {
    background-color: rgb(254 249 195 / 0.6);
  }

  .xl\:bg-yellow-100\/70 {
    background-color: rgb(254 249 195 / 0.7);
  }

  .xl\:bg-yellow-100\/80 {
    background-color: rgb(254 249 195 / 0.8);
  }

  .xl\:bg-yellow-100\/90 {
    background-color: rgb(254 249 195 / 0.9);
  }

  .xl\:bg-yellow-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 240 138 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-yellow-200\/10 {
    background-color: rgb(254 240 138 / 0.1);
  }

  .xl\:bg-yellow-200\/20 {
    background-color: rgb(254 240 138 / 0.2);
  }

  .xl\:bg-yellow-200\/30 {
    background-color: rgb(254 240 138 / 0.3);
  }

  .xl\:bg-yellow-200\/40 {
    background-color: rgb(254 240 138 / 0.4);
  }

  .xl\:bg-yellow-200\/5 {
    background-color: rgb(254 240 138 / 0.05);
  }

  .xl\:bg-yellow-200\/50 {
    background-color: rgb(254 240 138 / 0.5);
  }

  .xl\:bg-yellow-200\/60 {
    background-color: rgb(254 240 138 / 0.6);
  }

  .xl\:bg-yellow-200\/70 {
    background-color: rgb(254 240 138 / 0.7);
  }

  .xl\:bg-yellow-200\/80 {
    background-color: rgb(254 240 138 / 0.8);
  }

  .xl\:bg-yellow-200\/90 {
    background-color: rgb(254 240 138 / 0.9);
  }

  .xl\:bg-yellow-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(253 224 71 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-yellow-300\/10 {
    background-color: rgb(253 224 71 / 0.1);
  }

  .xl\:bg-yellow-300\/20 {
    background-color: rgb(253 224 71 / 0.2);
  }

  .xl\:bg-yellow-300\/30 {
    background-color: rgb(253 224 71 / 0.3);
  }

  .xl\:bg-yellow-300\/40 {
    background-color: rgb(253 224 71 / 0.4);
  }

  .xl\:bg-yellow-300\/5 {
    background-color: rgb(253 224 71 / 0.05);
  }

  .xl\:bg-yellow-300\/50 {
    background-color: rgb(253 224 71 / 0.5);
  }

  .xl\:bg-yellow-300\/60 {
    background-color: rgb(253 224 71 / 0.6);
  }

  .xl\:bg-yellow-300\/70 {
    background-color: rgb(253 224 71 / 0.7);
  }

  .xl\:bg-yellow-300\/80 {
    background-color: rgb(253 224 71 / 0.8);
  }

  .xl\:bg-yellow-300\/90 {
    background-color: rgb(253 224 71 / 0.9);
  }

  .xl\:bg-yellow-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 204 21 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-yellow-400\/10 {
    background-color: rgb(250 204 21 / 0.1);
  }

  .xl\:bg-yellow-400\/20 {
    background-color: rgb(250 204 21 / 0.2);
  }

  .xl\:bg-yellow-400\/30 {
    background-color: rgb(250 204 21 / 0.3);
  }

  .xl\:bg-yellow-400\/40 {
    background-color: rgb(250 204 21 / 0.4);
  }

  .xl\:bg-yellow-400\/5 {
    background-color: rgb(250 204 21 / 0.05);
  }

  .xl\:bg-yellow-400\/50 {
    background-color: rgb(250 204 21 / 0.5);
  }

  .xl\:bg-yellow-400\/60 {
    background-color: rgb(250 204 21 / 0.6);
  }

  .xl\:bg-yellow-400\/70 {
    background-color: rgb(250 204 21 / 0.7);
  }

  .xl\:bg-yellow-400\/80 {
    background-color: rgb(250 204 21 / 0.8);
  }

  .xl\:bg-yellow-400\/90 {
    background-color: rgb(250 204 21 / 0.9);
  }

  .xl\:bg-yellow-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-yellow-50\/10 {
    background-color: rgb(254 252 232 / 0.1);
  }

  .xl\:bg-yellow-50\/20 {
    background-color: rgb(254 252 232 / 0.2);
  }

  .xl\:bg-yellow-50\/30 {
    background-color: rgb(254 252 232 / 0.3);
  }

  .xl\:bg-yellow-50\/40 {
    background-color: rgb(254 252 232 / 0.4);
  }

  .xl\:bg-yellow-50\/5 {
    background-color: rgb(254 252 232 / 0.05);
  }

  .xl\:bg-yellow-50\/50 {
    background-color: rgb(254 252 232 / 0.5);
  }

  .xl\:bg-yellow-50\/60 {
    background-color: rgb(254 252 232 / 0.6);
  }

  .xl\:bg-yellow-50\/70 {
    background-color: rgb(254 252 232 / 0.7);
  }

  .xl\:bg-yellow-50\/80 {
    background-color: rgb(254 252 232 / 0.8);
  }

  .xl\:bg-yellow-50\/90 {
    background-color: rgb(254 252 232 / 0.9);
  }

  .xl\:bg-yellow-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(234 179 8 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-yellow-500\/10 {
    background-color: rgb(234 179 8 / 0.1);
  }

  .xl\:bg-yellow-500\/20 {
    background-color: rgb(234 179 8 / 0.2);
  }

  .xl\:bg-yellow-500\/30 {
    background-color: rgb(234 179 8 / 0.3);
  }

  .xl\:bg-yellow-500\/40 {
    background-color: rgb(234 179 8 / 0.4);
  }

  .xl\:bg-yellow-500\/5 {
    background-color: rgb(234 179 8 / 0.05);
  }

  .xl\:bg-yellow-500\/50 {
    background-color: rgb(234 179 8 / 0.5);
  }

  .xl\:bg-yellow-500\/60 {
    background-color: rgb(234 179 8 / 0.6);
  }

  .xl\:bg-yellow-500\/70 {
    background-color: rgb(234 179 8 / 0.7);
  }

  .xl\:bg-yellow-500\/80 {
    background-color: rgb(234 179 8 / 0.8);
  }

  .xl\:bg-yellow-500\/90 {
    background-color: rgb(234 179 8 / 0.9);
  }

  .xl\:bg-yellow-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(202 138 4 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-yellow-600\/10 {
    background-color: rgb(202 138 4 / 0.1);
  }

  .xl\:bg-yellow-600\/20 {
    background-color: rgb(202 138 4 / 0.2);
  }

  .xl\:bg-yellow-600\/30 {
    background-color: rgb(202 138 4 / 0.3);
  }

  .xl\:bg-yellow-600\/40 {
    background-color: rgb(202 138 4 / 0.4);
  }

  .xl\:bg-yellow-600\/5 {
    background-color: rgb(202 138 4 / 0.05);
  }

  .xl\:bg-yellow-600\/50 {
    background-color: rgb(202 138 4 / 0.5);
  }

  .xl\:bg-yellow-600\/60 {
    background-color: rgb(202 138 4 / 0.6);
  }

  .xl\:bg-yellow-600\/70 {
    background-color: rgb(202 138 4 / 0.7);
  }

  .xl\:bg-yellow-600\/80 {
    background-color: rgb(202 138 4 / 0.8);
  }

  .xl\:bg-yellow-600\/90 {
    background-color: rgb(202 138 4 / 0.9);
  }

  .xl\:bg-yellow-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(161 98 7 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-yellow-700\/10 {
    background-color: rgb(161 98 7 / 0.1);
  }

  .xl\:bg-yellow-700\/20 {
    background-color: rgb(161 98 7 / 0.2);
  }

  .xl\:bg-yellow-700\/30 {
    background-color: rgb(161 98 7 / 0.3);
  }

  .xl\:bg-yellow-700\/40 {
    background-color: rgb(161 98 7 / 0.4);
  }

  .xl\:bg-yellow-700\/5 {
    background-color: rgb(161 98 7 / 0.05);
  }

  .xl\:bg-yellow-700\/50 {
    background-color: rgb(161 98 7 / 0.5);
  }

  .xl\:bg-yellow-700\/60 {
    background-color: rgb(161 98 7 / 0.6);
  }

  .xl\:bg-yellow-700\/70 {
    background-color: rgb(161 98 7 / 0.7);
  }

  .xl\:bg-yellow-700\/80 {
    background-color: rgb(161 98 7 / 0.8);
  }

  .xl\:bg-yellow-700\/90 {
    background-color: rgb(161 98 7 / 0.9);
  }

  .xl\:bg-yellow-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(133 77 14 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-yellow-800\/10 {
    background-color: rgb(133 77 14 / 0.1);
  }

  .xl\:bg-yellow-800\/20 {
    background-color: rgb(133 77 14 / 0.2);
  }

  .xl\:bg-yellow-800\/30 {
    background-color: rgb(133 77 14 / 0.3);
  }

  .xl\:bg-yellow-800\/40 {
    background-color: rgb(133 77 14 / 0.4);
  }

  .xl\:bg-yellow-800\/5 {
    background-color: rgb(133 77 14 / 0.05);
  }

  .xl\:bg-yellow-800\/50 {
    background-color: rgb(133 77 14 / 0.5);
  }

  .xl\:bg-yellow-800\/60 {
    background-color: rgb(133 77 14 / 0.6);
  }

  .xl\:bg-yellow-800\/70 {
    background-color: rgb(133 77 14 / 0.7);
  }

  .xl\:bg-yellow-800\/80 {
    background-color: rgb(133 77 14 / 0.8);
  }

  .xl\:bg-yellow-800\/90 {
    background-color: rgb(133 77 14 / 0.9);
  }

  .xl\:bg-yellow-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(113 63 18 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-yellow-900\/10 {
    background-color: rgb(113 63 18 / 0.1);
  }

  .xl\:bg-yellow-900\/20 {
    background-color: rgb(113 63 18 / 0.2);
  }

  .xl\:bg-yellow-900\/30 {
    background-color: rgb(113 63 18 / 0.3);
  }

  .xl\:bg-yellow-900\/40 {
    background-color: rgb(113 63 18 / 0.4);
  }

  .xl\:bg-yellow-900\/5 {
    background-color: rgb(113 63 18 / 0.05);
  }

  .xl\:bg-yellow-900\/50 {
    background-color: rgb(113 63 18 / 0.5);
  }

  .xl\:bg-yellow-900\/60 {
    background-color: rgb(113 63 18 / 0.6);
  }

  .xl\:bg-yellow-900\/70 {
    background-color: rgb(113 63 18 / 0.7);
  }

  .xl\:bg-yellow-900\/80 {
    background-color: rgb(113 63 18 / 0.8);
  }

  .xl\:bg-yellow-900\/90 {
    background-color: rgb(113 63 18 / 0.9);
  }

  .xl\:bg-yellow-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(66 32 6 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-yellow-950\/10 {
    background-color: rgb(66 32 6 / 0.1);
  }

  .xl\:bg-yellow-950\/20 {
    background-color: rgb(66 32 6 / 0.2);
  }

  .xl\:bg-yellow-950\/30 {
    background-color: rgb(66 32 6 / 0.3);
  }

  .xl\:bg-yellow-950\/40 {
    background-color: rgb(66 32 6 / 0.4);
  }

  .xl\:bg-yellow-950\/5 {
    background-color: rgb(66 32 6 / 0.05);
  }

  .xl\:bg-yellow-950\/50 {
    background-color: rgb(66 32 6 / 0.5);
  }

  .xl\:bg-yellow-950\/60 {
    background-color: rgb(66 32 6 / 0.6);
  }

  .xl\:bg-yellow-950\/70 {
    background-color: rgb(66 32 6 / 0.7);
  }

  .xl\:bg-yellow-950\/80 {
    background-color: rgb(66 32 6 / 0.8);
  }

  .xl\:bg-yellow-950\/90 {
    background-color: rgb(66 32 6 / 0.9);
  }

  .xl\:bg-zinc-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(244 244 245 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-zinc-100\/10 {
    background-color: rgb(244 244 245 / 0.1);
  }

  .xl\:bg-zinc-100\/20 {
    background-color: rgb(244 244 245 / 0.2);
  }

  .xl\:bg-zinc-100\/30 {
    background-color: rgb(244 244 245 / 0.3);
  }

  .xl\:bg-zinc-100\/40 {
    background-color: rgb(244 244 245 / 0.4);
  }

  .xl\:bg-zinc-100\/5 {
    background-color: rgb(244 244 245 / 0.05);
  }

  .xl\:bg-zinc-100\/50 {
    background-color: rgb(244 244 245 / 0.5);
  }

  .xl\:bg-zinc-100\/60 {
    background-color: rgb(244 244 245 / 0.6);
  }

  .xl\:bg-zinc-100\/70 {
    background-color: rgb(244 244 245 / 0.7);
  }

  .xl\:bg-zinc-100\/80 {
    background-color: rgb(244 244 245 / 0.8);
  }

  .xl\:bg-zinc-100\/90 {
    background-color: rgb(244 244 245 / 0.9);
  }

  .xl\:bg-zinc-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(228 228 231 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-zinc-200\/10 {
    background-color: rgb(228 228 231 / 0.1);
  }

  .xl\:bg-zinc-200\/20 {
    background-color: rgb(228 228 231 / 0.2);
  }

  .xl\:bg-zinc-200\/30 {
    background-color: rgb(228 228 231 / 0.3);
  }

  .xl\:bg-zinc-200\/40 {
    background-color: rgb(228 228 231 / 0.4);
  }

  .xl\:bg-zinc-200\/5 {
    background-color: rgb(228 228 231 / 0.05);
  }

  .xl\:bg-zinc-200\/50 {
    background-color: rgb(228 228 231 / 0.5);
  }

  .xl\:bg-zinc-200\/60 {
    background-color: rgb(228 228 231 / 0.6);
  }

  .xl\:bg-zinc-200\/70 {
    background-color: rgb(228 228 231 / 0.7);
  }

  .xl\:bg-zinc-200\/80 {
    background-color: rgb(228 228 231 / 0.8);
  }

  .xl\:bg-zinc-200\/90 {
    background-color: rgb(228 228 231 / 0.9);
  }

  .xl\:bg-zinc-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(212 212 216 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-zinc-300\/10 {
    background-color: rgb(212 212 216 / 0.1);
  }

  .xl\:bg-zinc-300\/20 {
    background-color: rgb(212 212 216 / 0.2);
  }

  .xl\:bg-zinc-300\/30 {
    background-color: rgb(212 212 216 / 0.3);
  }

  .xl\:bg-zinc-300\/40 {
    background-color: rgb(212 212 216 / 0.4);
  }

  .xl\:bg-zinc-300\/5 {
    background-color: rgb(212 212 216 / 0.05);
  }

  .xl\:bg-zinc-300\/50 {
    background-color: rgb(212 212 216 / 0.5);
  }

  .xl\:bg-zinc-300\/60 {
    background-color: rgb(212 212 216 / 0.6);
  }

  .xl\:bg-zinc-300\/70 {
    background-color: rgb(212 212 216 / 0.7);
  }

  .xl\:bg-zinc-300\/80 {
    background-color: rgb(212 212 216 / 0.8);
  }

  .xl\:bg-zinc-300\/90 {
    background-color: rgb(212 212 216 / 0.9);
  }

  .xl\:bg-zinc-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(161 161 170 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-zinc-400\/10 {
    background-color: rgb(161 161 170 / 0.1);
  }

  .xl\:bg-zinc-400\/20 {
    background-color: rgb(161 161 170 / 0.2);
  }

  .xl\:bg-zinc-400\/30 {
    background-color: rgb(161 161 170 / 0.3);
  }

  .xl\:bg-zinc-400\/40 {
    background-color: rgb(161 161 170 / 0.4);
  }

  .xl\:bg-zinc-400\/5 {
    background-color: rgb(161 161 170 / 0.05);
  }

  .xl\:bg-zinc-400\/50 {
    background-color: rgb(161 161 170 / 0.5);
  }

  .xl\:bg-zinc-400\/60 {
    background-color: rgb(161 161 170 / 0.6);
  }

  .xl\:bg-zinc-400\/70 {
    background-color: rgb(161 161 170 / 0.7);
  }

  .xl\:bg-zinc-400\/80 {
    background-color: rgb(161 161 170 / 0.8);
  }

  .xl\:bg-zinc-400\/90 {
    background-color: rgb(161 161 170 / 0.9);
  }

  .xl\:bg-zinc-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-zinc-50\/10 {
    background-color: rgb(250 250 250 / 0.1);
  }

  .xl\:bg-zinc-50\/20 {
    background-color: rgb(250 250 250 / 0.2);
  }

  .xl\:bg-zinc-50\/30 {
    background-color: rgb(250 250 250 / 0.3);
  }

  .xl\:bg-zinc-50\/40 {
    background-color: rgb(250 250 250 / 0.4);
  }

  .xl\:bg-zinc-50\/5 {
    background-color: rgb(250 250 250 / 0.05);
  }

  .xl\:bg-zinc-50\/50 {
    background-color: rgb(250 250 250 / 0.5);
  }

  .xl\:bg-zinc-50\/60 {
    background-color: rgb(250 250 250 / 0.6);
  }

  .xl\:bg-zinc-50\/70 {
    background-color: rgb(250 250 250 / 0.7);
  }

  .xl\:bg-zinc-50\/80 {
    background-color: rgb(250 250 250 / 0.8);
  }

  .xl\:bg-zinc-50\/90 {
    background-color: rgb(250 250 250 / 0.9);
  }

  .xl\:bg-zinc-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(113 113 122 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-zinc-500\/10 {
    background-color: rgb(113 113 122 / 0.1);
  }

  .xl\:bg-zinc-500\/20 {
    background-color: rgb(113 113 122 / 0.2);
  }

  .xl\:bg-zinc-500\/30 {
    background-color: rgb(113 113 122 / 0.3);
  }

  .xl\:bg-zinc-500\/40 {
    background-color: rgb(113 113 122 / 0.4);
  }

  .xl\:bg-zinc-500\/5 {
    background-color: rgb(113 113 122 / 0.05);
  }

  .xl\:bg-zinc-500\/50 {
    background-color: rgb(113 113 122 / 0.5);
  }

  .xl\:bg-zinc-500\/60 {
    background-color: rgb(113 113 122 / 0.6);
  }

  .xl\:bg-zinc-500\/70 {
    background-color: rgb(113 113 122 / 0.7);
  }

  .xl\:bg-zinc-500\/80 {
    background-color: rgb(113 113 122 / 0.8);
  }

  .xl\:bg-zinc-500\/90 {
    background-color: rgb(113 113 122 / 0.9);
  }

  .xl\:bg-zinc-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(82 82 91 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-zinc-600\/10 {
    background-color: rgb(82 82 91 / 0.1);
  }

  .xl\:bg-zinc-600\/20 {
    background-color: rgb(82 82 91 / 0.2);
  }

  .xl\:bg-zinc-600\/30 {
    background-color: rgb(82 82 91 / 0.3);
  }

  .xl\:bg-zinc-600\/40 {
    background-color: rgb(82 82 91 / 0.4);
  }

  .xl\:bg-zinc-600\/5 {
    background-color: rgb(82 82 91 / 0.05);
  }

  .xl\:bg-zinc-600\/50 {
    background-color: rgb(82 82 91 / 0.5);
  }

  .xl\:bg-zinc-600\/60 {
    background-color: rgb(82 82 91 / 0.6);
  }

  .xl\:bg-zinc-600\/70 {
    background-color: rgb(82 82 91 / 0.7);
  }

  .xl\:bg-zinc-600\/80 {
    background-color: rgb(82 82 91 / 0.8);
  }

  .xl\:bg-zinc-600\/90 {
    background-color: rgb(82 82 91 / 0.9);
  }

  .xl\:bg-zinc-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(63 63 70 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-zinc-700\/10 {
    background-color: rgb(63 63 70 / 0.1);
  }

  .xl\:bg-zinc-700\/20 {
    background-color: rgb(63 63 70 / 0.2);
  }

  .xl\:bg-zinc-700\/30 {
    background-color: rgb(63 63 70 / 0.3);
  }

  .xl\:bg-zinc-700\/40 {
    background-color: rgb(63 63 70 / 0.4);
  }

  .xl\:bg-zinc-700\/5 {
    background-color: rgb(63 63 70 / 0.05);
  }

  .xl\:bg-zinc-700\/50 {
    background-color: rgb(63 63 70 / 0.5);
  }

  .xl\:bg-zinc-700\/60 {
    background-color: rgb(63 63 70 / 0.6);
  }

  .xl\:bg-zinc-700\/70 {
    background-color: rgb(63 63 70 / 0.7);
  }

  .xl\:bg-zinc-700\/80 {
    background-color: rgb(63 63 70 / 0.8);
  }

  .xl\:bg-zinc-700\/90 {
    background-color: rgb(63 63 70 / 0.9);
  }

  .xl\:bg-zinc-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(39 39 42 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-zinc-800\/10 {
    background-color: rgb(39 39 42 / 0.1);
  }

  .xl\:bg-zinc-800\/20 {
    background-color: rgb(39 39 42 / 0.2);
  }

  .xl\:bg-zinc-800\/30 {
    background-color: rgb(39 39 42 / 0.3);
  }

  .xl\:bg-zinc-800\/40 {
    background-color: rgb(39 39 42 / 0.4);
  }

  .xl\:bg-zinc-800\/5 {
    background-color: rgb(39 39 42 / 0.05);
  }

  .xl\:bg-zinc-800\/50 {
    background-color: rgb(39 39 42 / 0.5);
  }

  .xl\:bg-zinc-800\/60 {
    background-color: rgb(39 39 42 / 0.6);
  }

  .xl\:bg-zinc-800\/70 {
    background-color: rgb(39 39 42 / 0.7);
  }

  .xl\:bg-zinc-800\/80 {
    background-color: rgb(39 39 42 / 0.8);
  }

  .xl\:bg-zinc-800\/90 {
    background-color: rgb(39 39 42 / 0.9);
  }

  .xl\:bg-zinc-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(24 24 27 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-zinc-900\/10 {
    background-color: rgb(24 24 27 / 0.1);
  }

  .xl\:bg-zinc-900\/20 {
    background-color: rgb(24 24 27 / 0.2);
  }

  .xl\:bg-zinc-900\/30 {
    background-color: rgb(24 24 27 / 0.3);
  }

  .xl\:bg-zinc-900\/40 {
    background-color: rgb(24 24 27 / 0.4);
  }

  .xl\:bg-zinc-900\/5 {
    background-color: rgb(24 24 27 / 0.05);
  }

  .xl\:bg-zinc-900\/50 {
    background-color: rgb(24 24 27 / 0.5);
  }

  .xl\:bg-zinc-900\/60 {
    background-color: rgb(24 24 27 / 0.6);
  }

  .xl\:bg-zinc-900\/70 {
    background-color: rgb(24 24 27 / 0.7);
  }

  .xl\:bg-zinc-900\/80 {
    background-color: rgb(24 24 27 / 0.8);
  }

  .xl\:bg-zinc-900\/90 {
    background-color: rgb(24 24 27 / 0.9);
  }

  .xl\:bg-zinc-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(9 9 11 / var(--tw-bg-opacity, 1));
  }

  .xl\:bg-zinc-950\/10 {
    background-color: rgb(9 9 11 / 0.1);
  }

  .xl\:bg-zinc-950\/20 {
    background-color: rgb(9 9 11 / 0.2);
  }

  .xl\:bg-zinc-950\/30 {
    background-color: rgb(9 9 11 / 0.3);
  }

  .xl\:bg-zinc-950\/40 {
    background-color: rgb(9 9 11 / 0.4);
  }

  .xl\:bg-zinc-950\/5 {
    background-color: rgb(9 9 11 / 0.05);
  }

  .xl\:bg-zinc-950\/50 {
    background-color: rgb(9 9 11 / 0.5);
  }

  .xl\:bg-zinc-950\/60 {
    background-color: rgb(9 9 11 / 0.6);
  }

  .xl\:bg-zinc-950\/70 {
    background-color: rgb(9 9 11 / 0.7);
  }

  .xl\:bg-zinc-950\/80 {
    background-color: rgb(9 9 11 / 0.8);
  }

  .xl\:bg-zinc-950\/90 {
    background-color: rgb(9 9 11 / 0.9);
  }

  .xl\:p-0 {
    padding: 0px;
  }

  .xl\:p-1 {
    padding: 0.25rem;
  }

  .xl\:p-10 {
    padding: 2.5rem;
  }

  .xl\:p-11 {
    padding: 2.75rem;
  }

  .xl\:p-12 {
    padding: 3rem;
  }

  .xl\:p-14 {
    padding: 3.5rem;
  }

  .xl\:p-16 {
    padding: 4rem;
  }

  .xl\:p-2 {
    padding: 0.5rem;
  }

  .xl\:p-20 {
    padding: 5rem;
  }

  .xl\:p-24 {
    padding: 6rem;
  }

  .xl\:p-28 {
    padding: 7rem;
  }

  .xl\:p-3 {
    padding: 0.75rem;
  }

  .xl\:p-32 {
    padding: 8rem;
  }

  .xl\:p-36 {
    padding: 9rem;
  }

  .xl\:p-4 {
    padding: 1rem;
  }

  .xl\:p-40 {
    padding: 10rem;
  }

  .xl\:p-44 {
    padding: 11rem;
  }

  .xl\:p-48 {
    padding: 12rem;
  }

  .xl\:p-5 {
    padding: 1.25rem;
  }

  .xl\:p-52 {
    padding: 13rem;
  }

  .xl\:p-56 {
    padding: 14rem;
  }

  .xl\:p-6 {
    padding: 1.5rem;
  }

  .xl\:p-60 {
    padding: 15rem;
  }

  .xl\:p-64 {
    padding: 16rem;
  }

  .xl\:p-7 {
    padding: 1.75rem;
  }

  .xl\:p-72 {
    padding: 18rem;
  }

  .xl\:p-8 {
    padding: 2rem;
  }

  .xl\:p-80 {
    padding: 20rem;
  }

  .xl\:p-9 {
    padding: 2.25rem;
  }

  .xl\:p-96 {
    padding: 24rem;
  }

  .xl\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .xl\:px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .xl\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .xl\:px-11 {
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }

  .xl\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .xl\:px-14 {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .xl\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .xl\:px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .xl\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .xl\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .xl\:px-28 {
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .xl\:px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .xl\:px-32 {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .xl\:px-36 {
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .xl\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .xl\:px-40 {
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .xl\:px-44 {
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .xl\:px-48 {
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .xl\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .xl\:px-52 {
    padding-left: 13rem;
    padding-right: 13rem;
  }

  .xl\:px-56 {
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .xl\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .xl\:px-60 {
    padding-left: 15rem;
    padding-right: 15rem;
  }

  .xl\:px-64 {
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .xl\:px-7 {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .xl\:px-72 {
    padding-left: 18rem;
    padding-right: 18rem;
  }

  .xl\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .xl\:px-80 {
    padding-left: 20rem;
    padding-right: 20rem;
  }

  .xl\:px-9 {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .xl\:px-96 {
    padding-left: 24rem;
    padding-right: 24rem;
  }

  .xl\:py-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .xl\:py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .xl\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .xl\:py-11 {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .xl\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .xl\:py-14 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .xl\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .xl\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .xl\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .xl\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .xl\:py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .xl\:py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .xl\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .xl\:py-36 {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .xl\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .xl\:py-40 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .xl\:py-44 {
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .xl\:py-48 {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .xl\:py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .xl\:py-52 {
    padding-top: 13rem;
    padding-bottom: 13rem;
  }

  .xl\:py-56 {
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .xl\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .xl\:py-60 {
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .xl\:py-64 {
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .xl\:py-7 {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .xl\:py-72 {
    padding-top: 18rem;
    padding-bottom: 18rem;
  }

  .xl\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .xl\:py-80 {
    padding-top: 20rem;
    padding-bottom: 20rem;
  }

  .xl\:py-9 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .xl\:py-96 {
    padding-top: 24rem;
    padding-bottom: 24rem;
  }

  .xl\:pb-0 {
    padding-bottom: 0px;
  }

  .xl\:pb-1 {
    padding-bottom: 0.25rem;
  }

  .xl\:pb-10 {
    padding-bottom: 2.5rem;
  }

  .xl\:pb-11 {
    padding-bottom: 2.75rem;
  }

  .xl\:pb-12 {
    padding-bottom: 3rem;
  }

  .xl\:pb-14 {
    padding-bottom: 3.5rem;
  }

  .xl\:pb-16 {
    padding-bottom: 4rem;
  }

  .xl\:pb-2 {
    padding-bottom: 0.5rem;
  }

  .xl\:pb-20 {
    padding-bottom: 5rem;
  }

  .xl\:pb-24 {
    padding-bottom: 6rem;
  }

  .xl\:pb-28 {
    padding-bottom: 7rem;
  }

  .xl\:pb-3 {
    padding-bottom: 0.75rem;
  }

  .xl\:pb-32 {
    padding-bottom: 8rem;
  }

  .xl\:pb-36 {
    padding-bottom: 9rem;
  }

  .xl\:pb-4 {
    padding-bottom: 1rem;
  }

  .xl\:pb-40 {
    padding-bottom: 10rem;
  }

  .xl\:pb-44 {
    padding-bottom: 11rem;
  }

  .xl\:pb-48 {
    padding-bottom: 12rem;
  }

  .xl\:pb-5 {
    padding-bottom: 1.25rem;
  }

  .xl\:pb-52 {
    padding-bottom: 13rem;
  }

  .xl\:pb-56 {
    padding-bottom: 14rem;
  }

  .xl\:pb-6 {
    padding-bottom: 1.5rem;
  }

  .xl\:pb-60 {
    padding-bottom: 15rem;
  }

  .xl\:pb-64 {
    padding-bottom: 16rem;
  }

  .xl\:pb-7 {
    padding-bottom: 1.75rem;
  }

  .xl\:pb-72 {
    padding-bottom: 18rem;
  }

  .xl\:pb-8 {
    padding-bottom: 2rem;
  }

  .xl\:pb-80 {
    padding-bottom: 20rem;
  }

  .xl\:pb-9 {
    padding-bottom: 2.25rem;
  }

  .xl\:pb-96 {
    padding-bottom: 24rem;
  }

  .xl\:pl-0 {
    padding-left: 0px;
  }

  .xl\:pl-1 {
    padding-left: 0.25rem;
  }

  .xl\:pl-10 {
    padding-left: 2.5rem;
  }

  .xl\:pl-11 {
    padding-left: 2.75rem;
  }

  .xl\:pl-12 {
    padding-left: 3rem;
  }

  .xl\:pl-14 {
    padding-left: 3.5rem;
  }

  .xl\:pl-16 {
    padding-left: 4rem;
  }

  .xl\:pl-2 {
    padding-left: 0.5rem;
  }

  .xl\:pl-20 {
    padding-left: 5rem;
  }

  .xl\:pl-24 {
    padding-left: 6rem;
  }

  .xl\:pl-28 {
    padding-left: 7rem;
  }

  .xl\:pl-3 {
    padding-left: 0.75rem;
  }

  .xl\:pl-32 {
    padding-left: 8rem;
  }

  .xl\:pl-36 {
    padding-left: 9rem;
  }

  .xl\:pl-4 {
    padding-left: 1rem;
  }

  .xl\:pl-40 {
    padding-left: 10rem;
  }

  .xl\:pl-44 {
    padding-left: 11rem;
  }

  .xl\:pl-48 {
    padding-left: 12rem;
  }

  .xl\:pl-5 {
    padding-left: 1.25rem;
  }

  .xl\:pl-52 {
    padding-left: 13rem;
  }

  .xl\:pl-56 {
    padding-left: 14rem;
  }

  .xl\:pl-6 {
    padding-left: 1.5rem;
  }

  .xl\:pl-60 {
    padding-left: 15rem;
  }

  .xl\:pl-64 {
    padding-left: 16rem;
  }

  .xl\:pl-7 {
    padding-left: 1.75rem;
  }

  .xl\:pl-72 {
    padding-left: 18rem;
  }

  .xl\:pl-8 {
    padding-left: 2rem;
  }

  .xl\:pl-80 {
    padding-left: 20rem;
  }

  .xl\:pl-9 {
    padding-left: 2.25rem;
  }

  .xl\:pl-96 {
    padding-left: 24rem;
  }

  .xl\:pr-0 {
    padding-right: 0px;
  }

  .xl\:pr-1 {
    padding-right: 0.25rem;
  }

  .xl\:pr-10 {
    padding-right: 2.5rem;
  }

  .xl\:pr-11 {
    padding-right: 2.75rem;
  }

  .xl\:pr-12 {
    padding-right: 3rem;
  }

  .xl\:pr-14 {
    padding-right: 3.5rem;
  }

  .xl\:pr-16 {
    padding-right: 4rem;
  }

  .xl\:pr-2 {
    padding-right: 0.5rem;
  }

  .xl\:pr-20 {
    padding-right: 5rem;
  }

  .xl\:pr-24 {
    padding-right: 6rem;
  }

  .xl\:pr-28 {
    padding-right: 7rem;
  }

  .xl\:pr-3 {
    padding-right: 0.75rem;
  }

  .xl\:pr-32 {
    padding-right: 8rem;
  }

  .xl\:pr-36 {
    padding-right: 9rem;
  }

  .xl\:pr-4 {
    padding-right: 1rem;
  }

  .xl\:pr-40 {
    padding-right: 10rem;
  }

  .xl\:pr-44 {
    padding-right: 11rem;
  }

  .xl\:pr-48 {
    padding-right: 12rem;
  }

  .xl\:pr-5 {
    padding-right: 1.25rem;
  }

  .xl\:pr-52 {
    padding-right: 13rem;
  }

  .xl\:pr-56 {
    padding-right: 14rem;
  }

  .xl\:pr-6 {
    padding-right: 1.5rem;
  }

  .xl\:pr-60 {
    padding-right: 15rem;
  }

  .xl\:pr-64 {
    padding-right: 16rem;
  }

  .xl\:pr-7 {
    padding-right: 1.75rem;
  }

  .xl\:pr-72 {
    padding-right: 18rem;
  }

  .xl\:pr-8 {
    padding-right: 2rem;
  }

  .xl\:pr-80 {
    padding-right: 20rem;
  }

  .xl\:pr-9 {
    padding-right: 2.25rem;
  }

  .xl\:pr-96 {
    padding-right: 24rem;
  }

  .xl\:pt-0 {
    padding-top: 0px;
  }

  .xl\:pt-1 {
    padding-top: 0.25rem;
  }

  .xl\:pt-10 {
    padding-top: 2.5rem;
  }

  .xl\:pt-11 {
    padding-top: 2.75rem;
  }

  .xl\:pt-12 {
    padding-top: 3rem;
  }

  .xl\:pt-14 {
    padding-top: 3.5rem;
  }

  .xl\:pt-16 {
    padding-top: 4rem;
  }

  .xl\:pt-2 {
    padding-top: 0.5rem;
  }

  .xl\:pt-20 {
    padding-top: 5rem;
  }

  .xl\:pt-24 {
    padding-top: 6rem;
  }

  .xl\:pt-28 {
    padding-top: 7rem;
  }

  .xl\:pt-3 {
    padding-top: 0.75rem;
  }

  .xl\:pt-32 {
    padding-top: 8rem;
  }

  .xl\:pt-36 {
    padding-top: 9rem;
  }

  .xl\:pt-4 {
    padding-top: 1rem;
  }

  .xl\:pt-40 {
    padding-top: 10rem;
  }

  .xl\:pt-44 {
    padding-top: 11rem;
  }

  .xl\:pt-48 {
    padding-top: 12rem;
  }

  .xl\:pt-5 {
    padding-top: 1.25rem;
  }

  .xl\:pt-52 {
    padding-top: 13rem;
  }

  .xl\:pt-56 {
    padding-top: 14rem;
  }

  .xl\:pt-6 {
    padding-top: 1.5rem;
  }

  .xl\:pt-60 {
    padding-top: 15rem;
  }

  .xl\:pt-64 {
    padding-top: 16rem;
  }

  .xl\:pt-7 {
    padding-top: 1.75rem;
  }

  .xl\:pt-72 {
    padding-top: 18rem;
  }

  .xl\:pt-8 {
    padding-top: 2rem;
  }

  .xl\:pt-80 {
    padding-top: 20rem;
  }

  .xl\:pt-9 {
    padding-top: 2.25rem;
  }

  .xl\:pt-96 {
    padding-top: 24rem;
  }

  .xl\:font-arial {
    font-family: Arial, Helvetica, sans-serif;
  }

  .xl\:font-assistant {
    font-family: Assistant, sans-serif;
  }

  .xl\:font-dancingscript {
    font-family: Dancing Script, cursive;
  }

  .xl\:font-firacode {
    font-family: Fira Code, monospace;
  }

  .xl\:font-frankRuhlLibre {
    font-family: Frank Ruhl Libre, serif;
  }

  .xl\:font-jetbrains {
    font-family: JetBrains Mono, monospace;
  }

  .xl\:font-lato {
    font-family: Lato, sans-serif;
  }

  .xl\:font-lobster {
    font-family: Lobster, cursive;
  }

  .xl\:font-lobsterTwo {
    font-family: Lobster Two, cursive;
  }

  .xl\:font-lora {
    font-family: Lora, serif;
  }

  .xl\:font-montserrat {
    font-family: Montserrat, sans-serif;
  }

  .xl\:font-opensans {
    font-family: Open Sans, sans-serif;
  }

  .xl\:font-oswald {
    font-family: Oswald, sans-serif;
  }

  .xl\:font-pacifico {
    font-family: Pacifico, cursive;
  }

  .xl\:font-poppins {
    font-family: Poppins, sans-serif;
  }

  .xl\:font-raleway {
    font-family: Raleway, sans-serif;
  }

  .xl\:font-roboto {
    font-family: Roboto, sans-serif;
  }

  .xl\:text-lg {
    font-size: 1.125rem;
  }

  .xl\:text-amber-100 {
    --tw-text-opacity: 1;
    color: rgb(254 243 199 / var(--tw-text-opacity, 1));
  }

  .xl\:text-amber-200 {
    --tw-text-opacity: 1;
    color: rgb(253 230 138 / var(--tw-text-opacity, 1));
  }

  .xl\:text-amber-300 {
    --tw-text-opacity: 1;
    color: rgb(252 211 77 / var(--tw-text-opacity, 1));
  }

  .xl\:text-amber-400 {
    --tw-text-opacity: 1;
    color: rgb(251 191 36 / var(--tw-text-opacity, 1));
  }

  .xl\:text-amber-50 {
    --tw-text-opacity: 1;
    color: rgb(255 251 235 / var(--tw-text-opacity, 1));
  }

  .xl\:text-amber-500 {
    --tw-text-opacity: 1;
    color: rgb(245 158 11 / var(--tw-text-opacity, 1));
  }

  .xl\:text-amber-600 {
    --tw-text-opacity: 1;
    color: rgb(217 119 6 / var(--tw-text-opacity, 1));
  }

  .xl\:text-amber-700 {
    --tw-text-opacity: 1;
    color: rgb(180 83 9 / var(--tw-text-opacity, 1));
  }

  .xl\:text-amber-800 {
    --tw-text-opacity: 1;
    color: rgb(146 64 14 / var(--tw-text-opacity, 1));
  }

  .xl\:text-amber-900 {
    --tw-text-opacity: 1;
    color: rgb(120 53 15 / var(--tw-text-opacity, 1));
  }

  .xl\:text-amber-950 {
    --tw-text-opacity: 1;
    color: rgb(69 26 3 / var(--tw-text-opacity, 1));
  }

  .xl\:text-blue-100 {
    --tw-text-opacity: 1;
    color: rgb(219 234 254 / var(--tw-text-opacity, 1));
  }

  .xl\:text-blue-200 {
    --tw-text-opacity: 1;
    color: rgb(191 219 254 / var(--tw-text-opacity, 1));
  }

  .xl\:text-blue-300 {
    --tw-text-opacity: 1;
    color: rgb(147 197 253 / var(--tw-text-opacity, 1));
  }

  .xl\:text-blue-400 {
    --tw-text-opacity: 1;
    color: rgb(96 165 250 / var(--tw-text-opacity, 1));
  }

  .xl\:text-blue-50 {
    --tw-text-opacity: 1;
    color: rgb(239 246 255 / var(--tw-text-opacity, 1));
  }

  .xl\:text-blue-500 {
    --tw-text-opacity: 1;
    color: rgb(59 130 246 / var(--tw-text-opacity, 1));
  }

  .xl\:text-blue-600 {
    --tw-text-opacity: 1;
    color: rgb(37 99 235 / var(--tw-text-opacity, 1));
  }

  .xl\:text-blue-700 {
    --tw-text-opacity: 1;
    color: rgb(29 78 216 / var(--tw-text-opacity, 1));
  }

  .xl\:text-blue-800 {
    --tw-text-opacity: 1;
    color: rgb(30 64 175 / var(--tw-text-opacity, 1));
  }

  .xl\:text-blue-900 {
    --tw-text-opacity: 1;
    color: rgb(30 58 138 / var(--tw-text-opacity, 1));
  }

  .xl\:text-blue-950 {
    --tw-text-opacity: 1;
    color: rgb(23 37 84 / var(--tw-text-opacity, 1));
  }

  .xl\:text-cyan-100 {
    --tw-text-opacity: 1;
    color: rgb(207 250 254 / var(--tw-text-opacity, 1));
  }

  .xl\:text-cyan-200 {
    --tw-text-opacity: 1;
    color: rgb(165 243 252 / var(--tw-text-opacity, 1));
  }

  .xl\:text-cyan-300 {
    --tw-text-opacity: 1;
    color: rgb(103 232 249 / var(--tw-text-opacity, 1));
  }

  .xl\:text-cyan-400 {
    --tw-text-opacity: 1;
    color: rgb(34 211 238 / var(--tw-text-opacity, 1));
  }

  .xl\:text-cyan-50 {
    --tw-text-opacity: 1;
    color: rgb(236 254 255 / var(--tw-text-opacity, 1));
  }

  .xl\:text-cyan-500 {
    --tw-text-opacity: 1;
    color: rgb(6 182 212 / var(--tw-text-opacity, 1));
  }

  .xl\:text-cyan-600 {
    --tw-text-opacity: 1;
    color: rgb(8 145 178 / var(--tw-text-opacity, 1));
  }

  .xl\:text-cyan-700 {
    --tw-text-opacity: 1;
    color: rgb(14 116 144 / var(--tw-text-opacity, 1));
  }

  .xl\:text-cyan-800 {
    --tw-text-opacity: 1;
    color: rgb(21 94 117 / var(--tw-text-opacity, 1));
  }

  .xl\:text-cyan-900 {
    --tw-text-opacity: 1;
    color: rgb(22 78 99 / var(--tw-text-opacity, 1));
  }

  .xl\:text-cyan-950 {
    --tw-text-opacity: 1;
    color: rgb(8 51 68 / var(--tw-text-opacity, 1));
  }

  .xl\:text-emerald-100 {
    --tw-text-opacity: 1;
    color: rgb(209 250 229 / var(--tw-text-opacity, 1));
  }

  .xl\:text-emerald-200 {
    --tw-text-opacity: 1;
    color: rgb(167 243 208 / var(--tw-text-opacity, 1));
  }

  .xl\:text-emerald-300 {
    --tw-text-opacity: 1;
    color: rgb(110 231 183 / var(--tw-text-opacity, 1));
  }

  .xl\:text-emerald-400 {
    --tw-text-opacity: 1;
    color: rgb(52 211 153 / var(--tw-text-opacity, 1));
  }

  .xl\:text-emerald-50 {
    --tw-text-opacity: 1;
    color: rgb(236 253 245 / var(--tw-text-opacity, 1));
  }

  .xl\:text-emerald-500 {
    --tw-text-opacity: 1;
    color: rgb(16 185 129 / var(--tw-text-opacity, 1));
  }

  .xl\:text-emerald-600 {
    --tw-text-opacity: 1;
    color: rgb(5 150 105 / var(--tw-text-opacity, 1));
  }

  .xl\:text-emerald-700 {
    --tw-text-opacity: 1;
    color: rgb(4 120 87 / var(--tw-text-opacity, 1));
  }

  .xl\:text-emerald-800 {
    --tw-text-opacity: 1;
    color: rgb(6 95 70 / var(--tw-text-opacity, 1));
  }

  .xl\:text-emerald-900 {
    --tw-text-opacity: 1;
    color: rgb(6 78 59 / var(--tw-text-opacity, 1));
  }

  .xl\:text-emerald-950 {
    --tw-text-opacity: 1;
    color: rgb(2 44 34 / var(--tw-text-opacity, 1));
  }

  .xl\:text-fuchsia-100 {
    --tw-text-opacity: 1;
    color: rgb(250 232 255 / var(--tw-text-opacity, 1));
  }

  .xl\:text-fuchsia-200 {
    --tw-text-opacity: 1;
    color: rgb(245 208 254 / var(--tw-text-opacity, 1));
  }

  .xl\:text-fuchsia-300 {
    --tw-text-opacity: 1;
    color: rgb(240 171 252 / var(--tw-text-opacity, 1));
  }

  .xl\:text-fuchsia-400 {
    --tw-text-opacity: 1;
    color: rgb(232 121 249 / var(--tw-text-opacity, 1));
  }

  .xl\:text-fuchsia-50 {
    --tw-text-opacity: 1;
    color: rgb(253 244 255 / var(--tw-text-opacity, 1));
  }

  .xl\:text-fuchsia-500 {
    --tw-text-opacity: 1;
    color: rgb(217 70 239 / var(--tw-text-opacity, 1));
  }

  .xl\:text-fuchsia-600 {
    --tw-text-opacity: 1;
    color: rgb(192 38 211 / var(--tw-text-opacity, 1));
  }

  .xl\:text-fuchsia-700 {
    --tw-text-opacity: 1;
    color: rgb(162 28 175 / var(--tw-text-opacity, 1));
  }

  .xl\:text-fuchsia-800 {
    --tw-text-opacity: 1;
    color: rgb(134 25 143 / var(--tw-text-opacity, 1));
  }

  .xl\:text-fuchsia-900 {
    --tw-text-opacity: 1;
    color: rgb(112 26 117 / var(--tw-text-opacity, 1));
  }

  .xl\:text-fuchsia-950 {
    --tw-text-opacity: 1;
    color: rgb(74 4 78 / var(--tw-text-opacity, 1));
  }

  .xl\:text-gray-100 {
    --tw-text-opacity: 1;
    color: rgb(243 244 246 / var(--tw-text-opacity, 1));
  }

  .xl\:text-gray-200 {
    --tw-text-opacity: 1;
    color: rgb(229 231 235 / var(--tw-text-opacity, 1));
  }

  .xl\:text-gray-300 {
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity, 1));
  }

  .xl\:text-gray-400 {
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
  }

  .xl\:text-gray-50 {
    --tw-text-opacity: 1;
    color: rgb(249 250 251 / var(--tw-text-opacity, 1));
  }

  .xl\:text-gray-500 {
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }

  .xl\:text-gray-600 {
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }

  .xl\:text-gray-700 {
    --tw-text-opacity: 1;
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
  }

  .xl\:text-gray-800 {
    --tw-text-opacity: 1;
    color: rgb(31 41 55 / var(--tw-text-opacity, 1));
  }

  .xl\:text-gray-900 {
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }

  .xl\:text-gray-950 {
    --tw-text-opacity: 1;
    color: rgb(3 7 18 / var(--tw-text-opacity, 1));
  }

  .xl\:text-green-100 {
    --tw-text-opacity: 1;
    color: rgb(220 252 231 / var(--tw-text-opacity, 1));
  }

  .xl\:text-green-200 {
    --tw-text-opacity: 1;
    color: rgb(187 247 208 / var(--tw-text-opacity, 1));
  }

  .xl\:text-green-300 {
    --tw-text-opacity: 1;
    color: rgb(134 239 172 / var(--tw-text-opacity, 1));
  }

  .xl\:text-green-400 {
    --tw-text-opacity: 1;
    color: rgb(74 222 128 / var(--tw-text-opacity, 1));
  }

  .xl\:text-green-50 {
    --tw-text-opacity: 1;
    color: rgb(240 253 244 / var(--tw-text-opacity, 1));
  }

  .xl\:text-green-500 {
    --tw-text-opacity: 1;
    color: rgb(34 197 94 / var(--tw-text-opacity, 1));
  }

  .xl\:text-green-600 {
    --tw-text-opacity: 1;
    color: rgb(22 163 74 / var(--tw-text-opacity, 1));
  }

  .xl\:text-green-700 {
    --tw-text-opacity: 1;
    color: rgb(21 128 61 / var(--tw-text-opacity, 1));
  }

  .xl\:text-green-800 {
    --tw-text-opacity: 1;
    color: rgb(22 101 52 / var(--tw-text-opacity, 1));
  }

  .xl\:text-green-900 {
    --tw-text-opacity: 1;
    color: rgb(20 83 45 / var(--tw-text-opacity, 1));
  }

  .xl\:text-green-950 {
    --tw-text-opacity: 1;
    color: rgb(5 46 22 / var(--tw-text-opacity, 1));
  }

  .xl\:text-indigo-100 {
    --tw-text-opacity: 1;
    color: rgb(224 231 255 / var(--tw-text-opacity, 1));
  }

  .xl\:text-indigo-200 {
    --tw-text-opacity: 1;
    color: rgb(199 210 254 / var(--tw-text-opacity, 1));
  }

  .xl\:text-indigo-300 {
    --tw-text-opacity: 1;
    color: rgb(165 180 252 / var(--tw-text-opacity, 1));
  }

  .xl\:text-indigo-400 {
    --tw-text-opacity: 1;
    color: rgb(129 140 248 / var(--tw-text-opacity, 1));
  }

  .xl\:text-indigo-50 {
    --tw-text-opacity: 1;
    color: rgb(238 242 255 / var(--tw-text-opacity, 1));
  }

  .xl\:text-indigo-500 {
    --tw-text-opacity: 1;
    color: rgb(99 102 241 / var(--tw-text-opacity, 1));
  }

  .xl\:text-indigo-600 {
    --tw-text-opacity: 1;
    color: rgb(79 70 229 / var(--tw-text-opacity, 1));
  }

  .xl\:text-indigo-700 {
    --tw-text-opacity: 1;
    color: rgb(67 56 202 / var(--tw-text-opacity, 1));
  }

  .xl\:text-indigo-800 {
    --tw-text-opacity: 1;
    color: rgb(55 48 163 / var(--tw-text-opacity, 1));
  }

  .xl\:text-indigo-900 {
    --tw-text-opacity: 1;
    color: rgb(49 46 129 / var(--tw-text-opacity, 1));
  }

  .xl\:text-indigo-950 {
    --tw-text-opacity: 1;
    color: rgb(30 27 75 / var(--tw-text-opacity, 1));
  }

  .xl\:text-lime-100 {
    --tw-text-opacity: 1;
    color: rgb(236 252 203 / var(--tw-text-opacity, 1));
  }

  .xl\:text-lime-200 {
    --tw-text-opacity: 1;
    color: rgb(217 249 157 / var(--tw-text-opacity, 1));
  }

  .xl\:text-lime-300 {
    --tw-text-opacity: 1;
    color: rgb(190 242 100 / var(--tw-text-opacity, 1));
  }

  .xl\:text-lime-400 {
    --tw-text-opacity: 1;
    color: rgb(163 230 53 / var(--tw-text-opacity, 1));
  }

  .xl\:text-lime-50 {
    --tw-text-opacity: 1;
    color: rgb(247 254 231 / var(--tw-text-opacity, 1));
  }

  .xl\:text-lime-500 {
    --tw-text-opacity: 1;
    color: rgb(132 204 22 / var(--tw-text-opacity, 1));
  }

  .xl\:text-lime-600 {
    --tw-text-opacity: 1;
    color: rgb(101 163 13 / var(--tw-text-opacity, 1));
  }

  .xl\:text-lime-700 {
    --tw-text-opacity: 1;
    color: rgb(77 124 15 / var(--tw-text-opacity, 1));
  }

  .xl\:text-lime-800 {
    --tw-text-opacity: 1;
    color: rgb(63 98 18 / var(--tw-text-opacity, 1));
  }

  .xl\:text-lime-900 {
    --tw-text-opacity: 1;
    color: rgb(54 83 20 / var(--tw-text-opacity, 1));
  }

  .xl\:text-lime-950 {
    --tw-text-opacity: 1;
    color: rgb(26 46 5 / var(--tw-text-opacity, 1));
  }

  .xl\:text-neutral-100 {
    --tw-text-opacity: 1;
    color: rgb(245 245 245 / var(--tw-text-opacity, 1));
  }

  .xl\:text-neutral-200 {
    --tw-text-opacity: 1;
    color: rgb(229 229 229 / var(--tw-text-opacity, 1));
  }

  .xl\:text-neutral-300 {
    --tw-text-opacity: 1;
    color: rgb(212 212 212 / var(--tw-text-opacity, 1));
  }

  .xl\:text-neutral-400 {
    --tw-text-opacity: 1;
    color: rgb(163 163 163 / var(--tw-text-opacity, 1));
  }

  .xl\:text-neutral-50 {
    --tw-text-opacity: 1;
    color: rgb(250 250 250 / var(--tw-text-opacity, 1));
  }

  .xl\:text-neutral-500 {
    --tw-text-opacity: 1;
    color: rgb(115 115 115 / var(--tw-text-opacity, 1));
  }

  .xl\:text-neutral-600 {
    --tw-text-opacity: 1;
    color: rgb(82 82 82 / var(--tw-text-opacity, 1));
  }

  .xl\:text-neutral-700 {
    --tw-text-opacity: 1;
    color: rgb(64 64 64 / var(--tw-text-opacity, 1));
  }

  .xl\:text-neutral-800 {
    --tw-text-opacity: 1;
    color: rgb(38 38 38 / var(--tw-text-opacity, 1));
  }

  .xl\:text-neutral-900 {
    --tw-text-opacity: 1;
    color: rgb(23 23 23 / var(--tw-text-opacity, 1));
  }

  .xl\:text-neutral-950 {
    --tw-text-opacity: 1;
    color: rgb(10 10 10 / var(--tw-text-opacity, 1));
  }

  .xl\:text-orange-100 {
    --tw-text-opacity: 1;
    color: rgb(255 237 213 / var(--tw-text-opacity, 1));
  }

  .xl\:text-orange-200 {
    --tw-text-opacity: 1;
    color: rgb(254 215 170 / var(--tw-text-opacity, 1));
  }

  .xl\:text-orange-300 {
    --tw-text-opacity: 1;
    color: rgb(253 186 116 / var(--tw-text-opacity, 1));
  }

  .xl\:text-orange-400 {
    --tw-text-opacity: 1;
    color: rgb(251 146 60 / var(--tw-text-opacity, 1));
  }

  .xl\:text-orange-50 {
    --tw-text-opacity: 1;
    color: rgb(255 247 237 / var(--tw-text-opacity, 1));
  }

  .xl\:text-orange-500 {
    --tw-text-opacity: 1;
    color: rgb(249 115 22 / var(--tw-text-opacity, 1));
  }

  .xl\:text-orange-600 {
    --tw-text-opacity: 1;
    color: rgb(234 88 12 / var(--tw-text-opacity, 1));
  }

  .xl\:text-orange-700 {
    --tw-text-opacity: 1;
    color: rgb(194 65 12 / var(--tw-text-opacity, 1));
  }

  .xl\:text-orange-800 {
    --tw-text-opacity: 1;
    color: rgb(154 52 18 / var(--tw-text-opacity, 1));
  }

  .xl\:text-orange-900 {
    --tw-text-opacity: 1;
    color: rgb(124 45 18 / var(--tw-text-opacity, 1));
  }

  .xl\:text-orange-950 {
    --tw-text-opacity: 1;
    color: rgb(67 20 7 / var(--tw-text-opacity, 1));
  }

  .xl\:text-pink-100 {
    --tw-text-opacity: 1;
    color: rgb(252 231 243 / var(--tw-text-opacity, 1));
  }

  .xl\:text-pink-200 {
    --tw-text-opacity: 1;
    color: rgb(251 207 232 / var(--tw-text-opacity, 1));
  }

  .xl\:text-pink-300 {
    --tw-text-opacity: 1;
    color: rgb(249 168 212 / var(--tw-text-opacity, 1));
  }

  .xl\:text-pink-400 {
    --tw-text-opacity: 1;
    color: rgb(244 114 182 / var(--tw-text-opacity, 1));
  }

  .xl\:text-pink-50 {
    --tw-text-opacity: 1;
    color: rgb(253 242 248 / var(--tw-text-opacity, 1));
  }

  .xl\:text-pink-500 {
    --tw-text-opacity: 1;
    color: rgb(236 72 153 / var(--tw-text-opacity, 1));
  }

  .xl\:text-pink-600 {
    --tw-text-opacity: 1;
    color: rgb(219 39 119 / var(--tw-text-opacity, 1));
  }

  .xl\:text-pink-700 {
    --tw-text-opacity: 1;
    color: rgb(190 24 93 / var(--tw-text-opacity, 1));
  }

  .xl\:text-pink-800 {
    --tw-text-opacity: 1;
    color: rgb(157 23 77 / var(--tw-text-opacity, 1));
  }

  .xl\:text-pink-900 {
    --tw-text-opacity: 1;
    color: rgb(131 24 67 / var(--tw-text-opacity, 1));
  }

  .xl\:text-pink-950 {
    --tw-text-opacity: 1;
    color: rgb(80 7 36 / var(--tw-text-opacity, 1));
  }

  .xl\:text-purple-100 {
    --tw-text-opacity: 1;
    color: rgb(243 232 255 / var(--tw-text-opacity, 1));
  }

  .xl\:text-purple-200 {
    --tw-text-opacity: 1;
    color: rgb(233 213 255 / var(--tw-text-opacity, 1));
  }

  .xl\:text-purple-300 {
    --tw-text-opacity: 1;
    color: rgb(216 180 254 / var(--tw-text-opacity, 1));
  }

  .xl\:text-purple-400 {
    --tw-text-opacity: 1;
    color: rgb(192 132 252 / var(--tw-text-opacity, 1));
  }

  .xl\:text-purple-50 {
    --tw-text-opacity: 1;
    color: rgb(250 245 255 / var(--tw-text-opacity, 1));
  }

  .xl\:text-purple-500 {
    --tw-text-opacity: 1;
    color: rgb(168 85 247 / var(--tw-text-opacity, 1));
  }

  .xl\:text-purple-600 {
    --tw-text-opacity: 1;
    color: rgb(147 51 234 / var(--tw-text-opacity, 1));
  }

  .xl\:text-purple-700 {
    --tw-text-opacity: 1;
    color: rgb(126 34 206 / var(--tw-text-opacity, 1));
  }

  .xl\:text-purple-800 {
    --tw-text-opacity: 1;
    color: rgb(107 33 168 / var(--tw-text-opacity, 1));
  }

  .xl\:text-purple-900 {
    --tw-text-opacity: 1;
    color: rgb(88 28 135 / var(--tw-text-opacity, 1));
  }

  .xl\:text-purple-950 {
    --tw-text-opacity: 1;
    color: rgb(59 7 100 / var(--tw-text-opacity, 1));
  }

  .xl\:text-red-100 {
    --tw-text-opacity: 1;
    color: rgb(254 226 226 / var(--tw-text-opacity, 1));
  }

  .xl\:text-red-200 {
    --tw-text-opacity: 1;
    color: rgb(254 202 202 / var(--tw-text-opacity, 1));
  }

  .xl\:text-red-300 {
    --tw-text-opacity: 1;
    color: rgb(252 165 165 / var(--tw-text-opacity, 1));
  }

  .xl\:text-red-400 {
    --tw-text-opacity: 1;
    color: rgb(248 113 113 / var(--tw-text-opacity, 1));
  }

  .xl\:text-red-50 {
    --tw-text-opacity: 1;
    color: rgb(254 242 242 / var(--tw-text-opacity, 1));
  }

  .xl\:text-red-500 {
    --tw-text-opacity: 1;
    color: rgb(239 68 68 / var(--tw-text-opacity, 1));
  }

  .xl\:text-red-600 {
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity, 1));
  }

  .xl\:text-red-700 {
    --tw-text-opacity: 1;
    color: rgb(185 28 28 / var(--tw-text-opacity, 1));
  }

  .xl\:text-red-800 {
    --tw-text-opacity: 1;
    color: rgb(153 27 27 / var(--tw-text-opacity, 1));
  }

  .xl\:text-red-900 {
    --tw-text-opacity: 1;
    color: rgb(127 29 29 / var(--tw-text-opacity, 1));
  }

  .xl\:text-red-950 {
    --tw-text-opacity: 1;
    color: rgb(69 10 10 / var(--tw-text-opacity, 1));
  }

  .xl\:text-rose-100 {
    --tw-text-opacity: 1;
    color: rgb(255 228 230 / var(--tw-text-opacity, 1));
  }

  .xl\:text-rose-200 {
    --tw-text-opacity: 1;
    color: rgb(254 205 211 / var(--tw-text-opacity, 1));
  }

  .xl\:text-rose-300 {
    --tw-text-opacity: 1;
    color: rgb(253 164 175 / var(--tw-text-opacity, 1));
  }

  .xl\:text-rose-400 {
    --tw-text-opacity: 1;
    color: rgb(251 113 133 / var(--tw-text-opacity, 1));
  }

  .xl\:text-rose-50 {
    --tw-text-opacity: 1;
    color: rgb(255 241 242 / var(--tw-text-opacity, 1));
  }

  .xl\:text-rose-500 {
    --tw-text-opacity: 1;
    color: rgb(244 63 94 / var(--tw-text-opacity, 1));
  }

  .xl\:text-rose-600 {
    --tw-text-opacity: 1;
    color: rgb(225 29 72 / var(--tw-text-opacity, 1));
  }

  .xl\:text-rose-700 {
    --tw-text-opacity: 1;
    color: rgb(190 18 60 / var(--tw-text-opacity, 1));
  }

  .xl\:text-rose-800 {
    --tw-text-opacity: 1;
    color: rgb(159 18 57 / var(--tw-text-opacity, 1));
  }

  .xl\:text-rose-900 {
    --tw-text-opacity: 1;
    color: rgb(136 19 55 / var(--tw-text-opacity, 1));
  }

  .xl\:text-rose-950 {
    --tw-text-opacity: 1;
    color: rgb(76 5 25 / var(--tw-text-opacity, 1));
  }

  .xl\:text-sky-100 {
    --tw-text-opacity: 1;
    color: rgb(224 242 254 / var(--tw-text-opacity, 1));
  }

  .xl\:text-sky-200 {
    --tw-text-opacity: 1;
    color: rgb(186 230 253 / var(--tw-text-opacity, 1));
  }

  .xl\:text-sky-300 {
    --tw-text-opacity: 1;
    color: rgb(125 211 252 / var(--tw-text-opacity, 1));
  }

  .xl\:text-sky-400 {
    --tw-text-opacity: 1;
    color: rgb(56 189 248 / var(--tw-text-opacity, 1));
  }

  .xl\:text-sky-50 {
    --tw-text-opacity: 1;
    color: rgb(240 249 255 / var(--tw-text-opacity, 1));
  }

  .xl\:text-sky-500 {
    --tw-text-opacity: 1;
    color: rgb(14 165 233 / var(--tw-text-opacity, 1));
  }

  .xl\:text-sky-600 {
    --tw-text-opacity: 1;
    color: rgb(2 132 199 / var(--tw-text-opacity, 1));
  }

  .xl\:text-sky-700 {
    --tw-text-opacity: 1;
    color: rgb(3 105 161 / var(--tw-text-opacity, 1));
  }

  .xl\:text-sky-800 {
    --tw-text-opacity: 1;
    color: rgb(7 89 133 / var(--tw-text-opacity, 1));
  }

  .xl\:text-sky-900 {
    --tw-text-opacity: 1;
    color: rgb(12 74 110 / var(--tw-text-opacity, 1));
  }

  .xl\:text-sky-950 {
    --tw-text-opacity: 1;
    color: rgb(8 47 73 / var(--tw-text-opacity, 1));
  }

  .xl\:text-slate-100 {
    --tw-text-opacity: 1;
    color: rgb(241 245 249 / var(--tw-text-opacity, 1));
  }

  .xl\:text-slate-200 {
    --tw-text-opacity: 1;
    color: rgb(226 232 240 / var(--tw-text-opacity, 1));
  }

  .xl\:text-slate-300 {
    --tw-text-opacity: 1;
    color: rgb(203 213 225 / var(--tw-text-opacity, 1));
  }

  .xl\:text-slate-400 {
    --tw-text-opacity: 1;
    color: rgb(148 163 184 / var(--tw-text-opacity, 1));
  }

  .xl\:text-slate-50 {
    --tw-text-opacity: 1;
    color: rgb(248 250 252 / var(--tw-text-opacity, 1));
  }

  .xl\:text-slate-500 {
    --tw-text-opacity: 1;
    color: rgb(100 116 139 / var(--tw-text-opacity, 1));
  }

  .xl\:text-slate-600 {
    --tw-text-opacity: 1;
    color: rgb(71 85 105 / var(--tw-text-opacity, 1));
  }

  .xl\:text-slate-700 {
    --tw-text-opacity: 1;
    color: rgb(51 65 85 / var(--tw-text-opacity, 1));
  }

  .xl\:text-slate-800 {
    --tw-text-opacity: 1;
    color: rgb(30 41 59 / var(--tw-text-opacity, 1));
  }

  .xl\:text-slate-900 {
    --tw-text-opacity: 1;
    color: rgb(15 23 42 / var(--tw-text-opacity, 1));
  }

  .xl\:text-slate-950 {
    --tw-text-opacity: 1;
    color: rgb(2 6 23 / var(--tw-text-opacity, 1));
  }

  .xl\:text-stone-100 {
    --tw-text-opacity: 1;
    color: rgb(245 245 244 / var(--tw-text-opacity, 1));
  }

  .xl\:text-stone-200 {
    --tw-text-opacity: 1;
    color: rgb(231 229 228 / var(--tw-text-opacity, 1));
  }

  .xl\:text-stone-300 {
    --tw-text-opacity: 1;
    color: rgb(214 211 209 / var(--tw-text-opacity, 1));
  }

  .xl\:text-stone-400 {
    --tw-text-opacity: 1;
    color: rgb(168 162 158 / var(--tw-text-opacity, 1));
  }

  .xl\:text-stone-50 {
    --tw-text-opacity: 1;
    color: rgb(250 250 249 / var(--tw-text-opacity, 1));
  }

  .xl\:text-stone-500 {
    --tw-text-opacity: 1;
    color: rgb(120 113 108 / var(--tw-text-opacity, 1));
  }

  .xl\:text-stone-600 {
    --tw-text-opacity: 1;
    color: rgb(87 83 78 / var(--tw-text-opacity, 1));
  }

  .xl\:text-stone-700 {
    --tw-text-opacity: 1;
    color: rgb(68 64 60 / var(--tw-text-opacity, 1));
  }

  .xl\:text-stone-800 {
    --tw-text-opacity: 1;
    color: rgb(41 37 36 / var(--tw-text-opacity, 1));
  }

  .xl\:text-stone-900 {
    --tw-text-opacity: 1;
    color: rgb(28 25 23 / var(--tw-text-opacity, 1));
  }

  .xl\:text-stone-950 {
    --tw-text-opacity: 1;
    color: rgb(12 10 9 / var(--tw-text-opacity, 1));
  }

  .xl\:text-teal-100 {
    --tw-text-opacity: 1;
    color: rgb(204 251 241 / var(--tw-text-opacity, 1));
  }

  .xl\:text-teal-200 {
    --tw-text-opacity: 1;
    color: rgb(153 246 228 / var(--tw-text-opacity, 1));
  }

  .xl\:text-teal-300 {
    --tw-text-opacity: 1;
    color: rgb(94 234 212 / var(--tw-text-opacity, 1));
  }

  .xl\:text-teal-400 {
    --tw-text-opacity: 1;
    color: rgb(45 212 191 / var(--tw-text-opacity, 1));
  }

  .xl\:text-teal-50 {
    --tw-text-opacity: 1;
    color: rgb(240 253 250 / var(--tw-text-opacity, 1));
  }

  .xl\:text-teal-500 {
    --tw-text-opacity: 1;
    color: rgb(20 184 166 / var(--tw-text-opacity, 1));
  }

  .xl\:text-teal-600 {
    --tw-text-opacity: 1;
    color: rgb(13 148 136 / var(--tw-text-opacity, 1));
  }

  .xl\:text-teal-700 {
    --tw-text-opacity: 1;
    color: rgb(15 118 110 / var(--tw-text-opacity, 1));
  }

  .xl\:text-teal-800 {
    --tw-text-opacity: 1;
    color: rgb(17 94 89 / var(--tw-text-opacity, 1));
  }

  .xl\:text-teal-900 {
    --tw-text-opacity: 1;
    color: rgb(19 78 74 / var(--tw-text-opacity, 1));
  }

  .xl\:text-teal-950 {
    --tw-text-opacity: 1;
    color: rgb(4 47 46 / var(--tw-text-opacity, 1));
  }

  .xl\:text-violet-100 {
    --tw-text-opacity: 1;
    color: rgb(237 233 254 / var(--tw-text-opacity, 1));
  }

  .xl\:text-violet-200 {
    --tw-text-opacity: 1;
    color: rgb(221 214 254 / var(--tw-text-opacity, 1));
  }

  .xl\:text-violet-300 {
    --tw-text-opacity: 1;
    color: rgb(196 181 253 / var(--tw-text-opacity, 1));
  }

  .xl\:text-violet-400 {
    --tw-text-opacity: 1;
    color: rgb(167 139 250 / var(--tw-text-opacity, 1));
  }

  .xl\:text-violet-50 {
    --tw-text-opacity: 1;
    color: rgb(245 243 255 / var(--tw-text-opacity, 1));
  }

  .xl\:text-violet-500 {
    --tw-text-opacity: 1;
    color: rgb(139 92 246 / var(--tw-text-opacity, 1));
  }

  .xl\:text-violet-600 {
    --tw-text-opacity: 1;
    color: rgb(124 58 237 / var(--tw-text-opacity, 1));
  }

  .xl\:text-violet-700 {
    --tw-text-opacity: 1;
    color: rgb(109 40 217 / var(--tw-text-opacity, 1));
  }

  .xl\:text-violet-800 {
    --tw-text-opacity: 1;
    color: rgb(91 33 182 / var(--tw-text-opacity, 1));
  }

  .xl\:text-violet-900 {
    --tw-text-opacity: 1;
    color: rgb(76 29 149 / var(--tw-text-opacity, 1));
  }

  .xl\:text-violet-950 {
    --tw-text-opacity: 1;
    color: rgb(46 16 101 / var(--tw-text-opacity, 1));
  }

  .xl\:text-yellow-100 {
    --tw-text-opacity: 1;
    color: rgb(254 249 195 / var(--tw-text-opacity, 1));
  }

  .xl\:text-yellow-200 {
    --tw-text-opacity: 1;
    color: rgb(254 240 138 / var(--tw-text-opacity, 1));
  }

  .xl\:text-yellow-300 {
    --tw-text-opacity: 1;
    color: rgb(253 224 71 / var(--tw-text-opacity, 1));
  }

  .xl\:text-yellow-400 {
    --tw-text-opacity: 1;
    color: rgb(250 204 21 / var(--tw-text-opacity, 1));
  }

  .xl\:text-yellow-50 {
    --tw-text-opacity: 1;
    color: rgb(254 252 232 / var(--tw-text-opacity, 1));
  }

  .xl\:text-yellow-500 {
    --tw-text-opacity: 1;
    color: rgb(234 179 8 / var(--tw-text-opacity, 1));
  }

  .xl\:text-yellow-600 {
    --tw-text-opacity: 1;
    color: rgb(202 138 4 / var(--tw-text-opacity, 1));
  }

  .xl\:text-yellow-700 {
    --tw-text-opacity: 1;
    color: rgb(161 98 7 / var(--tw-text-opacity, 1));
  }

  .xl\:text-yellow-800 {
    --tw-text-opacity: 1;
    color: rgb(133 77 14 / var(--tw-text-opacity, 1));
  }

  .xl\:text-yellow-900 {
    --tw-text-opacity: 1;
    color: rgb(113 63 18 / var(--tw-text-opacity, 1));
  }

  .xl\:text-yellow-950 {
    --tw-text-opacity: 1;
    color: rgb(66 32 6 / var(--tw-text-opacity, 1));
  }

  .xl\:text-zinc-100 {
    --tw-text-opacity: 1;
    color: rgb(244 244 245 / var(--tw-text-opacity, 1));
  }

  .xl\:text-zinc-200 {
    --tw-text-opacity: 1;
    color: rgb(228 228 231 / var(--tw-text-opacity, 1));
  }

  .xl\:text-zinc-300 {
    --tw-text-opacity: 1;
    color: rgb(212 212 216 / var(--tw-text-opacity, 1));
  }

  .xl\:text-zinc-400 {
    --tw-text-opacity: 1;
    color: rgb(161 161 170 / var(--tw-text-opacity, 1));
  }

  .xl\:text-zinc-50 {
    --tw-text-opacity: 1;
    color: rgb(250 250 250 / var(--tw-text-opacity, 1));
  }

  .xl\:text-zinc-500 {
    --tw-text-opacity: 1;
    color: rgb(113 113 122 / var(--tw-text-opacity, 1));
  }

  .xl\:text-zinc-600 {
    --tw-text-opacity: 1;
    color: rgb(82 82 91 / var(--tw-text-opacity, 1));
  }

  .xl\:text-zinc-700 {
    --tw-text-opacity: 1;
    color: rgb(63 63 70 / var(--tw-text-opacity, 1));
  }

  .xl\:text-zinc-800 {
    --tw-text-opacity: 1;
    color: rgb(39 39 42 / var(--tw-text-opacity, 1));
  }

  .xl\:text-zinc-900 {
    --tw-text-opacity: 1;
    color: rgb(24 24 27 / var(--tw-text-opacity, 1));
  }

  .xl\:text-zinc-950 {
    --tw-text-opacity: 1;
    color: rgb(9 9 11 / var(--tw-text-opacity, 1));
  }

  .xl\:shadow-lg {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .xl\:shadow-md {
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .xl\:shadow-sm {
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .xl\:shadow-amber-100 {
    --tw-shadow-color: #fef3c7;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-100\/10 {
    --tw-shadow-color: rgb(254 243 199 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-100\/20 {
    --tw-shadow-color: rgb(254 243 199 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-100\/30 {
    --tw-shadow-color: rgb(254 243 199 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-100\/40 {
    --tw-shadow-color: rgb(254 243 199 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-100\/5 {
    --tw-shadow-color: rgb(254 243 199 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-100\/50 {
    --tw-shadow-color: rgb(254 243 199 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-100\/60 {
    --tw-shadow-color: rgb(254 243 199 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-100\/70 {
    --tw-shadow-color: rgb(254 243 199 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-100\/80 {
    --tw-shadow-color: rgb(254 243 199 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-100\/90 {
    --tw-shadow-color: rgb(254 243 199 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-200 {
    --tw-shadow-color: #fde68a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-200\/10 {
    --tw-shadow-color: rgb(253 230 138 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-200\/20 {
    --tw-shadow-color: rgb(253 230 138 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-200\/30 {
    --tw-shadow-color: rgb(253 230 138 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-200\/40 {
    --tw-shadow-color: rgb(253 230 138 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-200\/5 {
    --tw-shadow-color: rgb(253 230 138 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-200\/50 {
    --tw-shadow-color: rgb(253 230 138 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-200\/60 {
    --tw-shadow-color: rgb(253 230 138 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-200\/70 {
    --tw-shadow-color: rgb(253 230 138 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-200\/80 {
    --tw-shadow-color: rgb(253 230 138 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-200\/90 {
    --tw-shadow-color: rgb(253 230 138 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-300 {
    --tw-shadow-color: #fcd34d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-300\/10 {
    --tw-shadow-color: rgb(252 211 77 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-300\/20 {
    --tw-shadow-color: rgb(252 211 77 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-300\/30 {
    --tw-shadow-color: rgb(252 211 77 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-300\/40 {
    --tw-shadow-color: rgb(252 211 77 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-300\/5 {
    --tw-shadow-color: rgb(252 211 77 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-300\/50 {
    --tw-shadow-color: rgb(252 211 77 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-300\/60 {
    --tw-shadow-color: rgb(252 211 77 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-300\/70 {
    --tw-shadow-color: rgb(252 211 77 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-300\/80 {
    --tw-shadow-color: rgb(252 211 77 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-300\/90 {
    --tw-shadow-color: rgb(252 211 77 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-400 {
    --tw-shadow-color: #fbbf24;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-400\/10 {
    --tw-shadow-color: rgb(251 191 36 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-400\/20 {
    --tw-shadow-color: rgb(251 191 36 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-400\/30 {
    --tw-shadow-color: rgb(251 191 36 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-400\/40 {
    --tw-shadow-color: rgb(251 191 36 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-400\/5 {
    --tw-shadow-color: rgb(251 191 36 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-400\/50 {
    --tw-shadow-color: rgb(251 191 36 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-400\/60 {
    --tw-shadow-color: rgb(251 191 36 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-400\/70 {
    --tw-shadow-color: rgb(251 191 36 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-400\/80 {
    --tw-shadow-color: rgb(251 191 36 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-400\/90 {
    --tw-shadow-color: rgb(251 191 36 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-50 {
    --tw-shadow-color: #fffbeb;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-50\/10 {
    --tw-shadow-color: rgb(255 251 235 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-50\/20 {
    --tw-shadow-color: rgb(255 251 235 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-50\/30 {
    --tw-shadow-color: rgb(255 251 235 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-50\/40 {
    --tw-shadow-color: rgb(255 251 235 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-50\/5 {
    --tw-shadow-color: rgb(255 251 235 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-50\/50 {
    --tw-shadow-color: rgb(255 251 235 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-50\/60 {
    --tw-shadow-color: rgb(255 251 235 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-50\/70 {
    --tw-shadow-color: rgb(255 251 235 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-50\/80 {
    --tw-shadow-color: rgb(255 251 235 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-50\/90 {
    --tw-shadow-color: rgb(255 251 235 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-500 {
    --tw-shadow-color: #f59e0b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-500\/10 {
    --tw-shadow-color: rgb(245 158 11 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-500\/20 {
    --tw-shadow-color: rgb(245 158 11 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-500\/30 {
    --tw-shadow-color: rgb(245 158 11 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-500\/40 {
    --tw-shadow-color: rgb(245 158 11 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-500\/5 {
    --tw-shadow-color: rgb(245 158 11 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-500\/50 {
    --tw-shadow-color: rgb(245 158 11 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-500\/60 {
    --tw-shadow-color: rgb(245 158 11 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-500\/70 {
    --tw-shadow-color: rgb(245 158 11 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-500\/80 {
    --tw-shadow-color: rgb(245 158 11 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-500\/90 {
    --tw-shadow-color: rgb(245 158 11 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-600 {
    --tw-shadow-color: #d97706;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-600\/10 {
    --tw-shadow-color: rgb(217 119 6 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-600\/20 {
    --tw-shadow-color: rgb(217 119 6 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-600\/30 {
    --tw-shadow-color: rgb(217 119 6 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-600\/40 {
    --tw-shadow-color: rgb(217 119 6 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-600\/5 {
    --tw-shadow-color: rgb(217 119 6 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-600\/50 {
    --tw-shadow-color: rgb(217 119 6 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-600\/60 {
    --tw-shadow-color: rgb(217 119 6 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-600\/70 {
    --tw-shadow-color: rgb(217 119 6 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-600\/80 {
    --tw-shadow-color: rgb(217 119 6 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-600\/90 {
    --tw-shadow-color: rgb(217 119 6 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-700 {
    --tw-shadow-color: #b45309;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-700\/10 {
    --tw-shadow-color: rgb(180 83 9 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-700\/20 {
    --tw-shadow-color: rgb(180 83 9 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-700\/30 {
    --tw-shadow-color: rgb(180 83 9 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-700\/40 {
    --tw-shadow-color: rgb(180 83 9 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-700\/5 {
    --tw-shadow-color: rgb(180 83 9 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-700\/50 {
    --tw-shadow-color: rgb(180 83 9 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-700\/60 {
    --tw-shadow-color: rgb(180 83 9 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-700\/70 {
    --tw-shadow-color: rgb(180 83 9 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-700\/80 {
    --tw-shadow-color: rgb(180 83 9 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-700\/90 {
    --tw-shadow-color: rgb(180 83 9 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-800 {
    --tw-shadow-color: #92400e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-800\/10 {
    --tw-shadow-color: rgb(146 64 14 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-800\/20 {
    --tw-shadow-color: rgb(146 64 14 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-800\/30 {
    --tw-shadow-color: rgb(146 64 14 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-800\/40 {
    --tw-shadow-color: rgb(146 64 14 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-800\/5 {
    --tw-shadow-color: rgb(146 64 14 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-800\/50 {
    --tw-shadow-color: rgb(146 64 14 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-800\/60 {
    --tw-shadow-color: rgb(146 64 14 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-800\/70 {
    --tw-shadow-color: rgb(146 64 14 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-800\/80 {
    --tw-shadow-color: rgb(146 64 14 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-800\/90 {
    --tw-shadow-color: rgb(146 64 14 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-900 {
    --tw-shadow-color: #78350f;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-900\/10 {
    --tw-shadow-color: rgb(120 53 15 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-900\/20 {
    --tw-shadow-color: rgb(120 53 15 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-900\/30 {
    --tw-shadow-color: rgb(120 53 15 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-900\/40 {
    --tw-shadow-color: rgb(120 53 15 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-900\/5 {
    --tw-shadow-color: rgb(120 53 15 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-900\/50 {
    --tw-shadow-color: rgb(120 53 15 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-900\/60 {
    --tw-shadow-color: rgb(120 53 15 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-900\/70 {
    --tw-shadow-color: rgb(120 53 15 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-900\/80 {
    --tw-shadow-color: rgb(120 53 15 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-900\/90 {
    --tw-shadow-color: rgb(120 53 15 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-950 {
    --tw-shadow-color: #451a03;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-950\/10 {
    --tw-shadow-color: rgb(69 26 3 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-950\/20 {
    --tw-shadow-color: rgb(69 26 3 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-950\/30 {
    --tw-shadow-color: rgb(69 26 3 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-950\/40 {
    --tw-shadow-color: rgb(69 26 3 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-950\/5 {
    --tw-shadow-color: rgb(69 26 3 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-950\/50 {
    --tw-shadow-color: rgb(69 26 3 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-950\/60 {
    --tw-shadow-color: rgb(69 26 3 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-950\/70 {
    --tw-shadow-color: rgb(69 26 3 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-950\/80 {
    --tw-shadow-color: rgb(69 26 3 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-amber-950\/90 {
    --tw-shadow-color: rgb(69 26 3 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-100 {
    --tw-shadow-color: #dbeafe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-100\/10 {
    --tw-shadow-color: rgb(219 234 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-100\/20 {
    --tw-shadow-color: rgb(219 234 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-100\/30 {
    --tw-shadow-color: rgb(219 234 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-100\/40 {
    --tw-shadow-color: rgb(219 234 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-100\/5 {
    --tw-shadow-color: rgb(219 234 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-100\/50 {
    --tw-shadow-color: rgb(219 234 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-100\/60 {
    --tw-shadow-color: rgb(219 234 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-100\/70 {
    --tw-shadow-color: rgb(219 234 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-100\/80 {
    --tw-shadow-color: rgb(219 234 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-100\/90 {
    --tw-shadow-color: rgb(219 234 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-200 {
    --tw-shadow-color: #bfdbfe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-200\/10 {
    --tw-shadow-color: rgb(191 219 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-200\/20 {
    --tw-shadow-color: rgb(191 219 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-200\/30 {
    --tw-shadow-color: rgb(191 219 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-200\/40 {
    --tw-shadow-color: rgb(191 219 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-200\/5 {
    --tw-shadow-color: rgb(191 219 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-200\/50 {
    --tw-shadow-color: rgb(191 219 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-200\/60 {
    --tw-shadow-color: rgb(191 219 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-200\/70 {
    --tw-shadow-color: rgb(191 219 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-200\/80 {
    --tw-shadow-color: rgb(191 219 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-200\/90 {
    --tw-shadow-color: rgb(191 219 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-300 {
    --tw-shadow-color: #93c5fd;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-300\/10 {
    --tw-shadow-color: rgb(147 197 253 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-300\/20 {
    --tw-shadow-color: rgb(147 197 253 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-300\/30 {
    --tw-shadow-color: rgb(147 197 253 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-300\/40 {
    --tw-shadow-color: rgb(147 197 253 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-300\/5 {
    --tw-shadow-color: rgb(147 197 253 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-300\/50 {
    --tw-shadow-color: rgb(147 197 253 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-300\/60 {
    --tw-shadow-color: rgb(147 197 253 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-300\/70 {
    --tw-shadow-color: rgb(147 197 253 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-300\/80 {
    --tw-shadow-color: rgb(147 197 253 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-300\/90 {
    --tw-shadow-color: rgb(147 197 253 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-400 {
    --tw-shadow-color: #60a5fa;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-400\/10 {
    --tw-shadow-color: rgb(96 165 250 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-400\/20 {
    --tw-shadow-color: rgb(96 165 250 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-400\/30 {
    --tw-shadow-color: rgb(96 165 250 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-400\/40 {
    --tw-shadow-color: rgb(96 165 250 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-400\/5 {
    --tw-shadow-color: rgb(96 165 250 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-400\/50 {
    --tw-shadow-color: rgb(96 165 250 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-400\/60 {
    --tw-shadow-color: rgb(96 165 250 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-400\/70 {
    --tw-shadow-color: rgb(96 165 250 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-400\/80 {
    --tw-shadow-color: rgb(96 165 250 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-400\/90 {
    --tw-shadow-color: rgb(96 165 250 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-50 {
    --tw-shadow-color: #eff6ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-50\/10 {
    --tw-shadow-color: rgb(239 246 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-50\/20 {
    --tw-shadow-color: rgb(239 246 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-50\/30 {
    --tw-shadow-color: rgb(239 246 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-50\/40 {
    --tw-shadow-color: rgb(239 246 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-50\/5 {
    --tw-shadow-color: rgb(239 246 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-50\/50 {
    --tw-shadow-color: rgb(239 246 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-50\/60 {
    --tw-shadow-color: rgb(239 246 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-50\/70 {
    --tw-shadow-color: rgb(239 246 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-50\/80 {
    --tw-shadow-color: rgb(239 246 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-50\/90 {
    --tw-shadow-color: rgb(239 246 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-500 {
    --tw-shadow-color: #3b82f6;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-500\/10 {
    --tw-shadow-color: rgb(59 130 246 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-500\/20 {
    --tw-shadow-color: rgb(59 130 246 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-500\/30 {
    --tw-shadow-color: rgb(59 130 246 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-500\/40 {
    --tw-shadow-color: rgb(59 130 246 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-500\/5 {
    --tw-shadow-color: rgb(59 130 246 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-500\/50 {
    --tw-shadow-color: rgb(59 130 246 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-500\/60 {
    --tw-shadow-color: rgb(59 130 246 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-500\/70 {
    --tw-shadow-color: rgb(59 130 246 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-500\/80 {
    --tw-shadow-color: rgb(59 130 246 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-500\/90 {
    --tw-shadow-color: rgb(59 130 246 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-600 {
    --tw-shadow-color: #2563eb;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-600\/10 {
    --tw-shadow-color: rgb(37 99 235 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-600\/20 {
    --tw-shadow-color: rgb(37 99 235 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-600\/30 {
    --tw-shadow-color: rgb(37 99 235 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-600\/40 {
    --tw-shadow-color: rgb(37 99 235 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-600\/5 {
    --tw-shadow-color: rgb(37 99 235 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-600\/50 {
    --tw-shadow-color: rgb(37 99 235 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-600\/60 {
    --tw-shadow-color: rgb(37 99 235 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-600\/70 {
    --tw-shadow-color: rgb(37 99 235 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-600\/80 {
    --tw-shadow-color: rgb(37 99 235 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-600\/90 {
    --tw-shadow-color: rgb(37 99 235 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-700 {
    --tw-shadow-color: #1d4ed8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-700\/10 {
    --tw-shadow-color: rgb(29 78 216 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-700\/20 {
    --tw-shadow-color: rgb(29 78 216 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-700\/30 {
    --tw-shadow-color: rgb(29 78 216 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-700\/40 {
    --tw-shadow-color: rgb(29 78 216 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-700\/5 {
    --tw-shadow-color: rgb(29 78 216 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-700\/50 {
    --tw-shadow-color: rgb(29 78 216 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-700\/60 {
    --tw-shadow-color: rgb(29 78 216 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-700\/70 {
    --tw-shadow-color: rgb(29 78 216 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-700\/80 {
    --tw-shadow-color: rgb(29 78 216 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-700\/90 {
    --tw-shadow-color: rgb(29 78 216 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-800 {
    --tw-shadow-color: #1e40af;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-800\/10 {
    --tw-shadow-color: rgb(30 64 175 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-800\/20 {
    --tw-shadow-color: rgb(30 64 175 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-800\/30 {
    --tw-shadow-color: rgb(30 64 175 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-800\/40 {
    --tw-shadow-color: rgb(30 64 175 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-800\/5 {
    --tw-shadow-color: rgb(30 64 175 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-800\/50 {
    --tw-shadow-color: rgb(30 64 175 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-800\/60 {
    --tw-shadow-color: rgb(30 64 175 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-800\/70 {
    --tw-shadow-color: rgb(30 64 175 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-800\/80 {
    --tw-shadow-color: rgb(30 64 175 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-800\/90 {
    --tw-shadow-color: rgb(30 64 175 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-900 {
    --tw-shadow-color: #1e3a8a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-900\/10 {
    --tw-shadow-color: rgb(30 58 138 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-900\/20 {
    --tw-shadow-color: rgb(30 58 138 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-900\/30 {
    --tw-shadow-color: rgb(30 58 138 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-900\/40 {
    --tw-shadow-color: rgb(30 58 138 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-900\/5 {
    --tw-shadow-color: rgb(30 58 138 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-900\/50 {
    --tw-shadow-color: rgb(30 58 138 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-900\/60 {
    --tw-shadow-color: rgb(30 58 138 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-900\/70 {
    --tw-shadow-color: rgb(30 58 138 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-900\/80 {
    --tw-shadow-color: rgb(30 58 138 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-900\/90 {
    --tw-shadow-color: rgb(30 58 138 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-950 {
    --tw-shadow-color: #172554;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-950\/10 {
    --tw-shadow-color: rgb(23 37 84 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-950\/20 {
    --tw-shadow-color: rgb(23 37 84 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-950\/30 {
    --tw-shadow-color: rgb(23 37 84 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-950\/40 {
    --tw-shadow-color: rgb(23 37 84 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-950\/5 {
    --tw-shadow-color: rgb(23 37 84 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-950\/50 {
    --tw-shadow-color: rgb(23 37 84 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-950\/60 {
    --tw-shadow-color: rgb(23 37 84 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-950\/70 {
    --tw-shadow-color: rgb(23 37 84 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-950\/80 {
    --tw-shadow-color: rgb(23 37 84 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-blue-950\/90 {
    --tw-shadow-color: rgb(23 37 84 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-100 {
    --tw-shadow-color: #cffafe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-100\/10 {
    --tw-shadow-color: rgb(207 250 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-100\/20 {
    --tw-shadow-color: rgb(207 250 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-100\/30 {
    --tw-shadow-color: rgb(207 250 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-100\/40 {
    --tw-shadow-color: rgb(207 250 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-100\/5 {
    --tw-shadow-color: rgb(207 250 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-100\/50 {
    --tw-shadow-color: rgb(207 250 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-100\/60 {
    --tw-shadow-color: rgb(207 250 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-100\/70 {
    --tw-shadow-color: rgb(207 250 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-100\/80 {
    --tw-shadow-color: rgb(207 250 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-100\/90 {
    --tw-shadow-color: rgb(207 250 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-200 {
    --tw-shadow-color: #a5f3fc;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-200\/10 {
    --tw-shadow-color: rgb(165 243 252 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-200\/20 {
    --tw-shadow-color: rgb(165 243 252 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-200\/30 {
    --tw-shadow-color: rgb(165 243 252 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-200\/40 {
    --tw-shadow-color: rgb(165 243 252 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-200\/5 {
    --tw-shadow-color: rgb(165 243 252 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-200\/50 {
    --tw-shadow-color: rgb(165 243 252 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-200\/60 {
    --tw-shadow-color: rgb(165 243 252 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-200\/70 {
    --tw-shadow-color: rgb(165 243 252 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-200\/80 {
    --tw-shadow-color: rgb(165 243 252 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-200\/90 {
    --tw-shadow-color: rgb(165 243 252 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-300 {
    --tw-shadow-color: #67e8f9;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-300\/10 {
    --tw-shadow-color: rgb(103 232 249 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-300\/20 {
    --tw-shadow-color: rgb(103 232 249 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-300\/30 {
    --tw-shadow-color: rgb(103 232 249 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-300\/40 {
    --tw-shadow-color: rgb(103 232 249 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-300\/5 {
    --tw-shadow-color: rgb(103 232 249 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-300\/50 {
    --tw-shadow-color: rgb(103 232 249 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-300\/60 {
    --tw-shadow-color: rgb(103 232 249 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-300\/70 {
    --tw-shadow-color: rgb(103 232 249 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-300\/80 {
    --tw-shadow-color: rgb(103 232 249 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-300\/90 {
    --tw-shadow-color: rgb(103 232 249 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-400 {
    --tw-shadow-color: #22d3ee;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-400\/10 {
    --tw-shadow-color: rgb(34 211 238 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-400\/20 {
    --tw-shadow-color: rgb(34 211 238 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-400\/30 {
    --tw-shadow-color: rgb(34 211 238 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-400\/40 {
    --tw-shadow-color: rgb(34 211 238 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-400\/5 {
    --tw-shadow-color: rgb(34 211 238 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-400\/50 {
    --tw-shadow-color: rgb(34 211 238 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-400\/60 {
    --tw-shadow-color: rgb(34 211 238 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-400\/70 {
    --tw-shadow-color: rgb(34 211 238 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-400\/80 {
    --tw-shadow-color: rgb(34 211 238 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-400\/90 {
    --tw-shadow-color: rgb(34 211 238 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-50 {
    --tw-shadow-color: #ecfeff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-50\/10 {
    --tw-shadow-color: rgb(236 254 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-50\/20 {
    --tw-shadow-color: rgb(236 254 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-50\/30 {
    --tw-shadow-color: rgb(236 254 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-50\/40 {
    --tw-shadow-color: rgb(236 254 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-50\/5 {
    --tw-shadow-color: rgb(236 254 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-50\/50 {
    --tw-shadow-color: rgb(236 254 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-50\/60 {
    --tw-shadow-color: rgb(236 254 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-50\/70 {
    --tw-shadow-color: rgb(236 254 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-50\/80 {
    --tw-shadow-color: rgb(236 254 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-50\/90 {
    --tw-shadow-color: rgb(236 254 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-500 {
    --tw-shadow-color: #06b6d4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-500\/10 {
    --tw-shadow-color: rgb(6 182 212 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-500\/20 {
    --tw-shadow-color: rgb(6 182 212 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-500\/30 {
    --tw-shadow-color: rgb(6 182 212 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-500\/40 {
    --tw-shadow-color: rgb(6 182 212 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-500\/5 {
    --tw-shadow-color: rgb(6 182 212 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-500\/50 {
    --tw-shadow-color: rgb(6 182 212 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-500\/60 {
    --tw-shadow-color: rgb(6 182 212 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-500\/70 {
    --tw-shadow-color: rgb(6 182 212 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-500\/80 {
    --tw-shadow-color: rgb(6 182 212 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-500\/90 {
    --tw-shadow-color: rgb(6 182 212 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-600 {
    --tw-shadow-color: #0891b2;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-600\/10 {
    --tw-shadow-color: rgb(8 145 178 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-600\/20 {
    --tw-shadow-color: rgb(8 145 178 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-600\/30 {
    --tw-shadow-color: rgb(8 145 178 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-600\/40 {
    --tw-shadow-color: rgb(8 145 178 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-600\/5 {
    --tw-shadow-color: rgb(8 145 178 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-600\/50 {
    --tw-shadow-color: rgb(8 145 178 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-600\/60 {
    --tw-shadow-color: rgb(8 145 178 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-600\/70 {
    --tw-shadow-color: rgb(8 145 178 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-600\/80 {
    --tw-shadow-color: rgb(8 145 178 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-600\/90 {
    --tw-shadow-color: rgb(8 145 178 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-700 {
    --tw-shadow-color: #0e7490;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-700\/10 {
    --tw-shadow-color: rgb(14 116 144 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-700\/20 {
    --tw-shadow-color: rgb(14 116 144 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-700\/30 {
    --tw-shadow-color: rgb(14 116 144 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-700\/40 {
    --tw-shadow-color: rgb(14 116 144 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-700\/5 {
    --tw-shadow-color: rgb(14 116 144 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-700\/50 {
    --tw-shadow-color: rgb(14 116 144 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-700\/60 {
    --tw-shadow-color: rgb(14 116 144 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-700\/70 {
    --tw-shadow-color: rgb(14 116 144 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-700\/80 {
    --tw-shadow-color: rgb(14 116 144 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-700\/90 {
    --tw-shadow-color: rgb(14 116 144 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-800 {
    --tw-shadow-color: #155e75;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-800\/10 {
    --tw-shadow-color: rgb(21 94 117 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-800\/20 {
    --tw-shadow-color: rgb(21 94 117 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-800\/30 {
    --tw-shadow-color: rgb(21 94 117 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-800\/40 {
    --tw-shadow-color: rgb(21 94 117 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-800\/5 {
    --tw-shadow-color: rgb(21 94 117 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-800\/50 {
    --tw-shadow-color: rgb(21 94 117 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-800\/60 {
    --tw-shadow-color: rgb(21 94 117 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-800\/70 {
    --tw-shadow-color: rgb(21 94 117 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-800\/80 {
    --tw-shadow-color: rgb(21 94 117 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-800\/90 {
    --tw-shadow-color: rgb(21 94 117 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-900 {
    --tw-shadow-color: #164e63;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-900\/10 {
    --tw-shadow-color: rgb(22 78 99 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-900\/20 {
    --tw-shadow-color: rgb(22 78 99 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-900\/30 {
    --tw-shadow-color: rgb(22 78 99 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-900\/40 {
    --tw-shadow-color: rgb(22 78 99 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-900\/5 {
    --tw-shadow-color: rgb(22 78 99 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-900\/50 {
    --tw-shadow-color: rgb(22 78 99 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-900\/60 {
    --tw-shadow-color: rgb(22 78 99 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-900\/70 {
    --tw-shadow-color: rgb(22 78 99 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-900\/80 {
    --tw-shadow-color: rgb(22 78 99 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-900\/90 {
    --tw-shadow-color: rgb(22 78 99 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-950 {
    --tw-shadow-color: #083344;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-950\/10 {
    --tw-shadow-color: rgb(8 51 68 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-950\/20 {
    --tw-shadow-color: rgb(8 51 68 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-950\/30 {
    --tw-shadow-color: rgb(8 51 68 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-950\/40 {
    --tw-shadow-color: rgb(8 51 68 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-950\/5 {
    --tw-shadow-color: rgb(8 51 68 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-950\/50 {
    --tw-shadow-color: rgb(8 51 68 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-950\/60 {
    --tw-shadow-color: rgb(8 51 68 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-950\/70 {
    --tw-shadow-color: rgb(8 51 68 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-950\/80 {
    --tw-shadow-color: rgb(8 51 68 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-cyan-950\/90 {
    --tw-shadow-color: rgb(8 51 68 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-100 {
    --tw-shadow-color: #d1fae5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-100\/10 {
    --tw-shadow-color: rgb(209 250 229 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-100\/20 {
    --tw-shadow-color: rgb(209 250 229 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-100\/30 {
    --tw-shadow-color: rgb(209 250 229 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-100\/40 {
    --tw-shadow-color: rgb(209 250 229 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-100\/5 {
    --tw-shadow-color: rgb(209 250 229 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-100\/50 {
    --tw-shadow-color: rgb(209 250 229 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-100\/60 {
    --tw-shadow-color: rgb(209 250 229 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-100\/70 {
    --tw-shadow-color: rgb(209 250 229 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-100\/80 {
    --tw-shadow-color: rgb(209 250 229 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-100\/90 {
    --tw-shadow-color: rgb(209 250 229 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-200 {
    --tw-shadow-color: #a7f3d0;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-200\/10 {
    --tw-shadow-color: rgb(167 243 208 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-200\/20 {
    --tw-shadow-color: rgb(167 243 208 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-200\/30 {
    --tw-shadow-color: rgb(167 243 208 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-200\/40 {
    --tw-shadow-color: rgb(167 243 208 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-200\/5 {
    --tw-shadow-color: rgb(167 243 208 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-200\/50 {
    --tw-shadow-color: rgb(167 243 208 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-200\/60 {
    --tw-shadow-color: rgb(167 243 208 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-200\/70 {
    --tw-shadow-color: rgb(167 243 208 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-200\/80 {
    --tw-shadow-color: rgb(167 243 208 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-200\/90 {
    --tw-shadow-color: rgb(167 243 208 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-300 {
    --tw-shadow-color: #6ee7b7;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-300\/10 {
    --tw-shadow-color: rgb(110 231 183 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-300\/20 {
    --tw-shadow-color: rgb(110 231 183 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-300\/30 {
    --tw-shadow-color: rgb(110 231 183 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-300\/40 {
    --tw-shadow-color: rgb(110 231 183 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-300\/5 {
    --tw-shadow-color: rgb(110 231 183 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-300\/50 {
    --tw-shadow-color: rgb(110 231 183 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-300\/60 {
    --tw-shadow-color: rgb(110 231 183 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-300\/70 {
    --tw-shadow-color: rgb(110 231 183 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-300\/80 {
    --tw-shadow-color: rgb(110 231 183 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-300\/90 {
    --tw-shadow-color: rgb(110 231 183 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-400 {
    --tw-shadow-color: #34d399;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-400\/10 {
    --tw-shadow-color: rgb(52 211 153 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-400\/20 {
    --tw-shadow-color: rgb(52 211 153 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-400\/30 {
    --tw-shadow-color: rgb(52 211 153 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-400\/40 {
    --tw-shadow-color: rgb(52 211 153 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-400\/5 {
    --tw-shadow-color: rgb(52 211 153 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-400\/50 {
    --tw-shadow-color: rgb(52 211 153 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-400\/60 {
    --tw-shadow-color: rgb(52 211 153 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-400\/70 {
    --tw-shadow-color: rgb(52 211 153 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-400\/80 {
    --tw-shadow-color: rgb(52 211 153 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-400\/90 {
    --tw-shadow-color: rgb(52 211 153 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-50 {
    --tw-shadow-color: #ecfdf5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-50\/10 {
    --tw-shadow-color: rgb(236 253 245 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-50\/20 {
    --tw-shadow-color: rgb(236 253 245 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-50\/30 {
    --tw-shadow-color: rgb(236 253 245 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-50\/40 {
    --tw-shadow-color: rgb(236 253 245 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-50\/5 {
    --tw-shadow-color: rgb(236 253 245 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-50\/50 {
    --tw-shadow-color: rgb(236 253 245 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-50\/60 {
    --tw-shadow-color: rgb(236 253 245 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-50\/70 {
    --tw-shadow-color: rgb(236 253 245 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-50\/80 {
    --tw-shadow-color: rgb(236 253 245 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-50\/90 {
    --tw-shadow-color: rgb(236 253 245 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-500 {
    --tw-shadow-color: #10b981;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-500\/10 {
    --tw-shadow-color: rgb(16 185 129 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-500\/20 {
    --tw-shadow-color: rgb(16 185 129 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-500\/30 {
    --tw-shadow-color: rgb(16 185 129 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-500\/40 {
    --tw-shadow-color: rgb(16 185 129 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-500\/5 {
    --tw-shadow-color: rgb(16 185 129 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-500\/50 {
    --tw-shadow-color: rgb(16 185 129 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-500\/60 {
    --tw-shadow-color: rgb(16 185 129 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-500\/70 {
    --tw-shadow-color: rgb(16 185 129 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-500\/80 {
    --tw-shadow-color: rgb(16 185 129 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-500\/90 {
    --tw-shadow-color: rgb(16 185 129 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-600 {
    --tw-shadow-color: #059669;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-600\/10 {
    --tw-shadow-color: rgb(5 150 105 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-600\/20 {
    --tw-shadow-color: rgb(5 150 105 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-600\/30 {
    --tw-shadow-color: rgb(5 150 105 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-600\/40 {
    --tw-shadow-color: rgb(5 150 105 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-600\/5 {
    --tw-shadow-color: rgb(5 150 105 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-600\/50 {
    --tw-shadow-color: rgb(5 150 105 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-600\/60 {
    --tw-shadow-color: rgb(5 150 105 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-600\/70 {
    --tw-shadow-color: rgb(5 150 105 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-600\/80 {
    --tw-shadow-color: rgb(5 150 105 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-600\/90 {
    --tw-shadow-color: rgb(5 150 105 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-700 {
    --tw-shadow-color: #047857;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-700\/10 {
    --tw-shadow-color: rgb(4 120 87 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-700\/20 {
    --tw-shadow-color: rgb(4 120 87 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-700\/30 {
    --tw-shadow-color: rgb(4 120 87 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-700\/40 {
    --tw-shadow-color: rgb(4 120 87 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-700\/5 {
    --tw-shadow-color: rgb(4 120 87 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-700\/50 {
    --tw-shadow-color: rgb(4 120 87 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-700\/60 {
    --tw-shadow-color: rgb(4 120 87 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-700\/70 {
    --tw-shadow-color: rgb(4 120 87 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-700\/80 {
    --tw-shadow-color: rgb(4 120 87 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-700\/90 {
    --tw-shadow-color: rgb(4 120 87 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-800 {
    --tw-shadow-color: #065f46;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-800\/10 {
    --tw-shadow-color: rgb(6 95 70 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-800\/20 {
    --tw-shadow-color: rgb(6 95 70 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-800\/30 {
    --tw-shadow-color: rgb(6 95 70 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-800\/40 {
    --tw-shadow-color: rgb(6 95 70 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-800\/5 {
    --tw-shadow-color: rgb(6 95 70 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-800\/50 {
    --tw-shadow-color: rgb(6 95 70 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-800\/60 {
    --tw-shadow-color: rgb(6 95 70 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-800\/70 {
    --tw-shadow-color: rgb(6 95 70 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-800\/80 {
    --tw-shadow-color: rgb(6 95 70 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-800\/90 {
    --tw-shadow-color: rgb(6 95 70 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-900 {
    --tw-shadow-color: #064e3b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-900\/10 {
    --tw-shadow-color: rgb(6 78 59 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-900\/20 {
    --tw-shadow-color: rgb(6 78 59 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-900\/30 {
    --tw-shadow-color: rgb(6 78 59 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-900\/40 {
    --tw-shadow-color: rgb(6 78 59 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-900\/5 {
    --tw-shadow-color: rgb(6 78 59 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-900\/50 {
    --tw-shadow-color: rgb(6 78 59 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-900\/60 {
    --tw-shadow-color: rgb(6 78 59 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-900\/70 {
    --tw-shadow-color: rgb(6 78 59 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-900\/80 {
    --tw-shadow-color: rgb(6 78 59 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-900\/90 {
    --tw-shadow-color: rgb(6 78 59 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-950 {
    --tw-shadow-color: #022c22;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-950\/10 {
    --tw-shadow-color: rgb(2 44 34 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-950\/20 {
    --tw-shadow-color: rgb(2 44 34 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-950\/30 {
    --tw-shadow-color: rgb(2 44 34 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-950\/40 {
    --tw-shadow-color: rgb(2 44 34 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-950\/5 {
    --tw-shadow-color: rgb(2 44 34 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-950\/50 {
    --tw-shadow-color: rgb(2 44 34 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-950\/60 {
    --tw-shadow-color: rgb(2 44 34 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-950\/70 {
    --tw-shadow-color: rgb(2 44 34 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-950\/80 {
    --tw-shadow-color: rgb(2 44 34 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-emerald-950\/90 {
    --tw-shadow-color: rgb(2 44 34 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-100 {
    --tw-shadow-color: #fae8ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-100\/10 {
    --tw-shadow-color: rgb(250 232 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-100\/20 {
    --tw-shadow-color: rgb(250 232 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-100\/30 {
    --tw-shadow-color: rgb(250 232 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-100\/40 {
    --tw-shadow-color: rgb(250 232 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-100\/5 {
    --tw-shadow-color: rgb(250 232 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-100\/50 {
    --tw-shadow-color: rgb(250 232 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-100\/60 {
    --tw-shadow-color: rgb(250 232 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-100\/70 {
    --tw-shadow-color: rgb(250 232 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-100\/80 {
    --tw-shadow-color: rgb(250 232 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-100\/90 {
    --tw-shadow-color: rgb(250 232 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-200 {
    --tw-shadow-color: #f5d0fe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-200\/10 {
    --tw-shadow-color: rgb(245 208 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-200\/20 {
    --tw-shadow-color: rgb(245 208 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-200\/30 {
    --tw-shadow-color: rgb(245 208 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-200\/40 {
    --tw-shadow-color: rgb(245 208 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-200\/5 {
    --tw-shadow-color: rgb(245 208 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-200\/50 {
    --tw-shadow-color: rgb(245 208 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-200\/60 {
    --tw-shadow-color: rgb(245 208 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-200\/70 {
    --tw-shadow-color: rgb(245 208 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-200\/80 {
    --tw-shadow-color: rgb(245 208 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-200\/90 {
    --tw-shadow-color: rgb(245 208 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-300 {
    --tw-shadow-color: #f0abfc;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-300\/10 {
    --tw-shadow-color: rgb(240 171 252 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-300\/20 {
    --tw-shadow-color: rgb(240 171 252 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-300\/30 {
    --tw-shadow-color: rgb(240 171 252 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-300\/40 {
    --tw-shadow-color: rgb(240 171 252 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-300\/5 {
    --tw-shadow-color: rgb(240 171 252 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-300\/50 {
    --tw-shadow-color: rgb(240 171 252 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-300\/60 {
    --tw-shadow-color: rgb(240 171 252 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-300\/70 {
    --tw-shadow-color: rgb(240 171 252 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-300\/80 {
    --tw-shadow-color: rgb(240 171 252 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-300\/90 {
    --tw-shadow-color: rgb(240 171 252 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-400 {
    --tw-shadow-color: #e879f9;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-400\/10 {
    --tw-shadow-color: rgb(232 121 249 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-400\/20 {
    --tw-shadow-color: rgb(232 121 249 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-400\/30 {
    --tw-shadow-color: rgb(232 121 249 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-400\/40 {
    --tw-shadow-color: rgb(232 121 249 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-400\/5 {
    --tw-shadow-color: rgb(232 121 249 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-400\/50 {
    --tw-shadow-color: rgb(232 121 249 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-400\/60 {
    --tw-shadow-color: rgb(232 121 249 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-400\/70 {
    --tw-shadow-color: rgb(232 121 249 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-400\/80 {
    --tw-shadow-color: rgb(232 121 249 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-400\/90 {
    --tw-shadow-color: rgb(232 121 249 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-50 {
    --tw-shadow-color: #fdf4ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-50\/10 {
    --tw-shadow-color: rgb(253 244 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-50\/20 {
    --tw-shadow-color: rgb(253 244 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-50\/30 {
    --tw-shadow-color: rgb(253 244 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-50\/40 {
    --tw-shadow-color: rgb(253 244 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-50\/5 {
    --tw-shadow-color: rgb(253 244 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-50\/50 {
    --tw-shadow-color: rgb(253 244 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-50\/60 {
    --tw-shadow-color: rgb(253 244 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-50\/70 {
    --tw-shadow-color: rgb(253 244 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-50\/80 {
    --tw-shadow-color: rgb(253 244 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-50\/90 {
    --tw-shadow-color: rgb(253 244 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-500 {
    --tw-shadow-color: #d946ef;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-500\/10 {
    --tw-shadow-color: rgb(217 70 239 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-500\/20 {
    --tw-shadow-color: rgb(217 70 239 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-500\/30 {
    --tw-shadow-color: rgb(217 70 239 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-500\/40 {
    --tw-shadow-color: rgb(217 70 239 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-500\/5 {
    --tw-shadow-color: rgb(217 70 239 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-500\/50 {
    --tw-shadow-color: rgb(217 70 239 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-500\/60 {
    --tw-shadow-color: rgb(217 70 239 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-500\/70 {
    --tw-shadow-color: rgb(217 70 239 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-500\/80 {
    --tw-shadow-color: rgb(217 70 239 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-500\/90 {
    --tw-shadow-color: rgb(217 70 239 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-600 {
    --tw-shadow-color: #c026d3;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-600\/10 {
    --tw-shadow-color: rgb(192 38 211 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-600\/20 {
    --tw-shadow-color: rgb(192 38 211 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-600\/30 {
    --tw-shadow-color: rgb(192 38 211 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-600\/40 {
    --tw-shadow-color: rgb(192 38 211 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-600\/5 {
    --tw-shadow-color: rgb(192 38 211 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-600\/50 {
    --tw-shadow-color: rgb(192 38 211 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-600\/60 {
    --tw-shadow-color: rgb(192 38 211 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-600\/70 {
    --tw-shadow-color: rgb(192 38 211 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-600\/80 {
    --tw-shadow-color: rgb(192 38 211 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-600\/90 {
    --tw-shadow-color: rgb(192 38 211 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-700 {
    --tw-shadow-color: #a21caf;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-700\/10 {
    --tw-shadow-color: rgb(162 28 175 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-700\/20 {
    --tw-shadow-color: rgb(162 28 175 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-700\/30 {
    --tw-shadow-color: rgb(162 28 175 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-700\/40 {
    --tw-shadow-color: rgb(162 28 175 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-700\/5 {
    --tw-shadow-color: rgb(162 28 175 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-700\/50 {
    --tw-shadow-color: rgb(162 28 175 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-700\/60 {
    --tw-shadow-color: rgb(162 28 175 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-700\/70 {
    --tw-shadow-color: rgb(162 28 175 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-700\/80 {
    --tw-shadow-color: rgb(162 28 175 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-700\/90 {
    --tw-shadow-color: rgb(162 28 175 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-800 {
    --tw-shadow-color: #86198f;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-800\/10 {
    --tw-shadow-color: rgb(134 25 143 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-800\/20 {
    --tw-shadow-color: rgb(134 25 143 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-800\/30 {
    --tw-shadow-color: rgb(134 25 143 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-800\/40 {
    --tw-shadow-color: rgb(134 25 143 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-800\/5 {
    --tw-shadow-color: rgb(134 25 143 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-800\/50 {
    --tw-shadow-color: rgb(134 25 143 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-800\/60 {
    --tw-shadow-color: rgb(134 25 143 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-800\/70 {
    --tw-shadow-color: rgb(134 25 143 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-800\/80 {
    --tw-shadow-color: rgb(134 25 143 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-800\/90 {
    --tw-shadow-color: rgb(134 25 143 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-900 {
    --tw-shadow-color: #701a75;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-900\/10 {
    --tw-shadow-color: rgb(112 26 117 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-900\/20 {
    --tw-shadow-color: rgb(112 26 117 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-900\/30 {
    --tw-shadow-color: rgb(112 26 117 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-900\/40 {
    --tw-shadow-color: rgb(112 26 117 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-900\/5 {
    --tw-shadow-color: rgb(112 26 117 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-900\/50 {
    --tw-shadow-color: rgb(112 26 117 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-900\/60 {
    --tw-shadow-color: rgb(112 26 117 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-900\/70 {
    --tw-shadow-color: rgb(112 26 117 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-900\/80 {
    --tw-shadow-color: rgb(112 26 117 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-900\/90 {
    --tw-shadow-color: rgb(112 26 117 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-950 {
    --tw-shadow-color: #4a044e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-950\/10 {
    --tw-shadow-color: rgb(74 4 78 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-950\/20 {
    --tw-shadow-color: rgb(74 4 78 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-950\/30 {
    --tw-shadow-color: rgb(74 4 78 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-950\/40 {
    --tw-shadow-color: rgb(74 4 78 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-950\/5 {
    --tw-shadow-color: rgb(74 4 78 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-950\/50 {
    --tw-shadow-color: rgb(74 4 78 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-950\/60 {
    --tw-shadow-color: rgb(74 4 78 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-950\/70 {
    --tw-shadow-color: rgb(74 4 78 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-950\/80 {
    --tw-shadow-color: rgb(74 4 78 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-fuchsia-950\/90 {
    --tw-shadow-color: rgb(74 4 78 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-100 {
    --tw-shadow-color: #f3f4f6;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-100\/10 {
    --tw-shadow-color: rgb(243 244 246 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-100\/20 {
    --tw-shadow-color: rgb(243 244 246 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-100\/30 {
    --tw-shadow-color: rgb(243 244 246 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-100\/40 {
    --tw-shadow-color: rgb(243 244 246 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-100\/5 {
    --tw-shadow-color: rgb(243 244 246 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-100\/50 {
    --tw-shadow-color: rgb(243 244 246 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-100\/60 {
    --tw-shadow-color: rgb(243 244 246 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-100\/70 {
    --tw-shadow-color: rgb(243 244 246 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-100\/80 {
    --tw-shadow-color: rgb(243 244 246 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-100\/90 {
    --tw-shadow-color: rgb(243 244 246 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-200 {
    --tw-shadow-color: #e5e7eb;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-200\/10 {
    --tw-shadow-color: rgb(229 231 235 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-200\/20 {
    --tw-shadow-color: rgb(229 231 235 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-200\/30 {
    --tw-shadow-color: rgb(229 231 235 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-200\/40 {
    --tw-shadow-color: rgb(229 231 235 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-200\/5 {
    --tw-shadow-color: rgb(229 231 235 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-200\/50 {
    --tw-shadow-color: rgb(229 231 235 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-200\/60 {
    --tw-shadow-color: rgb(229 231 235 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-200\/70 {
    --tw-shadow-color: rgb(229 231 235 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-200\/80 {
    --tw-shadow-color: rgb(229 231 235 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-200\/90 {
    --tw-shadow-color: rgb(229 231 235 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-300 {
    --tw-shadow-color: #d1d5db;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-300\/10 {
    --tw-shadow-color: rgb(209 213 219 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-300\/20 {
    --tw-shadow-color: rgb(209 213 219 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-300\/30 {
    --tw-shadow-color: rgb(209 213 219 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-300\/40 {
    --tw-shadow-color: rgb(209 213 219 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-300\/5 {
    --tw-shadow-color: rgb(209 213 219 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-300\/50 {
    --tw-shadow-color: rgb(209 213 219 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-300\/60 {
    --tw-shadow-color: rgb(209 213 219 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-300\/70 {
    --tw-shadow-color: rgb(209 213 219 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-300\/80 {
    --tw-shadow-color: rgb(209 213 219 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-300\/90 {
    --tw-shadow-color: rgb(209 213 219 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-400 {
    --tw-shadow-color: #9ca3af;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-400\/10 {
    --tw-shadow-color: rgb(156 163 175 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-400\/20 {
    --tw-shadow-color: rgb(156 163 175 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-400\/30 {
    --tw-shadow-color: rgb(156 163 175 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-400\/40 {
    --tw-shadow-color: rgb(156 163 175 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-400\/5 {
    --tw-shadow-color: rgb(156 163 175 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-400\/50 {
    --tw-shadow-color: rgb(156 163 175 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-400\/60 {
    --tw-shadow-color: rgb(156 163 175 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-400\/70 {
    --tw-shadow-color: rgb(156 163 175 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-400\/80 {
    --tw-shadow-color: rgb(156 163 175 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-400\/90 {
    --tw-shadow-color: rgb(156 163 175 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-50 {
    --tw-shadow-color: #f9fafb;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-50\/10 {
    --tw-shadow-color: rgb(249 250 251 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-50\/20 {
    --tw-shadow-color: rgb(249 250 251 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-50\/30 {
    --tw-shadow-color: rgb(249 250 251 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-50\/40 {
    --tw-shadow-color: rgb(249 250 251 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-50\/5 {
    --tw-shadow-color: rgb(249 250 251 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-50\/50 {
    --tw-shadow-color: rgb(249 250 251 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-50\/60 {
    --tw-shadow-color: rgb(249 250 251 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-50\/70 {
    --tw-shadow-color: rgb(249 250 251 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-50\/80 {
    --tw-shadow-color: rgb(249 250 251 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-50\/90 {
    --tw-shadow-color: rgb(249 250 251 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-500 {
    --tw-shadow-color: #6b7280;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-500\/10 {
    --tw-shadow-color: rgb(107 114 128 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-500\/20 {
    --tw-shadow-color: rgb(107 114 128 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-500\/30 {
    --tw-shadow-color: rgb(107 114 128 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-500\/40 {
    --tw-shadow-color: rgb(107 114 128 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-500\/5 {
    --tw-shadow-color: rgb(107 114 128 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-500\/50 {
    --tw-shadow-color: rgb(107 114 128 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-500\/60 {
    --tw-shadow-color: rgb(107 114 128 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-500\/70 {
    --tw-shadow-color: rgb(107 114 128 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-500\/80 {
    --tw-shadow-color: rgb(107 114 128 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-500\/90 {
    --tw-shadow-color: rgb(107 114 128 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-600 {
    --tw-shadow-color: #4b5563;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-600\/10 {
    --tw-shadow-color: rgb(75 85 99 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-600\/20 {
    --tw-shadow-color: rgb(75 85 99 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-600\/30 {
    --tw-shadow-color: rgb(75 85 99 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-600\/40 {
    --tw-shadow-color: rgb(75 85 99 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-600\/5 {
    --tw-shadow-color: rgb(75 85 99 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-600\/50 {
    --tw-shadow-color: rgb(75 85 99 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-600\/60 {
    --tw-shadow-color: rgb(75 85 99 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-600\/70 {
    --tw-shadow-color: rgb(75 85 99 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-600\/80 {
    --tw-shadow-color: rgb(75 85 99 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-600\/90 {
    --tw-shadow-color: rgb(75 85 99 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-700 {
    --tw-shadow-color: #374151;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-700\/10 {
    --tw-shadow-color: rgb(55 65 81 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-700\/20 {
    --tw-shadow-color: rgb(55 65 81 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-700\/30 {
    --tw-shadow-color: rgb(55 65 81 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-700\/40 {
    --tw-shadow-color: rgb(55 65 81 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-700\/5 {
    --tw-shadow-color: rgb(55 65 81 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-700\/50 {
    --tw-shadow-color: rgb(55 65 81 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-700\/60 {
    --tw-shadow-color: rgb(55 65 81 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-700\/70 {
    --tw-shadow-color: rgb(55 65 81 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-700\/80 {
    --tw-shadow-color: rgb(55 65 81 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-700\/90 {
    --tw-shadow-color: rgb(55 65 81 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-800 {
    --tw-shadow-color: #1f2937;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-800\/10 {
    --tw-shadow-color: rgb(31 41 55 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-800\/20 {
    --tw-shadow-color: rgb(31 41 55 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-800\/30 {
    --tw-shadow-color: rgb(31 41 55 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-800\/40 {
    --tw-shadow-color: rgb(31 41 55 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-800\/5 {
    --tw-shadow-color: rgb(31 41 55 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-800\/50 {
    --tw-shadow-color: rgb(31 41 55 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-800\/60 {
    --tw-shadow-color: rgb(31 41 55 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-800\/70 {
    --tw-shadow-color: rgb(31 41 55 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-800\/80 {
    --tw-shadow-color: rgb(31 41 55 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-800\/90 {
    --tw-shadow-color: rgb(31 41 55 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-900 {
    --tw-shadow-color: #111827;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-900\/10 {
    --tw-shadow-color: rgb(17 24 39 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-900\/20 {
    --tw-shadow-color: rgb(17 24 39 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-900\/30 {
    --tw-shadow-color: rgb(17 24 39 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-900\/40 {
    --tw-shadow-color: rgb(17 24 39 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-900\/5 {
    --tw-shadow-color: rgb(17 24 39 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-900\/50 {
    --tw-shadow-color: rgb(17 24 39 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-900\/60 {
    --tw-shadow-color: rgb(17 24 39 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-900\/70 {
    --tw-shadow-color: rgb(17 24 39 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-900\/80 {
    --tw-shadow-color: rgb(17 24 39 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-900\/90 {
    --tw-shadow-color: rgb(17 24 39 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-950 {
    --tw-shadow-color: #030712;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-950\/10 {
    --tw-shadow-color: rgb(3 7 18 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-950\/20 {
    --tw-shadow-color: rgb(3 7 18 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-950\/30 {
    --tw-shadow-color: rgb(3 7 18 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-950\/40 {
    --tw-shadow-color: rgb(3 7 18 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-950\/5 {
    --tw-shadow-color: rgb(3 7 18 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-950\/50 {
    --tw-shadow-color: rgb(3 7 18 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-950\/60 {
    --tw-shadow-color: rgb(3 7 18 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-950\/70 {
    --tw-shadow-color: rgb(3 7 18 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-950\/80 {
    --tw-shadow-color: rgb(3 7 18 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-gray-950\/90 {
    --tw-shadow-color: rgb(3 7 18 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-100 {
    --tw-shadow-color: #dcfce7;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-100\/10 {
    --tw-shadow-color: rgb(220 252 231 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-100\/20 {
    --tw-shadow-color: rgb(220 252 231 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-100\/30 {
    --tw-shadow-color: rgb(220 252 231 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-100\/40 {
    --tw-shadow-color: rgb(220 252 231 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-100\/5 {
    --tw-shadow-color: rgb(220 252 231 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-100\/50 {
    --tw-shadow-color: rgb(220 252 231 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-100\/60 {
    --tw-shadow-color: rgb(220 252 231 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-100\/70 {
    --tw-shadow-color: rgb(220 252 231 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-100\/80 {
    --tw-shadow-color: rgb(220 252 231 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-100\/90 {
    --tw-shadow-color: rgb(220 252 231 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-200 {
    --tw-shadow-color: #bbf7d0;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-200\/10 {
    --tw-shadow-color: rgb(187 247 208 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-200\/20 {
    --tw-shadow-color: rgb(187 247 208 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-200\/30 {
    --tw-shadow-color: rgb(187 247 208 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-200\/40 {
    --tw-shadow-color: rgb(187 247 208 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-200\/5 {
    --tw-shadow-color: rgb(187 247 208 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-200\/50 {
    --tw-shadow-color: rgb(187 247 208 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-200\/60 {
    --tw-shadow-color: rgb(187 247 208 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-200\/70 {
    --tw-shadow-color: rgb(187 247 208 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-200\/80 {
    --tw-shadow-color: rgb(187 247 208 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-200\/90 {
    --tw-shadow-color: rgb(187 247 208 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-300 {
    --tw-shadow-color: #86efac;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-300\/10 {
    --tw-shadow-color: rgb(134 239 172 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-300\/20 {
    --tw-shadow-color: rgb(134 239 172 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-300\/30 {
    --tw-shadow-color: rgb(134 239 172 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-300\/40 {
    --tw-shadow-color: rgb(134 239 172 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-300\/5 {
    --tw-shadow-color: rgb(134 239 172 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-300\/50 {
    --tw-shadow-color: rgb(134 239 172 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-300\/60 {
    --tw-shadow-color: rgb(134 239 172 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-300\/70 {
    --tw-shadow-color: rgb(134 239 172 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-300\/80 {
    --tw-shadow-color: rgb(134 239 172 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-300\/90 {
    --tw-shadow-color: rgb(134 239 172 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-400 {
    --tw-shadow-color: #4ade80;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-400\/10 {
    --tw-shadow-color: rgb(74 222 128 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-400\/20 {
    --tw-shadow-color: rgb(74 222 128 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-400\/30 {
    --tw-shadow-color: rgb(74 222 128 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-400\/40 {
    --tw-shadow-color: rgb(74 222 128 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-400\/5 {
    --tw-shadow-color: rgb(74 222 128 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-400\/50 {
    --tw-shadow-color: rgb(74 222 128 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-400\/60 {
    --tw-shadow-color: rgb(74 222 128 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-400\/70 {
    --tw-shadow-color: rgb(74 222 128 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-400\/80 {
    --tw-shadow-color: rgb(74 222 128 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-400\/90 {
    --tw-shadow-color: rgb(74 222 128 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-50 {
    --tw-shadow-color: #f0fdf4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-50\/10 {
    --tw-shadow-color: rgb(240 253 244 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-50\/20 {
    --tw-shadow-color: rgb(240 253 244 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-50\/30 {
    --tw-shadow-color: rgb(240 253 244 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-50\/40 {
    --tw-shadow-color: rgb(240 253 244 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-50\/5 {
    --tw-shadow-color: rgb(240 253 244 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-50\/50 {
    --tw-shadow-color: rgb(240 253 244 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-50\/60 {
    --tw-shadow-color: rgb(240 253 244 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-50\/70 {
    --tw-shadow-color: rgb(240 253 244 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-50\/80 {
    --tw-shadow-color: rgb(240 253 244 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-50\/90 {
    --tw-shadow-color: rgb(240 253 244 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-500 {
    --tw-shadow-color: #22c55e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-500\/10 {
    --tw-shadow-color: rgb(34 197 94 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-500\/20 {
    --tw-shadow-color: rgb(34 197 94 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-500\/30 {
    --tw-shadow-color: rgb(34 197 94 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-500\/40 {
    --tw-shadow-color: rgb(34 197 94 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-500\/5 {
    --tw-shadow-color: rgb(34 197 94 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-500\/50 {
    --tw-shadow-color: rgb(34 197 94 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-500\/60 {
    --tw-shadow-color: rgb(34 197 94 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-500\/70 {
    --tw-shadow-color: rgb(34 197 94 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-500\/80 {
    --tw-shadow-color: rgb(34 197 94 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-500\/90 {
    --tw-shadow-color: rgb(34 197 94 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-600 {
    --tw-shadow-color: #16a34a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-600\/10 {
    --tw-shadow-color: rgb(22 163 74 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-600\/20 {
    --tw-shadow-color: rgb(22 163 74 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-600\/30 {
    --tw-shadow-color: rgb(22 163 74 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-600\/40 {
    --tw-shadow-color: rgb(22 163 74 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-600\/5 {
    --tw-shadow-color: rgb(22 163 74 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-600\/50 {
    --tw-shadow-color: rgb(22 163 74 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-600\/60 {
    --tw-shadow-color: rgb(22 163 74 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-600\/70 {
    --tw-shadow-color: rgb(22 163 74 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-600\/80 {
    --tw-shadow-color: rgb(22 163 74 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-600\/90 {
    --tw-shadow-color: rgb(22 163 74 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-700 {
    --tw-shadow-color: #15803d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-700\/10 {
    --tw-shadow-color: rgb(21 128 61 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-700\/20 {
    --tw-shadow-color: rgb(21 128 61 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-700\/30 {
    --tw-shadow-color: rgb(21 128 61 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-700\/40 {
    --tw-shadow-color: rgb(21 128 61 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-700\/5 {
    --tw-shadow-color: rgb(21 128 61 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-700\/50 {
    --tw-shadow-color: rgb(21 128 61 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-700\/60 {
    --tw-shadow-color: rgb(21 128 61 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-700\/70 {
    --tw-shadow-color: rgb(21 128 61 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-700\/80 {
    --tw-shadow-color: rgb(21 128 61 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-700\/90 {
    --tw-shadow-color: rgb(21 128 61 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-800 {
    --tw-shadow-color: #166534;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-800\/10 {
    --tw-shadow-color: rgb(22 101 52 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-800\/20 {
    --tw-shadow-color: rgb(22 101 52 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-800\/30 {
    --tw-shadow-color: rgb(22 101 52 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-800\/40 {
    --tw-shadow-color: rgb(22 101 52 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-800\/5 {
    --tw-shadow-color: rgb(22 101 52 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-800\/50 {
    --tw-shadow-color: rgb(22 101 52 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-800\/60 {
    --tw-shadow-color: rgb(22 101 52 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-800\/70 {
    --tw-shadow-color: rgb(22 101 52 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-800\/80 {
    --tw-shadow-color: rgb(22 101 52 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-800\/90 {
    --tw-shadow-color: rgb(22 101 52 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-900 {
    --tw-shadow-color: #14532d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-900\/10 {
    --tw-shadow-color: rgb(20 83 45 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-900\/20 {
    --tw-shadow-color: rgb(20 83 45 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-900\/30 {
    --tw-shadow-color: rgb(20 83 45 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-900\/40 {
    --tw-shadow-color: rgb(20 83 45 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-900\/5 {
    --tw-shadow-color: rgb(20 83 45 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-900\/50 {
    --tw-shadow-color: rgb(20 83 45 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-900\/60 {
    --tw-shadow-color: rgb(20 83 45 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-900\/70 {
    --tw-shadow-color: rgb(20 83 45 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-900\/80 {
    --tw-shadow-color: rgb(20 83 45 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-900\/90 {
    --tw-shadow-color: rgb(20 83 45 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-950 {
    --tw-shadow-color: #052e16;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-950\/10 {
    --tw-shadow-color: rgb(5 46 22 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-950\/20 {
    --tw-shadow-color: rgb(5 46 22 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-950\/30 {
    --tw-shadow-color: rgb(5 46 22 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-950\/40 {
    --tw-shadow-color: rgb(5 46 22 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-950\/5 {
    --tw-shadow-color: rgb(5 46 22 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-950\/50 {
    --tw-shadow-color: rgb(5 46 22 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-950\/60 {
    --tw-shadow-color: rgb(5 46 22 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-950\/70 {
    --tw-shadow-color: rgb(5 46 22 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-950\/80 {
    --tw-shadow-color: rgb(5 46 22 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-green-950\/90 {
    --tw-shadow-color: rgb(5 46 22 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-100 {
    --tw-shadow-color: #e0e7ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-100\/10 {
    --tw-shadow-color: rgb(224 231 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-100\/20 {
    --tw-shadow-color: rgb(224 231 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-100\/30 {
    --tw-shadow-color: rgb(224 231 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-100\/40 {
    --tw-shadow-color: rgb(224 231 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-100\/5 {
    --tw-shadow-color: rgb(224 231 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-100\/50 {
    --tw-shadow-color: rgb(224 231 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-100\/60 {
    --tw-shadow-color: rgb(224 231 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-100\/70 {
    --tw-shadow-color: rgb(224 231 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-100\/80 {
    --tw-shadow-color: rgb(224 231 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-100\/90 {
    --tw-shadow-color: rgb(224 231 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-200 {
    --tw-shadow-color: #c7d2fe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-200\/10 {
    --tw-shadow-color: rgb(199 210 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-200\/20 {
    --tw-shadow-color: rgb(199 210 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-200\/30 {
    --tw-shadow-color: rgb(199 210 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-200\/40 {
    --tw-shadow-color: rgb(199 210 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-200\/5 {
    --tw-shadow-color: rgb(199 210 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-200\/50 {
    --tw-shadow-color: rgb(199 210 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-200\/60 {
    --tw-shadow-color: rgb(199 210 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-200\/70 {
    --tw-shadow-color: rgb(199 210 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-200\/80 {
    --tw-shadow-color: rgb(199 210 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-200\/90 {
    --tw-shadow-color: rgb(199 210 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-300 {
    --tw-shadow-color: #a5b4fc;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-300\/10 {
    --tw-shadow-color: rgb(165 180 252 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-300\/20 {
    --tw-shadow-color: rgb(165 180 252 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-300\/30 {
    --tw-shadow-color: rgb(165 180 252 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-300\/40 {
    --tw-shadow-color: rgb(165 180 252 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-300\/5 {
    --tw-shadow-color: rgb(165 180 252 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-300\/50 {
    --tw-shadow-color: rgb(165 180 252 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-300\/60 {
    --tw-shadow-color: rgb(165 180 252 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-300\/70 {
    --tw-shadow-color: rgb(165 180 252 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-300\/80 {
    --tw-shadow-color: rgb(165 180 252 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-300\/90 {
    --tw-shadow-color: rgb(165 180 252 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-400 {
    --tw-shadow-color: #818cf8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-400\/10 {
    --tw-shadow-color: rgb(129 140 248 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-400\/20 {
    --tw-shadow-color: rgb(129 140 248 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-400\/30 {
    --tw-shadow-color: rgb(129 140 248 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-400\/40 {
    --tw-shadow-color: rgb(129 140 248 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-400\/5 {
    --tw-shadow-color: rgb(129 140 248 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-400\/50 {
    --tw-shadow-color: rgb(129 140 248 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-400\/60 {
    --tw-shadow-color: rgb(129 140 248 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-400\/70 {
    --tw-shadow-color: rgb(129 140 248 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-400\/80 {
    --tw-shadow-color: rgb(129 140 248 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-400\/90 {
    --tw-shadow-color: rgb(129 140 248 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-50 {
    --tw-shadow-color: #eef2ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-50\/10 {
    --tw-shadow-color: rgb(238 242 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-50\/20 {
    --tw-shadow-color: rgb(238 242 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-50\/30 {
    --tw-shadow-color: rgb(238 242 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-50\/40 {
    --tw-shadow-color: rgb(238 242 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-50\/5 {
    --tw-shadow-color: rgb(238 242 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-50\/50 {
    --tw-shadow-color: rgb(238 242 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-50\/60 {
    --tw-shadow-color: rgb(238 242 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-50\/70 {
    --tw-shadow-color: rgb(238 242 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-50\/80 {
    --tw-shadow-color: rgb(238 242 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-50\/90 {
    --tw-shadow-color: rgb(238 242 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-500 {
    --tw-shadow-color: #6366f1;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-500\/10 {
    --tw-shadow-color: rgb(99 102 241 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-500\/20 {
    --tw-shadow-color: rgb(99 102 241 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-500\/30 {
    --tw-shadow-color: rgb(99 102 241 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-500\/40 {
    --tw-shadow-color: rgb(99 102 241 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-500\/5 {
    --tw-shadow-color: rgb(99 102 241 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-500\/50 {
    --tw-shadow-color: rgb(99 102 241 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-500\/60 {
    --tw-shadow-color: rgb(99 102 241 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-500\/70 {
    --tw-shadow-color: rgb(99 102 241 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-500\/80 {
    --tw-shadow-color: rgb(99 102 241 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-500\/90 {
    --tw-shadow-color: rgb(99 102 241 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-600 {
    --tw-shadow-color: #4f46e5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-600\/10 {
    --tw-shadow-color: rgb(79 70 229 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-600\/20 {
    --tw-shadow-color: rgb(79 70 229 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-600\/30 {
    --tw-shadow-color: rgb(79 70 229 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-600\/40 {
    --tw-shadow-color: rgb(79 70 229 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-600\/5 {
    --tw-shadow-color: rgb(79 70 229 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-600\/50 {
    --tw-shadow-color: rgb(79 70 229 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-600\/60 {
    --tw-shadow-color: rgb(79 70 229 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-600\/70 {
    --tw-shadow-color: rgb(79 70 229 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-600\/80 {
    --tw-shadow-color: rgb(79 70 229 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-600\/90 {
    --tw-shadow-color: rgb(79 70 229 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-700 {
    --tw-shadow-color: #4338ca;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-700\/10 {
    --tw-shadow-color: rgb(67 56 202 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-700\/20 {
    --tw-shadow-color: rgb(67 56 202 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-700\/30 {
    --tw-shadow-color: rgb(67 56 202 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-700\/40 {
    --tw-shadow-color: rgb(67 56 202 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-700\/5 {
    --tw-shadow-color: rgb(67 56 202 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-700\/50 {
    --tw-shadow-color: rgb(67 56 202 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-700\/60 {
    --tw-shadow-color: rgb(67 56 202 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-700\/70 {
    --tw-shadow-color: rgb(67 56 202 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-700\/80 {
    --tw-shadow-color: rgb(67 56 202 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-700\/90 {
    --tw-shadow-color: rgb(67 56 202 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-800 {
    --tw-shadow-color: #3730a3;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-800\/10 {
    --tw-shadow-color: rgb(55 48 163 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-800\/20 {
    --tw-shadow-color: rgb(55 48 163 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-800\/30 {
    --tw-shadow-color: rgb(55 48 163 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-800\/40 {
    --tw-shadow-color: rgb(55 48 163 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-800\/5 {
    --tw-shadow-color: rgb(55 48 163 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-800\/50 {
    --tw-shadow-color: rgb(55 48 163 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-800\/60 {
    --tw-shadow-color: rgb(55 48 163 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-800\/70 {
    --tw-shadow-color: rgb(55 48 163 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-800\/80 {
    --tw-shadow-color: rgb(55 48 163 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-800\/90 {
    --tw-shadow-color: rgb(55 48 163 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-900 {
    --tw-shadow-color: #312e81;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-900\/10 {
    --tw-shadow-color: rgb(49 46 129 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-900\/20 {
    --tw-shadow-color: rgb(49 46 129 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-900\/30 {
    --tw-shadow-color: rgb(49 46 129 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-900\/40 {
    --tw-shadow-color: rgb(49 46 129 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-900\/5 {
    --tw-shadow-color: rgb(49 46 129 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-900\/50 {
    --tw-shadow-color: rgb(49 46 129 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-900\/60 {
    --tw-shadow-color: rgb(49 46 129 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-900\/70 {
    --tw-shadow-color: rgb(49 46 129 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-900\/80 {
    --tw-shadow-color: rgb(49 46 129 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-900\/90 {
    --tw-shadow-color: rgb(49 46 129 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-950 {
    --tw-shadow-color: #1e1b4b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-950\/10 {
    --tw-shadow-color: rgb(30 27 75 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-950\/20 {
    --tw-shadow-color: rgb(30 27 75 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-950\/30 {
    --tw-shadow-color: rgb(30 27 75 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-950\/40 {
    --tw-shadow-color: rgb(30 27 75 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-950\/5 {
    --tw-shadow-color: rgb(30 27 75 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-950\/50 {
    --tw-shadow-color: rgb(30 27 75 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-950\/60 {
    --tw-shadow-color: rgb(30 27 75 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-950\/70 {
    --tw-shadow-color: rgb(30 27 75 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-950\/80 {
    --tw-shadow-color: rgb(30 27 75 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-indigo-950\/90 {
    --tw-shadow-color: rgb(30 27 75 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-100 {
    --tw-shadow-color: #ecfccb;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-100\/10 {
    --tw-shadow-color: rgb(236 252 203 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-100\/20 {
    --tw-shadow-color: rgb(236 252 203 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-100\/30 {
    --tw-shadow-color: rgb(236 252 203 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-100\/40 {
    --tw-shadow-color: rgb(236 252 203 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-100\/5 {
    --tw-shadow-color: rgb(236 252 203 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-100\/50 {
    --tw-shadow-color: rgb(236 252 203 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-100\/60 {
    --tw-shadow-color: rgb(236 252 203 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-100\/70 {
    --tw-shadow-color: rgb(236 252 203 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-100\/80 {
    --tw-shadow-color: rgb(236 252 203 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-100\/90 {
    --tw-shadow-color: rgb(236 252 203 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-200 {
    --tw-shadow-color: #d9f99d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-200\/10 {
    --tw-shadow-color: rgb(217 249 157 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-200\/20 {
    --tw-shadow-color: rgb(217 249 157 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-200\/30 {
    --tw-shadow-color: rgb(217 249 157 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-200\/40 {
    --tw-shadow-color: rgb(217 249 157 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-200\/5 {
    --tw-shadow-color: rgb(217 249 157 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-200\/50 {
    --tw-shadow-color: rgb(217 249 157 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-200\/60 {
    --tw-shadow-color: rgb(217 249 157 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-200\/70 {
    --tw-shadow-color: rgb(217 249 157 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-200\/80 {
    --tw-shadow-color: rgb(217 249 157 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-200\/90 {
    --tw-shadow-color: rgb(217 249 157 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-300 {
    --tw-shadow-color: #bef264;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-300\/10 {
    --tw-shadow-color: rgb(190 242 100 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-300\/20 {
    --tw-shadow-color: rgb(190 242 100 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-300\/30 {
    --tw-shadow-color: rgb(190 242 100 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-300\/40 {
    --tw-shadow-color: rgb(190 242 100 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-300\/5 {
    --tw-shadow-color: rgb(190 242 100 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-300\/50 {
    --tw-shadow-color: rgb(190 242 100 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-300\/60 {
    --tw-shadow-color: rgb(190 242 100 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-300\/70 {
    --tw-shadow-color: rgb(190 242 100 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-300\/80 {
    --tw-shadow-color: rgb(190 242 100 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-300\/90 {
    --tw-shadow-color: rgb(190 242 100 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-400 {
    --tw-shadow-color: #a3e635;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-400\/10 {
    --tw-shadow-color: rgb(163 230 53 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-400\/20 {
    --tw-shadow-color: rgb(163 230 53 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-400\/30 {
    --tw-shadow-color: rgb(163 230 53 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-400\/40 {
    --tw-shadow-color: rgb(163 230 53 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-400\/5 {
    --tw-shadow-color: rgb(163 230 53 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-400\/50 {
    --tw-shadow-color: rgb(163 230 53 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-400\/60 {
    --tw-shadow-color: rgb(163 230 53 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-400\/70 {
    --tw-shadow-color: rgb(163 230 53 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-400\/80 {
    --tw-shadow-color: rgb(163 230 53 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-400\/90 {
    --tw-shadow-color: rgb(163 230 53 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-50 {
    --tw-shadow-color: #f7fee7;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-50\/10 {
    --tw-shadow-color: rgb(247 254 231 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-50\/20 {
    --tw-shadow-color: rgb(247 254 231 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-50\/30 {
    --tw-shadow-color: rgb(247 254 231 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-50\/40 {
    --tw-shadow-color: rgb(247 254 231 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-50\/5 {
    --tw-shadow-color: rgb(247 254 231 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-50\/50 {
    --tw-shadow-color: rgb(247 254 231 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-50\/60 {
    --tw-shadow-color: rgb(247 254 231 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-50\/70 {
    --tw-shadow-color: rgb(247 254 231 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-50\/80 {
    --tw-shadow-color: rgb(247 254 231 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-50\/90 {
    --tw-shadow-color: rgb(247 254 231 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-500 {
    --tw-shadow-color: #84cc16;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-500\/10 {
    --tw-shadow-color: rgb(132 204 22 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-500\/20 {
    --tw-shadow-color: rgb(132 204 22 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-500\/30 {
    --tw-shadow-color: rgb(132 204 22 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-500\/40 {
    --tw-shadow-color: rgb(132 204 22 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-500\/5 {
    --tw-shadow-color: rgb(132 204 22 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-500\/50 {
    --tw-shadow-color: rgb(132 204 22 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-500\/60 {
    --tw-shadow-color: rgb(132 204 22 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-500\/70 {
    --tw-shadow-color: rgb(132 204 22 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-500\/80 {
    --tw-shadow-color: rgb(132 204 22 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-500\/90 {
    --tw-shadow-color: rgb(132 204 22 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-600 {
    --tw-shadow-color: #65a30d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-600\/10 {
    --tw-shadow-color: rgb(101 163 13 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-600\/20 {
    --tw-shadow-color: rgb(101 163 13 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-600\/30 {
    --tw-shadow-color: rgb(101 163 13 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-600\/40 {
    --tw-shadow-color: rgb(101 163 13 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-600\/5 {
    --tw-shadow-color: rgb(101 163 13 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-600\/50 {
    --tw-shadow-color: rgb(101 163 13 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-600\/60 {
    --tw-shadow-color: rgb(101 163 13 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-600\/70 {
    --tw-shadow-color: rgb(101 163 13 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-600\/80 {
    --tw-shadow-color: rgb(101 163 13 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-600\/90 {
    --tw-shadow-color: rgb(101 163 13 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-700 {
    --tw-shadow-color: #4d7c0f;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-700\/10 {
    --tw-shadow-color: rgb(77 124 15 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-700\/20 {
    --tw-shadow-color: rgb(77 124 15 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-700\/30 {
    --tw-shadow-color: rgb(77 124 15 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-700\/40 {
    --tw-shadow-color: rgb(77 124 15 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-700\/5 {
    --tw-shadow-color: rgb(77 124 15 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-700\/50 {
    --tw-shadow-color: rgb(77 124 15 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-700\/60 {
    --tw-shadow-color: rgb(77 124 15 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-700\/70 {
    --tw-shadow-color: rgb(77 124 15 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-700\/80 {
    --tw-shadow-color: rgb(77 124 15 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-700\/90 {
    --tw-shadow-color: rgb(77 124 15 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-800 {
    --tw-shadow-color: #3f6212;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-800\/10 {
    --tw-shadow-color: rgb(63 98 18 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-800\/20 {
    --tw-shadow-color: rgb(63 98 18 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-800\/30 {
    --tw-shadow-color: rgb(63 98 18 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-800\/40 {
    --tw-shadow-color: rgb(63 98 18 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-800\/5 {
    --tw-shadow-color: rgb(63 98 18 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-800\/50 {
    --tw-shadow-color: rgb(63 98 18 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-800\/60 {
    --tw-shadow-color: rgb(63 98 18 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-800\/70 {
    --tw-shadow-color: rgb(63 98 18 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-800\/80 {
    --tw-shadow-color: rgb(63 98 18 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-800\/90 {
    --tw-shadow-color: rgb(63 98 18 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-900 {
    --tw-shadow-color: #365314;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-900\/10 {
    --tw-shadow-color: rgb(54 83 20 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-900\/20 {
    --tw-shadow-color: rgb(54 83 20 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-900\/30 {
    --tw-shadow-color: rgb(54 83 20 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-900\/40 {
    --tw-shadow-color: rgb(54 83 20 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-900\/5 {
    --tw-shadow-color: rgb(54 83 20 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-900\/50 {
    --tw-shadow-color: rgb(54 83 20 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-900\/60 {
    --tw-shadow-color: rgb(54 83 20 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-900\/70 {
    --tw-shadow-color: rgb(54 83 20 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-900\/80 {
    --tw-shadow-color: rgb(54 83 20 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-900\/90 {
    --tw-shadow-color: rgb(54 83 20 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-950 {
    --tw-shadow-color: #1a2e05;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-950\/10 {
    --tw-shadow-color: rgb(26 46 5 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-950\/20 {
    --tw-shadow-color: rgb(26 46 5 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-950\/30 {
    --tw-shadow-color: rgb(26 46 5 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-950\/40 {
    --tw-shadow-color: rgb(26 46 5 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-950\/5 {
    --tw-shadow-color: rgb(26 46 5 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-950\/50 {
    --tw-shadow-color: rgb(26 46 5 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-950\/60 {
    --tw-shadow-color: rgb(26 46 5 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-950\/70 {
    --tw-shadow-color: rgb(26 46 5 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-950\/80 {
    --tw-shadow-color: rgb(26 46 5 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-lime-950\/90 {
    --tw-shadow-color: rgb(26 46 5 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-100 {
    --tw-shadow-color: #f5f5f5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-100\/10 {
    --tw-shadow-color: rgb(245 245 245 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-100\/20 {
    --tw-shadow-color: rgb(245 245 245 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-100\/30 {
    --tw-shadow-color: rgb(245 245 245 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-100\/40 {
    --tw-shadow-color: rgb(245 245 245 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-100\/5 {
    --tw-shadow-color: rgb(245 245 245 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-100\/50 {
    --tw-shadow-color: rgb(245 245 245 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-100\/60 {
    --tw-shadow-color: rgb(245 245 245 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-100\/70 {
    --tw-shadow-color: rgb(245 245 245 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-100\/80 {
    --tw-shadow-color: rgb(245 245 245 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-100\/90 {
    --tw-shadow-color: rgb(245 245 245 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-200 {
    --tw-shadow-color: #e5e5e5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-200\/10 {
    --tw-shadow-color: rgb(229 229 229 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-200\/20 {
    --tw-shadow-color: rgb(229 229 229 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-200\/30 {
    --tw-shadow-color: rgb(229 229 229 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-200\/40 {
    --tw-shadow-color: rgb(229 229 229 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-200\/5 {
    --tw-shadow-color: rgb(229 229 229 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-200\/50 {
    --tw-shadow-color: rgb(229 229 229 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-200\/60 {
    --tw-shadow-color: rgb(229 229 229 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-200\/70 {
    --tw-shadow-color: rgb(229 229 229 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-200\/80 {
    --tw-shadow-color: rgb(229 229 229 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-200\/90 {
    --tw-shadow-color: rgb(229 229 229 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-300 {
    --tw-shadow-color: #d4d4d4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-300\/10 {
    --tw-shadow-color: rgb(212 212 212 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-300\/20 {
    --tw-shadow-color: rgb(212 212 212 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-300\/30 {
    --tw-shadow-color: rgb(212 212 212 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-300\/40 {
    --tw-shadow-color: rgb(212 212 212 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-300\/5 {
    --tw-shadow-color: rgb(212 212 212 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-300\/50 {
    --tw-shadow-color: rgb(212 212 212 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-300\/60 {
    --tw-shadow-color: rgb(212 212 212 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-300\/70 {
    --tw-shadow-color: rgb(212 212 212 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-300\/80 {
    --tw-shadow-color: rgb(212 212 212 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-300\/90 {
    --tw-shadow-color: rgb(212 212 212 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-400 {
    --tw-shadow-color: #a3a3a3;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-400\/10 {
    --tw-shadow-color: rgb(163 163 163 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-400\/20 {
    --tw-shadow-color: rgb(163 163 163 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-400\/30 {
    --tw-shadow-color: rgb(163 163 163 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-400\/40 {
    --tw-shadow-color: rgb(163 163 163 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-400\/5 {
    --tw-shadow-color: rgb(163 163 163 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-400\/50 {
    --tw-shadow-color: rgb(163 163 163 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-400\/60 {
    --tw-shadow-color: rgb(163 163 163 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-400\/70 {
    --tw-shadow-color: rgb(163 163 163 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-400\/80 {
    --tw-shadow-color: rgb(163 163 163 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-400\/90 {
    --tw-shadow-color: rgb(163 163 163 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-50 {
    --tw-shadow-color: #fafafa;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-50\/10 {
    --tw-shadow-color: rgb(250 250 250 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-50\/20 {
    --tw-shadow-color: rgb(250 250 250 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-50\/30 {
    --tw-shadow-color: rgb(250 250 250 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-50\/40 {
    --tw-shadow-color: rgb(250 250 250 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-50\/5 {
    --tw-shadow-color: rgb(250 250 250 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-50\/50 {
    --tw-shadow-color: rgb(250 250 250 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-50\/60 {
    --tw-shadow-color: rgb(250 250 250 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-50\/70 {
    --tw-shadow-color: rgb(250 250 250 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-50\/80 {
    --tw-shadow-color: rgb(250 250 250 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-50\/90 {
    --tw-shadow-color: rgb(250 250 250 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-500 {
    --tw-shadow-color: #737373;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-500\/10 {
    --tw-shadow-color: rgb(115 115 115 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-500\/20 {
    --tw-shadow-color: rgb(115 115 115 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-500\/30 {
    --tw-shadow-color: rgb(115 115 115 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-500\/40 {
    --tw-shadow-color: rgb(115 115 115 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-500\/5 {
    --tw-shadow-color: rgb(115 115 115 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-500\/50 {
    --tw-shadow-color: rgb(115 115 115 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-500\/60 {
    --tw-shadow-color: rgb(115 115 115 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-500\/70 {
    --tw-shadow-color: rgb(115 115 115 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-500\/80 {
    --tw-shadow-color: rgb(115 115 115 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-500\/90 {
    --tw-shadow-color: rgb(115 115 115 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-600 {
    --tw-shadow-color: #525252;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-600\/10 {
    --tw-shadow-color: rgb(82 82 82 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-600\/20 {
    --tw-shadow-color: rgb(82 82 82 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-600\/30 {
    --tw-shadow-color: rgb(82 82 82 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-600\/40 {
    --tw-shadow-color: rgb(82 82 82 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-600\/5 {
    --tw-shadow-color: rgb(82 82 82 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-600\/50 {
    --tw-shadow-color: rgb(82 82 82 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-600\/60 {
    --tw-shadow-color: rgb(82 82 82 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-600\/70 {
    --tw-shadow-color: rgb(82 82 82 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-600\/80 {
    --tw-shadow-color: rgb(82 82 82 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-600\/90 {
    --tw-shadow-color: rgb(82 82 82 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-700 {
    --tw-shadow-color: #404040;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-700\/10 {
    --tw-shadow-color: rgb(64 64 64 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-700\/20 {
    --tw-shadow-color: rgb(64 64 64 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-700\/30 {
    --tw-shadow-color: rgb(64 64 64 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-700\/40 {
    --tw-shadow-color: rgb(64 64 64 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-700\/5 {
    --tw-shadow-color: rgb(64 64 64 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-700\/50 {
    --tw-shadow-color: rgb(64 64 64 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-700\/60 {
    --tw-shadow-color: rgb(64 64 64 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-700\/70 {
    --tw-shadow-color: rgb(64 64 64 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-700\/80 {
    --tw-shadow-color: rgb(64 64 64 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-700\/90 {
    --tw-shadow-color: rgb(64 64 64 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-800 {
    --tw-shadow-color: #262626;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-800\/10 {
    --tw-shadow-color: rgb(38 38 38 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-800\/20 {
    --tw-shadow-color: rgb(38 38 38 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-800\/30 {
    --tw-shadow-color: rgb(38 38 38 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-800\/40 {
    --tw-shadow-color: rgb(38 38 38 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-800\/5 {
    --tw-shadow-color: rgb(38 38 38 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-800\/50 {
    --tw-shadow-color: rgb(38 38 38 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-800\/60 {
    --tw-shadow-color: rgb(38 38 38 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-800\/70 {
    --tw-shadow-color: rgb(38 38 38 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-800\/80 {
    --tw-shadow-color: rgb(38 38 38 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-800\/90 {
    --tw-shadow-color: rgb(38 38 38 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-900 {
    --tw-shadow-color: #171717;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-900\/10 {
    --tw-shadow-color: rgb(23 23 23 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-900\/20 {
    --tw-shadow-color: rgb(23 23 23 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-900\/30 {
    --tw-shadow-color: rgb(23 23 23 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-900\/40 {
    --tw-shadow-color: rgb(23 23 23 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-900\/5 {
    --tw-shadow-color: rgb(23 23 23 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-900\/50 {
    --tw-shadow-color: rgb(23 23 23 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-900\/60 {
    --tw-shadow-color: rgb(23 23 23 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-900\/70 {
    --tw-shadow-color: rgb(23 23 23 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-900\/80 {
    --tw-shadow-color: rgb(23 23 23 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-900\/90 {
    --tw-shadow-color: rgb(23 23 23 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-950 {
    --tw-shadow-color: #0a0a0a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-950\/10 {
    --tw-shadow-color: rgb(10 10 10 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-950\/20 {
    --tw-shadow-color: rgb(10 10 10 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-950\/30 {
    --tw-shadow-color: rgb(10 10 10 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-950\/40 {
    --tw-shadow-color: rgb(10 10 10 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-950\/5 {
    --tw-shadow-color: rgb(10 10 10 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-950\/50 {
    --tw-shadow-color: rgb(10 10 10 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-950\/60 {
    --tw-shadow-color: rgb(10 10 10 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-950\/70 {
    --tw-shadow-color: rgb(10 10 10 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-950\/80 {
    --tw-shadow-color: rgb(10 10 10 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-neutral-950\/90 {
    --tw-shadow-color: rgb(10 10 10 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-100 {
    --tw-shadow-color: #ffedd5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-100\/10 {
    --tw-shadow-color: rgb(255 237 213 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-100\/20 {
    --tw-shadow-color: rgb(255 237 213 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-100\/30 {
    --tw-shadow-color: rgb(255 237 213 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-100\/40 {
    --tw-shadow-color: rgb(255 237 213 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-100\/5 {
    --tw-shadow-color: rgb(255 237 213 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-100\/50 {
    --tw-shadow-color: rgb(255 237 213 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-100\/60 {
    --tw-shadow-color: rgb(255 237 213 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-100\/70 {
    --tw-shadow-color: rgb(255 237 213 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-100\/80 {
    --tw-shadow-color: rgb(255 237 213 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-100\/90 {
    --tw-shadow-color: rgb(255 237 213 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-200 {
    --tw-shadow-color: #fed7aa;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-200\/10 {
    --tw-shadow-color: rgb(254 215 170 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-200\/20 {
    --tw-shadow-color: rgb(254 215 170 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-200\/30 {
    --tw-shadow-color: rgb(254 215 170 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-200\/40 {
    --tw-shadow-color: rgb(254 215 170 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-200\/5 {
    --tw-shadow-color: rgb(254 215 170 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-200\/50 {
    --tw-shadow-color: rgb(254 215 170 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-200\/60 {
    --tw-shadow-color: rgb(254 215 170 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-200\/70 {
    --tw-shadow-color: rgb(254 215 170 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-200\/80 {
    --tw-shadow-color: rgb(254 215 170 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-200\/90 {
    --tw-shadow-color: rgb(254 215 170 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-300 {
    --tw-shadow-color: #fdba74;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-300\/10 {
    --tw-shadow-color: rgb(253 186 116 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-300\/20 {
    --tw-shadow-color: rgb(253 186 116 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-300\/30 {
    --tw-shadow-color: rgb(253 186 116 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-300\/40 {
    --tw-shadow-color: rgb(253 186 116 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-300\/5 {
    --tw-shadow-color: rgb(253 186 116 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-300\/50 {
    --tw-shadow-color: rgb(253 186 116 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-300\/60 {
    --tw-shadow-color: rgb(253 186 116 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-300\/70 {
    --tw-shadow-color: rgb(253 186 116 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-300\/80 {
    --tw-shadow-color: rgb(253 186 116 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-300\/90 {
    --tw-shadow-color: rgb(253 186 116 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-400 {
    --tw-shadow-color: #fb923c;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-400\/10 {
    --tw-shadow-color: rgb(251 146 60 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-400\/20 {
    --tw-shadow-color: rgb(251 146 60 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-400\/30 {
    --tw-shadow-color: rgb(251 146 60 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-400\/40 {
    --tw-shadow-color: rgb(251 146 60 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-400\/5 {
    --tw-shadow-color: rgb(251 146 60 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-400\/50 {
    --tw-shadow-color: rgb(251 146 60 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-400\/60 {
    --tw-shadow-color: rgb(251 146 60 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-400\/70 {
    --tw-shadow-color: rgb(251 146 60 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-400\/80 {
    --tw-shadow-color: rgb(251 146 60 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-400\/90 {
    --tw-shadow-color: rgb(251 146 60 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-50 {
    --tw-shadow-color: #fff7ed;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-50\/10 {
    --tw-shadow-color: rgb(255 247 237 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-50\/20 {
    --tw-shadow-color: rgb(255 247 237 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-50\/30 {
    --tw-shadow-color: rgb(255 247 237 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-50\/40 {
    --tw-shadow-color: rgb(255 247 237 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-50\/5 {
    --tw-shadow-color: rgb(255 247 237 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-50\/50 {
    --tw-shadow-color: rgb(255 247 237 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-50\/60 {
    --tw-shadow-color: rgb(255 247 237 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-50\/70 {
    --tw-shadow-color: rgb(255 247 237 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-50\/80 {
    --tw-shadow-color: rgb(255 247 237 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-50\/90 {
    --tw-shadow-color: rgb(255 247 237 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-500 {
    --tw-shadow-color: #f97316;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-500\/10 {
    --tw-shadow-color: rgb(249 115 22 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-500\/20 {
    --tw-shadow-color: rgb(249 115 22 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-500\/30 {
    --tw-shadow-color: rgb(249 115 22 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-500\/40 {
    --tw-shadow-color: rgb(249 115 22 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-500\/5 {
    --tw-shadow-color: rgb(249 115 22 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-500\/50 {
    --tw-shadow-color: rgb(249 115 22 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-500\/60 {
    --tw-shadow-color: rgb(249 115 22 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-500\/70 {
    --tw-shadow-color: rgb(249 115 22 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-500\/80 {
    --tw-shadow-color: rgb(249 115 22 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-500\/90 {
    --tw-shadow-color: rgb(249 115 22 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-600 {
    --tw-shadow-color: #ea580c;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-600\/10 {
    --tw-shadow-color: rgb(234 88 12 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-600\/20 {
    --tw-shadow-color: rgb(234 88 12 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-600\/30 {
    --tw-shadow-color: rgb(234 88 12 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-600\/40 {
    --tw-shadow-color: rgb(234 88 12 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-600\/5 {
    --tw-shadow-color: rgb(234 88 12 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-600\/50 {
    --tw-shadow-color: rgb(234 88 12 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-600\/60 {
    --tw-shadow-color: rgb(234 88 12 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-600\/70 {
    --tw-shadow-color: rgb(234 88 12 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-600\/80 {
    --tw-shadow-color: rgb(234 88 12 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-600\/90 {
    --tw-shadow-color: rgb(234 88 12 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-700 {
    --tw-shadow-color: #c2410c;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-700\/10 {
    --tw-shadow-color: rgb(194 65 12 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-700\/20 {
    --tw-shadow-color: rgb(194 65 12 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-700\/30 {
    --tw-shadow-color: rgb(194 65 12 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-700\/40 {
    --tw-shadow-color: rgb(194 65 12 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-700\/5 {
    --tw-shadow-color: rgb(194 65 12 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-700\/50 {
    --tw-shadow-color: rgb(194 65 12 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-700\/60 {
    --tw-shadow-color: rgb(194 65 12 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-700\/70 {
    --tw-shadow-color: rgb(194 65 12 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-700\/80 {
    --tw-shadow-color: rgb(194 65 12 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-700\/90 {
    --tw-shadow-color: rgb(194 65 12 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-800 {
    --tw-shadow-color: #9a3412;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-800\/10 {
    --tw-shadow-color: rgb(154 52 18 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-800\/20 {
    --tw-shadow-color: rgb(154 52 18 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-800\/30 {
    --tw-shadow-color: rgb(154 52 18 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-800\/40 {
    --tw-shadow-color: rgb(154 52 18 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-800\/5 {
    --tw-shadow-color: rgb(154 52 18 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-800\/50 {
    --tw-shadow-color: rgb(154 52 18 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-800\/60 {
    --tw-shadow-color: rgb(154 52 18 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-800\/70 {
    --tw-shadow-color: rgb(154 52 18 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-800\/80 {
    --tw-shadow-color: rgb(154 52 18 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-800\/90 {
    --tw-shadow-color: rgb(154 52 18 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-900 {
    --tw-shadow-color: #7c2d12;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-900\/10 {
    --tw-shadow-color: rgb(124 45 18 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-900\/20 {
    --tw-shadow-color: rgb(124 45 18 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-900\/30 {
    --tw-shadow-color: rgb(124 45 18 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-900\/40 {
    --tw-shadow-color: rgb(124 45 18 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-900\/5 {
    --tw-shadow-color: rgb(124 45 18 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-900\/50 {
    --tw-shadow-color: rgb(124 45 18 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-900\/60 {
    --tw-shadow-color: rgb(124 45 18 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-900\/70 {
    --tw-shadow-color: rgb(124 45 18 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-900\/80 {
    --tw-shadow-color: rgb(124 45 18 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-900\/90 {
    --tw-shadow-color: rgb(124 45 18 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-950 {
    --tw-shadow-color: #431407;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-950\/10 {
    --tw-shadow-color: rgb(67 20 7 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-950\/20 {
    --tw-shadow-color: rgb(67 20 7 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-950\/30 {
    --tw-shadow-color: rgb(67 20 7 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-950\/40 {
    --tw-shadow-color: rgb(67 20 7 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-950\/5 {
    --tw-shadow-color: rgb(67 20 7 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-950\/50 {
    --tw-shadow-color: rgb(67 20 7 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-950\/60 {
    --tw-shadow-color: rgb(67 20 7 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-950\/70 {
    --tw-shadow-color: rgb(67 20 7 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-950\/80 {
    --tw-shadow-color: rgb(67 20 7 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-orange-950\/90 {
    --tw-shadow-color: rgb(67 20 7 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-100 {
    --tw-shadow-color: #fce7f3;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-100\/10 {
    --tw-shadow-color: rgb(252 231 243 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-100\/20 {
    --tw-shadow-color: rgb(252 231 243 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-100\/30 {
    --tw-shadow-color: rgb(252 231 243 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-100\/40 {
    --tw-shadow-color: rgb(252 231 243 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-100\/5 {
    --tw-shadow-color: rgb(252 231 243 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-100\/50 {
    --tw-shadow-color: rgb(252 231 243 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-100\/60 {
    --tw-shadow-color: rgb(252 231 243 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-100\/70 {
    --tw-shadow-color: rgb(252 231 243 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-100\/80 {
    --tw-shadow-color: rgb(252 231 243 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-100\/90 {
    --tw-shadow-color: rgb(252 231 243 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-200 {
    --tw-shadow-color: #fbcfe8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-200\/10 {
    --tw-shadow-color: rgb(251 207 232 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-200\/20 {
    --tw-shadow-color: rgb(251 207 232 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-200\/30 {
    --tw-shadow-color: rgb(251 207 232 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-200\/40 {
    --tw-shadow-color: rgb(251 207 232 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-200\/5 {
    --tw-shadow-color: rgb(251 207 232 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-200\/50 {
    --tw-shadow-color: rgb(251 207 232 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-200\/60 {
    --tw-shadow-color: rgb(251 207 232 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-200\/70 {
    --tw-shadow-color: rgb(251 207 232 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-200\/80 {
    --tw-shadow-color: rgb(251 207 232 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-200\/90 {
    --tw-shadow-color: rgb(251 207 232 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-300 {
    --tw-shadow-color: #f9a8d4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-300\/10 {
    --tw-shadow-color: rgb(249 168 212 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-300\/20 {
    --tw-shadow-color: rgb(249 168 212 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-300\/30 {
    --tw-shadow-color: rgb(249 168 212 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-300\/40 {
    --tw-shadow-color: rgb(249 168 212 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-300\/5 {
    --tw-shadow-color: rgb(249 168 212 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-300\/50 {
    --tw-shadow-color: rgb(249 168 212 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-300\/60 {
    --tw-shadow-color: rgb(249 168 212 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-300\/70 {
    --tw-shadow-color: rgb(249 168 212 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-300\/80 {
    --tw-shadow-color: rgb(249 168 212 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-300\/90 {
    --tw-shadow-color: rgb(249 168 212 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-400 {
    --tw-shadow-color: #f472b6;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-400\/10 {
    --tw-shadow-color: rgb(244 114 182 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-400\/20 {
    --tw-shadow-color: rgb(244 114 182 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-400\/30 {
    --tw-shadow-color: rgb(244 114 182 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-400\/40 {
    --tw-shadow-color: rgb(244 114 182 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-400\/5 {
    --tw-shadow-color: rgb(244 114 182 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-400\/50 {
    --tw-shadow-color: rgb(244 114 182 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-400\/60 {
    --tw-shadow-color: rgb(244 114 182 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-400\/70 {
    --tw-shadow-color: rgb(244 114 182 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-400\/80 {
    --tw-shadow-color: rgb(244 114 182 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-400\/90 {
    --tw-shadow-color: rgb(244 114 182 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-50 {
    --tw-shadow-color: #fdf2f8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-50\/10 {
    --tw-shadow-color: rgb(253 242 248 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-50\/20 {
    --tw-shadow-color: rgb(253 242 248 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-50\/30 {
    --tw-shadow-color: rgb(253 242 248 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-50\/40 {
    --tw-shadow-color: rgb(253 242 248 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-50\/5 {
    --tw-shadow-color: rgb(253 242 248 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-50\/50 {
    --tw-shadow-color: rgb(253 242 248 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-50\/60 {
    --tw-shadow-color: rgb(253 242 248 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-50\/70 {
    --tw-shadow-color: rgb(253 242 248 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-50\/80 {
    --tw-shadow-color: rgb(253 242 248 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-50\/90 {
    --tw-shadow-color: rgb(253 242 248 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-500 {
    --tw-shadow-color: #ec4899;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-500\/10 {
    --tw-shadow-color: rgb(236 72 153 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-500\/20 {
    --tw-shadow-color: rgb(236 72 153 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-500\/30 {
    --tw-shadow-color: rgb(236 72 153 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-500\/40 {
    --tw-shadow-color: rgb(236 72 153 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-500\/5 {
    --tw-shadow-color: rgb(236 72 153 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-500\/50 {
    --tw-shadow-color: rgb(236 72 153 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-500\/60 {
    --tw-shadow-color: rgb(236 72 153 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-500\/70 {
    --tw-shadow-color: rgb(236 72 153 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-500\/80 {
    --tw-shadow-color: rgb(236 72 153 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-500\/90 {
    --tw-shadow-color: rgb(236 72 153 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-600 {
    --tw-shadow-color: #db2777;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-600\/10 {
    --tw-shadow-color: rgb(219 39 119 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-600\/20 {
    --tw-shadow-color: rgb(219 39 119 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-600\/30 {
    --tw-shadow-color: rgb(219 39 119 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-600\/40 {
    --tw-shadow-color: rgb(219 39 119 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-600\/5 {
    --tw-shadow-color: rgb(219 39 119 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-600\/50 {
    --tw-shadow-color: rgb(219 39 119 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-600\/60 {
    --tw-shadow-color: rgb(219 39 119 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-600\/70 {
    --tw-shadow-color: rgb(219 39 119 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-600\/80 {
    --tw-shadow-color: rgb(219 39 119 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-600\/90 {
    --tw-shadow-color: rgb(219 39 119 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-700 {
    --tw-shadow-color: #be185d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-700\/10 {
    --tw-shadow-color: rgb(190 24 93 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-700\/20 {
    --tw-shadow-color: rgb(190 24 93 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-700\/30 {
    --tw-shadow-color: rgb(190 24 93 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-700\/40 {
    --tw-shadow-color: rgb(190 24 93 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-700\/5 {
    --tw-shadow-color: rgb(190 24 93 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-700\/50 {
    --tw-shadow-color: rgb(190 24 93 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-700\/60 {
    --tw-shadow-color: rgb(190 24 93 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-700\/70 {
    --tw-shadow-color: rgb(190 24 93 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-700\/80 {
    --tw-shadow-color: rgb(190 24 93 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-700\/90 {
    --tw-shadow-color: rgb(190 24 93 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-800 {
    --tw-shadow-color: #9d174d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-800\/10 {
    --tw-shadow-color: rgb(157 23 77 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-800\/20 {
    --tw-shadow-color: rgb(157 23 77 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-800\/30 {
    --tw-shadow-color: rgb(157 23 77 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-800\/40 {
    --tw-shadow-color: rgb(157 23 77 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-800\/5 {
    --tw-shadow-color: rgb(157 23 77 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-800\/50 {
    --tw-shadow-color: rgb(157 23 77 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-800\/60 {
    --tw-shadow-color: rgb(157 23 77 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-800\/70 {
    --tw-shadow-color: rgb(157 23 77 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-800\/80 {
    --tw-shadow-color: rgb(157 23 77 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-800\/90 {
    --tw-shadow-color: rgb(157 23 77 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-900 {
    --tw-shadow-color: #831843;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-900\/10 {
    --tw-shadow-color: rgb(131 24 67 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-900\/20 {
    --tw-shadow-color: rgb(131 24 67 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-900\/30 {
    --tw-shadow-color: rgb(131 24 67 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-900\/40 {
    --tw-shadow-color: rgb(131 24 67 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-900\/5 {
    --tw-shadow-color: rgb(131 24 67 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-900\/50 {
    --tw-shadow-color: rgb(131 24 67 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-900\/60 {
    --tw-shadow-color: rgb(131 24 67 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-900\/70 {
    --tw-shadow-color: rgb(131 24 67 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-900\/80 {
    --tw-shadow-color: rgb(131 24 67 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-900\/90 {
    --tw-shadow-color: rgb(131 24 67 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-950 {
    --tw-shadow-color: #500724;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-950\/10 {
    --tw-shadow-color: rgb(80 7 36 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-950\/20 {
    --tw-shadow-color: rgb(80 7 36 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-950\/30 {
    --tw-shadow-color: rgb(80 7 36 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-950\/40 {
    --tw-shadow-color: rgb(80 7 36 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-950\/5 {
    --tw-shadow-color: rgb(80 7 36 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-950\/50 {
    --tw-shadow-color: rgb(80 7 36 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-950\/60 {
    --tw-shadow-color: rgb(80 7 36 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-950\/70 {
    --tw-shadow-color: rgb(80 7 36 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-950\/80 {
    --tw-shadow-color: rgb(80 7 36 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-pink-950\/90 {
    --tw-shadow-color: rgb(80 7 36 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-100 {
    --tw-shadow-color: #f3e8ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-100\/10 {
    --tw-shadow-color: rgb(243 232 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-100\/20 {
    --tw-shadow-color: rgb(243 232 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-100\/30 {
    --tw-shadow-color: rgb(243 232 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-100\/40 {
    --tw-shadow-color: rgb(243 232 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-100\/5 {
    --tw-shadow-color: rgb(243 232 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-100\/50 {
    --tw-shadow-color: rgb(243 232 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-100\/60 {
    --tw-shadow-color: rgb(243 232 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-100\/70 {
    --tw-shadow-color: rgb(243 232 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-100\/80 {
    --tw-shadow-color: rgb(243 232 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-100\/90 {
    --tw-shadow-color: rgb(243 232 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-200 {
    --tw-shadow-color: #e9d5ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-200\/10 {
    --tw-shadow-color: rgb(233 213 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-200\/20 {
    --tw-shadow-color: rgb(233 213 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-200\/30 {
    --tw-shadow-color: rgb(233 213 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-200\/40 {
    --tw-shadow-color: rgb(233 213 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-200\/5 {
    --tw-shadow-color: rgb(233 213 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-200\/50 {
    --tw-shadow-color: rgb(233 213 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-200\/60 {
    --tw-shadow-color: rgb(233 213 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-200\/70 {
    --tw-shadow-color: rgb(233 213 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-200\/80 {
    --tw-shadow-color: rgb(233 213 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-200\/90 {
    --tw-shadow-color: rgb(233 213 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-300 {
    --tw-shadow-color: #d8b4fe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-300\/10 {
    --tw-shadow-color: rgb(216 180 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-300\/20 {
    --tw-shadow-color: rgb(216 180 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-300\/30 {
    --tw-shadow-color: rgb(216 180 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-300\/40 {
    --tw-shadow-color: rgb(216 180 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-300\/5 {
    --tw-shadow-color: rgb(216 180 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-300\/50 {
    --tw-shadow-color: rgb(216 180 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-300\/60 {
    --tw-shadow-color: rgb(216 180 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-300\/70 {
    --tw-shadow-color: rgb(216 180 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-300\/80 {
    --tw-shadow-color: rgb(216 180 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-300\/90 {
    --tw-shadow-color: rgb(216 180 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-400 {
    --tw-shadow-color: #c084fc;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-400\/10 {
    --tw-shadow-color: rgb(192 132 252 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-400\/20 {
    --tw-shadow-color: rgb(192 132 252 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-400\/30 {
    --tw-shadow-color: rgb(192 132 252 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-400\/40 {
    --tw-shadow-color: rgb(192 132 252 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-400\/5 {
    --tw-shadow-color: rgb(192 132 252 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-400\/50 {
    --tw-shadow-color: rgb(192 132 252 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-400\/60 {
    --tw-shadow-color: rgb(192 132 252 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-400\/70 {
    --tw-shadow-color: rgb(192 132 252 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-400\/80 {
    --tw-shadow-color: rgb(192 132 252 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-400\/90 {
    --tw-shadow-color: rgb(192 132 252 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-50 {
    --tw-shadow-color: #faf5ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-50\/10 {
    --tw-shadow-color: rgb(250 245 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-50\/20 {
    --tw-shadow-color: rgb(250 245 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-50\/30 {
    --tw-shadow-color: rgb(250 245 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-50\/40 {
    --tw-shadow-color: rgb(250 245 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-50\/5 {
    --tw-shadow-color: rgb(250 245 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-50\/50 {
    --tw-shadow-color: rgb(250 245 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-50\/60 {
    --tw-shadow-color: rgb(250 245 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-50\/70 {
    --tw-shadow-color: rgb(250 245 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-50\/80 {
    --tw-shadow-color: rgb(250 245 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-50\/90 {
    --tw-shadow-color: rgb(250 245 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-500 {
    --tw-shadow-color: #a855f7;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-500\/10 {
    --tw-shadow-color: rgb(168 85 247 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-500\/20 {
    --tw-shadow-color: rgb(168 85 247 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-500\/30 {
    --tw-shadow-color: rgb(168 85 247 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-500\/40 {
    --tw-shadow-color: rgb(168 85 247 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-500\/5 {
    --tw-shadow-color: rgb(168 85 247 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-500\/50 {
    --tw-shadow-color: rgb(168 85 247 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-500\/60 {
    --tw-shadow-color: rgb(168 85 247 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-500\/70 {
    --tw-shadow-color: rgb(168 85 247 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-500\/80 {
    --tw-shadow-color: rgb(168 85 247 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-500\/90 {
    --tw-shadow-color: rgb(168 85 247 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-600 {
    --tw-shadow-color: #9333ea;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-600\/10 {
    --tw-shadow-color: rgb(147 51 234 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-600\/20 {
    --tw-shadow-color: rgb(147 51 234 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-600\/30 {
    --tw-shadow-color: rgb(147 51 234 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-600\/40 {
    --tw-shadow-color: rgb(147 51 234 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-600\/5 {
    --tw-shadow-color: rgb(147 51 234 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-600\/50 {
    --tw-shadow-color: rgb(147 51 234 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-600\/60 {
    --tw-shadow-color: rgb(147 51 234 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-600\/70 {
    --tw-shadow-color: rgb(147 51 234 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-600\/80 {
    --tw-shadow-color: rgb(147 51 234 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-600\/90 {
    --tw-shadow-color: rgb(147 51 234 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-700 {
    --tw-shadow-color: #7e22ce;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-700\/10 {
    --tw-shadow-color: rgb(126 34 206 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-700\/20 {
    --tw-shadow-color: rgb(126 34 206 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-700\/30 {
    --tw-shadow-color: rgb(126 34 206 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-700\/40 {
    --tw-shadow-color: rgb(126 34 206 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-700\/5 {
    --tw-shadow-color: rgb(126 34 206 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-700\/50 {
    --tw-shadow-color: rgb(126 34 206 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-700\/60 {
    --tw-shadow-color: rgb(126 34 206 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-700\/70 {
    --tw-shadow-color: rgb(126 34 206 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-700\/80 {
    --tw-shadow-color: rgb(126 34 206 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-700\/90 {
    --tw-shadow-color: rgb(126 34 206 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-800 {
    --tw-shadow-color: #6b21a8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-800\/10 {
    --tw-shadow-color: rgb(107 33 168 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-800\/20 {
    --tw-shadow-color: rgb(107 33 168 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-800\/30 {
    --tw-shadow-color: rgb(107 33 168 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-800\/40 {
    --tw-shadow-color: rgb(107 33 168 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-800\/5 {
    --tw-shadow-color: rgb(107 33 168 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-800\/50 {
    --tw-shadow-color: rgb(107 33 168 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-800\/60 {
    --tw-shadow-color: rgb(107 33 168 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-800\/70 {
    --tw-shadow-color: rgb(107 33 168 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-800\/80 {
    --tw-shadow-color: rgb(107 33 168 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-800\/90 {
    --tw-shadow-color: rgb(107 33 168 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-900 {
    --tw-shadow-color: #581c87;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-900\/10 {
    --tw-shadow-color: rgb(88 28 135 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-900\/20 {
    --tw-shadow-color: rgb(88 28 135 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-900\/30 {
    --tw-shadow-color: rgb(88 28 135 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-900\/40 {
    --tw-shadow-color: rgb(88 28 135 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-900\/5 {
    --tw-shadow-color: rgb(88 28 135 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-900\/50 {
    --tw-shadow-color: rgb(88 28 135 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-900\/60 {
    --tw-shadow-color: rgb(88 28 135 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-900\/70 {
    --tw-shadow-color: rgb(88 28 135 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-900\/80 {
    --tw-shadow-color: rgb(88 28 135 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-900\/90 {
    --tw-shadow-color: rgb(88 28 135 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-950 {
    --tw-shadow-color: #3b0764;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-950\/10 {
    --tw-shadow-color: rgb(59 7 100 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-950\/20 {
    --tw-shadow-color: rgb(59 7 100 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-950\/30 {
    --tw-shadow-color: rgb(59 7 100 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-950\/40 {
    --tw-shadow-color: rgb(59 7 100 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-950\/5 {
    --tw-shadow-color: rgb(59 7 100 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-950\/50 {
    --tw-shadow-color: rgb(59 7 100 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-950\/60 {
    --tw-shadow-color: rgb(59 7 100 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-950\/70 {
    --tw-shadow-color: rgb(59 7 100 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-950\/80 {
    --tw-shadow-color: rgb(59 7 100 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-purple-950\/90 {
    --tw-shadow-color: rgb(59 7 100 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-100 {
    --tw-shadow-color: #fee2e2;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-100\/10 {
    --tw-shadow-color: rgb(254 226 226 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-100\/20 {
    --tw-shadow-color: rgb(254 226 226 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-100\/30 {
    --tw-shadow-color: rgb(254 226 226 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-100\/40 {
    --tw-shadow-color: rgb(254 226 226 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-100\/5 {
    --tw-shadow-color: rgb(254 226 226 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-100\/50 {
    --tw-shadow-color: rgb(254 226 226 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-100\/60 {
    --tw-shadow-color: rgb(254 226 226 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-100\/70 {
    --tw-shadow-color: rgb(254 226 226 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-100\/80 {
    --tw-shadow-color: rgb(254 226 226 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-100\/90 {
    --tw-shadow-color: rgb(254 226 226 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-200 {
    --tw-shadow-color: #fecaca;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-200\/10 {
    --tw-shadow-color: rgb(254 202 202 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-200\/20 {
    --tw-shadow-color: rgb(254 202 202 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-200\/30 {
    --tw-shadow-color: rgb(254 202 202 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-200\/40 {
    --tw-shadow-color: rgb(254 202 202 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-200\/5 {
    --tw-shadow-color: rgb(254 202 202 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-200\/50 {
    --tw-shadow-color: rgb(254 202 202 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-200\/60 {
    --tw-shadow-color: rgb(254 202 202 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-200\/70 {
    --tw-shadow-color: rgb(254 202 202 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-200\/80 {
    --tw-shadow-color: rgb(254 202 202 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-200\/90 {
    --tw-shadow-color: rgb(254 202 202 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-300 {
    --tw-shadow-color: #fca5a5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-300\/10 {
    --tw-shadow-color: rgb(252 165 165 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-300\/20 {
    --tw-shadow-color: rgb(252 165 165 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-300\/30 {
    --tw-shadow-color: rgb(252 165 165 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-300\/40 {
    --tw-shadow-color: rgb(252 165 165 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-300\/5 {
    --tw-shadow-color: rgb(252 165 165 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-300\/50 {
    --tw-shadow-color: rgb(252 165 165 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-300\/60 {
    --tw-shadow-color: rgb(252 165 165 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-300\/70 {
    --tw-shadow-color: rgb(252 165 165 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-300\/80 {
    --tw-shadow-color: rgb(252 165 165 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-300\/90 {
    --tw-shadow-color: rgb(252 165 165 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-400 {
    --tw-shadow-color: #f87171;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-400\/10 {
    --tw-shadow-color: rgb(248 113 113 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-400\/20 {
    --tw-shadow-color: rgb(248 113 113 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-400\/30 {
    --tw-shadow-color: rgb(248 113 113 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-400\/40 {
    --tw-shadow-color: rgb(248 113 113 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-400\/5 {
    --tw-shadow-color: rgb(248 113 113 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-400\/50 {
    --tw-shadow-color: rgb(248 113 113 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-400\/60 {
    --tw-shadow-color: rgb(248 113 113 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-400\/70 {
    --tw-shadow-color: rgb(248 113 113 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-400\/80 {
    --tw-shadow-color: rgb(248 113 113 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-400\/90 {
    --tw-shadow-color: rgb(248 113 113 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-50 {
    --tw-shadow-color: #fef2f2;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-50\/10 {
    --tw-shadow-color: rgb(254 242 242 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-50\/20 {
    --tw-shadow-color: rgb(254 242 242 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-50\/30 {
    --tw-shadow-color: rgb(254 242 242 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-50\/40 {
    --tw-shadow-color: rgb(254 242 242 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-50\/5 {
    --tw-shadow-color: rgb(254 242 242 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-50\/50 {
    --tw-shadow-color: rgb(254 242 242 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-50\/60 {
    --tw-shadow-color: rgb(254 242 242 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-50\/70 {
    --tw-shadow-color: rgb(254 242 242 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-50\/80 {
    --tw-shadow-color: rgb(254 242 242 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-50\/90 {
    --tw-shadow-color: rgb(254 242 242 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-500 {
    --tw-shadow-color: #ef4444;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-500\/10 {
    --tw-shadow-color: rgb(239 68 68 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-500\/20 {
    --tw-shadow-color: rgb(239 68 68 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-500\/30 {
    --tw-shadow-color: rgb(239 68 68 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-500\/40 {
    --tw-shadow-color: rgb(239 68 68 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-500\/5 {
    --tw-shadow-color: rgb(239 68 68 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-500\/50 {
    --tw-shadow-color: rgb(239 68 68 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-500\/60 {
    --tw-shadow-color: rgb(239 68 68 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-500\/70 {
    --tw-shadow-color: rgb(239 68 68 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-500\/80 {
    --tw-shadow-color: rgb(239 68 68 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-500\/90 {
    --tw-shadow-color: rgb(239 68 68 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-600 {
    --tw-shadow-color: #dc2626;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-600\/10 {
    --tw-shadow-color: rgb(220 38 38 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-600\/20 {
    --tw-shadow-color: rgb(220 38 38 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-600\/30 {
    --tw-shadow-color: rgb(220 38 38 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-600\/40 {
    --tw-shadow-color: rgb(220 38 38 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-600\/5 {
    --tw-shadow-color: rgb(220 38 38 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-600\/50 {
    --tw-shadow-color: rgb(220 38 38 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-600\/60 {
    --tw-shadow-color: rgb(220 38 38 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-600\/70 {
    --tw-shadow-color: rgb(220 38 38 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-600\/80 {
    --tw-shadow-color: rgb(220 38 38 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-600\/90 {
    --tw-shadow-color: rgb(220 38 38 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-700 {
    --tw-shadow-color: #b91c1c;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-700\/10 {
    --tw-shadow-color: rgb(185 28 28 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-700\/20 {
    --tw-shadow-color: rgb(185 28 28 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-700\/30 {
    --tw-shadow-color: rgb(185 28 28 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-700\/40 {
    --tw-shadow-color: rgb(185 28 28 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-700\/5 {
    --tw-shadow-color: rgb(185 28 28 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-700\/50 {
    --tw-shadow-color: rgb(185 28 28 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-700\/60 {
    --tw-shadow-color: rgb(185 28 28 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-700\/70 {
    --tw-shadow-color: rgb(185 28 28 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-700\/80 {
    --tw-shadow-color: rgb(185 28 28 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-700\/90 {
    --tw-shadow-color: rgb(185 28 28 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-800 {
    --tw-shadow-color: #991b1b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-800\/10 {
    --tw-shadow-color: rgb(153 27 27 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-800\/20 {
    --tw-shadow-color: rgb(153 27 27 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-800\/30 {
    --tw-shadow-color: rgb(153 27 27 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-800\/40 {
    --tw-shadow-color: rgb(153 27 27 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-800\/5 {
    --tw-shadow-color: rgb(153 27 27 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-800\/50 {
    --tw-shadow-color: rgb(153 27 27 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-800\/60 {
    --tw-shadow-color: rgb(153 27 27 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-800\/70 {
    --tw-shadow-color: rgb(153 27 27 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-800\/80 {
    --tw-shadow-color: rgb(153 27 27 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-800\/90 {
    --tw-shadow-color: rgb(153 27 27 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-900 {
    --tw-shadow-color: #7f1d1d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-900\/10 {
    --tw-shadow-color: rgb(127 29 29 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-900\/20 {
    --tw-shadow-color: rgb(127 29 29 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-900\/30 {
    --tw-shadow-color: rgb(127 29 29 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-900\/40 {
    --tw-shadow-color: rgb(127 29 29 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-900\/5 {
    --tw-shadow-color: rgb(127 29 29 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-900\/50 {
    --tw-shadow-color: rgb(127 29 29 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-900\/60 {
    --tw-shadow-color: rgb(127 29 29 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-900\/70 {
    --tw-shadow-color: rgb(127 29 29 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-900\/80 {
    --tw-shadow-color: rgb(127 29 29 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-900\/90 {
    --tw-shadow-color: rgb(127 29 29 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-950 {
    --tw-shadow-color: #450a0a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-950\/10 {
    --tw-shadow-color: rgb(69 10 10 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-950\/20 {
    --tw-shadow-color: rgb(69 10 10 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-950\/30 {
    --tw-shadow-color: rgb(69 10 10 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-950\/40 {
    --tw-shadow-color: rgb(69 10 10 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-950\/5 {
    --tw-shadow-color: rgb(69 10 10 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-950\/50 {
    --tw-shadow-color: rgb(69 10 10 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-950\/60 {
    --tw-shadow-color: rgb(69 10 10 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-950\/70 {
    --tw-shadow-color: rgb(69 10 10 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-950\/80 {
    --tw-shadow-color: rgb(69 10 10 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-red-950\/90 {
    --tw-shadow-color: rgb(69 10 10 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-100 {
    --tw-shadow-color: #ffe4e6;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-100\/10 {
    --tw-shadow-color: rgb(255 228 230 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-100\/20 {
    --tw-shadow-color: rgb(255 228 230 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-100\/30 {
    --tw-shadow-color: rgb(255 228 230 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-100\/40 {
    --tw-shadow-color: rgb(255 228 230 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-100\/5 {
    --tw-shadow-color: rgb(255 228 230 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-100\/50 {
    --tw-shadow-color: rgb(255 228 230 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-100\/60 {
    --tw-shadow-color: rgb(255 228 230 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-100\/70 {
    --tw-shadow-color: rgb(255 228 230 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-100\/80 {
    --tw-shadow-color: rgb(255 228 230 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-100\/90 {
    --tw-shadow-color: rgb(255 228 230 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-200 {
    --tw-shadow-color: #fecdd3;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-200\/10 {
    --tw-shadow-color: rgb(254 205 211 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-200\/20 {
    --tw-shadow-color: rgb(254 205 211 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-200\/30 {
    --tw-shadow-color: rgb(254 205 211 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-200\/40 {
    --tw-shadow-color: rgb(254 205 211 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-200\/5 {
    --tw-shadow-color: rgb(254 205 211 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-200\/50 {
    --tw-shadow-color: rgb(254 205 211 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-200\/60 {
    --tw-shadow-color: rgb(254 205 211 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-200\/70 {
    --tw-shadow-color: rgb(254 205 211 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-200\/80 {
    --tw-shadow-color: rgb(254 205 211 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-200\/90 {
    --tw-shadow-color: rgb(254 205 211 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-300 {
    --tw-shadow-color: #fda4af;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-300\/10 {
    --tw-shadow-color: rgb(253 164 175 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-300\/20 {
    --tw-shadow-color: rgb(253 164 175 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-300\/30 {
    --tw-shadow-color: rgb(253 164 175 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-300\/40 {
    --tw-shadow-color: rgb(253 164 175 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-300\/5 {
    --tw-shadow-color: rgb(253 164 175 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-300\/50 {
    --tw-shadow-color: rgb(253 164 175 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-300\/60 {
    --tw-shadow-color: rgb(253 164 175 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-300\/70 {
    --tw-shadow-color: rgb(253 164 175 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-300\/80 {
    --tw-shadow-color: rgb(253 164 175 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-300\/90 {
    --tw-shadow-color: rgb(253 164 175 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-400 {
    --tw-shadow-color: #fb7185;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-400\/10 {
    --tw-shadow-color: rgb(251 113 133 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-400\/20 {
    --tw-shadow-color: rgb(251 113 133 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-400\/30 {
    --tw-shadow-color: rgb(251 113 133 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-400\/40 {
    --tw-shadow-color: rgb(251 113 133 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-400\/5 {
    --tw-shadow-color: rgb(251 113 133 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-400\/50 {
    --tw-shadow-color: rgb(251 113 133 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-400\/60 {
    --tw-shadow-color: rgb(251 113 133 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-400\/70 {
    --tw-shadow-color: rgb(251 113 133 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-400\/80 {
    --tw-shadow-color: rgb(251 113 133 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-400\/90 {
    --tw-shadow-color: rgb(251 113 133 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-50 {
    --tw-shadow-color: #fff1f2;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-50\/10 {
    --tw-shadow-color: rgb(255 241 242 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-50\/20 {
    --tw-shadow-color: rgb(255 241 242 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-50\/30 {
    --tw-shadow-color: rgb(255 241 242 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-50\/40 {
    --tw-shadow-color: rgb(255 241 242 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-50\/5 {
    --tw-shadow-color: rgb(255 241 242 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-50\/50 {
    --tw-shadow-color: rgb(255 241 242 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-50\/60 {
    --tw-shadow-color: rgb(255 241 242 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-50\/70 {
    --tw-shadow-color: rgb(255 241 242 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-50\/80 {
    --tw-shadow-color: rgb(255 241 242 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-50\/90 {
    --tw-shadow-color: rgb(255 241 242 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-500 {
    --tw-shadow-color: #f43f5e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-500\/10 {
    --tw-shadow-color: rgb(244 63 94 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-500\/20 {
    --tw-shadow-color: rgb(244 63 94 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-500\/30 {
    --tw-shadow-color: rgb(244 63 94 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-500\/40 {
    --tw-shadow-color: rgb(244 63 94 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-500\/5 {
    --tw-shadow-color: rgb(244 63 94 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-500\/50 {
    --tw-shadow-color: rgb(244 63 94 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-500\/60 {
    --tw-shadow-color: rgb(244 63 94 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-500\/70 {
    --tw-shadow-color: rgb(244 63 94 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-500\/80 {
    --tw-shadow-color: rgb(244 63 94 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-500\/90 {
    --tw-shadow-color: rgb(244 63 94 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-600 {
    --tw-shadow-color: #e11d48;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-600\/10 {
    --tw-shadow-color: rgb(225 29 72 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-600\/20 {
    --tw-shadow-color: rgb(225 29 72 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-600\/30 {
    --tw-shadow-color: rgb(225 29 72 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-600\/40 {
    --tw-shadow-color: rgb(225 29 72 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-600\/5 {
    --tw-shadow-color: rgb(225 29 72 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-600\/50 {
    --tw-shadow-color: rgb(225 29 72 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-600\/60 {
    --tw-shadow-color: rgb(225 29 72 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-600\/70 {
    --tw-shadow-color: rgb(225 29 72 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-600\/80 {
    --tw-shadow-color: rgb(225 29 72 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-600\/90 {
    --tw-shadow-color: rgb(225 29 72 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-700 {
    --tw-shadow-color: #be123c;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-700\/10 {
    --tw-shadow-color: rgb(190 18 60 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-700\/20 {
    --tw-shadow-color: rgb(190 18 60 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-700\/30 {
    --tw-shadow-color: rgb(190 18 60 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-700\/40 {
    --tw-shadow-color: rgb(190 18 60 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-700\/5 {
    --tw-shadow-color: rgb(190 18 60 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-700\/50 {
    --tw-shadow-color: rgb(190 18 60 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-700\/60 {
    --tw-shadow-color: rgb(190 18 60 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-700\/70 {
    --tw-shadow-color: rgb(190 18 60 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-700\/80 {
    --tw-shadow-color: rgb(190 18 60 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-700\/90 {
    --tw-shadow-color: rgb(190 18 60 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-800 {
    --tw-shadow-color: #9f1239;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-800\/10 {
    --tw-shadow-color: rgb(159 18 57 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-800\/20 {
    --tw-shadow-color: rgb(159 18 57 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-800\/30 {
    --tw-shadow-color: rgb(159 18 57 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-800\/40 {
    --tw-shadow-color: rgb(159 18 57 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-800\/5 {
    --tw-shadow-color: rgb(159 18 57 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-800\/50 {
    --tw-shadow-color: rgb(159 18 57 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-800\/60 {
    --tw-shadow-color: rgb(159 18 57 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-800\/70 {
    --tw-shadow-color: rgb(159 18 57 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-800\/80 {
    --tw-shadow-color: rgb(159 18 57 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-800\/90 {
    --tw-shadow-color: rgb(159 18 57 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-900 {
    --tw-shadow-color: #881337;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-900\/10 {
    --tw-shadow-color: rgb(136 19 55 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-900\/20 {
    --tw-shadow-color: rgb(136 19 55 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-900\/30 {
    --tw-shadow-color: rgb(136 19 55 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-900\/40 {
    --tw-shadow-color: rgb(136 19 55 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-900\/5 {
    --tw-shadow-color: rgb(136 19 55 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-900\/50 {
    --tw-shadow-color: rgb(136 19 55 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-900\/60 {
    --tw-shadow-color: rgb(136 19 55 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-900\/70 {
    --tw-shadow-color: rgb(136 19 55 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-900\/80 {
    --tw-shadow-color: rgb(136 19 55 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-900\/90 {
    --tw-shadow-color: rgb(136 19 55 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-950 {
    --tw-shadow-color: #4c0519;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-950\/10 {
    --tw-shadow-color: rgb(76 5 25 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-950\/20 {
    --tw-shadow-color: rgb(76 5 25 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-950\/30 {
    --tw-shadow-color: rgb(76 5 25 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-950\/40 {
    --tw-shadow-color: rgb(76 5 25 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-950\/5 {
    --tw-shadow-color: rgb(76 5 25 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-950\/50 {
    --tw-shadow-color: rgb(76 5 25 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-950\/60 {
    --tw-shadow-color: rgb(76 5 25 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-950\/70 {
    --tw-shadow-color: rgb(76 5 25 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-950\/80 {
    --tw-shadow-color: rgb(76 5 25 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-rose-950\/90 {
    --tw-shadow-color: rgb(76 5 25 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-100 {
    --tw-shadow-color: #e0f2fe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-100\/10 {
    --tw-shadow-color: rgb(224 242 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-100\/20 {
    --tw-shadow-color: rgb(224 242 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-100\/30 {
    --tw-shadow-color: rgb(224 242 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-100\/40 {
    --tw-shadow-color: rgb(224 242 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-100\/5 {
    --tw-shadow-color: rgb(224 242 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-100\/50 {
    --tw-shadow-color: rgb(224 242 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-100\/60 {
    --tw-shadow-color: rgb(224 242 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-100\/70 {
    --tw-shadow-color: rgb(224 242 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-100\/80 {
    --tw-shadow-color: rgb(224 242 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-100\/90 {
    --tw-shadow-color: rgb(224 242 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-200 {
    --tw-shadow-color: #bae6fd;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-200\/10 {
    --tw-shadow-color: rgb(186 230 253 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-200\/20 {
    --tw-shadow-color: rgb(186 230 253 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-200\/30 {
    --tw-shadow-color: rgb(186 230 253 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-200\/40 {
    --tw-shadow-color: rgb(186 230 253 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-200\/5 {
    --tw-shadow-color: rgb(186 230 253 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-200\/50 {
    --tw-shadow-color: rgb(186 230 253 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-200\/60 {
    --tw-shadow-color: rgb(186 230 253 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-200\/70 {
    --tw-shadow-color: rgb(186 230 253 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-200\/80 {
    --tw-shadow-color: rgb(186 230 253 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-200\/90 {
    --tw-shadow-color: rgb(186 230 253 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-300 {
    --tw-shadow-color: #7dd3fc;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-300\/10 {
    --tw-shadow-color: rgb(125 211 252 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-300\/20 {
    --tw-shadow-color: rgb(125 211 252 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-300\/30 {
    --tw-shadow-color: rgb(125 211 252 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-300\/40 {
    --tw-shadow-color: rgb(125 211 252 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-300\/5 {
    --tw-shadow-color: rgb(125 211 252 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-300\/50 {
    --tw-shadow-color: rgb(125 211 252 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-300\/60 {
    --tw-shadow-color: rgb(125 211 252 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-300\/70 {
    --tw-shadow-color: rgb(125 211 252 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-300\/80 {
    --tw-shadow-color: rgb(125 211 252 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-300\/90 {
    --tw-shadow-color: rgb(125 211 252 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-400 {
    --tw-shadow-color: #38bdf8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-400\/10 {
    --tw-shadow-color: rgb(56 189 248 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-400\/20 {
    --tw-shadow-color: rgb(56 189 248 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-400\/30 {
    --tw-shadow-color: rgb(56 189 248 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-400\/40 {
    --tw-shadow-color: rgb(56 189 248 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-400\/5 {
    --tw-shadow-color: rgb(56 189 248 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-400\/50 {
    --tw-shadow-color: rgb(56 189 248 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-400\/60 {
    --tw-shadow-color: rgb(56 189 248 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-400\/70 {
    --tw-shadow-color: rgb(56 189 248 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-400\/80 {
    --tw-shadow-color: rgb(56 189 248 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-400\/90 {
    --tw-shadow-color: rgb(56 189 248 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-50 {
    --tw-shadow-color: #f0f9ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-50\/10 {
    --tw-shadow-color: rgb(240 249 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-50\/20 {
    --tw-shadow-color: rgb(240 249 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-50\/30 {
    --tw-shadow-color: rgb(240 249 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-50\/40 {
    --tw-shadow-color: rgb(240 249 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-50\/5 {
    --tw-shadow-color: rgb(240 249 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-50\/50 {
    --tw-shadow-color: rgb(240 249 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-50\/60 {
    --tw-shadow-color: rgb(240 249 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-50\/70 {
    --tw-shadow-color: rgb(240 249 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-50\/80 {
    --tw-shadow-color: rgb(240 249 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-50\/90 {
    --tw-shadow-color: rgb(240 249 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-500 {
    --tw-shadow-color: #0ea5e9;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-500\/10 {
    --tw-shadow-color: rgb(14 165 233 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-500\/20 {
    --tw-shadow-color: rgb(14 165 233 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-500\/30 {
    --tw-shadow-color: rgb(14 165 233 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-500\/40 {
    --tw-shadow-color: rgb(14 165 233 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-500\/5 {
    --tw-shadow-color: rgb(14 165 233 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-500\/50 {
    --tw-shadow-color: rgb(14 165 233 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-500\/60 {
    --tw-shadow-color: rgb(14 165 233 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-500\/70 {
    --tw-shadow-color: rgb(14 165 233 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-500\/80 {
    --tw-shadow-color: rgb(14 165 233 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-500\/90 {
    --tw-shadow-color: rgb(14 165 233 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-600 {
    --tw-shadow-color: #0284c7;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-600\/10 {
    --tw-shadow-color: rgb(2 132 199 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-600\/20 {
    --tw-shadow-color: rgb(2 132 199 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-600\/30 {
    --tw-shadow-color: rgb(2 132 199 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-600\/40 {
    --tw-shadow-color: rgb(2 132 199 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-600\/5 {
    --tw-shadow-color: rgb(2 132 199 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-600\/50 {
    --tw-shadow-color: rgb(2 132 199 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-600\/60 {
    --tw-shadow-color: rgb(2 132 199 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-600\/70 {
    --tw-shadow-color: rgb(2 132 199 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-600\/80 {
    --tw-shadow-color: rgb(2 132 199 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-600\/90 {
    --tw-shadow-color: rgb(2 132 199 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-700 {
    --tw-shadow-color: #0369a1;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-700\/10 {
    --tw-shadow-color: rgb(3 105 161 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-700\/20 {
    --tw-shadow-color: rgb(3 105 161 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-700\/30 {
    --tw-shadow-color: rgb(3 105 161 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-700\/40 {
    --tw-shadow-color: rgb(3 105 161 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-700\/5 {
    --tw-shadow-color: rgb(3 105 161 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-700\/50 {
    --tw-shadow-color: rgb(3 105 161 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-700\/60 {
    --tw-shadow-color: rgb(3 105 161 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-700\/70 {
    --tw-shadow-color: rgb(3 105 161 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-700\/80 {
    --tw-shadow-color: rgb(3 105 161 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-700\/90 {
    --tw-shadow-color: rgb(3 105 161 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-800 {
    --tw-shadow-color: #075985;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-800\/10 {
    --tw-shadow-color: rgb(7 89 133 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-800\/20 {
    --tw-shadow-color: rgb(7 89 133 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-800\/30 {
    --tw-shadow-color: rgb(7 89 133 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-800\/40 {
    --tw-shadow-color: rgb(7 89 133 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-800\/5 {
    --tw-shadow-color: rgb(7 89 133 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-800\/50 {
    --tw-shadow-color: rgb(7 89 133 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-800\/60 {
    --tw-shadow-color: rgb(7 89 133 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-800\/70 {
    --tw-shadow-color: rgb(7 89 133 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-800\/80 {
    --tw-shadow-color: rgb(7 89 133 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-800\/90 {
    --tw-shadow-color: rgb(7 89 133 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-900 {
    --tw-shadow-color: #0c4a6e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-900\/10 {
    --tw-shadow-color: rgb(12 74 110 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-900\/20 {
    --tw-shadow-color: rgb(12 74 110 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-900\/30 {
    --tw-shadow-color: rgb(12 74 110 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-900\/40 {
    --tw-shadow-color: rgb(12 74 110 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-900\/5 {
    --tw-shadow-color: rgb(12 74 110 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-900\/50 {
    --tw-shadow-color: rgb(12 74 110 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-900\/60 {
    --tw-shadow-color: rgb(12 74 110 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-900\/70 {
    --tw-shadow-color: rgb(12 74 110 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-900\/80 {
    --tw-shadow-color: rgb(12 74 110 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-900\/90 {
    --tw-shadow-color: rgb(12 74 110 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-950 {
    --tw-shadow-color: #082f49;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-950\/10 {
    --tw-shadow-color: rgb(8 47 73 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-950\/20 {
    --tw-shadow-color: rgb(8 47 73 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-950\/30 {
    --tw-shadow-color: rgb(8 47 73 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-950\/40 {
    --tw-shadow-color: rgb(8 47 73 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-950\/5 {
    --tw-shadow-color: rgb(8 47 73 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-950\/50 {
    --tw-shadow-color: rgb(8 47 73 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-950\/60 {
    --tw-shadow-color: rgb(8 47 73 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-950\/70 {
    --tw-shadow-color: rgb(8 47 73 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-950\/80 {
    --tw-shadow-color: rgb(8 47 73 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-sky-950\/90 {
    --tw-shadow-color: rgb(8 47 73 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-100 {
    --tw-shadow-color: #f1f5f9;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-100\/10 {
    --tw-shadow-color: rgb(241 245 249 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-100\/20 {
    --tw-shadow-color: rgb(241 245 249 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-100\/30 {
    --tw-shadow-color: rgb(241 245 249 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-100\/40 {
    --tw-shadow-color: rgb(241 245 249 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-100\/5 {
    --tw-shadow-color: rgb(241 245 249 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-100\/50 {
    --tw-shadow-color: rgb(241 245 249 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-100\/60 {
    --tw-shadow-color: rgb(241 245 249 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-100\/70 {
    --tw-shadow-color: rgb(241 245 249 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-100\/80 {
    --tw-shadow-color: rgb(241 245 249 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-100\/90 {
    --tw-shadow-color: rgb(241 245 249 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-200 {
    --tw-shadow-color: #e2e8f0;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-200\/10 {
    --tw-shadow-color: rgb(226 232 240 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-200\/20 {
    --tw-shadow-color: rgb(226 232 240 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-200\/30 {
    --tw-shadow-color: rgb(226 232 240 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-200\/40 {
    --tw-shadow-color: rgb(226 232 240 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-200\/5 {
    --tw-shadow-color: rgb(226 232 240 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-200\/50 {
    --tw-shadow-color: rgb(226 232 240 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-200\/60 {
    --tw-shadow-color: rgb(226 232 240 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-200\/70 {
    --tw-shadow-color: rgb(226 232 240 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-200\/80 {
    --tw-shadow-color: rgb(226 232 240 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-200\/90 {
    --tw-shadow-color: rgb(226 232 240 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-300 {
    --tw-shadow-color: #cbd5e1;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-300\/10 {
    --tw-shadow-color: rgb(203 213 225 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-300\/20 {
    --tw-shadow-color: rgb(203 213 225 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-300\/30 {
    --tw-shadow-color: rgb(203 213 225 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-300\/40 {
    --tw-shadow-color: rgb(203 213 225 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-300\/5 {
    --tw-shadow-color: rgb(203 213 225 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-300\/50 {
    --tw-shadow-color: rgb(203 213 225 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-300\/60 {
    --tw-shadow-color: rgb(203 213 225 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-300\/70 {
    --tw-shadow-color: rgb(203 213 225 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-300\/80 {
    --tw-shadow-color: rgb(203 213 225 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-300\/90 {
    --tw-shadow-color: rgb(203 213 225 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-400 {
    --tw-shadow-color: #94a3b8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-400\/10 {
    --tw-shadow-color: rgb(148 163 184 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-400\/20 {
    --tw-shadow-color: rgb(148 163 184 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-400\/30 {
    --tw-shadow-color: rgb(148 163 184 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-400\/40 {
    --tw-shadow-color: rgb(148 163 184 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-400\/5 {
    --tw-shadow-color: rgb(148 163 184 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-400\/50 {
    --tw-shadow-color: rgb(148 163 184 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-400\/60 {
    --tw-shadow-color: rgb(148 163 184 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-400\/70 {
    --tw-shadow-color: rgb(148 163 184 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-400\/80 {
    --tw-shadow-color: rgb(148 163 184 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-400\/90 {
    --tw-shadow-color: rgb(148 163 184 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-50 {
    --tw-shadow-color: #f8fafc;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-50\/10 {
    --tw-shadow-color: rgb(248 250 252 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-50\/20 {
    --tw-shadow-color: rgb(248 250 252 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-50\/30 {
    --tw-shadow-color: rgb(248 250 252 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-50\/40 {
    --tw-shadow-color: rgb(248 250 252 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-50\/5 {
    --tw-shadow-color: rgb(248 250 252 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-50\/50 {
    --tw-shadow-color: rgb(248 250 252 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-50\/60 {
    --tw-shadow-color: rgb(248 250 252 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-50\/70 {
    --tw-shadow-color: rgb(248 250 252 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-50\/80 {
    --tw-shadow-color: rgb(248 250 252 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-50\/90 {
    --tw-shadow-color: rgb(248 250 252 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-500 {
    --tw-shadow-color: #64748b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-500\/10 {
    --tw-shadow-color: rgb(100 116 139 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-500\/20 {
    --tw-shadow-color: rgb(100 116 139 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-500\/30 {
    --tw-shadow-color: rgb(100 116 139 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-500\/40 {
    --tw-shadow-color: rgb(100 116 139 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-500\/5 {
    --tw-shadow-color: rgb(100 116 139 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-500\/50 {
    --tw-shadow-color: rgb(100 116 139 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-500\/60 {
    --tw-shadow-color: rgb(100 116 139 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-500\/70 {
    --tw-shadow-color: rgb(100 116 139 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-500\/80 {
    --tw-shadow-color: rgb(100 116 139 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-500\/90 {
    --tw-shadow-color: rgb(100 116 139 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-600 {
    --tw-shadow-color: #475569;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-600\/10 {
    --tw-shadow-color: rgb(71 85 105 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-600\/20 {
    --tw-shadow-color: rgb(71 85 105 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-600\/30 {
    --tw-shadow-color: rgb(71 85 105 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-600\/40 {
    --tw-shadow-color: rgb(71 85 105 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-600\/5 {
    --tw-shadow-color: rgb(71 85 105 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-600\/50 {
    --tw-shadow-color: rgb(71 85 105 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-600\/60 {
    --tw-shadow-color: rgb(71 85 105 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-600\/70 {
    --tw-shadow-color: rgb(71 85 105 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-600\/80 {
    --tw-shadow-color: rgb(71 85 105 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-600\/90 {
    --tw-shadow-color: rgb(71 85 105 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-700 {
    --tw-shadow-color: #334155;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-700\/10 {
    --tw-shadow-color: rgb(51 65 85 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-700\/20 {
    --tw-shadow-color: rgb(51 65 85 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-700\/30 {
    --tw-shadow-color: rgb(51 65 85 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-700\/40 {
    --tw-shadow-color: rgb(51 65 85 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-700\/5 {
    --tw-shadow-color: rgb(51 65 85 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-700\/50 {
    --tw-shadow-color: rgb(51 65 85 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-700\/60 {
    --tw-shadow-color: rgb(51 65 85 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-700\/70 {
    --tw-shadow-color: rgb(51 65 85 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-700\/80 {
    --tw-shadow-color: rgb(51 65 85 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-700\/90 {
    --tw-shadow-color: rgb(51 65 85 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-800 {
    --tw-shadow-color: #1e293b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-800\/10 {
    --tw-shadow-color: rgb(30 41 59 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-800\/20 {
    --tw-shadow-color: rgb(30 41 59 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-800\/30 {
    --tw-shadow-color: rgb(30 41 59 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-800\/40 {
    --tw-shadow-color: rgb(30 41 59 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-800\/5 {
    --tw-shadow-color: rgb(30 41 59 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-800\/50 {
    --tw-shadow-color: rgb(30 41 59 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-800\/60 {
    --tw-shadow-color: rgb(30 41 59 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-800\/70 {
    --tw-shadow-color: rgb(30 41 59 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-800\/80 {
    --tw-shadow-color: rgb(30 41 59 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-800\/90 {
    --tw-shadow-color: rgb(30 41 59 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-900 {
    --tw-shadow-color: #0f172a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-900\/10 {
    --tw-shadow-color: rgb(15 23 42 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-900\/20 {
    --tw-shadow-color: rgb(15 23 42 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-900\/30 {
    --tw-shadow-color: rgb(15 23 42 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-900\/40 {
    --tw-shadow-color: rgb(15 23 42 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-900\/5 {
    --tw-shadow-color: rgb(15 23 42 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-900\/50 {
    --tw-shadow-color: rgb(15 23 42 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-900\/60 {
    --tw-shadow-color: rgb(15 23 42 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-900\/70 {
    --tw-shadow-color: rgb(15 23 42 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-900\/80 {
    --tw-shadow-color: rgb(15 23 42 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-900\/90 {
    --tw-shadow-color: rgb(15 23 42 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-950 {
    --tw-shadow-color: #020617;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-950\/10 {
    --tw-shadow-color: rgb(2 6 23 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-950\/20 {
    --tw-shadow-color: rgb(2 6 23 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-950\/30 {
    --tw-shadow-color: rgb(2 6 23 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-950\/40 {
    --tw-shadow-color: rgb(2 6 23 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-950\/5 {
    --tw-shadow-color: rgb(2 6 23 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-950\/50 {
    --tw-shadow-color: rgb(2 6 23 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-950\/60 {
    --tw-shadow-color: rgb(2 6 23 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-950\/70 {
    --tw-shadow-color: rgb(2 6 23 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-950\/80 {
    --tw-shadow-color: rgb(2 6 23 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-slate-950\/90 {
    --tw-shadow-color: rgb(2 6 23 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-100 {
    --tw-shadow-color: #f5f5f4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-100\/10 {
    --tw-shadow-color: rgb(245 245 244 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-100\/20 {
    --tw-shadow-color: rgb(245 245 244 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-100\/30 {
    --tw-shadow-color: rgb(245 245 244 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-100\/40 {
    --tw-shadow-color: rgb(245 245 244 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-100\/5 {
    --tw-shadow-color: rgb(245 245 244 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-100\/50 {
    --tw-shadow-color: rgb(245 245 244 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-100\/60 {
    --tw-shadow-color: rgb(245 245 244 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-100\/70 {
    --tw-shadow-color: rgb(245 245 244 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-100\/80 {
    --tw-shadow-color: rgb(245 245 244 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-100\/90 {
    --tw-shadow-color: rgb(245 245 244 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-200 {
    --tw-shadow-color: #e7e5e4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-200\/10 {
    --tw-shadow-color: rgb(231 229 228 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-200\/20 {
    --tw-shadow-color: rgb(231 229 228 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-200\/30 {
    --tw-shadow-color: rgb(231 229 228 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-200\/40 {
    --tw-shadow-color: rgb(231 229 228 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-200\/5 {
    --tw-shadow-color: rgb(231 229 228 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-200\/50 {
    --tw-shadow-color: rgb(231 229 228 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-200\/60 {
    --tw-shadow-color: rgb(231 229 228 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-200\/70 {
    --tw-shadow-color: rgb(231 229 228 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-200\/80 {
    --tw-shadow-color: rgb(231 229 228 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-200\/90 {
    --tw-shadow-color: rgb(231 229 228 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-300 {
    --tw-shadow-color: #d6d3d1;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-300\/10 {
    --tw-shadow-color: rgb(214 211 209 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-300\/20 {
    --tw-shadow-color: rgb(214 211 209 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-300\/30 {
    --tw-shadow-color: rgb(214 211 209 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-300\/40 {
    --tw-shadow-color: rgb(214 211 209 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-300\/5 {
    --tw-shadow-color: rgb(214 211 209 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-300\/50 {
    --tw-shadow-color: rgb(214 211 209 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-300\/60 {
    --tw-shadow-color: rgb(214 211 209 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-300\/70 {
    --tw-shadow-color: rgb(214 211 209 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-300\/80 {
    --tw-shadow-color: rgb(214 211 209 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-300\/90 {
    --tw-shadow-color: rgb(214 211 209 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-400 {
    --tw-shadow-color: #a8a29e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-400\/10 {
    --tw-shadow-color: rgb(168 162 158 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-400\/20 {
    --tw-shadow-color: rgb(168 162 158 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-400\/30 {
    --tw-shadow-color: rgb(168 162 158 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-400\/40 {
    --tw-shadow-color: rgb(168 162 158 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-400\/5 {
    --tw-shadow-color: rgb(168 162 158 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-400\/50 {
    --tw-shadow-color: rgb(168 162 158 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-400\/60 {
    --tw-shadow-color: rgb(168 162 158 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-400\/70 {
    --tw-shadow-color: rgb(168 162 158 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-400\/80 {
    --tw-shadow-color: rgb(168 162 158 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-400\/90 {
    --tw-shadow-color: rgb(168 162 158 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-50 {
    --tw-shadow-color: #fafaf9;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-50\/10 {
    --tw-shadow-color: rgb(250 250 249 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-50\/20 {
    --tw-shadow-color: rgb(250 250 249 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-50\/30 {
    --tw-shadow-color: rgb(250 250 249 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-50\/40 {
    --tw-shadow-color: rgb(250 250 249 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-50\/5 {
    --tw-shadow-color: rgb(250 250 249 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-50\/50 {
    --tw-shadow-color: rgb(250 250 249 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-50\/60 {
    --tw-shadow-color: rgb(250 250 249 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-50\/70 {
    --tw-shadow-color: rgb(250 250 249 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-50\/80 {
    --tw-shadow-color: rgb(250 250 249 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-50\/90 {
    --tw-shadow-color: rgb(250 250 249 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-500 {
    --tw-shadow-color: #78716c;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-500\/10 {
    --tw-shadow-color: rgb(120 113 108 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-500\/20 {
    --tw-shadow-color: rgb(120 113 108 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-500\/30 {
    --tw-shadow-color: rgb(120 113 108 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-500\/40 {
    --tw-shadow-color: rgb(120 113 108 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-500\/5 {
    --tw-shadow-color: rgb(120 113 108 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-500\/50 {
    --tw-shadow-color: rgb(120 113 108 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-500\/60 {
    --tw-shadow-color: rgb(120 113 108 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-500\/70 {
    --tw-shadow-color: rgb(120 113 108 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-500\/80 {
    --tw-shadow-color: rgb(120 113 108 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-500\/90 {
    --tw-shadow-color: rgb(120 113 108 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-600 {
    --tw-shadow-color: #57534e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-600\/10 {
    --tw-shadow-color: rgb(87 83 78 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-600\/20 {
    --tw-shadow-color: rgb(87 83 78 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-600\/30 {
    --tw-shadow-color: rgb(87 83 78 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-600\/40 {
    --tw-shadow-color: rgb(87 83 78 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-600\/5 {
    --tw-shadow-color: rgb(87 83 78 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-600\/50 {
    --tw-shadow-color: rgb(87 83 78 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-600\/60 {
    --tw-shadow-color: rgb(87 83 78 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-600\/70 {
    --tw-shadow-color: rgb(87 83 78 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-600\/80 {
    --tw-shadow-color: rgb(87 83 78 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-600\/90 {
    --tw-shadow-color: rgb(87 83 78 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-700 {
    --tw-shadow-color: #44403c;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-700\/10 {
    --tw-shadow-color: rgb(68 64 60 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-700\/20 {
    --tw-shadow-color: rgb(68 64 60 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-700\/30 {
    --tw-shadow-color: rgb(68 64 60 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-700\/40 {
    --tw-shadow-color: rgb(68 64 60 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-700\/5 {
    --tw-shadow-color: rgb(68 64 60 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-700\/50 {
    --tw-shadow-color: rgb(68 64 60 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-700\/60 {
    --tw-shadow-color: rgb(68 64 60 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-700\/70 {
    --tw-shadow-color: rgb(68 64 60 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-700\/80 {
    --tw-shadow-color: rgb(68 64 60 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-700\/90 {
    --tw-shadow-color: rgb(68 64 60 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-800 {
    --tw-shadow-color: #292524;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-800\/10 {
    --tw-shadow-color: rgb(41 37 36 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-800\/20 {
    --tw-shadow-color: rgb(41 37 36 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-800\/30 {
    --tw-shadow-color: rgb(41 37 36 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-800\/40 {
    --tw-shadow-color: rgb(41 37 36 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-800\/5 {
    --tw-shadow-color: rgb(41 37 36 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-800\/50 {
    --tw-shadow-color: rgb(41 37 36 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-800\/60 {
    --tw-shadow-color: rgb(41 37 36 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-800\/70 {
    --tw-shadow-color: rgb(41 37 36 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-800\/80 {
    --tw-shadow-color: rgb(41 37 36 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-800\/90 {
    --tw-shadow-color: rgb(41 37 36 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-900 {
    --tw-shadow-color: #1c1917;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-900\/10 {
    --tw-shadow-color: rgb(28 25 23 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-900\/20 {
    --tw-shadow-color: rgb(28 25 23 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-900\/30 {
    --tw-shadow-color: rgb(28 25 23 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-900\/40 {
    --tw-shadow-color: rgb(28 25 23 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-900\/5 {
    --tw-shadow-color: rgb(28 25 23 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-900\/50 {
    --tw-shadow-color: rgb(28 25 23 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-900\/60 {
    --tw-shadow-color: rgb(28 25 23 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-900\/70 {
    --tw-shadow-color: rgb(28 25 23 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-900\/80 {
    --tw-shadow-color: rgb(28 25 23 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-900\/90 {
    --tw-shadow-color: rgb(28 25 23 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-950 {
    --tw-shadow-color: #0c0a09;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-950\/10 {
    --tw-shadow-color: rgb(12 10 9 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-950\/20 {
    --tw-shadow-color: rgb(12 10 9 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-950\/30 {
    --tw-shadow-color: rgb(12 10 9 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-950\/40 {
    --tw-shadow-color: rgb(12 10 9 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-950\/5 {
    --tw-shadow-color: rgb(12 10 9 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-950\/50 {
    --tw-shadow-color: rgb(12 10 9 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-950\/60 {
    --tw-shadow-color: rgb(12 10 9 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-950\/70 {
    --tw-shadow-color: rgb(12 10 9 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-950\/80 {
    --tw-shadow-color: rgb(12 10 9 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-stone-950\/90 {
    --tw-shadow-color: rgb(12 10 9 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-100 {
    --tw-shadow-color: #ccfbf1;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-100\/10 {
    --tw-shadow-color: rgb(204 251 241 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-100\/20 {
    --tw-shadow-color: rgb(204 251 241 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-100\/30 {
    --tw-shadow-color: rgb(204 251 241 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-100\/40 {
    --tw-shadow-color: rgb(204 251 241 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-100\/5 {
    --tw-shadow-color: rgb(204 251 241 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-100\/50 {
    --tw-shadow-color: rgb(204 251 241 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-100\/60 {
    --tw-shadow-color: rgb(204 251 241 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-100\/70 {
    --tw-shadow-color: rgb(204 251 241 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-100\/80 {
    --tw-shadow-color: rgb(204 251 241 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-100\/90 {
    --tw-shadow-color: rgb(204 251 241 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-200 {
    --tw-shadow-color: #99f6e4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-200\/10 {
    --tw-shadow-color: rgb(153 246 228 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-200\/20 {
    --tw-shadow-color: rgb(153 246 228 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-200\/30 {
    --tw-shadow-color: rgb(153 246 228 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-200\/40 {
    --tw-shadow-color: rgb(153 246 228 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-200\/5 {
    --tw-shadow-color: rgb(153 246 228 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-200\/50 {
    --tw-shadow-color: rgb(153 246 228 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-200\/60 {
    --tw-shadow-color: rgb(153 246 228 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-200\/70 {
    --tw-shadow-color: rgb(153 246 228 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-200\/80 {
    --tw-shadow-color: rgb(153 246 228 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-200\/90 {
    --tw-shadow-color: rgb(153 246 228 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-300 {
    --tw-shadow-color: #5eead4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-300\/10 {
    --tw-shadow-color: rgb(94 234 212 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-300\/20 {
    --tw-shadow-color: rgb(94 234 212 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-300\/30 {
    --tw-shadow-color: rgb(94 234 212 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-300\/40 {
    --tw-shadow-color: rgb(94 234 212 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-300\/5 {
    --tw-shadow-color: rgb(94 234 212 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-300\/50 {
    --tw-shadow-color: rgb(94 234 212 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-300\/60 {
    --tw-shadow-color: rgb(94 234 212 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-300\/70 {
    --tw-shadow-color: rgb(94 234 212 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-300\/80 {
    --tw-shadow-color: rgb(94 234 212 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-300\/90 {
    --tw-shadow-color: rgb(94 234 212 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-400 {
    --tw-shadow-color: #2dd4bf;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-400\/10 {
    --tw-shadow-color: rgb(45 212 191 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-400\/20 {
    --tw-shadow-color: rgb(45 212 191 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-400\/30 {
    --tw-shadow-color: rgb(45 212 191 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-400\/40 {
    --tw-shadow-color: rgb(45 212 191 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-400\/5 {
    --tw-shadow-color: rgb(45 212 191 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-400\/50 {
    --tw-shadow-color: rgb(45 212 191 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-400\/60 {
    --tw-shadow-color: rgb(45 212 191 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-400\/70 {
    --tw-shadow-color: rgb(45 212 191 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-400\/80 {
    --tw-shadow-color: rgb(45 212 191 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-400\/90 {
    --tw-shadow-color: rgb(45 212 191 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-50 {
    --tw-shadow-color: #f0fdfa;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-50\/10 {
    --tw-shadow-color: rgb(240 253 250 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-50\/20 {
    --tw-shadow-color: rgb(240 253 250 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-50\/30 {
    --tw-shadow-color: rgb(240 253 250 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-50\/40 {
    --tw-shadow-color: rgb(240 253 250 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-50\/5 {
    --tw-shadow-color: rgb(240 253 250 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-50\/50 {
    --tw-shadow-color: rgb(240 253 250 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-50\/60 {
    --tw-shadow-color: rgb(240 253 250 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-50\/70 {
    --tw-shadow-color: rgb(240 253 250 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-50\/80 {
    --tw-shadow-color: rgb(240 253 250 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-50\/90 {
    --tw-shadow-color: rgb(240 253 250 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-500 {
    --tw-shadow-color: #14b8a6;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-500\/10 {
    --tw-shadow-color: rgb(20 184 166 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-500\/20 {
    --tw-shadow-color: rgb(20 184 166 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-500\/30 {
    --tw-shadow-color: rgb(20 184 166 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-500\/40 {
    --tw-shadow-color: rgb(20 184 166 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-500\/5 {
    --tw-shadow-color: rgb(20 184 166 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-500\/50 {
    --tw-shadow-color: rgb(20 184 166 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-500\/60 {
    --tw-shadow-color: rgb(20 184 166 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-500\/70 {
    --tw-shadow-color: rgb(20 184 166 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-500\/80 {
    --tw-shadow-color: rgb(20 184 166 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-500\/90 {
    --tw-shadow-color: rgb(20 184 166 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-600 {
    --tw-shadow-color: #0d9488;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-600\/10 {
    --tw-shadow-color: rgb(13 148 136 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-600\/20 {
    --tw-shadow-color: rgb(13 148 136 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-600\/30 {
    --tw-shadow-color: rgb(13 148 136 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-600\/40 {
    --tw-shadow-color: rgb(13 148 136 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-600\/5 {
    --tw-shadow-color: rgb(13 148 136 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-600\/50 {
    --tw-shadow-color: rgb(13 148 136 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-600\/60 {
    --tw-shadow-color: rgb(13 148 136 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-600\/70 {
    --tw-shadow-color: rgb(13 148 136 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-600\/80 {
    --tw-shadow-color: rgb(13 148 136 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-600\/90 {
    --tw-shadow-color: rgb(13 148 136 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-700 {
    --tw-shadow-color: #0f766e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-700\/10 {
    --tw-shadow-color: rgb(15 118 110 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-700\/20 {
    --tw-shadow-color: rgb(15 118 110 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-700\/30 {
    --tw-shadow-color: rgb(15 118 110 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-700\/40 {
    --tw-shadow-color: rgb(15 118 110 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-700\/5 {
    --tw-shadow-color: rgb(15 118 110 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-700\/50 {
    --tw-shadow-color: rgb(15 118 110 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-700\/60 {
    --tw-shadow-color: rgb(15 118 110 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-700\/70 {
    --tw-shadow-color: rgb(15 118 110 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-700\/80 {
    --tw-shadow-color: rgb(15 118 110 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-700\/90 {
    --tw-shadow-color: rgb(15 118 110 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-800 {
    --tw-shadow-color: #115e59;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-800\/10 {
    --tw-shadow-color: rgb(17 94 89 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-800\/20 {
    --tw-shadow-color: rgb(17 94 89 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-800\/30 {
    --tw-shadow-color: rgb(17 94 89 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-800\/40 {
    --tw-shadow-color: rgb(17 94 89 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-800\/5 {
    --tw-shadow-color: rgb(17 94 89 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-800\/50 {
    --tw-shadow-color: rgb(17 94 89 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-800\/60 {
    --tw-shadow-color: rgb(17 94 89 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-800\/70 {
    --tw-shadow-color: rgb(17 94 89 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-800\/80 {
    --tw-shadow-color: rgb(17 94 89 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-800\/90 {
    --tw-shadow-color: rgb(17 94 89 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-900 {
    --tw-shadow-color: #134e4a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-900\/10 {
    --tw-shadow-color: rgb(19 78 74 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-900\/20 {
    --tw-shadow-color: rgb(19 78 74 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-900\/30 {
    --tw-shadow-color: rgb(19 78 74 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-900\/40 {
    --tw-shadow-color: rgb(19 78 74 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-900\/5 {
    --tw-shadow-color: rgb(19 78 74 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-900\/50 {
    --tw-shadow-color: rgb(19 78 74 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-900\/60 {
    --tw-shadow-color: rgb(19 78 74 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-900\/70 {
    --tw-shadow-color: rgb(19 78 74 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-900\/80 {
    --tw-shadow-color: rgb(19 78 74 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-900\/90 {
    --tw-shadow-color: rgb(19 78 74 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-950 {
    --tw-shadow-color: #042f2e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-950\/10 {
    --tw-shadow-color: rgb(4 47 46 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-950\/20 {
    --tw-shadow-color: rgb(4 47 46 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-950\/30 {
    --tw-shadow-color: rgb(4 47 46 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-950\/40 {
    --tw-shadow-color: rgb(4 47 46 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-950\/5 {
    --tw-shadow-color: rgb(4 47 46 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-950\/50 {
    --tw-shadow-color: rgb(4 47 46 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-950\/60 {
    --tw-shadow-color: rgb(4 47 46 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-950\/70 {
    --tw-shadow-color: rgb(4 47 46 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-950\/80 {
    --tw-shadow-color: rgb(4 47 46 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-teal-950\/90 {
    --tw-shadow-color: rgb(4 47 46 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-100 {
    --tw-shadow-color: #ede9fe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-100\/10 {
    --tw-shadow-color: rgb(237 233 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-100\/20 {
    --tw-shadow-color: rgb(237 233 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-100\/30 {
    --tw-shadow-color: rgb(237 233 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-100\/40 {
    --tw-shadow-color: rgb(237 233 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-100\/5 {
    --tw-shadow-color: rgb(237 233 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-100\/50 {
    --tw-shadow-color: rgb(237 233 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-100\/60 {
    --tw-shadow-color: rgb(237 233 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-100\/70 {
    --tw-shadow-color: rgb(237 233 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-100\/80 {
    --tw-shadow-color: rgb(237 233 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-100\/90 {
    --tw-shadow-color: rgb(237 233 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-200 {
    --tw-shadow-color: #ddd6fe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-200\/10 {
    --tw-shadow-color: rgb(221 214 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-200\/20 {
    --tw-shadow-color: rgb(221 214 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-200\/30 {
    --tw-shadow-color: rgb(221 214 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-200\/40 {
    --tw-shadow-color: rgb(221 214 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-200\/5 {
    --tw-shadow-color: rgb(221 214 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-200\/50 {
    --tw-shadow-color: rgb(221 214 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-200\/60 {
    --tw-shadow-color: rgb(221 214 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-200\/70 {
    --tw-shadow-color: rgb(221 214 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-200\/80 {
    --tw-shadow-color: rgb(221 214 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-200\/90 {
    --tw-shadow-color: rgb(221 214 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-300 {
    --tw-shadow-color: #c4b5fd;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-300\/10 {
    --tw-shadow-color: rgb(196 181 253 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-300\/20 {
    --tw-shadow-color: rgb(196 181 253 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-300\/30 {
    --tw-shadow-color: rgb(196 181 253 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-300\/40 {
    --tw-shadow-color: rgb(196 181 253 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-300\/5 {
    --tw-shadow-color: rgb(196 181 253 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-300\/50 {
    --tw-shadow-color: rgb(196 181 253 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-300\/60 {
    --tw-shadow-color: rgb(196 181 253 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-300\/70 {
    --tw-shadow-color: rgb(196 181 253 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-300\/80 {
    --tw-shadow-color: rgb(196 181 253 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-300\/90 {
    --tw-shadow-color: rgb(196 181 253 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-400 {
    --tw-shadow-color: #a78bfa;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-400\/10 {
    --tw-shadow-color: rgb(167 139 250 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-400\/20 {
    --tw-shadow-color: rgb(167 139 250 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-400\/30 {
    --tw-shadow-color: rgb(167 139 250 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-400\/40 {
    --tw-shadow-color: rgb(167 139 250 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-400\/5 {
    --tw-shadow-color: rgb(167 139 250 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-400\/50 {
    --tw-shadow-color: rgb(167 139 250 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-400\/60 {
    --tw-shadow-color: rgb(167 139 250 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-400\/70 {
    --tw-shadow-color: rgb(167 139 250 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-400\/80 {
    --tw-shadow-color: rgb(167 139 250 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-400\/90 {
    --tw-shadow-color: rgb(167 139 250 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-50 {
    --tw-shadow-color: #f5f3ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-50\/10 {
    --tw-shadow-color: rgb(245 243 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-50\/20 {
    --tw-shadow-color: rgb(245 243 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-50\/30 {
    --tw-shadow-color: rgb(245 243 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-50\/40 {
    --tw-shadow-color: rgb(245 243 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-50\/5 {
    --tw-shadow-color: rgb(245 243 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-50\/50 {
    --tw-shadow-color: rgb(245 243 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-50\/60 {
    --tw-shadow-color: rgb(245 243 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-50\/70 {
    --tw-shadow-color: rgb(245 243 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-50\/80 {
    --tw-shadow-color: rgb(245 243 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-50\/90 {
    --tw-shadow-color: rgb(245 243 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-500 {
    --tw-shadow-color: #8b5cf6;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-500\/10 {
    --tw-shadow-color: rgb(139 92 246 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-500\/20 {
    --tw-shadow-color: rgb(139 92 246 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-500\/30 {
    --tw-shadow-color: rgb(139 92 246 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-500\/40 {
    --tw-shadow-color: rgb(139 92 246 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-500\/5 {
    --tw-shadow-color: rgb(139 92 246 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-500\/50 {
    --tw-shadow-color: rgb(139 92 246 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-500\/60 {
    --tw-shadow-color: rgb(139 92 246 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-500\/70 {
    --tw-shadow-color: rgb(139 92 246 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-500\/80 {
    --tw-shadow-color: rgb(139 92 246 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-500\/90 {
    --tw-shadow-color: rgb(139 92 246 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-600 {
    --tw-shadow-color: #7c3aed;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-600\/10 {
    --tw-shadow-color: rgb(124 58 237 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-600\/20 {
    --tw-shadow-color: rgb(124 58 237 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-600\/30 {
    --tw-shadow-color: rgb(124 58 237 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-600\/40 {
    --tw-shadow-color: rgb(124 58 237 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-600\/5 {
    --tw-shadow-color: rgb(124 58 237 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-600\/50 {
    --tw-shadow-color: rgb(124 58 237 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-600\/60 {
    --tw-shadow-color: rgb(124 58 237 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-600\/70 {
    --tw-shadow-color: rgb(124 58 237 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-600\/80 {
    --tw-shadow-color: rgb(124 58 237 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-600\/90 {
    --tw-shadow-color: rgb(124 58 237 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-700 {
    --tw-shadow-color: #6d28d9;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-700\/10 {
    --tw-shadow-color: rgb(109 40 217 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-700\/20 {
    --tw-shadow-color: rgb(109 40 217 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-700\/30 {
    --tw-shadow-color: rgb(109 40 217 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-700\/40 {
    --tw-shadow-color: rgb(109 40 217 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-700\/5 {
    --tw-shadow-color: rgb(109 40 217 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-700\/50 {
    --tw-shadow-color: rgb(109 40 217 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-700\/60 {
    --tw-shadow-color: rgb(109 40 217 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-700\/70 {
    --tw-shadow-color: rgb(109 40 217 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-700\/80 {
    --tw-shadow-color: rgb(109 40 217 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-700\/90 {
    --tw-shadow-color: rgb(109 40 217 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-800 {
    --tw-shadow-color: #5b21b6;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-800\/10 {
    --tw-shadow-color: rgb(91 33 182 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-800\/20 {
    --tw-shadow-color: rgb(91 33 182 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-800\/30 {
    --tw-shadow-color: rgb(91 33 182 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-800\/40 {
    --tw-shadow-color: rgb(91 33 182 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-800\/5 {
    --tw-shadow-color: rgb(91 33 182 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-800\/50 {
    --tw-shadow-color: rgb(91 33 182 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-800\/60 {
    --tw-shadow-color: rgb(91 33 182 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-800\/70 {
    --tw-shadow-color: rgb(91 33 182 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-800\/80 {
    --tw-shadow-color: rgb(91 33 182 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-800\/90 {
    --tw-shadow-color: rgb(91 33 182 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-900 {
    --tw-shadow-color: #4c1d95;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-900\/10 {
    --tw-shadow-color: rgb(76 29 149 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-900\/20 {
    --tw-shadow-color: rgb(76 29 149 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-900\/30 {
    --tw-shadow-color: rgb(76 29 149 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-900\/40 {
    --tw-shadow-color: rgb(76 29 149 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-900\/5 {
    --tw-shadow-color: rgb(76 29 149 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-900\/50 {
    --tw-shadow-color: rgb(76 29 149 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-900\/60 {
    --tw-shadow-color: rgb(76 29 149 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-900\/70 {
    --tw-shadow-color: rgb(76 29 149 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-900\/80 {
    --tw-shadow-color: rgb(76 29 149 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-900\/90 {
    --tw-shadow-color: rgb(76 29 149 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-950 {
    --tw-shadow-color: #2e1065;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-950\/10 {
    --tw-shadow-color: rgb(46 16 101 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-950\/20 {
    --tw-shadow-color: rgb(46 16 101 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-950\/30 {
    --tw-shadow-color: rgb(46 16 101 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-950\/40 {
    --tw-shadow-color: rgb(46 16 101 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-950\/5 {
    --tw-shadow-color: rgb(46 16 101 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-950\/50 {
    --tw-shadow-color: rgb(46 16 101 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-950\/60 {
    --tw-shadow-color: rgb(46 16 101 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-950\/70 {
    --tw-shadow-color: rgb(46 16 101 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-950\/80 {
    --tw-shadow-color: rgb(46 16 101 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-violet-950\/90 {
    --tw-shadow-color: rgb(46 16 101 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-100 {
    --tw-shadow-color: #fef9c3;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-100\/10 {
    --tw-shadow-color: rgb(254 249 195 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-100\/20 {
    --tw-shadow-color: rgb(254 249 195 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-100\/30 {
    --tw-shadow-color: rgb(254 249 195 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-100\/40 {
    --tw-shadow-color: rgb(254 249 195 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-100\/5 {
    --tw-shadow-color: rgb(254 249 195 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-100\/50 {
    --tw-shadow-color: rgb(254 249 195 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-100\/60 {
    --tw-shadow-color: rgb(254 249 195 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-100\/70 {
    --tw-shadow-color: rgb(254 249 195 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-100\/80 {
    --tw-shadow-color: rgb(254 249 195 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-100\/90 {
    --tw-shadow-color: rgb(254 249 195 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-200 {
    --tw-shadow-color: #fef08a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-200\/10 {
    --tw-shadow-color: rgb(254 240 138 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-200\/20 {
    --tw-shadow-color: rgb(254 240 138 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-200\/30 {
    --tw-shadow-color: rgb(254 240 138 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-200\/40 {
    --tw-shadow-color: rgb(254 240 138 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-200\/5 {
    --tw-shadow-color: rgb(254 240 138 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-200\/50 {
    --tw-shadow-color: rgb(254 240 138 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-200\/60 {
    --tw-shadow-color: rgb(254 240 138 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-200\/70 {
    --tw-shadow-color: rgb(254 240 138 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-200\/80 {
    --tw-shadow-color: rgb(254 240 138 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-200\/90 {
    --tw-shadow-color: rgb(254 240 138 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-300 {
    --tw-shadow-color: #fde047;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-300\/10 {
    --tw-shadow-color: rgb(253 224 71 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-300\/20 {
    --tw-shadow-color: rgb(253 224 71 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-300\/30 {
    --tw-shadow-color: rgb(253 224 71 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-300\/40 {
    --tw-shadow-color: rgb(253 224 71 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-300\/5 {
    --tw-shadow-color: rgb(253 224 71 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-300\/50 {
    --tw-shadow-color: rgb(253 224 71 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-300\/60 {
    --tw-shadow-color: rgb(253 224 71 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-300\/70 {
    --tw-shadow-color: rgb(253 224 71 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-300\/80 {
    --tw-shadow-color: rgb(253 224 71 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-300\/90 {
    --tw-shadow-color: rgb(253 224 71 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-400 {
    --tw-shadow-color: #facc15;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-400\/10 {
    --tw-shadow-color: rgb(250 204 21 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-400\/20 {
    --tw-shadow-color: rgb(250 204 21 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-400\/30 {
    --tw-shadow-color: rgb(250 204 21 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-400\/40 {
    --tw-shadow-color: rgb(250 204 21 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-400\/5 {
    --tw-shadow-color: rgb(250 204 21 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-400\/50 {
    --tw-shadow-color: rgb(250 204 21 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-400\/60 {
    --tw-shadow-color: rgb(250 204 21 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-400\/70 {
    --tw-shadow-color: rgb(250 204 21 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-400\/80 {
    --tw-shadow-color: rgb(250 204 21 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-400\/90 {
    --tw-shadow-color: rgb(250 204 21 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-50 {
    --tw-shadow-color: #fefce8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-50\/10 {
    --tw-shadow-color: rgb(254 252 232 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-50\/20 {
    --tw-shadow-color: rgb(254 252 232 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-50\/30 {
    --tw-shadow-color: rgb(254 252 232 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-50\/40 {
    --tw-shadow-color: rgb(254 252 232 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-50\/5 {
    --tw-shadow-color: rgb(254 252 232 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-50\/50 {
    --tw-shadow-color: rgb(254 252 232 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-50\/60 {
    --tw-shadow-color: rgb(254 252 232 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-50\/70 {
    --tw-shadow-color: rgb(254 252 232 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-50\/80 {
    --tw-shadow-color: rgb(254 252 232 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-50\/90 {
    --tw-shadow-color: rgb(254 252 232 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-500 {
    --tw-shadow-color: #eab308;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-500\/10 {
    --tw-shadow-color: rgb(234 179 8 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-500\/20 {
    --tw-shadow-color: rgb(234 179 8 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-500\/30 {
    --tw-shadow-color: rgb(234 179 8 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-500\/40 {
    --tw-shadow-color: rgb(234 179 8 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-500\/5 {
    --tw-shadow-color: rgb(234 179 8 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-500\/50 {
    --tw-shadow-color: rgb(234 179 8 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-500\/60 {
    --tw-shadow-color: rgb(234 179 8 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-500\/70 {
    --tw-shadow-color: rgb(234 179 8 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-500\/80 {
    --tw-shadow-color: rgb(234 179 8 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-500\/90 {
    --tw-shadow-color: rgb(234 179 8 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-600 {
    --tw-shadow-color: #ca8a04;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-600\/10 {
    --tw-shadow-color: rgb(202 138 4 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-600\/20 {
    --tw-shadow-color: rgb(202 138 4 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-600\/30 {
    --tw-shadow-color: rgb(202 138 4 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-600\/40 {
    --tw-shadow-color: rgb(202 138 4 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-600\/5 {
    --tw-shadow-color: rgb(202 138 4 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-600\/50 {
    --tw-shadow-color: rgb(202 138 4 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-600\/60 {
    --tw-shadow-color: rgb(202 138 4 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-600\/70 {
    --tw-shadow-color: rgb(202 138 4 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-600\/80 {
    --tw-shadow-color: rgb(202 138 4 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-600\/90 {
    --tw-shadow-color: rgb(202 138 4 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-700 {
    --tw-shadow-color: #a16207;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-700\/10 {
    --tw-shadow-color: rgb(161 98 7 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-700\/20 {
    --tw-shadow-color: rgb(161 98 7 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-700\/30 {
    --tw-shadow-color: rgb(161 98 7 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-700\/40 {
    --tw-shadow-color: rgb(161 98 7 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-700\/5 {
    --tw-shadow-color: rgb(161 98 7 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-700\/50 {
    --tw-shadow-color: rgb(161 98 7 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-700\/60 {
    --tw-shadow-color: rgb(161 98 7 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-700\/70 {
    --tw-shadow-color: rgb(161 98 7 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-700\/80 {
    --tw-shadow-color: rgb(161 98 7 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-700\/90 {
    --tw-shadow-color: rgb(161 98 7 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-800 {
    --tw-shadow-color: #854d0e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-800\/10 {
    --tw-shadow-color: rgb(133 77 14 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-800\/20 {
    --tw-shadow-color: rgb(133 77 14 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-800\/30 {
    --tw-shadow-color: rgb(133 77 14 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-800\/40 {
    --tw-shadow-color: rgb(133 77 14 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-800\/5 {
    --tw-shadow-color: rgb(133 77 14 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-800\/50 {
    --tw-shadow-color: rgb(133 77 14 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-800\/60 {
    --tw-shadow-color: rgb(133 77 14 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-800\/70 {
    --tw-shadow-color: rgb(133 77 14 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-800\/80 {
    --tw-shadow-color: rgb(133 77 14 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-800\/90 {
    --tw-shadow-color: rgb(133 77 14 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-900 {
    --tw-shadow-color: #713f12;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-900\/10 {
    --tw-shadow-color: rgb(113 63 18 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-900\/20 {
    --tw-shadow-color: rgb(113 63 18 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-900\/30 {
    --tw-shadow-color: rgb(113 63 18 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-900\/40 {
    --tw-shadow-color: rgb(113 63 18 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-900\/5 {
    --tw-shadow-color: rgb(113 63 18 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-900\/50 {
    --tw-shadow-color: rgb(113 63 18 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-900\/60 {
    --tw-shadow-color: rgb(113 63 18 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-900\/70 {
    --tw-shadow-color: rgb(113 63 18 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-900\/80 {
    --tw-shadow-color: rgb(113 63 18 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-900\/90 {
    --tw-shadow-color: rgb(113 63 18 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-950 {
    --tw-shadow-color: #422006;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-950\/10 {
    --tw-shadow-color: rgb(66 32 6 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-950\/20 {
    --tw-shadow-color: rgb(66 32 6 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-950\/30 {
    --tw-shadow-color: rgb(66 32 6 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-950\/40 {
    --tw-shadow-color: rgb(66 32 6 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-950\/5 {
    --tw-shadow-color: rgb(66 32 6 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-950\/50 {
    --tw-shadow-color: rgb(66 32 6 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-950\/60 {
    --tw-shadow-color: rgb(66 32 6 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-950\/70 {
    --tw-shadow-color: rgb(66 32 6 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-950\/80 {
    --tw-shadow-color: rgb(66 32 6 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-yellow-950\/90 {
    --tw-shadow-color: rgb(66 32 6 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-100 {
    --tw-shadow-color: #f4f4f5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-100\/10 {
    --tw-shadow-color: rgb(244 244 245 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-100\/20 {
    --tw-shadow-color: rgb(244 244 245 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-100\/30 {
    --tw-shadow-color: rgb(244 244 245 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-100\/40 {
    --tw-shadow-color: rgb(244 244 245 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-100\/5 {
    --tw-shadow-color: rgb(244 244 245 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-100\/50 {
    --tw-shadow-color: rgb(244 244 245 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-100\/60 {
    --tw-shadow-color: rgb(244 244 245 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-100\/70 {
    --tw-shadow-color: rgb(244 244 245 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-100\/80 {
    --tw-shadow-color: rgb(244 244 245 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-100\/90 {
    --tw-shadow-color: rgb(244 244 245 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-200 {
    --tw-shadow-color: #e4e4e7;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-200\/10 {
    --tw-shadow-color: rgb(228 228 231 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-200\/20 {
    --tw-shadow-color: rgb(228 228 231 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-200\/30 {
    --tw-shadow-color: rgb(228 228 231 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-200\/40 {
    --tw-shadow-color: rgb(228 228 231 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-200\/5 {
    --tw-shadow-color: rgb(228 228 231 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-200\/50 {
    --tw-shadow-color: rgb(228 228 231 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-200\/60 {
    --tw-shadow-color: rgb(228 228 231 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-200\/70 {
    --tw-shadow-color: rgb(228 228 231 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-200\/80 {
    --tw-shadow-color: rgb(228 228 231 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-200\/90 {
    --tw-shadow-color: rgb(228 228 231 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-300 {
    --tw-shadow-color: #d4d4d8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-300\/10 {
    --tw-shadow-color: rgb(212 212 216 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-300\/20 {
    --tw-shadow-color: rgb(212 212 216 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-300\/30 {
    --tw-shadow-color: rgb(212 212 216 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-300\/40 {
    --tw-shadow-color: rgb(212 212 216 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-300\/5 {
    --tw-shadow-color: rgb(212 212 216 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-300\/50 {
    --tw-shadow-color: rgb(212 212 216 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-300\/60 {
    --tw-shadow-color: rgb(212 212 216 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-300\/70 {
    --tw-shadow-color: rgb(212 212 216 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-300\/80 {
    --tw-shadow-color: rgb(212 212 216 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-300\/90 {
    --tw-shadow-color: rgb(212 212 216 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-400 {
    --tw-shadow-color: #a1a1aa;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-400\/10 {
    --tw-shadow-color: rgb(161 161 170 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-400\/20 {
    --tw-shadow-color: rgb(161 161 170 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-400\/30 {
    --tw-shadow-color: rgb(161 161 170 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-400\/40 {
    --tw-shadow-color: rgb(161 161 170 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-400\/5 {
    --tw-shadow-color: rgb(161 161 170 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-400\/50 {
    --tw-shadow-color: rgb(161 161 170 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-400\/60 {
    --tw-shadow-color: rgb(161 161 170 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-400\/70 {
    --tw-shadow-color: rgb(161 161 170 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-400\/80 {
    --tw-shadow-color: rgb(161 161 170 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-400\/90 {
    --tw-shadow-color: rgb(161 161 170 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-50 {
    --tw-shadow-color: #fafafa;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-50\/10 {
    --tw-shadow-color: rgb(250 250 250 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-50\/20 {
    --tw-shadow-color: rgb(250 250 250 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-50\/30 {
    --tw-shadow-color: rgb(250 250 250 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-50\/40 {
    --tw-shadow-color: rgb(250 250 250 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-50\/5 {
    --tw-shadow-color: rgb(250 250 250 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-50\/50 {
    --tw-shadow-color: rgb(250 250 250 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-50\/60 {
    --tw-shadow-color: rgb(250 250 250 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-50\/70 {
    --tw-shadow-color: rgb(250 250 250 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-50\/80 {
    --tw-shadow-color: rgb(250 250 250 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-50\/90 {
    --tw-shadow-color: rgb(250 250 250 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-500 {
    --tw-shadow-color: #71717a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-500\/10 {
    --tw-shadow-color: rgb(113 113 122 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-500\/20 {
    --tw-shadow-color: rgb(113 113 122 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-500\/30 {
    --tw-shadow-color: rgb(113 113 122 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-500\/40 {
    --tw-shadow-color: rgb(113 113 122 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-500\/5 {
    --tw-shadow-color: rgb(113 113 122 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-500\/50 {
    --tw-shadow-color: rgb(113 113 122 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-500\/60 {
    --tw-shadow-color: rgb(113 113 122 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-500\/70 {
    --tw-shadow-color: rgb(113 113 122 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-500\/80 {
    --tw-shadow-color: rgb(113 113 122 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-500\/90 {
    --tw-shadow-color: rgb(113 113 122 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-600 {
    --tw-shadow-color: #52525b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-600\/10 {
    --tw-shadow-color: rgb(82 82 91 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-600\/20 {
    --tw-shadow-color: rgb(82 82 91 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-600\/30 {
    --tw-shadow-color: rgb(82 82 91 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-600\/40 {
    --tw-shadow-color: rgb(82 82 91 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-600\/5 {
    --tw-shadow-color: rgb(82 82 91 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-600\/50 {
    --tw-shadow-color: rgb(82 82 91 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-600\/60 {
    --tw-shadow-color: rgb(82 82 91 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-600\/70 {
    --tw-shadow-color: rgb(82 82 91 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-600\/80 {
    --tw-shadow-color: rgb(82 82 91 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-600\/90 {
    --tw-shadow-color: rgb(82 82 91 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-700 {
    --tw-shadow-color: #3f3f46;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-700\/10 {
    --tw-shadow-color: rgb(63 63 70 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-700\/20 {
    --tw-shadow-color: rgb(63 63 70 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-700\/30 {
    --tw-shadow-color: rgb(63 63 70 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-700\/40 {
    --tw-shadow-color: rgb(63 63 70 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-700\/5 {
    --tw-shadow-color: rgb(63 63 70 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-700\/50 {
    --tw-shadow-color: rgb(63 63 70 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-700\/60 {
    --tw-shadow-color: rgb(63 63 70 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-700\/70 {
    --tw-shadow-color: rgb(63 63 70 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-700\/80 {
    --tw-shadow-color: rgb(63 63 70 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-700\/90 {
    --tw-shadow-color: rgb(63 63 70 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-800 {
    --tw-shadow-color: #27272a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-800\/10 {
    --tw-shadow-color: rgb(39 39 42 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-800\/20 {
    --tw-shadow-color: rgb(39 39 42 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-800\/30 {
    --tw-shadow-color: rgb(39 39 42 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-800\/40 {
    --tw-shadow-color: rgb(39 39 42 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-800\/5 {
    --tw-shadow-color: rgb(39 39 42 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-800\/50 {
    --tw-shadow-color: rgb(39 39 42 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-800\/60 {
    --tw-shadow-color: rgb(39 39 42 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-800\/70 {
    --tw-shadow-color: rgb(39 39 42 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-800\/80 {
    --tw-shadow-color: rgb(39 39 42 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-800\/90 {
    --tw-shadow-color: rgb(39 39 42 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-900 {
    --tw-shadow-color: #18181b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-900\/10 {
    --tw-shadow-color: rgb(24 24 27 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-900\/20 {
    --tw-shadow-color: rgb(24 24 27 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-900\/30 {
    --tw-shadow-color: rgb(24 24 27 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-900\/40 {
    --tw-shadow-color: rgb(24 24 27 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-900\/5 {
    --tw-shadow-color: rgb(24 24 27 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-900\/50 {
    --tw-shadow-color: rgb(24 24 27 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-900\/60 {
    --tw-shadow-color: rgb(24 24 27 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-900\/70 {
    --tw-shadow-color: rgb(24 24 27 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-900\/80 {
    --tw-shadow-color: rgb(24 24 27 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-900\/90 {
    --tw-shadow-color: rgb(24 24 27 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-950 {
    --tw-shadow-color: #09090b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-950\/10 {
    --tw-shadow-color: rgb(9 9 11 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-950\/20 {
    --tw-shadow-color: rgb(9 9 11 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-950\/30 {
    --tw-shadow-color: rgb(9 9 11 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-950\/40 {
    --tw-shadow-color: rgb(9 9 11 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-950\/5 {
    --tw-shadow-color: rgb(9 9 11 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-950\/50 {
    --tw-shadow-color: rgb(9 9 11 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-950\/60 {
    --tw-shadow-color: rgb(9 9 11 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-950\/70 {
    --tw-shadow-color: rgb(9 9 11 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-950\/80 {
    --tw-shadow-color: rgb(9 9 11 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .xl\:shadow-zinc-950\/90 {
    --tw-shadow-color: rgb(9 9 11 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

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

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

  .xl\:ring-4 {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .xl\:ring-8 {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .xl\:ring-amber-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 243 199 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-amber-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(253 230 138 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-amber-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(252 211 77 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-amber-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(251 191 36 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-amber-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(255 251 235 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-amber-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(245 158 11 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-amber-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(217 119 6 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-amber-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(180 83 9 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-amber-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(146 64 14 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-amber-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(120 53 15 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-amber-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(69 26 3 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-black {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-blue-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(219 234 254 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-blue-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(191 219 254 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-blue-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(147 197 253 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-blue-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(96 165 250 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-blue-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(239 246 255 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-blue-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-blue-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(37 99 235 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-blue-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(29 78 216 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-blue-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(30 64 175 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-blue-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(30 58 138 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-blue-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(23 37 84 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-cyan-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(207 250 254 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-cyan-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(165 243 252 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-cyan-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(103 232 249 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-cyan-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(34 211 238 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-cyan-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(236 254 255 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-cyan-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(6 182 212 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-cyan-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(8 145 178 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-cyan-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(14 116 144 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-cyan-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(21 94 117 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-cyan-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(22 78 99 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-cyan-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(8 51 68 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-emerald-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(209 250 229 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-emerald-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(167 243 208 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-emerald-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(110 231 183 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-emerald-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(52 211 153 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-emerald-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(236 253 245 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-emerald-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(16 185 129 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-emerald-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(5 150 105 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-emerald-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(4 120 87 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-emerald-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(6 95 70 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-emerald-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(6 78 59 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-emerald-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(2 44 34 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-fuchsia-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(250 232 255 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-fuchsia-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(245 208 254 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-fuchsia-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(240 171 252 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-fuchsia-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(232 121 249 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-fuchsia-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(253 244 255 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-fuchsia-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(217 70 239 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-fuchsia-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(192 38 211 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-fuchsia-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(162 28 175 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-fuchsia-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(134 25 143 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-fuchsia-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(112 26 117 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-fuchsia-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(74 4 78 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-gray-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(243 244 246 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-gray-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-gray-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-gray-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(156 163 175 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-gray-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(249 250 251 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-gray-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(107 114 128 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-gray-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(75 85 99 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-gray-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(55 65 81 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-gray-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(31 41 55 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-gray-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(17 24 39 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-gray-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(3 7 18 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-green-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(220 252 231 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-green-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(187 247 208 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-green-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(134 239 172 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-green-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(74 222 128 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-green-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(240 253 244 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-green-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(34 197 94 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-green-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(22 163 74 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-green-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(21 128 61 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-green-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(22 101 52 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-green-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(20 83 45 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-green-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(5 46 22 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-indigo-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(224 231 255 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-indigo-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(199 210 254 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-indigo-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(165 180 252 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-indigo-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(129 140 248 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-indigo-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(238 242 255 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-indigo-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(99 102 241 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-indigo-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(79 70 229 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-indigo-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(67 56 202 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-indigo-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(55 48 163 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-indigo-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(49 46 129 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-indigo-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(30 27 75 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-lime-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(236 252 203 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-lime-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(217 249 157 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-lime-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(190 242 100 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-lime-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(163 230 53 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-lime-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(247 254 231 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-lime-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(132 204 22 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-lime-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(101 163 13 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-lime-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(77 124 15 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-lime-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(63 98 18 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-lime-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(54 83 20 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-lime-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(26 46 5 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-neutral-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(245 245 245 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-neutral-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(229 229 229 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-neutral-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(212 212 212 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-neutral-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(163 163 163 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-neutral-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(250 250 250 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-neutral-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(115 115 115 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-neutral-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(82 82 82 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-neutral-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(64 64 64 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-neutral-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(38 38 38 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-neutral-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(23 23 23 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-neutral-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(10 10 10 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-orange-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(255 237 213 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-orange-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 215 170 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-orange-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(253 186 116 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-orange-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(251 146 60 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-orange-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(255 247 237 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-orange-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(249 115 22 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-orange-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(234 88 12 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-orange-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(194 65 12 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-orange-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(154 52 18 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-orange-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(124 45 18 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-orange-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(67 20 7 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-pink-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(252 231 243 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-pink-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(251 207 232 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-pink-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(249 168 212 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-pink-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(244 114 182 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-pink-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(253 242 248 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-pink-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(236 72 153 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-pink-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(219 39 119 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-pink-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(190 24 93 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-pink-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(157 23 77 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-pink-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(131 24 67 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-pink-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(80 7 36 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-purple-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(243 232 255 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-purple-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(233 213 255 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-purple-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(216 180 254 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-purple-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(192 132 252 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-purple-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(250 245 255 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-purple-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(168 85 247 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-purple-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(147 51 234 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-purple-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(126 34 206 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-purple-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(107 33 168 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-purple-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(88 28 135 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-purple-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(59 7 100 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-red-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 226 226 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-red-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 202 202 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-red-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(252 165 165 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-red-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(248 113 113 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-red-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 242 242 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-red-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-red-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(220 38 38 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-red-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(185 28 28 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-red-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(153 27 27 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-red-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(127 29 29 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-red-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(69 10 10 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-rose-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(255 228 230 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-rose-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 205 211 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-rose-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(253 164 175 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-rose-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(251 113 133 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-rose-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(255 241 242 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-rose-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(244 63 94 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-rose-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(225 29 72 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-rose-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(190 18 60 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-rose-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(159 18 57 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-rose-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(136 19 55 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-rose-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(76 5 25 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-sky-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(224 242 254 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-sky-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(186 230 253 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-sky-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(125 211 252 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-sky-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(56 189 248 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-sky-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(240 249 255 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-sky-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(14 165 233 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-sky-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(2 132 199 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-sky-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(3 105 161 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-sky-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(7 89 133 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-sky-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(12 74 110 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-sky-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(8 47 73 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-slate-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(241 245 249 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-slate-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(226 232 240 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-slate-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(203 213 225 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-slate-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(148 163 184 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-slate-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(248 250 252 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-slate-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(100 116 139 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-slate-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(71 85 105 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-slate-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(51 65 85 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-slate-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(30 41 59 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-slate-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(15 23 42 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-slate-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(2 6 23 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-stone-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(245 245 244 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-stone-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(231 229 228 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-stone-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(214 211 209 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-stone-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(168 162 158 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-stone-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(250 250 249 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-stone-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(120 113 108 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-stone-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(87 83 78 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-stone-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(68 64 60 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-stone-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(41 37 36 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-stone-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(28 25 23 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-stone-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(12 10 9 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-teal-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(204 251 241 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-teal-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(153 246 228 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-teal-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(94 234 212 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-teal-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(45 212 191 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-teal-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(240 253 250 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-teal-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(20 184 166 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-teal-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(13 148 136 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-teal-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(15 118 110 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-teal-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(17 94 89 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-teal-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(19 78 74 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-teal-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(4 47 46 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-violet-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(237 233 254 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-violet-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(221 214 254 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-violet-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(196 181 253 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-violet-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(167 139 250 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-violet-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(245 243 255 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-violet-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(139 92 246 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-violet-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(124 58 237 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-violet-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(109 40 217 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-violet-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(91 33 182 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-violet-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(76 29 149 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-violet-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(46 16 101 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-white {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-yellow-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 249 195 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-yellow-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 240 138 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-yellow-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(253 224 71 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-yellow-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(250 204 21 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-yellow-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 252 232 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-yellow-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(234 179 8 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-yellow-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(202 138 4 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-yellow-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(161 98 7 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-yellow-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(133 77 14 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-yellow-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(113 63 18 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-yellow-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(66 32 6 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-zinc-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(244 244 245 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-zinc-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(228 228 231 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-zinc-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(212 212 216 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-zinc-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(161 161 170 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-zinc-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(250 250 250 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-zinc-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(113 113 122 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-zinc-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(82 82 91 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-zinc-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(63 63 70 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-zinc-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(39 39 42 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-zinc-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(24 24 27 / var(--tw-ring-opacity, 1));
  }

  .xl\:ring-zinc-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(9 9 11 / var(--tw-ring-opacity, 1));
  }

  .xl\:blur-2xl {
    --tw-blur: blur(40px);
    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);
  }

  .xl\:blur-3xl {
    --tw-blur: blur(64px);
    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);
  }

  .xl\:blur-lg {
    --tw-blur: blur(16px);
    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);
  }

  .xl\:blur-md {
    --tw-blur: blur(12px);
    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);
  }

  .xl\:blur-sm {
    --tw-blur: blur(4px);
    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);
  }

  .xl\:blur-xl {
    --tw-blur: blur(24px);
    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);
  }

  .xl\:drop-shadow-lg {
    --tw-drop-shadow: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
    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);
  }

  .xl\:drop-shadow-md {
    --tw-drop-shadow: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
    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);
  }

  .xl\:drop-shadow-sm {
    --tw-drop-shadow: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05));
    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);
  }

  .xl\:backdrop-blur-lg {
    --tw-backdrop-blur: blur(16px);
    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);
  }

  .xl\:backdrop-blur-md {
    --tw-backdrop-blur: blur(12px);
    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);
  }

  .xl\:motion-blur-in-lg {
    --motion-origin-blur: 16px;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-blur-in-md {
    --motion-origin-blur: 12px;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-blur-out-lg {
    --motion-end-blur: 16px;
    --motion-filter-out-animation: motion-filter-out calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-out-animation), var(--motion-translate-out-animation), var(--motion-rotate-out-animation), var(--motion-filter-out-animation), var(--motion-opacity-out-animation), var(--motion-background-color-out-animation), var(--motion-text-color-out-animation);
  }

  .xl\:motion-blur-out-md {
    --motion-end-blur: 12px;
    --motion-filter-out-animation: motion-filter-out calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-out-animation), var(--motion-translate-out-animation), var(--motion-rotate-out-animation), var(--motion-filter-out-animation), var(--motion-opacity-out-animation), var(--motion-background-color-out-animation), var(--motion-text-color-out-animation);
  }

  .xl\:motion-blur-loop-lg {
    --motion-loop-blur: 16px;
    --motion-filter-loop-animation: motion-filter-loop-mirror calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both var(--motion-filter-loop-count, var(--motion-loop-count));
    animation-composition: accumulate;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .xl\:motion-blur-loop-md {
    --motion-loop-blur: 12px;
    --motion-filter-loop-animation: motion-filter-loop-mirror calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both var(--motion-filter-loop-count, var(--motion-loop-count));
    animation-composition: accumulate;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }
}
@media (min-width: 1536px) {

  .\32xl\:m-0 {
    margin: 0px;
  }

  .\32xl\:m-1 {
    margin: 0.25rem;
  }

  .\32xl\:m-10 {
    margin: 2.5rem;
  }

  .\32xl\:m-11 {
    margin: 2.75rem;
  }

  .\32xl\:m-12 {
    margin: 3rem;
  }

  .\32xl\:m-14 {
    margin: 3.5rem;
  }

  .\32xl\:m-16 {
    margin: 4rem;
  }

  .\32xl\:m-2 {
    margin: 0.5rem;
  }

  .\32xl\:m-20 {
    margin: 5rem;
  }

  .\32xl\:m-24 {
    margin: 6rem;
  }

  .\32xl\:m-28 {
    margin: 7rem;
  }

  .\32xl\:m-3 {
    margin: 0.75rem;
  }

  .\32xl\:m-32 {
    margin: 8rem;
  }

  .\32xl\:m-36 {
    margin: 9rem;
  }

  .\32xl\:m-4 {
    margin: 1rem;
  }

  .\32xl\:m-40 {
    margin: 10rem;
  }

  .\32xl\:m-44 {
    margin: 11rem;
  }

  .\32xl\:m-48 {
    margin: 12rem;
  }

  .\32xl\:m-5 {
    margin: 1.25rem;
  }

  .\32xl\:m-52 {
    margin: 13rem;
  }

  .\32xl\:m-56 {
    margin: 14rem;
  }

  .\32xl\:m-6 {
    margin: 1.5rem;
  }

  .\32xl\:m-60 {
    margin: 15rem;
  }

  .\32xl\:m-64 {
    margin: 16rem;
  }

  .\32xl\:m-7 {
    margin: 1.75rem;
  }

  .\32xl\:m-72 {
    margin: 18rem;
  }

  .\32xl\:m-8 {
    margin: 2rem;
  }

  .\32xl\:m-80 {
    margin: 20rem;
  }

  .\32xl\:m-9 {
    margin: 2.25rem;
  }

  .\32xl\:m-96 {
    margin: 24rem;
  }

  .\32xl\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }

  .\32xl\:mx-1 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .\32xl\:mx-10 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .\32xl\:mx-11 {
    margin-left: 2.75rem;
    margin-right: 2.75rem;
  }

  .\32xl\:mx-12 {
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .\32xl\:mx-14 {
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .\32xl\:mx-16 {
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .\32xl\:mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .\32xl\:mx-20 {
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .\32xl\:mx-24 {
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .\32xl\:mx-28 {
    margin-left: 7rem;
    margin-right: 7rem;
  }

  .\32xl\:mx-3 {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .\32xl\:mx-32 {
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .\32xl\:mx-36 {
    margin-left: 9rem;
    margin-right: 9rem;
  }

  .\32xl\:mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .\32xl\:mx-40 {
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .\32xl\:mx-44 {
    margin-left: 11rem;
    margin-right: 11rem;
  }

  .\32xl\:mx-48 {
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .\32xl\:mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .\32xl\:mx-52 {
    margin-left: 13rem;
    margin-right: 13rem;
  }

  .\32xl\:mx-56 {
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .\32xl\:mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .\32xl\:mx-60 {
    margin-left: 15rem;
    margin-right: 15rem;
  }

  .\32xl\:mx-64 {
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .\32xl\:mx-7 {
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .\32xl\:mx-72 {
    margin-left: 18rem;
    margin-right: 18rem;
  }

  .\32xl\:mx-8 {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .\32xl\:mx-80 {
    margin-left: 20rem;
    margin-right: 20rem;
  }

  .\32xl\:mx-9 {
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .\32xl\:mx-96 {
    margin-left: 24rem;
    margin-right: 24rem;
  }

  .\32xl\:my-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .\32xl\:my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .\32xl\:my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .\32xl\:my-11 {
    margin-top: 2.75rem;
    margin-bottom: 2.75rem;
  }

  .\32xl\:my-12 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .\32xl\:my-14 {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .\32xl\:my-16 {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .\32xl\:my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .\32xl\:my-20 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .\32xl\:my-24 {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .\32xl\:my-28 {
    margin-top: 7rem;
    margin-bottom: 7rem;
  }

  .\32xl\:my-3 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .\32xl\:my-32 {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .\32xl\:my-36 {
    margin-top: 9rem;
    margin-bottom: 9rem;
  }

  .\32xl\:my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .\32xl\:my-40 {
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .\32xl\:my-44 {
    margin-top: 11rem;
    margin-bottom: 11rem;
  }

  .\32xl\:my-48 {
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .\32xl\:my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .\32xl\:my-52 {
    margin-top: 13rem;
    margin-bottom: 13rem;
  }

  .\32xl\:my-56 {
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .\32xl\:my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .\32xl\:my-60 {
    margin-top: 15rem;
    margin-bottom: 15rem;
  }

  .\32xl\:my-64 {
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .\32xl\:my-7 {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .\32xl\:my-72 {
    margin-top: 18rem;
    margin-bottom: 18rem;
  }

  .\32xl\:my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .\32xl\:my-80 {
    margin-top: 20rem;
    margin-bottom: 20rem;
  }

  .\32xl\:my-9 {
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }

  .\32xl\:my-96 {
    margin-top: 24rem;
    margin-bottom: 24rem;
  }

  .\32xl\:mb-0 {
    margin-bottom: 0px;
  }

  .\32xl\:mb-1 {
    margin-bottom: 0.25rem;
  }

  .\32xl\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .\32xl\:mb-11 {
    margin-bottom: 2.75rem;
  }

  .\32xl\:mb-12 {
    margin-bottom: 3rem;
  }

  .\32xl\:mb-14 {
    margin-bottom: 3.5rem;
  }

  .\32xl\:mb-16 {
    margin-bottom: 4rem;
  }

  .\32xl\:mb-2 {
    margin-bottom: 0.5rem;
  }

  .\32xl\:mb-20 {
    margin-bottom: 5rem;
  }

  .\32xl\:mb-24 {
    margin-bottom: 6rem;
  }

  .\32xl\:mb-28 {
    margin-bottom: 7rem;
  }

  .\32xl\:mb-3 {
    margin-bottom: 0.75rem;
  }

  .\32xl\:mb-32 {
    margin-bottom: 8rem;
  }

  .\32xl\:mb-36 {
    margin-bottom: 9rem;
  }

  .\32xl\:mb-4 {
    margin-bottom: 1rem;
  }

  .\32xl\:mb-40 {
    margin-bottom: 10rem;
  }

  .\32xl\:mb-44 {
    margin-bottom: 11rem;
  }

  .\32xl\:mb-48 {
    margin-bottom: 12rem;
  }

  .\32xl\:mb-5 {
    margin-bottom: 1.25rem;
  }

  .\32xl\:mb-52 {
    margin-bottom: 13rem;
  }

  .\32xl\:mb-56 {
    margin-bottom: 14rem;
  }

  .\32xl\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .\32xl\:mb-60 {
    margin-bottom: 15rem;
  }

  .\32xl\:mb-64 {
    margin-bottom: 16rem;
  }

  .\32xl\:mb-7 {
    margin-bottom: 1.75rem;
  }

  .\32xl\:mb-72 {
    margin-bottom: 18rem;
  }

  .\32xl\:mb-8 {
    margin-bottom: 2rem;
  }

  .\32xl\:mb-80 {
    margin-bottom: 20rem;
  }

  .\32xl\:mb-9 {
    margin-bottom: 2.25rem;
  }

  .\32xl\:mb-96 {
    margin-bottom: 24rem;
  }

  .\32xl\:ml-0 {
    margin-left: 0px;
  }

  .\32xl\:ml-1 {
    margin-left: 0.25rem;
  }

  .\32xl\:ml-10 {
    margin-left: 2.5rem;
  }

  .\32xl\:ml-11 {
    margin-left: 2.75rem;
  }

  .\32xl\:ml-12 {
    margin-left: 3rem;
  }

  .\32xl\:ml-14 {
    margin-left: 3.5rem;
  }

  .\32xl\:ml-16 {
    margin-left: 4rem;
  }

  .\32xl\:ml-2 {
    margin-left: 0.5rem;
  }

  .\32xl\:ml-20 {
    margin-left: 5rem;
  }

  .\32xl\:ml-24 {
    margin-left: 6rem;
  }

  .\32xl\:ml-28 {
    margin-left: 7rem;
  }

  .\32xl\:ml-3 {
    margin-left: 0.75rem;
  }

  .\32xl\:ml-32 {
    margin-left: 8rem;
  }

  .\32xl\:ml-36 {
    margin-left: 9rem;
  }

  .\32xl\:ml-4 {
    margin-left: 1rem;
  }

  .\32xl\:ml-40 {
    margin-left: 10rem;
  }

  .\32xl\:ml-44 {
    margin-left: 11rem;
  }

  .\32xl\:ml-48 {
    margin-left: 12rem;
  }

  .\32xl\:ml-5 {
    margin-left: 1.25rem;
  }

  .\32xl\:ml-52 {
    margin-left: 13rem;
  }

  .\32xl\:ml-56 {
    margin-left: 14rem;
  }

  .\32xl\:ml-6 {
    margin-left: 1.5rem;
  }

  .\32xl\:ml-60 {
    margin-left: 15rem;
  }

  .\32xl\:ml-64 {
    margin-left: 16rem;
  }

  .\32xl\:ml-7 {
    margin-left: 1.75rem;
  }

  .\32xl\:ml-72 {
    margin-left: 18rem;
  }

  .\32xl\:ml-8 {
    margin-left: 2rem;
  }

  .\32xl\:ml-80 {
    margin-left: 20rem;
  }

  .\32xl\:ml-9 {
    margin-left: 2.25rem;
  }

  .\32xl\:ml-96 {
    margin-left: 24rem;
  }

  .\32xl\:mr-0 {
    margin-right: 0px;
  }

  .\32xl\:mr-1 {
    margin-right: 0.25rem;
  }

  .\32xl\:mr-10 {
    margin-right: 2.5rem;
  }

  .\32xl\:mr-11 {
    margin-right: 2.75rem;
  }

  .\32xl\:mr-12 {
    margin-right: 3rem;
  }

  .\32xl\:mr-14 {
    margin-right: 3.5rem;
  }

  .\32xl\:mr-16 {
    margin-right: 4rem;
  }

  .\32xl\:mr-2 {
    margin-right: 0.5rem;
  }

  .\32xl\:mr-20 {
    margin-right: 5rem;
  }

  .\32xl\:mr-24 {
    margin-right: 6rem;
  }

  .\32xl\:mr-28 {
    margin-right: 7rem;
  }

  .\32xl\:mr-3 {
    margin-right: 0.75rem;
  }

  .\32xl\:mr-32 {
    margin-right: 8rem;
  }

  .\32xl\:mr-36 {
    margin-right: 9rem;
  }

  .\32xl\:mr-4 {
    margin-right: 1rem;
  }

  .\32xl\:mr-40 {
    margin-right: 10rem;
  }

  .\32xl\:mr-44 {
    margin-right: 11rem;
  }

  .\32xl\:mr-48 {
    margin-right: 12rem;
  }

  .\32xl\:mr-5 {
    margin-right: 1.25rem;
  }

  .\32xl\:mr-52 {
    margin-right: 13rem;
  }

  .\32xl\:mr-56 {
    margin-right: 14rem;
  }

  .\32xl\:mr-6 {
    margin-right: 1.5rem;
  }

  .\32xl\:mr-60 {
    margin-right: 15rem;
  }

  .\32xl\:mr-64 {
    margin-right: 16rem;
  }

  .\32xl\:mr-7 {
    margin-right: 1.75rem;
  }

  .\32xl\:mr-72 {
    margin-right: 18rem;
  }

  .\32xl\:mr-8 {
    margin-right: 2rem;
  }

  .\32xl\:mr-80 {
    margin-right: 20rem;
  }

  .\32xl\:mr-9 {
    margin-right: 2.25rem;
  }

  .\32xl\:mr-96 {
    margin-right: 24rem;
  }

  .\32xl\:mt-0 {
    margin-top: 0px;
  }

  .\32xl\:mt-1 {
    margin-top: 0.25rem;
  }

  .\32xl\:mt-10 {
    margin-top: 2.5rem;
  }

  .\32xl\:mt-11 {
    margin-top: 2.75rem;
  }

  .\32xl\:mt-12 {
    margin-top: 3rem;
  }

  .\32xl\:mt-14 {
    margin-top: 3.5rem;
  }

  .\32xl\:mt-16 {
    margin-top: 4rem;
  }

  .\32xl\:mt-2 {
    margin-top: 0.5rem;
  }

  .\32xl\:mt-20 {
    margin-top: 5rem;
  }

  .\32xl\:mt-24 {
    margin-top: 6rem;
  }

  .\32xl\:mt-28 {
    margin-top: 7rem;
  }

  .\32xl\:mt-3 {
    margin-top: 0.75rem;
  }

  .\32xl\:mt-32 {
    margin-top: 8rem;
  }

  .\32xl\:mt-36 {
    margin-top: 9rem;
  }

  .\32xl\:mt-4 {
    margin-top: 1rem;
  }

  .\32xl\:mt-40 {
    margin-top: 10rem;
  }

  .\32xl\:mt-44 {
    margin-top: 11rem;
  }

  .\32xl\:mt-48 {
    margin-top: 12rem;
  }

  .\32xl\:mt-5 {
    margin-top: 1.25rem;
  }

  .\32xl\:mt-52 {
    margin-top: 13rem;
  }

  .\32xl\:mt-56 {
    margin-top: 14rem;
  }

  .\32xl\:mt-6 {
    margin-top: 1.5rem;
  }

  .\32xl\:mt-60 {
    margin-top: 15rem;
  }

  .\32xl\:mt-64 {
    margin-top: 16rem;
  }

  .\32xl\:mt-7 {
    margin-top: 1.75rem;
  }

  .\32xl\:mt-72 {
    margin-top: 18rem;
  }

  .\32xl\:mt-8 {
    margin-top: 2rem;
  }

  .\32xl\:mt-80 {
    margin-top: 20rem;
  }

  .\32xl\:mt-9 {
    margin-top: 2.25rem;
  }

  .\32xl\:mt-96 {
    margin-top: 24rem;
  }

  .\32xl\:h-0 {
    height: 0px;
  }

  .\32xl\:h-0\.5 {
    height: 0.125rem;
  }

  .\32xl\:h-1 {
    height: 0.25rem;
  }

  .\32xl\:h-1\.5 {
    height: 0.375rem;
  }

  .\32xl\:h-1\/2 {
    height: 50%;
  }

  .\32xl\:h-1\/3 {
    height: 33.333333%;
  }

  .\32xl\:h-1\/4 {
    height: 25%;
  }

  .\32xl\:h-1\/5 {
    height: 20%;
  }

  .\32xl\:h-1\/6 {
    height: 16.666667%;
  }

  .\32xl\:h-10 {
    height: 2.5rem;
  }

  .\32xl\:h-11 {
    height: 2.75rem;
  }

  .\32xl\:h-12 {
    height: 3rem;
  }

  .\32xl\:h-14 {
    height: 3.5rem;
  }

  .\32xl\:h-16 {
    height: 4rem;
  }

  .\32xl\:h-2 {
    height: 0.5rem;
  }

  .\32xl\:h-2\.5 {
    height: 0.625rem;
  }

  .\32xl\:h-2\/3 {
    height: 66.666667%;
  }

  .\32xl\:h-2\/4 {
    height: 50%;
  }

  .\32xl\:h-2\/5 {
    height: 40%;
  }

  .\32xl\:h-2\/6 {
    height: 33.333333%;
  }

  .\32xl\:h-20 {
    height: 5rem;
  }

  .\32xl\:h-24 {
    height: 6rem;
  }

  .\32xl\:h-28 {
    height: 7rem;
  }

  .\32xl\:h-3 {
    height: 0.75rem;
  }

  .\32xl\:h-3\.5 {
    height: 0.875rem;
  }

  .\32xl\:h-3\/4 {
    height: 75%;
  }

  .\32xl\:h-3\/5 {
    height: 60%;
  }

  .\32xl\:h-3\/6 {
    height: 50%;
  }

  .\32xl\:h-32 {
    height: 8rem;
  }

  .\32xl\:h-36 {
    height: 9rem;
  }

  .\32xl\:h-4 {
    height: 1rem;
  }

  .\32xl\:h-4\/5 {
    height: 80%;
  }

  .\32xl\:h-4\/6 {
    height: 66.666667%;
  }

  .\32xl\:h-40 {
    height: 10rem;
  }

  .\32xl\:h-44 {
    height: 11rem;
  }

  .\32xl\:h-48 {
    height: 12rem;
  }

  .\32xl\:h-5 {
    height: 1.25rem;
  }

  .\32xl\:h-5\/6 {
    height: 83.333333%;
  }

  .\32xl\:h-52 {
    height: 13rem;
  }

  .\32xl\:h-56 {
    height: 14rem;
  }

  .\32xl\:h-6 {
    height: 1.5rem;
  }

  .\32xl\:h-60 {
    height: 15rem;
  }

  .\32xl\:h-64 {
    height: 16rem;
  }

  .\32xl\:h-7 {
    height: 1.75rem;
  }

  .\32xl\:h-72 {
    height: 18rem;
  }

  .\32xl\:h-8 {
    height: 2rem;
  }

  .\32xl\:h-80 {
    height: 20rem;
  }

  .\32xl\:h-9 {
    height: 2.25rem;
  }

  .\32xl\:h-96 {
    height: 24rem;
  }

  .\32xl\:h-auto {
    height: auto;
  }

  .\32xl\:h-dvh {
    height: 100dvh;
  }

  .\32xl\:h-fit {
    height: -moz-fit-content;
    height: fit-content;
  }

  .\32xl\:h-full {
    height: 100%;
  }

  .\32xl\:h-lvh {
    height: 100lvh;
  }

  .\32xl\:h-max {
    height: -moz-max-content;
    height: max-content;
  }

  .\32xl\:h-min {
    height: -moz-min-content;
    height: min-content;
  }

  .\32xl\:h-px {
    height: 1px;
  }

  .\32xl\:h-screen {
    height: 100vh;
  }

  .\32xl\:h-svh {
    height: 100svh;
  }

  .\32xl\:max-h-full {
    max-height: 100%;
  }

  .\32xl\:max-h-none {
    max-height: none;
  }

  .\32xl\:min-h-full {
    min-height: 100%;
  }

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

  .\32xl\:w-1\/3 {
    width: 33.333333%;
  }

  .\32xl\:w-1\/4 {
    width: 25%;
  }

  .\32xl\:w-1\/5 {
    width: 20%;
  }

  .\32xl\:w-1\/6 {
    width: 16.666667%;
  }

  .\32xl\:w-full {
    width: 100%;
  }

  .\32xl\:min-w-full {
    min-width: 100%;
  }

  .\32xl\:max-w-full {
    max-width: 100%;
  }

  .\32xl\:max-w-lg {
    max-width: 32rem;
  }

  .\32xl\:max-w-md {
    max-width: 28rem;
  }

  .\32xl\:max-w-none {
    max-width: none;
  }

  .\32xl\:max-w-screen-lg {
    max-width: 1024px;
  }

  .\32xl\:max-w-screen-md {
    max-width: 768px;
  }

  .\32xl\:scale-0 {
    --tw-scale-x: 0;
    --tw-scale-y: 0;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .\32xl\:scale-100 {
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .\32xl\:scale-105 {
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .\32xl\:scale-110 {
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .\32xl\:scale-125 {
    --tw-scale-x: 1.25;
    --tw-scale-y: 1.25;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .\32xl\:scale-150 {
    --tw-scale-x: 1.5;
    --tw-scale-y: 1.5;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .\32xl\:scale-95 {
    --tw-scale-x: .95;
    --tw-scale-y: .95;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .\32xl\:columns-lg {
    -moz-columns: 32rem;
         columns: 32rem;
  }

  .\32xl\:columns-md {
    -moz-columns: 28rem;
         columns: 28rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .\32xl\:gap-1 {
    gap: 0.25rem;
  }

  .\32xl\:gap-10 {
    gap: 2.5rem;
  }

  .\32xl\:gap-11 {
    gap: 2.75rem;
  }

  .\32xl\:gap-12 {
    gap: 3rem;
  }

  .\32xl\:gap-2 {
    gap: 0.5rem;
  }

  .\32xl\:gap-3 {
    gap: 0.75rem;
  }

  .\32xl\:gap-4 {
    gap: 1rem;
  }

  .\32xl\:gap-5 {
    gap: 1.25rem;
  }

  .\32xl\:gap-6 {
    gap: 1.5rem;
  }

  .\32xl\:gap-7 {
    gap: 1.75rem;
  }

  .\32xl\:gap-8 {
    gap: 2rem;
  }

  .\32xl\:gap-9 {
    gap: 2.25rem;
  }

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

  .\32xl\:rounded-md {
    border-radius: calc(var(--radius) - 2px);
  }

  .\32xl\:rounded-b-lg {
    border-bottom-right-radius: var(--radius);
    border-bottom-left-radius: var(--radius);
  }

  .\32xl\:rounded-b-md {
    border-bottom-right-radius: calc(var(--radius) - 2px);
    border-bottom-left-radius: calc(var(--radius) - 2px);
  }

  .\32xl\:rounded-e-lg {
    border-start-end-radius: var(--radius);
    border-end-end-radius: var(--radius);
  }

  .\32xl\:rounded-e-md {
    border-start-end-radius: calc(var(--radius) - 2px);
    border-end-end-radius: calc(var(--radius) - 2px);
  }

  .\32xl\:rounded-l-lg {
    border-top-left-radius: var(--radius);
    border-bottom-left-radius: var(--radius);
  }

  .\32xl\:rounded-l-md {
    border-top-left-radius: calc(var(--radius) - 2px);
    border-bottom-left-radius: calc(var(--radius) - 2px);
  }

  .\32xl\:rounded-r-lg {
    border-top-right-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
  }

  .\32xl\:rounded-r-md {
    border-top-right-radius: calc(var(--radius) - 2px);
    border-bottom-right-radius: calc(var(--radius) - 2px);
  }

  .\32xl\:rounded-s-lg {
    border-start-start-radius: var(--radius);
    border-end-start-radius: var(--radius);
  }

  .\32xl\:rounded-s-md {
    border-start-start-radius: calc(var(--radius) - 2px);
    border-end-start-radius: calc(var(--radius) - 2px);
  }

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

  .\32xl\:rounded-t-md {
    border-top-left-radius: calc(var(--radius) - 2px);
    border-top-right-radius: calc(var(--radius) - 2px);
  }

  .\32xl\:rounded-bl-lg {
    border-bottom-left-radius: var(--radius);
  }

  .\32xl\:rounded-bl-md {
    border-bottom-left-radius: calc(var(--radius) - 2px);
  }

  .\32xl\:rounded-br-lg {
    border-bottom-right-radius: var(--radius);
  }

  .\32xl\:rounded-br-md {
    border-bottom-right-radius: calc(var(--radius) - 2px);
  }

  .\32xl\:rounded-ee-lg {
    border-end-end-radius: var(--radius);
  }

  .\32xl\:rounded-ee-md {
    border-end-end-radius: calc(var(--radius) - 2px);
  }

  .\32xl\:rounded-es-lg {
    border-end-start-radius: var(--radius);
  }

  .\32xl\:rounded-es-md {
    border-end-start-radius: calc(var(--radius) - 2px);
  }

  .\32xl\:rounded-se-lg {
    border-start-end-radius: var(--radius);
  }

  .\32xl\:rounded-se-md {
    border-start-end-radius: calc(var(--radius) - 2px);
  }

  .\32xl\:rounded-ss-lg {
    border-start-start-radius: var(--radius);
  }

  .\32xl\:rounded-ss-md {
    border-start-start-radius: calc(var(--radius) - 2px);
  }

  .\32xl\:rounded-tl-lg {
    border-top-left-radius: var(--radius);
  }

  .\32xl\:rounded-tl-md {
    border-top-left-radius: calc(var(--radius) - 2px);
  }

  .\32xl\:rounded-tr-lg {
    border-top-right-radius: var(--radius);
  }

  .\32xl\:rounded-tr-md {
    border-top-right-radius: calc(var(--radius) - 2px);
  }

  .\32xl\:border-amber-100 {
    --tw-border-opacity: 1;
    border-color: rgb(254 243 199 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-amber-200 {
    --tw-border-opacity: 1;
    border-color: rgb(253 230 138 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-amber-300 {
    --tw-border-opacity: 1;
    border-color: rgb(252 211 77 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-amber-400 {
    --tw-border-opacity: 1;
    border-color: rgb(251 191 36 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-amber-50 {
    --tw-border-opacity: 1;
    border-color: rgb(255 251 235 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-amber-500 {
    --tw-border-opacity: 1;
    border-color: rgb(245 158 11 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-amber-600 {
    --tw-border-opacity: 1;
    border-color: rgb(217 119 6 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-amber-700 {
    --tw-border-opacity: 1;
    border-color: rgb(180 83 9 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-amber-800 {
    --tw-border-opacity: 1;
    border-color: rgb(146 64 14 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-amber-900 {
    --tw-border-opacity: 1;
    border-color: rgb(120 53 15 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-amber-950 {
    --tw-border-opacity: 1;
    border-color: rgb(69 26 3 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-blue-100 {
    --tw-border-opacity: 1;
    border-color: rgb(219 234 254 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-blue-200 {
    --tw-border-opacity: 1;
    border-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-blue-300 {
    --tw-border-opacity: 1;
    border-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-blue-400 {
    --tw-border-opacity: 1;
    border-color: rgb(96 165 250 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-blue-50 {
    --tw-border-opacity: 1;
    border-color: rgb(239 246 255 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-blue-500 {
    --tw-border-opacity: 1;
    border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-blue-600 {
    --tw-border-opacity: 1;
    border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-blue-700 {
    --tw-border-opacity: 1;
    border-color: rgb(29 78 216 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-blue-800 {
    --tw-border-opacity: 1;
    border-color: rgb(30 64 175 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-blue-900 {
    --tw-border-opacity: 1;
    border-color: rgb(30 58 138 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-blue-950 {
    --tw-border-opacity: 1;
    border-color: rgb(23 37 84 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-cyan-100 {
    --tw-border-opacity: 1;
    border-color: rgb(207 250 254 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-cyan-200 {
    --tw-border-opacity: 1;
    border-color: rgb(165 243 252 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-cyan-300 {
    --tw-border-opacity: 1;
    border-color: rgb(103 232 249 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-cyan-400 {
    --tw-border-opacity: 1;
    border-color: rgb(34 211 238 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-cyan-50 {
    --tw-border-opacity: 1;
    border-color: rgb(236 254 255 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-cyan-500 {
    --tw-border-opacity: 1;
    border-color: rgb(6 182 212 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-cyan-600 {
    --tw-border-opacity: 1;
    border-color: rgb(8 145 178 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-cyan-700 {
    --tw-border-opacity: 1;
    border-color: rgb(14 116 144 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-cyan-800 {
    --tw-border-opacity: 1;
    border-color: rgb(21 94 117 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-cyan-900 {
    --tw-border-opacity: 1;
    border-color: rgb(22 78 99 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-cyan-950 {
    --tw-border-opacity: 1;
    border-color: rgb(8 51 68 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-emerald-100 {
    --tw-border-opacity: 1;
    border-color: rgb(209 250 229 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-emerald-200 {
    --tw-border-opacity: 1;
    border-color: rgb(167 243 208 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-emerald-300 {
    --tw-border-opacity: 1;
    border-color: rgb(110 231 183 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-emerald-400 {
    --tw-border-opacity: 1;
    border-color: rgb(52 211 153 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-emerald-50 {
    --tw-border-opacity: 1;
    border-color: rgb(236 253 245 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-emerald-500 {
    --tw-border-opacity: 1;
    border-color: rgb(16 185 129 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-emerald-600 {
    --tw-border-opacity: 1;
    border-color: rgb(5 150 105 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-emerald-700 {
    --tw-border-opacity: 1;
    border-color: rgb(4 120 87 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-emerald-800 {
    --tw-border-opacity: 1;
    border-color: rgb(6 95 70 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-emerald-900 {
    --tw-border-opacity: 1;
    border-color: rgb(6 78 59 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-emerald-950 {
    --tw-border-opacity: 1;
    border-color: rgb(2 44 34 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-fuchsia-100 {
    --tw-border-opacity: 1;
    border-color: rgb(250 232 255 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-fuchsia-200 {
    --tw-border-opacity: 1;
    border-color: rgb(245 208 254 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-fuchsia-300 {
    --tw-border-opacity: 1;
    border-color: rgb(240 171 252 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-fuchsia-400 {
    --tw-border-opacity: 1;
    border-color: rgb(232 121 249 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-fuchsia-50 {
    --tw-border-opacity: 1;
    border-color: rgb(253 244 255 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-fuchsia-500 {
    --tw-border-opacity: 1;
    border-color: rgb(217 70 239 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-fuchsia-600 {
    --tw-border-opacity: 1;
    border-color: rgb(192 38 211 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-fuchsia-700 {
    --tw-border-opacity: 1;
    border-color: rgb(162 28 175 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-fuchsia-800 {
    --tw-border-opacity: 1;
    border-color: rgb(134 25 143 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-fuchsia-900 {
    --tw-border-opacity: 1;
    border-color: rgb(112 26 117 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-fuchsia-950 {
    --tw-border-opacity: 1;
    border-color: rgb(74 4 78 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-gray-100 {
    --tw-border-opacity: 1;
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-gray-200 {
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-gray-300 {
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-gray-400 {
    --tw-border-opacity: 1;
    border-color: rgb(156 163 175 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-gray-50 {
    --tw-border-opacity: 1;
    border-color: rgb(249 250 251 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-gray-500 {
    --tw-border-opacity: 1;
    border-color: rgb(107 114 128 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-gray-600 {
    --tw-border-opacity: 1;
    border-color: rgb(75 85 99 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-gray-700 {
    --tw-border-opacity: 1;
    border-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-gray-800 {
    --tw-border-opacity: 1;
    border-color: rgb(31 41 55 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-gray-900 {
    --tw-border-opacity: 1;
    border-color: rgb(17 24 39 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-gray-950 {
    --tw-border-opacity: 1;
    border-color: rgb(3 7 18 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-green-100 {
    --tw-border-opacity: 1;
    border-color: rgb(220 252 231 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-green-200 {
    --tw-border-opacity: 1;
    border-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-green-300 {
    --tw-border-opacity: 1;
    border-color: rgb(134 239 172 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-green-400 {
    --tw-border-opacity: 1;
    border-color: rgb(74 222 128 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-green-50 {
    --tw-border-opacity: 1;
    border-color: rgb(240 253 244 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-green-500 {
    --tw-border-opacity: 1;
    border-color: rgb(34 197 94 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-green-600 {
    --tw-border-opacity: 1;
    border-color: rgb(22 163 74 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-green-700 {
    --tw-border-opacity: 1;
    border-color: rgb(21 128 61 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-green-800 {
    --tw-border-opacity: 1;
    border-color: rgb(22 101 52 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-green-900 {
    --tw-border-opacity: 1;
    border-color: rgb(20 83 45 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-green-950 {
    --tw-border-opacity: 1;
    border-color: rgb(5 46 22 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-indigo-100 {
    --tw-border-opacity: 1;
    border-color: rgb(224 231 255 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-indigo-200 {
    --tw-border-opacity: 1;
    border-color: rgb(199 210 254 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-indigo-300 {
    --tw-border-opacity: 1;
    border-color: rgb(165 180 252 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-indigo-400 {
    --tw-border-opacity: 1;
    border-color: rgb(129 140 248 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-indigo-50 {
    --tw-border-opacity: 1;
    border-color: rgb(238 242 255 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-indigo-500 {
    --tw-border-opacity: 1;
    border-color: rgb(99 102 241 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-indigo-600 {
    --tw-border-opacity: 1;
    border-color: rgb(79 70 229 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-indigo-700 {
    --tw-border-opacity: 1;
    border-color: rgb(67 56 202 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-indigo-800 {
    --tw-border-opacity: 1;
    border-color: rgb(55 48 163 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-indigo-900 {
    --tw-border-opacity: 1;
    border-color: rgb(49 46 129 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-indigo-950 {
    --tw-border-opacity: 1;
    border-color: rgb(30 27 75 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-lime-100 {
    --tw-border-opacity: 1;
    border-color: rgb(236 252 203 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-lime-200 {
    --tw-border-opacity: 1;
    border-color: rgb(217 249 157 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-lime-300 {
    --tw-border-opacity: 1;
    border-color: rgb(190 242 100 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-lime-400 {
    --tw-border-opacity: 1;
    border-color: rgb(163 230 53 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-lime-50 {
    --tw-border-opacity: 1;
    border-color: rgb(247 254 231 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-lime-500 {
    --tw-border-opacity: 1;
    border-color: rgb(132 204 22 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-lime-600 {
    --tw-border-opacity: 1;
    border-color: rgb(101 163 13 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-lime-700 {
    --tw-border-opacity: 1;
    border-color: rgb(77 124 15 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-lime-800 {
    --tw-border-opacity: 1;
    border-color: rgb(63 98 18 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-lime-900 {
    --tw-border-opacity: 1;
    border-color: rgb(54 83 20 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-lime-950 {
    --tw-border-opacity: 1;
    border-color: rgb(26 46 5 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-neutral-100 {
    --tw-border-opacity: 1;
    border-color: rgb(245 245 245 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-neutral-200 {
    --tw-border-opacity: 1;
    border-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-neutral-300 {
    --tw-border-opacity: 1;
    border-color: rgb(212 212 212 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-neutral-400 {
    --tw-border-opacity: 1;
    border-color: rgb(163 163 163 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-neutral-50 {
    --tw-border-opacity: 1;
    border-color: rgb(250 250 250 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-neutral-500 {
    --tw-border-opacity: 1;
    border-color: rgb(115 115 115 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-neutral-600 {
    --tw-border-opacity: 1;
    border-color: rgb(82 82 82 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-neutral-700 {
    --tw-border-opacity: 1;
    border-color: rgb(64 64 64 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-neutral-800 {
    --tw-border-opacity: 1;
    border-color: rgb(38 38 38 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-neutral-900 {
    --tw-border-opacity: 1;
    border-color: rgb(23 23 23 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-neutral-950 {
    --tw-border-opacity: 1;
    border-color: rgb(10 10 10 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-orange-100 {
    --tw-border-opacity: 1;
    border-color: rgb(255 237 213 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-orange-200 {
    --tw-border-opacity: 1;
    border-color: rgb(254 215 170 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-orange-300 {
    --tw-border-opacity: 1;
    border-color: rgb(253 186 116 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-orange-400 {
    --tw-border-opacity: 1;
    border-color: rgb(251 146 60 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-orange-50 {
    --tw-border-opacity: 1;
    border-color: rgb(255 247 237 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-orange-500 {
    --tw-border-opacity: 1;
    border-color: rgb(249 115 22 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-orange-600 {
    --tw-border-opacity: 1;
    border-color: rgb(234 88 12 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-orange-700 {
    --tw-border-opacity: 1;
    border-color: rgb(194 65 12 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-orange-800 {
    --tw-border-opacity: 1;
    border-color: rgb(154 52 18 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-orange-900 {
    --tw-border-opacity: 1;
    border-color: rgb(124 45 18 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-orange-950 {
    --tw-border-opacity: 1;
    border-color: rgb(67 20 7 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-pink-100 {
    --tw-border-opacity: 1;
    border-color: rgb(252 231 243 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-pink-200 {
    --tw-border-opacity: 1;
    border-color: rgb(251 207 232 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-pink-300 {
    --tw-border-opacity: 1;
    border-color: rgb(249 168 212 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-pink-400 {
    --tw-border-opacity: 1;
    border-color: rgb(244 114 182 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-pink-50 {
    --tw-border-opacity: 1;
    border-color: rgb(253 242 248 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-pink-500 {
    --tw-border-opacity: 1;
    border-color: rgb(236 72 153 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-pink-600 {
    --tw-border-opacity: 1;
    border-color: rgb(219 39 119 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-pink-700 {
    --tw-border-opacity: 1;
    border-color: rgb(190 24 93 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-pink-800 {
    --tw-border-opacity: 1;
    border-color: rgb(157 23 77 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-pink-900 {
    --tw-border-opacity: 1;
    border-color: rgb(131 24 67 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-pink-950 {
    --tw-border-opacity: 1;
    border-color: rgb(80 7 36 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-purple-100 {
    --tw-border-opacity: 1;
    border-color: rgb(243 232 255 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-purple-200 {
    --tw-border-opacity: 1;
    border-color: rgb(233 213 255 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-purple-300 {
    --tw-border-opacity: 1;
    border-color: rgb(216 180 254 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-purple-400 {
    --tw-border-opacity: 1;
    border-color: rgb(192 132 252 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-purple-50 {
    --tw-border-opacity: 1;
    border-color: rgb(250 245 255 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-purple-500 {
    --tw-border-opacity: 1;
    border-color: rgb(168 85 247 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-purple-600 {
    --tw-border-opacity: 1;
    border-color: rgb(147 51 234 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-purple-700 {
    --tw-border-opacity: 1;
    border-color: rgb(126 34 206 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-purple-800 {
    --tw-border-opacity: 1;
    border-color: rgb(107 33 168 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-purple-900 {
    --tw-border-opacity: 1;
    border-color: rgb(88 28 135 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-purple-950 {
    --tw-border-opacity: 1;
    border-color: rgb(59 7 100 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-red-100 {
    --tw-border-opacity: 1;
    border-color: rgb(254 226 226 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-red-200 {
    --tw-border-opacity: 1;
    border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-red-300 {
    --tw-border-opacity: 1;
    border-color: rgb(252 165 165 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-red-400 {
    --tw-border-opacity: 1;
    border-color: rgb(248 113 113 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-red-50 {
    --tw-border-opacity: 1;
    border-color: rgb(254 242 242 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-red-500 {
    --tw-border-opacity: 1;
    border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-red-600 {
    --tw-border-opacity: 1;
    border-color: rgb(220 38 38 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-red-700 {
    --tw-border-opacity: 1;
    border-color: rgb(185 28 28 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-red-800 {
    --tw-border-opacity: 1;
    border-color: rgb(153 27 27 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-red-900 {
    --tw-border-opacity: 1;
    border-color: rgb(127 29 29 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-red-950 {
    --tw-border-opacity: 1;
    border-color: rgb(69 10 10 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-rose-100 {
    --tw-border-opacity: 1;
    border-color: rgb(255 228 230 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-rose-200 {
    --tw-border-opacity: 1;
    border-color: rgb(254 205 211 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-rose-300 {
    --tw-border-opacity: 1;
    border-color: rgb(253 164 175 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-rose-400 {
    --tw-border-opacity: 1;
    border-color: rgb(251 113 133 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-rose-50 {
    --tw-border-opacity: 1;
    border-color: rgb(255 241 242 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-rose-500 {
    --tw-border-opacity: 1;
    border-color: rgb(244 63 94 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-rose-600 {
    --tw-border-opacity: 1;
    border-color: rgb(225 29 72 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-rose-700 {
    --tw-border-opacity: 1;
    border-color: rgb(190 18 60 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-rose-800 {
    --tw-border-opacity: 1;
    border-color: rgb(159 18 57 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-rose-900 {
    --tw-border-opacity: 1;
    border-color: rgb(136 19 55 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-rose-950 {
    --tw-border-opacity: 1;
    border-color: rgb(76 5 25 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-sky-100 {
    --tw-border-opacity: 1;
    border-color: rgb(224 242 254 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-sky-200 {
    --tw-border-opacity: 1;
    border-color: rgb(186 230 253 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-sky-300 {
    --tw-border-opacity: 1;
    border-color: rgb(125 211 252 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-sky-400 {
    --tw-border-opacity: 1;
    border-color: rgb(56 189 248 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-sky-50 {
    --tw-border-opacity: 1;
    border-color: rgb(240 249 255 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-sky-500 {
    --tw-border-opacity: 1;
    border-color: rgb(14 165 233 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-sky-600 {
    --tw-border-opacity: 1;
    border-color: rgb(2 132 199 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-sky-700 {
    --tw-border-opacity: 1;
    border-color: rgb(3 105 161 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-sky-800 {
    --tw-border-opacity: 1;
    border-color: rgb(7 89 133 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-sky-900 {
    --tw-border-opacity: 1;
    border-color: rgb(12 74 110 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-sky-950 {
    --tw-border-opacity: 1;
    border-color: rgb(8 47 73 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-slate-100 {
    --tw-border-opacity: 1;
    border-color: rgb(241 245 249 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-slate-200 {
    --tw-border-opacity: 1;
    border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-slate-300 {
    --tw-border-opacity: 1;
    border-color: rgb(203 213 225 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-slate-400 {
    --tw-border-opacity: 1;
    border-color: rgb(148 163 184 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-slate-50 {
    --tw-border-opacity: 1;
    border-color: rgb(248 250 252 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-slate-500 {
    --tw-border-opacity: 1;
    border-color: rgb(100 116 139 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-slate-600 {
    --tw-border-opacity: 1;
    border-color: rgb(71 85 105 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-slate-700 {
    --tw-border-opacity: 1;
    border-color: rgb(51 65 85 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-slate-800 {
    --tw-border-opacity: 1;
    border-color: rgb(30 41 59 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-slate-900 {
    --tw-border-opacity: 1;
    border-color: rgb(15 23 42 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-slate-950 {
    --tw-border-opacity: 1;
    border-color: rgb(2 6 23 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-stone-100 {
    --tw-border-opacity: 1;
    border-color: rgb(245 245 244 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-stone-200 {
    --tw-border-opacity: 1;
    border-color: rgb(231 229 228 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-stone-300 {
    --tw-border-opacity: 1;
    border-color: rgb(214 211 209 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-stone-400 {
    --tw-border-opacity: 1;
    border-color: rgb(168 162 158 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-stone-50 {
    --tw-border-opacity: 1;
    border-color: rgb(250 250 249 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-stone-500 {
    --tw-border-opacity: 1;
    border-color: rgb(120 113 108 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-stone-600 {
    --tw-border-opacity: 1;
    border-color: rgb(87 83 78 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-stone-700 {
    --tw-border-opacity: 1;
    border-color: rgb(68 64 60 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-stone-800 {
    --tw-border-opacity: 1;
    border-color: rgb(41 37 36 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-stone-900 {
    --tw-border-opacity: 1;
    border-color: rgb(28 25 23 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-stone-950 {
    --tw-border-opacity: 1;
    border-color: rgb(12 10 9 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-teal-100 {
    --tw-border-opacity: 1;
    border-color: rgb(204 251 241 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-teal-200 {
    --tw-border-opacity: 1;
    border-color: rgb(153 246 228 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-teal-300 {
    --tw-border-opacity: 1;
    border-color: rgb(94 234 212 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-teal-400 {
    --tw-border-opacity: 1;
    border-color: rgb(45 212 191 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-teal-50 {
    --tw-border-opacity: 1;
    border-color: rgb(240 253 250 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-teal-500 {
    --tw-border-opacity: 1;
    border-color: rgb(20 184 166 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-teal-600 {
    --tw-border-opacity: 1;
    border-color: rgb(13 148 136 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-teal-700 {
    --tw-border-opacity: 1;
    border-color: rgb(15 118 110 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-teal-800 {
    --tw-border-opacity: 1;
    border-color: rgb(17 94 89 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-teal-900 {
    --tw-border-opacity: 1;
    border-color: rgb(19 78 74 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-teal-950 {
    --tw-border-opacity: 1;
    border-color: rgb(4 47 46 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-violet-100 {
    --tw-border-opacity: 1;
    border-color: rgb(237 233 254 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-violet-200 {
    --tw-border-opacity: 1;
    border-color: rgb(221 214 254 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-violet-300 {
    --tw-border-opacity: 1;
    border-color: rgb(196 181 253 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-violet-400 {
    --tw-border-opacity: 1;
    border-color: rgb(167 139 250 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-violet-50 {
    --tw-border-opacity: 1;
    border-color: rgb(245 243 255 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-violet-500 {
    --tw-border-opacity: 1;
    border-color: rgb(139 92 246 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-violet-600 {
    --tw-border-opacity: 1;
    border-color: rgb(124 58 237 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-violet-700 {
    --tw-border-opacity: 1;
    border-color: rgb(109 40 217 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-violet-800 {
    --tw-border-opacity: 1;
    border-color: rgb(91 33 182 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-violet-900 {
    --tw-border-opacity: 1;
    border-color: rgb(76 29 149 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-violet-950 {
    --tw-border-opacity: 1;
    border-color: rgb(46 16 101 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-yellow-100 {
    --tw-border-opacity: 1;
    border-color: rgb(254 249 195 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-yellow-200 {
    --tw-border-opacity: 1;
    border-color: rgb(254 240 138 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-yellow-300 {
    --tw-border-opacity: 1;
    border-color: rgb(253 224 71 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-yellow-400 {
    --tw-border-opacity: 1;
    border-color: rgb(250 204 21 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-yellow-50 {
    --tw-border-opacity: 1;
    border-color: rgb(254 252 232 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-yellow-500 {
    --tw-border-opacity: 1;
    border-color: rgb(234 179 8 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-yellow-600 {
    --tw-border-opacity: 1;
    border-color: rgb(202 138 4 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-yellow-700 {
    --tw-border-opacity: 1;
    border-color: rgb(161 98 7 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-yellow-800 {
    --tw-border-opacity: 1;
    border-color: rgb(133 77 14 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-yellow-900 {
    --tw-border-opacity: 1;
    border-color: rgb(113 63 18 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-yellow-950 {
    --tw-border-opacity: 1;
    border-color: rgb(66 32 6 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-zinc-100 {
    --tw-border-opacity: 1;
    border-color: rgb(244 244 245 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-zinc-200 {
    --tw-border-opacity: 1;
    border-color: rgb(228 228 231 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-zinc-300 {
    --tw-border-opacity: 1;
    border-color: rgb(212 212 216 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-zinc-400 {
    --tw-border-opacity: 1;
    border-color: rgb(161 161 170 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-zinc-50 {
    --tw-border-opacity: 1;
    border-color: rgb(250 250 250 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-zinc-500 {
    --tw-border-opacity: 1;
    border-color: rgb(113 113 122 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-zinc-600 {
    --tw-border-opacity: 1;
    border-color: rgb(82 82 91 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-zinc-700 {
    --tw-border-opacity: 1;
    border-color: rgb(63 63 70 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-zinc-800 {
    --tw-border-opacity: 1;
    border-color: rgb(39 39 42 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-zinc-900 {
    --tw-border-opacity: 1;
    border-color: rgb(24 24 27 / var(--tw-border-opacity, 1));
  }

  .\32xl\:border-zinc-950 {
    --tw-border-opacity: 1;
    border-color: rgb(9 9 11 / var(--tw-border-opacity, 1));
  }

  .\32xl\:bg-amber-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 243 199 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-amber-100\/10 {
    background-color: rgb(254 243 199 / 0.1);
  }

  .\32xl\:bg-amber-100\/20 {
    background-color: rgb(254 243 199 / 0.2);
  }

  .\32xl\:bg-amber-100\/30 {
    background-color: rgb(254 243 199 / 0.3);
  }

  .\32xl\:bg-amber-100\/40 {
    background-color: rgb(254 243 199 / 0.4);
  }

  .\32xl\:bg-amber-100\/5 {
    background-color: rgb(254 243 199 / 0.05);
  }

  .\32xl\:bg-amber-100\/50 {
    background-color: rgb(254 243 199 / 0.5);
  }

  .\32xl\:bg-amber-100\/60 {
    background-color: rgb(254 243 199 / 0.6);
  }

  .\32xl\:bg-amber-100\/70 {
    background-color: rgb(254 243 199 / 0.7);
  }

  .\32xl\:bg-amber-100\/80 {
    background-color: rgb(254 243 199 / 0.8);
  }

  .\32xl\:bg-amber-100\/90 {
    background-color: rgb(254 243 199 / 0.9);
  }

  .\32xl\:bg-amber-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(253 230 138 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-amber-200\/10 {
    background-color: rgb(253 230 138 / 0.1);
  }

  .\32xl\:bg-amber-200\/20 {
    background-color: rgb(253 230 138 / 0.2);
  }

  .\32xl\:bg-amber-200\/30 {
    background-color: rgb(253 230 138 / 0.3);
  }

  .\32xl\:bg-amber-200\/40 {
    background-color: rgb(253 230 138 / 0.4);
  }

  .\32xl\:bg-amber-200\/5 {
    background-color: rgb(253 230 138 / 0.05);
  }

  .\32xl\:bg-amber-200\/50 {
    background-color: rgb(253 230 138 / 0.5);
  }

  .\32xl\:bg-amber-200\/60 {
    background-color: rgb(253 230 138 / 0.6);
  }

  .\32xl\:bg-amber-200\/70 {
    background-color: rgb(253 230 138 / 0.7);
  }

  .\32xl\:bg-amber-200\/80 {
    background-color: rgb(253 230 138 / 0.8);
  }

  .\32xl\:bg-amber-200\/90 {
    background-color: rgb(253 230 138 / 0.9);
  }

  .\32xl\:bg-amber-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(252 211 77 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-amber-300\/10 {
    background-color: rgb(252 211 77 / 0.1);
  }

  .\32xl\:bg-amber-300\/20 {
    background-color: rgb(252 211 77 / 0.2);
  }

  .\32xl\:bg-amber-300\/30 {
    background-color: rgb(252 211 77 / 0.3);
  }

  .\32xl\:bg-amber-300\/40 {
    background-color: rgb(252 211 77 / 0.4);
  }

  .\32xl\:bg-amber-300\/5 {
    background-color: rgb(252 211 77 / 0.05);
  }

  .\32xl\:bg-amber-300\/50 {
    background-color: rgb(252 211 77 / 0.5);
  }

  .\32xl\:bg-amber-300\/60 {
    background-color: rgb(252 211 77 / 0.6);
  }

  .\32xl\:bg-amber-300\/70 {
    background-color: rgb(252 211 77 / 0.7);
  }

  .\32xl\:bg-amber-300\/80 {
    background-color: rgb(252 211 77 / 0.8);
  }

  .\32xl\:bg-amber-300\/90 {
    background-color: rgb(252 211 77 / 0.9);
  }

  .\32xl\:bg-amber-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(251 191 36 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-amber-400\/10 {
    background-color: rgb(251 191 36 / 0.1);
  }

  .\32xl\:bg-amber-400\/20 {
    background-color: rgb(251 191 36 / 0.2);
  }

  .\32xl\:bg-amber-400\/30 {
    background-color: rgb(251 191 36 / 0.3);
  }

  .\32xl\:bg-amber-400\/40 {
    background-color: rgb(251 191 36 / 0.4);
  }

  .\32xl\:bg-amber-400\/5 {
    background-color: rgb(251 191 36 / 0.05);
  }

  .\32xl\:bg-amber-400\/50 {
    background-color: rgb(251 191 36 / 0.5);
  }

  .\32xl\:bg-amber-400\/60 {
    background-color: rgb(251 191 36 / 0.6);
  }

  .\32xl\:bg-amber-400\/70 {
    background-color: rgb(251 191 36 / 0.7);
  }

  .\32xl\:bg-amber-400\/80 {
    background-color: rgb(251 191 36 / 0.8);
  }

  .\32xl\:bg-amber-400\/90 {
    background-color: rgb(251 191 36 / 0.9);
  }

  .\32xl\:bg-amber-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 251 235 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-amber-50\/10 {
    background-color: rgb(255 251 235 / 0.1);
  }

  .\32xl\:bg-amber-50\/20 {
    background-color: rgb(255 251 235 / 0.2);
  }

  .\32xl\:bg-amber-50\/30 {
    background-color: rgb(255 251 235 / 0.3);
  }

  .\32xl\:bg-amber-50\/40 {
    background-color: rgb(255 251 235 / 0.4);
  }

  .\32xl\:bg-amber-50\/5 {
    background-color: rgb(255 251 235 / 0.05);
  }

  .\32xl\:bg-amber-50\/50 {
    background-color: rgb(255 251 235 / 0.5);
  }

  .\32xl\:bg-amber-50\/60 {
    background-color: rgb(255 251 235 / 0.6);
  }

  .\32xl\:bg-amber-50\/70 {
    background-color: rgb(255 251 235 / 0.7);
  }

  .\32xl\:bg-amber-50\/80 {
    background-color: rgb(255 251 235 / 0.8);
  }

  .\32xl\:bg-amber-50\/90 {
    background-color: rgb(255 251 235 / 0.9);
  }

  .\32xl\:bg-amber-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(245 158 11 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-amber-500\/10 {
    background-color: rgb(245 158 11 / 0.1);
  }

  .\32xl\:bg-amber-500\/20 {
    background-color: rgb(245 158 11 / 0.2);
  }

  .\32xl\:bg-amber-500\/30 {
    background-color: rgb(245 158 11 / 0.3);
  }

  .\32xl\:bg-amber-500\/40 {
    background-color: rgb(245 158 11 / 0.4);
  }

  .\32xl\:bg-amber-500\/5 {
    background-color: rgb(245 158 11 / 0.05);
  }

  .\32xl\:bg-amber-500\/50 {
    background-color: rgb(245 158 11 / 0.5);
  }

  .\32xl\:bg-amber-500\/60 {
    background-color: rgb(245 158 11 / 0.6);
  }

  .\32xl\:bg-amber-500\/70 {
    background-color: rgb(245 158 11 / 0.7);
  }

  .\32xl\:bg-amber-500\/80 {
    background-color: rgb(245 158 11 / 0.8);
  }

  .\32xl\:bg-amber-500\/90 {
    background-color: rgb(245 158 11 / 0.9);
  }

  .\32xl\:bg-amber-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(217 119 6 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-amber-600\/10 {
    background-color: rgb(217 119 6 / 0.1);
  }

  .\32xl\:bg-amber-600\/20 {
    background-color: rgb(217 119 6 / 0.2);
  }

  .\32xl\:bg-amber-600\/30 {
    background-color: rgb(217 119 6 / 0.3);
  }

  .\32xl\:bg-amber-600\/40 {
    background-color: rgb(217 119 6 / 0.4);
  }

  .\32xl\:bg-amber-600\/5 {
    background-color: rgb(217 119 6 / 0.05);
  }

  .\32xl\:bg-amber-600\/50 {
    background-color: rgb(217 119 6 / 0.5);
  }

  .\32xl\:bg-amber-600\/60 {
    background-color: rgb(217 119 6 / 0.6);
  }

  .\32xl\:bg-amber-600\/70 {
    background-color: rgb(217 119 6 / 0.7);
  }

  .\32xl\:bg-amber-600\/80 {
    background-color: rgb(217 119 6 / 0.8);
  }

  .\32xl\:bg-amber-600\/90 {
    background-color: rgb(217 119 6 / 0.9);
  }

  .\32xl\:bg-amber-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(180 83 9 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-amber-700\/10 {
    background-color: rgb(180 83 9 / 0.1);
  }

  .\32xl\:bg-amber-700\/20 {
    background-color: rgb(180 83 9 / 0.2);
  }

  .\32xl\:bg-amber-700\/30 {
    background-color: rgb(180 83 9 / 0.3);
  }

  .\32xl\:bg-amber-700\/40 {
    background-color: rgb(180 83 9 / 0.4);
  }

  .\32xl\:bg-amber-700\/5 {
    background-color: rgb(180 83 9 / 0.05);
  }

  .\32xl\:bg-amber-700\/50 {
    background-color: rgb(180 83 9 / 0.5);
  }

  .\32xl\:bg-amber-700\/60 {
    background-color: rgb(180 83 9 / 0.6);
  }

  .\32xl\:bg-amber-700\/70 {
    background-color: rgb(180 83 9 / 0.7);
  }

  .\32xl\:bg-amber-700\/80 {
    background-color: rgb(180 83 9 / 0.8);
  }

  .\32xl\:bg-amber-700\/90 {
    background-color: rgb(180 83 9 / 0.9);
  }

  .\32xl\:bg-amber-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(146 64 14 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-amber-800\/10 {
    background-color: rgb(146 64 14 / 0.1);
  }

  .\32xl\:bg-amber-800\/20 {
    background-color: rgb(146 64 14 / 0.2);
  }

  .\32xl\:bg-amber-800\/30 {
    background-color: rgb(146 64 14 / 0.3);
  }

  .\32xl\:bg-amber-800\/40 {
    background-color: rgb(146 64 14 / 0.4);
  }

  .\32xl\:bg-amber-800\/5 {
    background-color: rgb(146 64 14 / 0.05);
  }

  .\32xl\:bg-amber-800\/50 {
    background-color: rgb(146 64 14 / 0.5);
  }

  .\32xl\:bg-amber-800\/60 {
    background-color: rgb(146 64 14 / 0.6);
  }

  .\32xl\:bg-amber-800\/70 {
    background-color: rgb(146 64 14 / 0.7);
  }

  .\32xl\:bg-amber-800\/80 {
    background-color: rgb(146 64 14 / 0.8);
  }

  .\32xl\:bg-amber-800\/90 {
    background-color: rgb(146 64 14 / 0.9);
  }

  .\32xl\:bg-amber-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(120 53 15 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-amber-900\/10 {
    background-color: rgb(120 53 15 / 0.1);
  }

  .\32xl\:bg-amber-900\/20 {
    background-color: rgb(120 53 15 / 0.2);
  }

  .\32xl\:bg-amber-900\/30 {
    background-color: rgb(120 53 15 / 0.3);
  }

  .\32xl\:bg-amber-900\/40 {
    background-color: rgb(120 53 15 / 0.4);
  }

  .\32xl\:bg-amber-900\/5 {
    background-color: rgb(120 53 15 / 0.05);
  }

  .\32xl\:bg-amber-900\/50 {
    background-color: rgb(120 53 15 / 0.5);
  }

  .\32xl\:bg-amber-900\/60 {
    background-color: rgb(120 53 15 / 0.6);
  }

  .\32xl\:bg-amber-900\/70 {
    background-color: rgb(120 53 15 / 0.7);
  }

  .\32xl\:bg-amber-900\/80 {
    background-color: rgb(120 53 15 / 0.8);
  }

  .\32xl\:bg-amber-900\/90 {
    background-color: rgb(120 53 15 / 0.9);
  }

  .\32xl\:bg-amber-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(69 26 3 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-amber-950\/10 {
    background-color: rgb(69 26 3 / 0.1);
  }

  .\32xl\:bg-amber-950\/20 {
    background-color: rgb(69 26 3 / 0.2);
  }

  .\32xl\:bg-amber-950\/30 {
    background-color: rgb(69 26 3 / 0.3);
  }

  .\32xl\:bg-amber-950\/40 {
    background-color: rgb(69 26 3 / 0.4);
  }

  .\32xl\:bg-amber-950\/5 {
    background-color: rgb(69 26 3 / 0.05);
  }

  .\32xl\:bg-amber-950\/50 {
    background-color: rgb(69 26 3 / 0.5);
  }

  .\32xl\:bg-amber-950\/60 {
    background-color: rgb(69 26 3 / 0.6);
  }

  .\32xl\:bg-amber-950\/70 {
    background-color: rgb(69 26 3 / 0.7);
  }

  .\32xl\:bg-amber-950\/80 {
    background-color: rgb(69 26 3 / 0.8);
  }

  .\32xl\:bg-amber-950\/90 {
    background-color: rgb(69 26 3 / 0.9);
  }

  .\32xl\:bg-blue-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-blue-100\/10 {
    background-color: rgb(219 234 254 / 0.1);
  }

  .\32xl\:bg-blue-100\/20 {
    background-color: rgb(219 234 254 / 0.2);
  }

  .\32xl\:bg-blue-100\/30 {
    background-color: rgb(219 234 254 / 0.3);
  }

  .\32xl\:bg-blue-100\/40 {
    background-color: rgb(219 234 254 / 0.4);
  }

  .\32xl\:bg-blue-100\/5 {
    background-color: rgb(219 234 254 / 0.05);
  }

  .\32xl\:bg-blue-100\/50 {
    background-color: rgb(219 234 254 / 0.5);
  }

  .\32xl\:bg-blue-100\/60 {
    background-color: rgb(219 234 254 / 0.6);
  }

  .\32xl\:bg-blue-100\/70 {
    background-color: rgb(219 234 254 / 0.7);
  }

  .\32xl\:bg-blue-100\/80 {
    background-color: rgb(219 234 254 / 0.8);
  }

  .\32xl\:bg-blue-100\/90 {
    background-color: rgb(219 234 254 / 0.9);
  }

  .\32xl\:bg-blue-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(191 219 254 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-blue-200\/10 {
    background-color: rgb(191 219 254 / 0.1);
  }

  .\32xl\:bg-blue-200\/20 {
    background-color: rgb(191 219 254 / 0.2);
  }

  .\32xl\:bg-blue-200\/30 {
    background-color: rgb(191 219 254 / 0.3);
  }

  .\32xl\:bg-blue-200\/40 {
    background-color: rgb(191 219 254 / 0.4);
  }

  .\32xl\:bg-blue-200\/5 {
    background-color: rgb(191 219 254 / 0.05);
  }

  .\32xl\:bg-blue-200\/50 {
    background-color: rgb(191 219 254 / 0.5);
  }

  .\32xl\:bg-blue-200\/60 {
    background-color: rgb(191 219 254 / 0.6);
  }

  .\32xl\:bg-blue-200\/70 {
    background-color: rgb(191 219 254 / 0.7);
  }

  .\32xl\:bg-blue-200\/80 {
    background-color: rgb(191 219 254 / 0.8);
  }

  .\32xl\:bg-blue-200\/90 {
    background-color: rgb(191 219 254 / 0.9);
  }

  .\32xl\:bg-blue-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(147 197 253 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-blue-300\/10 {
    background-color: rgb(147 197 253 / 0.1);
  }

  .\32xl\:bg-blue-300\/20 {
    background-color: rgb(147 197 253 / 0.2);
  }

  .\32xl\:bg-blue-300\/30 {
    background-color: rgb(147 197 253 / 0.3);
  }

  .\32xl\:bg-blue-300\/40 {
    background-color: rgb(147 197 253 / 0.4);
  }

  .\32xl\:bg-blue-300\/5 {
    background-color: rgb(147 197 253 / 0.05);
  }

  .\32xl\:bg-blue-300\/50 {
    background-color: rgb(147 197 253 / 0.5);
  }

  .\32xl\:bg-blue-300\/60 {
    background-color: rgb(147 197 253 / 0.6);
  }

  .\32xl\:bg-blue-300\/70 {
    background-color: rgb(147 197 253 / 0.7);
  }

  .\32xl\:bg-blue-300\/80 {
    background-color: rgb(147 197 253 / 0.8);
  }

  .\32xl\:bg-blue-300\/90 {
    background-color: rgb(147 197 253 / 0.9);
  }

  .\32xl\:bg-blue-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(96 165 250 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-blue-400\/10 {
    background-color: rgb(96 165 250 / 0.1);
  }

  .\32xl\:bg-blue-400\/20 {
    background-color: rgb(96 165 250 / 0.2);
  }

  .\32xl\:bg-blue-400\/30 {
    background-color: rgb(96 165 250 / 0.3);
  }

  .\32xl\:bg-blue-400\/40 {
    background-color: rgb(96 165 250 / 0.4);
  }

  .\32xl\:bg-blue-400\/5 {
    background-color: rgb(96 165 250 / 0.05);
  }

  .\32xl\:bg-blue-400\/50 {
    background-color: rgb(96 165 250 / 0.5);
  }

  .\32xl\:bg-blue-400\/60 {
    background-color: rgb(96 165 250 / 0.6);
  }

  .\32xl\:bg-blue-400\/70 {
    background-color: rgb(96 165 250 / 0.7);
  }

  .\32xl\:bg-blue-400\/80 {
    background-color: rgb(96 165 250 / 0.8);
  }

  .\32xl\:bg-blue-400\/90 {
    background-color: rgb(96 165 250 / 0.9);
  }

  .\32xl\:bg-blue-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-blue-50\/10 {
    background-color: rgb(239 246 255 / 0.1);
  }

  .\32xl\:bg-blue-50\/20 {
    background-color: rgb(239 246 255 / 0.2);
  }

  .\32xl\:bg-blue-50\/30 {
    background-color: rgb(239 246 255 / 0.3);
  }

  .\32xl\:bg-blue-50\/40 {
    background-color: rgb(239 246 255 / 0.4);
  }

  .\32xl\:bg-blue-50\/5 {
    background-color: rgb(239 246 255 / 0.05);
  }

  .\32xl\:bg-blue-50\/50 {
    background-color: rgb(239 246 255 / 0.5);
  }

  .\32xl\:bg-blue-50\/60 {
    background-color: rgb(239 246 255 / 0.6);
  }

  .\32xl\:bg-blue-50\/70 {
    background-color: rgb(239 246 255 / 0.7);
  }

  .\32xl\:bg-blue-50\/80 {
    background-color: rgb(239 246 255 / 0.8);
  }

  .\32xl\:bg-blue-50\/90 {
    background-color: rgb(239 246 255 / 0.9);
  }

  .\32xl\:bg-blue-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-blue-500\/10 {
    background-color: rgb(59 130 246 / 0.1);
  }

  .\32xl\:bg-blue-500\/20 {
    background-color: rgb(59 130 246 / 0.2);
  }

  .\32xl\:bg-blue-500\/30 {
    background-color: rgb(59 130 246 / 0.3);
  }

  .\32xl\:bg-blue-500\/40 {
    background-color: rgb(59 130 246 / 0.4);
  }

  .\32xl\:bg-blue-500\/5 {
    background-color: rgb(59 130 246 / 0.05);
  }

  .\32xl\:bg-blue-500\/50 {
    background-color: rgb(59 130 246 / 0.5);
  }

  .\32xl\:bg-blue-500\/60 {
    background-color: rgb(59 130 246 / 0.6);
  }

  .\32xl\:bg-blue-500\/70 {
    background-color: rgb(59 130 246 / 0.7);
  }

  .\32xl\:bg-blue-500\/80 {
    background-color: rgb(59 130 246 / 0.8);
  }

  .\32xl\:bg-blue-500\/90 {
    background-color: rgb(59 130 246 / 0.9);
  }

  .\32xl\:bg-blue-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-blue-600\/10 {
    background-color: rgb(37 99 235 / 0.1);
  }

  .\32xl\:bg-blue-600\/20 {
    background-color: rgb(37 99 235 / 0.2);
  }

  .\32xl\:bg-blue-600\/30 {
    background-color: rgb(37 99 235 / 0.3);
  }

  .\32xl\:bg-blue-600\/40 {
    background-color: rgb(37 99 235 / 0.4);
  }

  .\32xl\:bg-blue-600\/5 {
    background-color: rgb(37 99 235 / 0.05);
  }

  .\32xl\:bg-blue-600\/50 {
    background-color: rgb(37 99 235 / 0.5);
  }

  .\32xl\:bg-blue-600\/60 {
    background-color: rgb(37 99 235 / 0.6);
  }

  .\32xl\:bg-blue-600\/70 {
    background-color: rgb(37 99 235 / 0.7);
  }

  .\32xl\:bg-blue-600\/80 {
    background-color: rgb(37 99 235 / 0.8);
  }

  .\32xl\:bg-blue-600\/90 {
    background-color: rgb(37 99 235 / 0.9);
  }

  .\32xl\:bg-blue-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-blue-700\/10 {
    background-color: rgb(29 78 216 / 0.1);
  }

  .\32xl\:bg-blue-700\/20 {
    background-color: rgb(29 78 216 / 0.2);
  }

  .\32xl\:bg-blue-700\/30 {
    background-color: rgb(29 78 216 / 0.3);
  }

  .\32xl\:bg-blue-700\/40 {
    background-color: rgb(29 78 216 / 0.4);
  }

  .\32xl\:bg-blue-700\/5 {
    background-color: rgb(29 78 216 / 0.05);
  }

  .\32xl\:bg-blue-700\/50 {
    background-color: rgb(29 78 216 / 0.5);
  }

  .\32xl\:bg-blue-700\/60 {
    background-color: rgb(29 78 216 / 0.6);
  }

  .\32xl\:bg-blue-700\/70 {
    background-color: rgb(29 78 216 / 0.7);
  }

  .\32xl\:bg-blue-700\/80 {
    background-color: rgb(29 78 216 / 0.8);
  }

  .\32xl\:bg-blue-700\/90 {
    background-color: rgb(29 78 216 / 0.9);
  }

  .\32xl\:bg-blue-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(30 64 175 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-blue-800\/10 {
    background-color: rgb(30 64 175 / 0.1);
  }

  .\32xl\:bg-blue-800\/20 {
    background-color: rgb(30 64 175 / 0.2);
  }

  .\32xl\:bg-blue-800\/30 {
    background-color: rgb(30 64 175 / 0.3);
  }

  .\32xl\:bg-blue-800\/40 {
    background-color: rgb(30 64 175 / 0.4);
  }

  .\32xl\:bg-blue-800\/5 {
    background-color: rgb(30 64 175 / 0.05);
  }

  .\32xl\:bg-blue-800\/50 {
    background-color: rgb(30 64 175 / 0.5);
  }

  .\32xl\:bg-blue-800\/60 {
    background-color: rgb(30 64 175 / 0.6);
  }

  .\32xl\:bg-blue-800\/70 {
    background-color: rgb(30 64 175 / 0.7);
  }

  .\32xl\:bg-blue-800\/80 {
    background-color: rgb(30 64 175 / 0.8);
  }

  .\32xl\:bg-blue-800\/90 {
    background-color: rgb(30 64 175 / 0.9);
  }

  .\32xl\:bg-blue-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(30 58 138 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-blue-900\/10 {
    background-color: rgb(30 58 138 / 0.1);
  }

  .\32xl\:bg-blue-900\/20 {
    background-color: rgb(30 58 138 / 0.2);
  }

  .\32xl\:bg-blue-900\/30 {
    background-color: rgb(30 58 138 / 0.3);
  }

  .\32xl\:bg-blue-900\/40 {
    background-color: rgb(30 58 138 / 0.4);
  }

  .\32xl\:bg-blue-900\/5 {
    background-color: rgb(30 58 138 / 0.05);
  }

  .\32xl\:bg-blue-900\/50 {
    background-color: rgb(30 58 138 / 0.5);
  }

  .\32xl\:bg-blue-900\/60 {
    background-color: rgb(30 58 138 / 0.6);
  }

  .\32xl\:bg-blue-900\/70 {
    background-color: rgb(30 58 138 / 0.7);
  }

  .\32xl\:bg-blue-900\/80 {
    background-color: rgb(30 58 138 / 0.8);
  }

  .\32xl\:bg-blue-900\/90 {
    background-color: rgb(30 58 138 / 0.9);
  }

  .\32xl\:bg-blue-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(23 37 84 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-blue-950\/10 {
    background-color: rgb(23 37 84 / 0.1);
  }

  .\32xl\:bg-blue-950\/20 {
    background-color: rgb(23 37 84 / 0.2);
  }

  .\32xl\:bg-blue-950\/30 {
    background-color: rgb(23 37 84 / 0.3);
  }

  .\32xl\:bg-blue-950\/40 {
    background-color: rgb(23 37 84 / 0.4);
  }

  .\32xl\:bg-blue-950\/5 {
    background-color: rgb(23 37 84 / 0.05);
  }

  .\32xl\:bg-blue-950\/50 {
    background-color: rgb(23 37 84 / 0.5);
  }

  .\32xl\:bg-blue-950\/60 {
    background-color: rgb(23 37 84 / 0.6);
  }

  .\32xl\:bg-blue-950\/70 {
    background-color: rgb(23 37 84 / 0.7);
  }

  .\32xl\:bg-blue-950\/80 {
    background-color: rgb(23 37 84 / 0.8);
  }

  .\32xl\:bg-blue-950\/90 {
    background-color: rgb(23 37 84 / 0.9);
  }

  .\32xl\:bg-cyan-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(207 250 254 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-cyan-100\/10 {
    background-color: rgb(207 250 254 / 0.1);
  }

  .\32xl\:bg-cyan-100\/20 {
    background-color: rgb(207 250 254 / 0.2);
  }

  .\32xl\:bg-cyan-100\/30 {
    background-color: rgb(207 250 254 / 0.3);
  }

  .\32xl\:bg-cyan-100\/40 {
    background-color: rgb(207 250 254 / 0.4);
  }

  .\32xl\:bg-cyan-100\/5 {
    background-color: rgb(207 250 254 / 0.05);
  }

  .\32xl\:bg-cyan-100\/50 {
    background-color: rgb(207 250 254 / 0.5);
  }

  .\32xl\:bg-cyan-100\/60 {
    background-color: rgb(207 250 254 / 0.6);
  }

  .\32xl\:bg-cyan-100\/70 {
    background-color: rgb(207 250 254 / 0.7);
  }

  .\32xl\:bg-cyan-100\/80 {
    background-color: rgb(207 250 254 / 0.8);
  }

  .\32xl\:bg-cyan-100\/90 {
    background-color: rgb(207 250 254 / 0.9);
  }

  .\32xl\:bg-cyan-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(165 243 252 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-cyan-200\/10 {
    background-color: rgb(165 243 252 / 0.1);
  }

  .\32xl\:bg-cyan-200\/20 {
    background-color: rgb(165 243 252 / 0.2);
  }

  .\32xl\:bg-cyan-200\/30 {
    background-color: rgb(165 243 252 / 0.3);
  }

  .\32xl\:bg-cyan-200\/40 {
    background-color: rgb(165 243 252 / 0.4);
  }

  .\32xl\:bg-cyan-200\/5 {
    background-color: rgb(165 243 252 / 0.05);
  }

  .\32xl\:bg-cyan-200\/50 {
    background-color: rgb(165 243 252 / 0.5);
  }

  .\32xl\:bg-cyan-200\/60 {
    background-color: rgb(165 243 252 / 0.6);
  }

  .\32xl\:bg-cyan-200\/70 {
    background-color: rgb(165 243 252 / 0.7);
  }

  .\32xl\:bg-cyan-200\/80 {
    background-color: rgb(165 243 252 / 0.8);
  }

  .\32xl\:bg-cyan-200\/90 {
    background-color: rgb(165 243 252 / 0.9);
  }

  .\32xl\:bg-cyan-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(103 232 249 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-cyan-300\/10 {
    background-color: rgb(103 232 249 / 0.1);
  }

  .\32xl\:bg-cyan-300\/20 {
    background-color: rgb(103 232 249 / 0.2);
  }

  .\32xl\:bg-cyan-300\/30 {
    background-color: rgb(103 232 249 / 0.3);
  }

  .\32xl\:bg-cyan-300\/40 {
    background-color: rgb(103 232 249 / 0.4);
  }

  .\32xl\:bg-cyan-300\/5 {
    background-color: rgb(103 232 249 / 0.05);
  }

  .\32xl\:bg-cyan-300\/50 {
    background-color: rgb(103 232 249 / 0.5);
  }

  .\32xl\:bg-cyan-300\/60 {
    background-color: rgb(103 232 249 / 0.6);
  }

  .\32xl\:bg-cyan-300\/70 {
    background-color: rgb(103 232 249 / 0.7);
  }

  .\32xl\:bg-cyan-300\/80 {
    background-color: rgb(103 232 249 / 0.8);
  }

  .\32xl\:bg-cyan-300\/90 {
    background-color: rgb(103 232 249 / 0.9);
  }

  .\32xl\:bg-cyan-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(34 211 238 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-cyan-400\/10 {
    background-color: rgb(34 211 238 / 0.1);
  }

  .\32xl\:bg-cyan-400\/20 {
    background-color: rgb(34 211 238 / 0.2);
  }

  .\32xl\:bg-cyan-400\/30 {
    background-color: rgb(34 211 238 / 0.3);
  }

  .\32xl\:bg-cyan-400\/40 {
    background-color: rgb(34 211 238 / 0.4);
  }

  .\32xl\:bg-cyan-400\/5 {
    background-color: rgb(34 211 238 / 0.05);
  }

  .\32xl\:bg-cyan-400\/50 {
    background-color: rgb(34 211 238 / 0.5);
  }

  .\32xl\:bg-cyan-400\/60 {
    background-color: rgb(34 211 238 / 0.6);
  }

  .\32xl\:bg-cyan-400\/70 {
    background-color: rgb(34 211 238 / 0.7);
  }

  .\32xl\:bg-cyan-400\/80 {
    background-color: rgb(34 211 238 / 0.8);
  }

  .\32xl\:bg-cyan-400\/90 {
    background-color: rgb(34 211 238 / 0.9);
  }

  .\32xl\:bg-cyan-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(236 254 255 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-cyan-50\/10 {
    background-color: rgb(236 254 255 / 0.1);
  }

  .\32xl\:bg-cyan-50\/20 {
    background-color: rgb(236 254 255 / 0.2);
  }

  .\32xl\:bg-cyan-50\/30 {
    background-color: rgb(236 254 255 / 0.3);
  }

  .\32xl\:bg-cyan-50\/40 {
    background-color: rgb(236 254 255 / 0.4);
  }

  .\32xl\:bg-cyan-50\/5 {
    background-color: rgb(236 254 255 / 0.05);
  }

  .\32xl\:bg-cyan-50\/50 {
    background-color: rgb(236 254 255 / 0.5);
  }

  .\32xl\:bg-cyan-50\/60 {
    background-color: rgb(236 254 255 / 0.6);
  }

  .\32xl\:bg-cyan-50\/70 {
    background-color: rgb(236 254 255 / 0.7);
  }

  .\32xl\:bg-cyan-50\/80 {
    background-color: rgb(236 254 255 / 0.8);
  }

  .\32xl\:bg-cyan-50\/90 {
    background-color: rgb(236 254 255 / 0.9);
  }

  .\32xl\:bg-cyan-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(6 182 212 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-cyan-500\/10 {
    background-color: rgb(6 182 212 / 0.1);
  }

  .\32xl\:bg-cyan-500\/20 {
    background-color: rgb(6 182 212 / 0.2);
  }

  .\32xl\:bg-cyan-500\/30 {
    background-color: rgb(6 182 212 / 0.3);
  }

  .\32xl\:bg-cyan-500\/40 {
    background-color: rgb(6 182 212 / 0.4);
  }

  .\32xl\:bg-cyan-500\/5 {
    background-color: rgb(6 182 212 / 0.05);
  }

  .\32xl\:bg-cyan-500\/50 {
    background-color: rgb(6 182 212 / 0.5);
  }

  .\32xl\:bg-cyan-500\/60 {
    background-color: rgb(6 182 212 / 0.6);
  }

  .\32xl\:bg-cyan-500\/70 {
    background-color: rgb(6 182 212 / 0.7);
  }

  .\32xl\:bg-cyan-500\/80 {
    background-color: rgb(6 182 212 / 0.8);
  }

  .\32xl\:bg-cyan-500\/90 {
    background-color: rgb(6 182 212 / 0.9);
  }

  .\32xl\:bg-cyan-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(8 145 178 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-cyan-600\/10 {
    background-color: rgb(8 145 178 / 0.1);
  }

  .\32xl\:bg-cyan-600\/20 {
    background-color: rgb(8 145 178 / 0.2);
  }

  .\32xl\:bg-cyan-600\/30 {
    background-color: rgb(8 145 178 / 0.3);
  }

  .\32xl\:bg-cyan-600\/40 {
    background-color: rgb(8 145 178 / 0.4);
  }

  .\32xl\:bg-cyan-600\/5 {
    background-color: rgb(8 145 178 / 0.05);
  }

  .\32xl\:bg-cyan-600\/50 {
    background-color: rgb(8 145 178 / 0.5);
  }

  .\32xl\:bg-cyan-600\/60 {
    background-color: rgb(8 145 178 / 0.6);
  }

  .\32xl\:bg-cyan-600\/70 {
    background-color: rgb(8 145 178 / 0.7);
  }

  .\32xl\:bg-cyan-600\/80 {
    background-color: rgb(8 145 178 / 0.8);
  }

  .\32xl\:bg-cyan-600\/90 {
    background-color: rgb(8 145 178 / 0.9);
  }

  .\32xl\:bg-cyan-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(14 116 144 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-cyan-700\/10 {
    background-color: rgb(14 116 144 / 0.1);
  }

  .\32xl\:bg-cyan-700\/20 {
    background-color: rgb(14 116 144 / 0.2);
  }

  .\32xl\:bg-cyan-700\/30 {
    background-color: rgb(14 116 144 / 0.3);
  }

  .\32xl\:bg-cyan-700\/40 {
    background-color: rgb(14 116 144 / 0.4);
  }

  .\32xl\:bg-cyan-700\/5 {
    background-color: rgb(14 116 144 / 0.05);
  }

  .\32xl\:bg-cyan-700\/50 {
    background-color: rgb(14 116 144 / 0.5);
  }

  .\32xl\:bg-cyan-700\/60 {
    background-color: rgb(14 116 144 / 0.6);
  }

  .\32xl\:bg-cyan-700\/70 {
    background-color: rgb(14 116 144 / 0.7);
  }

  .\32xl\:bg-cyan-700\/80 {
    background-color: rgb(14 116 144 / 0.8);
  }

  .\32xl\:bg-cyan-700\/90 {
    background-color: rgb(14 116 144 / 0.9);
  }

  .\32xl\:bg-cyan-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(21 94 117 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-cyan-800\/10 {
    background-color: rgb(21 94 117 / 0.1);
  }

  .\32xl\:bg-cyan-800\/20 {
    background-color: rgb(21 94 117 / 0.2);
  }

  .\32xl\:bg-cyan-800\/30 {
    background-color: rgb(21 94 117 / 0.3);
  }

  .\32xl\:bg-cyan-800\/40 {
    background-color: rgb(21 94 117 / 0.4);
  }

  .\32xl\:bg-cyan-800\/5 {
    background-color: rgb(21 94 117 / 0.05);
  }

  .\32xl\:bg-cyan-800\/50 {
    background-color: rgb(21 94 117 / 0.5);
  }

  .\32xl\:bg-cyan-800\/60 {
    background-color: rgb(21 94 117 / 0.6);
  }

  .\32xl\:bg-cyan-800\/70 {
    background-color: rgb(21 94 117 / 0.7);
  }

  .\32xl\:bg-cyan-800\/80 {
    background-color: rgb(21 94 117 / 0.8);
  }

  .\32xl\:bg-cyan-800\/90 {
    background-color: rgb(21 94 117 / 0.9);
  }

  .\32xl\:bg-cyan-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(22 78 99 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-cyan-900\/10 {
    background-color: rgb(22 78 99 / 0.1);
  }

  .\32xl\:bg-cyan-900\/20 {
    background-color: rgb(22 78 99 / 0.2);
  }

  .\32xl\:bg-cyan-900\/30 {
    background-color: rgb(22 78 99 / 0.3);
  }

  .\32xl\:bg-cyan-900\/40 {
    background-color: rgb(22 78 99 / 0.4);
  }

  .\32xl\:bg-cyan-900\/5 {
    background-color: rgb(22 78 99 / 0.05);
  }

  .\32xl\:bg-cyan-900\/50 {
    background-color: rgb(22 78 99 / 0.5);
  }

  .\32xl\:bg-cyan-900\/60 {
    background-color: rgb(22 78 99 / 0.6);
  }

  .\32xl\:bg-cyan-900\/70 {
    background-color: rgb(22 78 99 / 0.7);
  }

  .\32xl\:bg-cyan-900\/80 {
    background-color: rgb(22 78 99 / 0.8);
  }

  .\32xl\:bg-cyan-900\/90 {
    background-color: rgb(22 78 99 / 0.9);
  }

  .\32xl\:bg-cyan-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(8 51 68 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-cyan-950\/10 {
    background-color: rgb(8 51 68 / 0.1);
  }

  .\32xl\:bg-cyan-950\/20 {
    background-color: rgb(8 51 68 / 0.2);
  }

  .\32xl\:bg-cyan-950\/30 {
    background-color: rgb(8 51 68 / 0.3);
  }

  .\32xl\:bg-cyan-950\/40 {
    background-color: rgb(8 51 68 / 0.4);
  }

  .\32xl\:bg-cyan-950\/5 {
    background-color: rgb(8 51 68 / 0.05);
  }

  .\32xl\:bg-cyan-950\/50 {
    background-color: rgb(8 51 68 / 0.5);
  }

  .\32xl\:bg-cyan-950\/60 {
    background-color: rgb(8 51 68 / 0.6);
  }

  .\32xl\:bg-cyan-950\/70 {
    background-color: rgb(8 51 68 / 0.7);
  }

  .\32xl\:bg-cyan-950\/80 {
    background-color: rgb(8 51 68 / 0.8);
  }

  .\32xl\:bg-cyan-950\/90 {
    background-color: rgb(8 51 68 / 0.9);
  }

  .\32xl\:bg-emerald-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(209 250 229 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-emerald-100\/10 {
    background-color: rgb(209 250 229 / 0.1);
  }

  .\32xl\:bg-emerald-100\/20 {
    background-color: rgb(209 250 229 / 0.2);
  }

  .\32xl\:bg-emerald-100\/30 {
    background-color: rgb(209 250 229 / 0.3);
  }

  .\32xl\:bg-emerald-100\/40 {
    background-color: rgb(209 250 229 / 0.4);
  }

  .\32xl\:bg-emerald-100\/5 {
    background-color: rgb(209 250 229 / 0.05);
  }

  .\32xl\:bg-emerald-100\/50 {
    background-color: rgb(209 250 229 / 0.5);
  }

  .\32xl\:bg-emerald-100\/60 {
    background-color: rgb(209 250 229 / 0.6);
  }

  .\32xl\:bg-emerald-100\/70 {
    background-color: rgb(209 250 229 / 0.7);
  }

  .\32xl\:bg-emerald-100\/80 {
    background-color: rgb(209 250 229 / 0.8);
  }

  .\32xl\:bg-emerald-100\/90 {
    background-color: rgb(209 250 229 / 0.9);
  }

  .\32xl\:bg-emerald-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(167 243 208 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-emerald-200\/10 {
    background-color: rgb(167 243 208 / 0.1);
  }

  .\32xl\:bg-emerald-200\/20 {
    background-color: rgb(167 243 208 / 0.2);
  }

  .\32xl\:bg-emerald-200\/30 {
    background-color: rgb(167 243 208 / 0.3);
  }

  .\32xl\:bg-emerald-200\/40 {
    background-color: rgb(167 243 208 / 0.4);
  }

  .\32xl\:bg-emerald-200\/5 {
    background-color: rgb(167 243 208 / 0.05);
  }

  .\32xl\:bg-emerald-200\/50 {
    background-color: rgb(167 243 208 / 0.5);
  }

  .\32xl\:bg-emerald-200\/60 {
    background-color: rgb(167 243 208 / 0.6);
  }

  .\32xl\:bg-emerald-200\/70 {
    background-color: rgb(167 243 208 / 0.7);
  }

  .\32xl\:bg-emerald-200\/80 {
    background-color: rgb(167 243 208 / 0.8);
  }

  .\32xl\:bg-emerald-200\/90 {
    background-color: rgb(167 243 208 / 0.9);
  }

  .\32xl\:bg-emerald-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(110 231 183 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-emerald-300\/10 {
    background-color: rgb(110 231 183 / 0.1);
  }

  .\32xl\:bg-emerald-300\/20 {
    background-color: rgb(110 231 183 / 0.2);
  }

  .\32xl\:bg-emerald-300\/30 {
    background-color: rgb(110 231 183 / 0.3);
  }

  .\32xl\:bg-emerald-300\/40 {
    background-color: rgb(110 231 183 / 0.4);
  }

  .\32xl\:bg-emerald-300\/5 {
    background-color: rgb(110 231 183 / 0.05);
  }

  .\32xl\:bg-emerald-300\/50 {
    background-color: rgb(110 231 183 / 0.5);
  }

  .\32xl\:bg-emerald-300\/60 {
    background-color: rgb(110 231 183 / 0.6);
  }

  .\32xl\:bg-emerald-300\/70 {
    background-color: rgb(110 231 183 / 0.7);
  }

  .\32xl\:bg-emerald-300\/80 {
    background-color: rgb(110 231 183 / 0.8);
  }

  .\32xl\:bg-emerald-300\/90 {
    background-color: rgb(110 231 183 / 0.9);
  }

  .\32xl\:bg-emerald-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(52 211 153 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-emerald-400\/10 {
    background-color: rgb(52 211 153 / 0.1);
  }

  .\32xl\:bg-emerald-400\/20 {
    background-color: rgb(52 211 153 / 0.2);
  }

  .\32xl\:bg-emerald-400\/30 {
    background-color: rgb(52 211 153 / 0.3);
  }

  .\32xl\:bg-emerald-400\/40 {
    background-color: rgb(52 211 153 / 0.4);
  }

  .\32xl\:bg-emerald-400\/5 {
    background-color: rgb(52 211 153 / 0.05);
  }

  .\32xl\:bg-emerald-400\/50 {
    background-color: rgb(52 211 153 / 0.5);
  }

  .\32xl\:bg-emerald-400\/60 {
    background-color: rgb(52 211 153 / 0.6);
  }

  .\32xl\:bg-emerald-400\/70 {
    background-color: rgb(52 211 153 / 0.7);
  }

  .\32xl\:bg-emerald-400\/80 {
    background-color: rgb(52 211 153 / 0.8);
  }

  .\32xl\:bg-emerald-400\/90 {
    background-color: rgb(52 211 153 / 0.9);
  }

  .\32xl\:bg-emerald-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(236 253 245 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-emerald-50\/10 {
    background-color: rgb(236 253 245 / 0.1);
  }

  .\32xl\:bg-emerald-50\/20 {
    background-color: rgb(236 253 245 / 0.2);
  }

  .\32xl\:bg-emerald-50\/30 {
    background-color: rgb(236 253 245 / 0.3);
  }

  .\32xl\:bg-emerald-50\/40 {
    background-color: rgb(236 253 245 / 0.4);
  }

  .\32xl\:bg-emerald-50\/5 {
    background-color: rgb(236 253 245 / 0.05);
  }

  .\32xl\:bg-emerald-50\/50 {
    background-color: rgb(236 253 245 / 0.5);
  }

  .\32xl\:bg-emerald-50\/60 {
    background-color: rgb(236 253 245 / 0.6);
  }

  .\32xl\:bg-emerald-50\/70 {
    background-color: rgb(236 253 245 / 0.7);
  }

  .\32xl\:bg-emerald-50\/80 {
    background-color: rgb(236 253 245 / 0.8);
  }

  .\32xl\:bg-emerald-50\/90 {
    background-color: rgb(236 253 245 / 0.9);
  }

  .\32xl\:bg-emerald-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(16 185 129 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-emerald-500\/10 {
    background-color: rgb(16 185 129 / 0.1);
  }

  .\32xl\:bg-emerald-500\/20 {
    background-color: rgb(16 185 129 / 0.2);
  }

  .\32xl\:bg-emerald-500\/30 {
    background-color: rgb(16 185 129 / 0.3);
  }

  .\32xl\:bg-emerald-500\/40 {
    background-color: rgb(16 185 129 / 0.4);
  }

  .\32xl\:bg-emerald-500\/5 {
    background-color: rgb(16 185 129 / 0.05);
  }

  .\32xl\:bg-emerald-500\/50 {
    background-color: rgb(16 185 129 / 0.5);
  }

  .\32xl\:bg-emerald-500\/60 {
    background-color: rgb(16 185 129 / 0.6);
  }

  .\32xl\:bg-emerald-500\/70 {
    background-color: rgb(16 185 129 / 0.7);
  }

  .\32xl\:bg-emerald-500\/80 {
    background-color: rgb(16 185 129 / 0.8);
  }

  .\32xl\:bg-emerald-500\/90 {
    background-color: rgb(16 185 129 / 0.9);
  }

  .\32xl\:bg-emerald-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(5 150 105 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-emerald-600\/10 {
    background-color: rgb(5 150 105 / 0.1);
  }

  .\32xl\:bg-emerald-600\/20 {
    background-color: rgb(5 150 105 / 0.2);
  }

  .\32xl\:bg-emerald-600\/30 {
    background-color: rgb(5 150 105 / 0.3);
  }

  .\32xl\:bg-emerald-600\/40 {
    background-color: rgb(5 150 105 / 0.4);
  }

  .\32xl\:bg-emerald-600\/5 {
    background-color: rgb(5 150 105 / 0.05);
  }

  .\32xl\:bg-emerald-600\/50 {
    background-color: rgb(5 150 105 / 0.5);
  }

  .\32xl\:bg-emerald-600\/60 {
    background-color: rgb(5 150 105 / 0.6);
  }

  .\32xl\:bg-emerald-600\/70 {
    background-color: rgb(5 150 105 / 0.7);
  }

  .\32xl\:bg-emerald-600\/80 {
    background-color: rgb(5 150 105 / 0.8);
  }

  .\32xl\:bg-emerald-600\/90 {
    background-color: rgb(5 150 105 / 0.9);
  }

  .\32xl\:bg-emerald-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(4 120 87 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-emerald-700\/10 {
    background-color: rgb(4 120 87 / 0.1);
  }

  .\32xl\:bg-emerald-700\/20 {
    background-color: rgb(4 120 87 / 0.2);
  }

  .\32xl\:bg-emerald-700\/30 {
    background-color: rgb(4 120 87 / 0.3);
  }

  .\32xl\:bg-emerald-700\/40 {
    background-color: rgb(4 120 87 / 0.4);
  }

  .\32xl\:bg-emerald-700\/5 {
    background-color: rgb(4 120 87 / 0.05);
  }

  .\32xl\:bg-emerald-700\/50 {
    background-color: rgb(4 120 87 / 0.5);
  }

  .\32xl\:bg-emerald-700\/60 {
    background-color: rgb(4 120 87 / 0.6);
  }

  .\32xl\:bg-emerald-700\/70 {
    background-color: rgb(4 120 87 / 0.7);
  }

  .\32xl\:bg-emerald-700\/80 {
    background-color: rgb(4 120 87 / 0.8);
  }

  .\32xl\:bg-emerald-700\/90 {
    background-color: rgb(4 120 87 / 0.9);
  }

  .\32xl\:bg-emerald-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(6 95 70 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-emerald-800\/10 {
    background-color: rgb(6 95 70 / 0.1);
  }

  .\32xl\:bg-emerald-800\/20 {
    background-color: rgb(6 95 70 / 0.2);
  }

  .\32xl\:bg-emerald-800\/30 {
    background-color: rgb(6 95 70 / 0.3);
  }

  .\32xl\:bg-emerald-800\/40 {
    background-color: rgb(6 95 70 / 0.4);
  }

  .\32xl\:bg-emerald-800\/5 {
    background-color: rgb(6 95 70 / 0.05);
  }

  .\32xl\:bg-emerald-800\/50 {
    background-color: rgb(6 95 70 / 0.5);
  }

  .\32xl\:bg-emerald-800\/60 {
    background-color: rgb(6 95 70 / 0.6);
  }

  .\32xl\:bg-emerald-800\/70 {
    background-color: rgb(6 95 70 / 0.7);
  }

  .\32xl\:bg-emerald-800\/80 {
    background-color: rgb(6 95 70 / 0.8);
  }

  .\32xl\:bg-emerald-800\/90 {
    background-color: rgb(6 95 70 / 0.9);
  }

  .\32xl\:bg-emerald-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(6 78 59 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-emerald-900\/10 {
    background-color: rgb(6 78 59 / 0.1);
  }

  .\32xl\:bg-emerald-900\/20 {
    background-color: rgb(6 78 59 / 0.2);
  }

  .\32xl\:bg-emerald-900\/30 {
    background-color: rgb(6 78 59 / 0.3);
  }

  .\32xl\:bg-emerald-900\/40 {
    background-color: rgb(6 78 59 / 0.4);
  }

  .\32xl\:bg-emerald-900\/5 {
    background-color: rgb(6 78 59 / 0.05);
  }

  .\32xl\:bg-emerald-900\/50 {
    background-color: rgb(6 78 59 / 0.5);
  }

  .\32xl\:bg-emerald-900\/60 {
    background-color: rgb(6 78 59 / 0.6);
  }

  .\32xl\:bg-emerald-900\/70 {
    background-color: rgb(6 78 59 / 0.7);
  }

  .\32xl\:bg-emerald-900\/80 {
    background-color: rgb(6 78 59 / 0.8);
  }

  .\32xl\:bg-emerald-900\/90 {
    background-color: rgb(6 78 59 / 0.9);
  }

  .\32xl\:bg-emerald-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(2 44 34 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-emerald-950\/10 {
    background-color: rgb(2 44 34 / 0.1);
  }

  .\32xl\:bg-emerald-950\/20 {
    background-color: rgb(2 44 34 / 0.2);
  }

  .\32xl\:bg-emerald-950\/30 {
    background-color: rgb(2 44 34 / 0.3);
  }

  .\32xl\:bg-emerald-950\/40 {
    background-color: rgb(2 44 34 / 0.4);
  }

  .\32xl\:bg-emerald-950\/5 {
    background-color: rgb(2 44 34 / 0.05);
  }

  .\32xl\:bg-emerald-950\/50 {
    background-color: rgb(2 44 34 / 0.5);
  }

  .\32xl\:bg-emerald-950\/60 {
    background-color: rgb(2 44 34 / 0.6);
  }

  .\32xl\:bg-emerald-950\/70 {
    background-color: rgb(2 44 34 / 0.7);
  }

  .\32xl\:bg-emerald-950\/80 {
    background-color: rgb(2 44 34 / 0.8);
  }

  .\32xl\:bg-emerald-950\/90 {
    background-color: rgb(2 44 34 / 0.9);
  }

  .\32xl\:bg-fuchsia-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 232 255 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-fuchsia-100\/10 {
    background-color: rgb(250 232 255 / 0.1);
  }

  .\32xl\:bg-fuchsia-100\/20 {
    background-color: rgb(250 232 255 / 0.2);
  }

  .\32xl\:bg-fuchsia-100\/30 {
    background-color: rgb(250 232 255 / 0.3);
  }

  .\32xl\:bg-fuchsia-100\/40 {
    background-color: rgb(250 232 255 / 0.4);
  }

  .\32xl\:bg-fuchsia-100\/5 {
    background-color: rgb(250 232 255 / 0.05);
  }

  .\32xl\:bg-fuchsia-100\/50 {
    background-color: rgb(250 232 255 / 0.5);
  }

  .\32xl\:bg-fuchsia-100\/60 {
    background-color: rgb(250 232 255 / 0.6);
  }

  .\32xl\:bg-fuchsia-100\/70 {
    background-color: rgb(250 232 255 / 0.7);
  }

  .\32xl\:bg-fuchsia-100\/80 {
    background-color: rgb(250 232 255 / 0.8);
  }

  .\32xl\:bg-fuchsia-100\/90 {
    background-color: rgb(250 232 255 / 0.9);
  }

  .\32xl\:bg-fuchsia-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(245 208 254 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-fuchsia-200\/10 {
    background-color: rgb(245 208 254 / 0.1);
  }

  .\32xl\:bg-fuchsia-200\/20 {
    background-color: rgb(245 208 254 / 0.2);
  }

  .\32xl\:bg-fuchsia-200\/30 {
    background-color: rgb(245 208 254 / 0.3);
  }

  .\32xl\:bg-fuchsia-200\/40 {
    background-color: rgb(245 208 254 / 0.4);
  }

  .\32xl\:bg-fuchsia-200\/5 {
    background-color: rgb(245 208 254 / 0.05);
  }

  .\32xl\:bg-fuchsia-200\/50 {
    background-color: rgb(245 208 254 / 0.5);
  }

  .\32xl\:bg-fuchsia-200\/60 {
    background-color: rgb(245 208 254 / 0.6);
  }

  .\32xl\:bg-fuchsia-200\/70 {
    background-color: rgb(245 208 254 / 0.7);
  }

  .\32xl\:bg-fuchsia-200\/80 {
    background-color: rgb(245 208 254 / 0.8);
  }

  .\32xl\:bg-fuchsia-200\/90 {
    background-color: rgb(245 208 254 / 0.9);
  }

  .\32xl\:bg-fuchsia-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(240 171 252 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-fuchsia-300\/10 {
    background-color: rgb(240 171 252 / 0.1);
  }

  .\32xl\:bg-fuchsia-300\/20 {
    background-color: rgb(240 171 252 / 0.2);
  }

  .\32xl\:bg-fuchsia-300\/30 {
    background-color: rgb(240 171 252 / 0.3);
  }

  .\32xl\:bg-fuchsia-300\/40 {
    background-color: rgb(240 171 252 / 0.4);
  }

  .\32xl\:bg-fuchsia-300\/5 {
    background-color: rgb(240 171 252 / 0.05);
  }

  .\32xl\:bg-fuchsia-300\/50 {
    background-color: rgb(240 171 252 / 0.5);
  }

  .\32xl\:bg-fuchsia-300\/60 {
    background-color: rgb(240 171 252 / 0.6);
  }

  .\32xl\:bg-fuchsia-300\/70 {
    background-color: rgb(240 171 252 / 0.7);
  }

  .\32xl\:bg-fuchsia-300\/80 {
    background-color: rgb(240 171 252 / 0.8);
  }

  .\32xl\:bg-fuchsia-300\/90 {
    background-color: rgb(240 171 252 / 0.9);
  }

  .\32xl\:bg-fuchsia-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(232 121 249 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-fuchsia-400\/10 {
    background-color: rgb(232 121 249 / 0.1);
  }

  .\32xl\:bg-fuchsia-400\/20 {
    background-color: rgb(232 121 249 / 0.2);
  }

  .\32xl\:bg-fuchsia-400\/30 {
    background-color: rgb(232 121 249 / 0.3);
  }

  .\32xl\:bg-fuchsia-400\/40 {
    background-color: rgb(232 121 249 / 0.4);
  }

  .\32xl\:bg-fuchsia-400\/5 {
    background-color: rgb(232 121 249 / 0.05);
  }

  .\32xl\:bg-fuchsia-400\/50 {
    background-color: rgb(232 121 249 / 0.5);
  }

  .\32xl\:bg-fuchsia-400\/60 {
    background-color: rgb(232 121 249 / 0.6);
  }

  .\32xl\:bg-fuchsia-400\/70 {
    background-color: rgb(232 121 249 / 0.7);
  }

  .\32xl\:bg-fuchsia-400\/80 {
    background-color: rgb(232 121 249 / 0.8);
  }

  .\32xl\:bg-fuchsia-400\/90 {
    background-color: rgb(232 121 249 / 0.9);
  }

  .\32xl\:bg-fuchsia-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(253 244 255 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-fuchsia-50\/10 {
    background-color: rgb(253 244 255 / 0.1);
  }

  .\32xl\:bg-fuchsia-50\/20 {
    background-color: rgb(253 244 255 / 0.2);
  }

  .\32xl\:bg-fuchsia-50\/30 {
    background-color: rgb(253 244 255 / 0.3);
  }

  .\32xl\:bg-fuchsia-50\/40 {
    background-color: rgb(253 244 255 / 0.4);
  }

  .\32xl\:bg-fuchsia-50\/5 {
    background-color: rgb(253 244 255 / 0.05);
  }

  .\32xl\:bg-fuchsia-50\/50 {
    background-color: rgb(253 244 255 / 0.5);
  }

  .\32xl\:bg-fuchsia-50\/60 {
    background-color: rgb(253 244 255 / 0.6);
  }

  .\32xl\:bg-fuchsia-50\/70 {
    background-color: rgb(253 244 255 / 0.7);
  }

  .\32xl\:bg-fuchsia-50\/80 {
    background-color: rgb(253 244 255 / 0.8);
  }

  .\32xl\:bg-fuchsia-50\/90 {
    background-color: rgb(253 244 255 / 0.9);
  }

  .\32xl\:bg-fuchsia-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(217 70 239 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-fuchsia-500\/10 {
    background-color: rgb(217 70 239 / 0.1);
  }

  .\32xl\:bg-fuchsia-500\/20 {
    background-color: rgb(217 70 239 / 0.2);
  }

  .\32xl\:bg-fuchsia-500\/30 {
    background-color: rgb(217 70 239 / 0.3);
  }

  .\32xl\:bg-fuchsia-500\/40 {
    background-color: rgb(217 70 239 / 0.4);
  }

  .\32xl\:bg-fuchsia-500\/5 {
    background-color: rgb(217 70 239 / 0.05);
  }

  .\32xl\:bg-fuchsia-500\/50 {
    background-color: rgb(217 70 239 / 0.5);
  }

  .\32xl\:bg-fuchsia-500\/60 {
    background-color: rgb(217 70 239 / 0.6);
  }

  .\32xl\:bg-fuchsia-500\/70 {
    background-color: rgb(217 70 239 / 0.7);
  }

  .\32xl\:bg-fuchsia-500\/80 {
    background-color: rgb(217 70 239 / 0.8);
  }

  .\32xl\:bg-fuchsia-500\/90 {
    background-color: rgb(217 70 239 / 0.9);
  }

  .\32xl\:bg-fuchsia-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(192 38 211 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-fuchsia-600\/10 {
    background-color: rgb(192 38 211 / 0.1);
  }

  .\32xl\:bg-fuchsia-600\/20 {
    background-color: rgb(192 38 211 / 0.2);
  }

  .\32xl\:bg-fuchsia-600\/30 {
    background-color: rgb(192 38 211 / 0.3);
  }

  .\32xl\:bg-fuchsia-600\/40 {
    background-color: rgb(192 38 211 / 0.4);
  }

  .\32xl\:bg-fuchsia-600\/5 {
    background-color: rgb(192 38 211 / 0.05);
  }

  .\32xl\:bg-fuchsia-600\/50 {
    background-color: rgb(192 38 211 / 0.5);
  }

  .\32xl\:bg-fuchsia-600\/60 {
    background-color: rgb(192 38 211 / 0.6);
  }

  .\32xl\:bg-fuchsia-600\/70 {
    background-color: rgb(192 38 211 / 0.7);
  }

  .\32xl\:bg-fuchsia-600\/80 {
    background-color: rgb(192 38 211 / 0.8);
  }

  .\32xl\:bg-fuchsia-600\/90 {
    background-color: rgb(192 38 211 / 0.9);
  }

  .\32xl\:bg-fuchsia-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(162 28 175 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-fuchsia-700\/10 {
    background-color: rgb(162 28 175 / 0.1);
  }

  .\32xl\:bg-fuchsia-700\/20 {
    background-color: rgb(162 28 175 / 0.2);
  }

  .\32xl\:bg-fuchsia-700\/30 {
    background-color: rgb(162 28 175 / 0.3);
  }

  .\32xl\:bg-fuchsia-700\/40 {
    background-color: rgb(162 28 175 / 0.4);
  }

  .\32xl\:bg-fuchsia-700\/5 {
    background-color: rgb(162 28 175 / 0.05);
  }

  .\32xl\:bg-fuchsia-700\/50 {
    background-color: rgb(162 28 175 / 0.5);
  }

  .\32xl\:bg-fuchsia-700\/60 {
    background-color: rgb(162 28 175 / 0.6);
  }

  .\32xl\:bg-fuchsia-700\/70 {
    background-color: rgb(162 28 175 / 0.7);
  }

  .\32xl\:bg-fuchsia-700\/80 {
    background-color: rgb(162 28 175 / 0.8);
  }

  .\32xl\:bg-fuchsia-700\/90 {
    background-color: rgb(162 28 175 / 0.9);
  }

  .\32xl\:bg-fuchsia-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(134 25 143 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-fuchsia-800\/10 {
    background-color: rgb(134 25 143 / 0.1);
  }

  .\32xl\:bg-fuchsia-800\/20 {
    background-color: rgb(134 25 143 / 0.2);
  }

  .\32xl\:bg-fuchsia-800\/30 {
    background-color: rgb(134 25 143 / 0.3);
  }

  .\32xl\:bg-fuchsia-800\/40 {
    background-color: rgb(134 25 143 / 0.4);
  }

  .\32xl\:bg-fuchsia-800\/5 {
    background-color: rgb(134 25 143 / 0.05);
  }

  .\32xl\:bg-fuchsia-800\/50 {
    background-color: rgb(134 25 143 / 0.5);
  }

  .\32xl\:bg-fuchsia-800\/60 {
    background-color: rgb(134 25 143 / 0.6);
  }

  .\32xl\:bg-fuchsia-800\/70 {
    background-color: rgb(134 25 143 / 0.7);
  }

  .\32xl\:bg-fuchsia-800\/80 {
    background-color: rgb(134 25 143 / 0.8);
  }

  .\32xl\:bg-fuchsia-800\/90 {
    background-color: rgb(134 25 143 / 0.9);
  }

  .\32xl\:bg-fuchsia-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(112 26 117 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-fuchsia-900\/10 {
    background-color: rgb(112 26 117 / 0.1);
  }

  .\32xl\:bg-fuchsia-900\/20 {
    background-color: rgb(112 26 117 / 0.2);
  }

  .\32xl\:bg-fuchsia-900\/30 {
    background-color: rgb(112 26 117 / 0.3);
  }

  .\32xl\:bg-fuchsia-900\/40 {
    background-color: rgb(112 26 117 / 0.4);
  }

  .\32xl\:bg-fuchsia-900\/5 {
    background-color: rgb(112 26 117 / 0.05);
  }

  .\32xl\:bg-fuchsia-900\/50 {
    background-color: rgb(112 26 117 / 0.5);
  }

  .\32xl\:bg-fuchsia-900\/60 {
    background-color: rgb(112 26 117 / 0.6);
  }

  .\32xl\:bg-fuchsia-900\/70 {
    background-color: rgb(112 26 117 / 0.7);
  }

  .\32xl\:bg-fuchsia-900\/80 {
    background-color: rgb(112 26 117 / 0.8);
  }

  .\32xl\:bg-fuchsia-900\/90 {
    background-color: rgb(112 26 117 / 0.9);
  }

  .\32xl\:bg-fuchsia-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(74 4 78 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-fuchsia-950\/10 {
    background-color: rgb(74 4 78 / 0.1);
  }

  .\32xl\:bg-fuchsia-950\/20 {
    background-color: rgb(74 4 78 / 0.2);
  }

  .\32xl\:bg-fuchsia-950\/30 {
    background-color: rgb(74 4 78 / 0.3);
  }

  .\32xl\:bg-fuchsia-950\/40 {
    background-color: rgb(74 4 78 / 0.4);
  }

  .\32xl\:bg-fuchsia-950\/5 {
    background-color: rgb(74 4 78 / 0.05);
  }

  .\32xl\:bg-fuchsia-950\/50 {
    background-color: rgb(74 4 78 / 0.5);
  }

  .\32xl\:bg-fuchsia-950\/60 {
    background-color: rgb(74 4 78 / 0.6);
  }

  .\32xl\:bg-fuchsia-950\/70 {
    background-color: rgb(74 4 78 / 0.7);
  }

  .\32xl\:bg-fuchsia-950\/80 {
    background-color: rgb(74 4 78 / 0.8);
  }

  .\32xl\:bg-fuchsia-950\/90 {
    background-color: rgb(74 4 78 / 0.9);
  }

  .\32xl\:bg-gray-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-gray-100\/10 {
    background-color: rgb(243 244 246 / 0.1);
  }

  .\32xl\:bg-gray-100\/20 {
    background-color: rgb(243 244 246 / 0.2);
  }

  .\32xl\:bg-gray-100\/30 {
    background-color: rgb(243 244 246 / 0.3);
  }

  .\32xl\:bg-gray-100\/40 {
    background-color: rgb(243 244 246 / 0.4);
  }

  .\32xl\:bg-gray-100\/5 {
    background-color: rgb(243 244 246 / 0.05);
  }

  .\32xl\:bg-gray-100\/50 {
    background-color: rgb(243 244 246 / 0.5);
  }

  .\32xl\:bg-gray-100\/60 {
    background-color: rgb(243 244 246 / 0.6);
  }

  .\32xl\:bg-gray-100\/70 {
    background-color: rgb(243 244 246 / 0.7);
  }

  .\32xl\:bg-gray-100\/80 {
    background-color: rgb(243 244 246 / 0.8);
  }

  .\32xl\:bg-gray-100\/90 {
    background-color: rgb(243 244 246 / 0.9);
  }

  .\32xl\:bg-gray-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-gray-200\/10 {
    background-color: rgb(229 231 235 / 0.1);
  }

  .\32xl\:bg-gray-200\/20 {
    background-color: rgb(229 231 235 / 0.2);
  }

  .\32xl\:bg-gray-200\/30 {
    background-color: rgb(229 231 235 / 0.3);
  }

  .\32xl\:bg-gray-200\/40 {
    background-color: rgb(229 231 235 / 0.4);
  }

  .\32xl\:bg-gray-200\/5 {
    background-color: rgb(229 231 235 / 0.05);
  }

  .\32xl\:bg-gray-200\/50 {
    background-color: rgb(229 231 235 / 0.5);
  }

  .\32xl\:bg-gray-200\/60 {
    background-color: rgb(229 231 235 / 0.6);
  }

  .\32xl\:bg-gray-200\/70 {
    background-color: rgb(229 231 235 / 0.7);
  }

  .\32xl\:bg-gray-200\/80 {
    background-color: rgb(229 231 235 / 0.8);
  }

  .\32xl\:bg-gray-200\/90 {
    background-color: rgb(229 231 235 / 0.9);
  }

  .\32xl\:bg-gray-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-gray-300\/10 {
    background-color: rgb(209 213 219 / 0.1);
  }

  .\32xl\:bg-gray-300\/20 {
    background-color: rgb(209 213 219 / 0.2);
  }

  .\32xl\:bg-gray-300\/30 {
    background-color: rgb(209 213 219 / 0.3);
  }

  .\32xl\:bg-gray-300\/40 {
    background-color: rgb(209 213 219 / 0.4);
  }

  .\32xl\:bg-gray-300\/5 {
    background-color: rgb(209 213 219 / 0.05);
  }

  .\32xl\:bg-gray-300\/50 {
    background-color: rgb(209 213 219 / 0.5);
  }

  .\32xl\:bg-gray-300\/60 {
    background-color: rgb(209 213 219 / 0.6);
  }

  .\32xl\:bg-gray-300\/70 {
    background-color: rgb(209 213 219 / 0.7);
  }

  .\32xl\:bg-gray-300\/80 {
    background-color: rgb(209 213 219 / 0.8);
  }

  .\32xl\:bg-gray-300\/90 {
    background-color: rgb(209 213 219 / 0.9);
  }

  .\32xl\:bg-gray-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(156 163 175 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-gray-400\/10 {
    background-color: rgb(156 163 175 / 0.1);
  }

  .\32xl\:bg-gray-400\/20 {
    background-color: rgb(156 163 175 / 0.2);
  }

  .\32xl\:bg-gray-400\/30 {
    background-color: rgb(156 163 175 / 0.3);
  }

  .\32xl\:bg-gray-400\/40 {
    background-color: rgb(156 163 175 / 0.4);
  }

  .\32xl\:bg-gray-400\/5 {
    background-color: rgb(156 163 175 / 0.05);
  }

  .\32xl\:bg-gray-400\/50 {
    background-color: rgb(156 163 175 / 0.5);
  }

  .\32xl\:bg-gray-400\/60 {
    background-color: rgb(156 163 175 / 0.6);
  }

  .\32xl\:bg-gray-400\/70 {
    background-color: rgb(156 163 175 / 0.7);
  }

  .\32xl\:bg-gray-400\/80 {
    background-color: rgb(156 163 175 / 0.8);
  }

  .\32xl\:bg-gray-400\/90 {
    background-color: rgb(156 163 175 / 0.9);
  }

  .\32xl\:bg-gray-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-gray-50\/10 {
    background-color: rgb(249 250 251 / 0.1);
  }

  .\32xl\:bg-gray-50\/20 {
    background-color: rgb(249 250 251 / 0.2);
  }

  .\32xl\:bg-gray-50\/30 {
    background-color: rgb(249 250 251 / 0.3);
  }

  .\32xl\:bg-gray-50\/40 {
    background-color: rgb(249 250 251 / 0.4);
  }

  .\32xl\:bg-gray-50\/5 {
    background-color: rgb(249 250 251 / 0.05);
  }

  .\32xl\:bg-gray-50\/50 {
    background-color: rgb(249 250 251 / 0.5);
  }

  .\32xl\:bg-gray-50\/60 {
    background-color: rgb(249 250 251 / 0.6);
  }

  .\32xl\:bg-gray-50\/70 {
    background-color: rgb(249 250 251 / 0.7);
  }

  .\32xl\:bg-gray-50\/80 {
    background-color: rgb(249 250 251 / 0.8);
  }

  .\32xl\:bg-gray-50\/90 {
    background-color: rgb(249 250 251 / 0.9);
  }

  .\32xl\:bg-gray-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(107 114 128 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-gray-500\/10 {
    background-color: rgb(107 114 128 / 0.1);
  }

  .\32xl\:bg-gray-500\/20 {
    background-color: rgb(107 114 128 / 0.2);
  }

  .\32xl\:bg-gray-500\/30 {
    background-color: rgb(107 114 128 / 0.3);
  }

  .\32xl\:bg-gray-500\/40 {
    background-color: rgb(107 114 128 / 0.4);
  }

  .\32xl\:bg-gray-500\/5 {
    background-color: rgb(107 114 128 / 0.05);
  }

  .\32xl\:bg-gray-500\/50 {
    background-color: rgb(107 114 128 / 0.5);
  }

  .\32xl\:bg-gray-500\/60 {
    background-color: rgb(107 114 128 / 0.6);
  }

  .\32xl\:bg-gray-500\/70 {
    background-color: rgb(107 114 128 / 0.7);
  }

  .\32xl\:bg-gray-500\/80 {
    background-color: rgb(107 114 128 / 0.8);
  }

  .\32xl\:bg-gray-500\/90 {
    background-color: rgb(107 114 128 / 0.9);
  }

  .\32xl\:bg-gray-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-gray-600\/10 {
    background-color: rgb(75 85 99 / 0.1);
  }

  .\32xl\:bg-gray-600\/20 {
    background-color: rgb(75 85 99 / 0.2);
  }

  .\32xl\:bg-gray-600\/30 {
    background-color: rgb(75 85 99 / 0.3);
  }

  .\32xl\:bg-gray-600\/40 {
    background-color: rgb(75 85 99 / 0.4);
  }

  .\32xl\:bg-gray-600\/5 {
    background-color: rgb(75 85 99 / 0.05);
  }

  .\32xl\:bg-gray-600\/50 {
    background-color: rgb(75 85 99 / 0.5);
  }

  .\32xl\:bg-gray-600\/60 {
    background-color: rgb(75 85 99 / 0.6);
  }

  .\32xl\:bg-gray-600\/70 {
    background-color: rgb(75 85 99 / 0.7);
  }

  .\32xl\:bg-gray-600\/80 {
    background-color: rgb(75 85 99 / 0.8);
  }

  .\32xl\:bg-gray-600\/90 {
    background-color: rgb(75 85 99 / 0.9);
  }

  .\32xl\:bg-gray-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-gray-700\/10 {
    background-color: rgb(55 65 81 / 0.1);
  }

  .\32xl\:bg-gray-700\/20 {
    background-color: rgb(55 65 81 / 0.2);
  }

  .\32xl\:bg-gray-700\/30 {
    background-color: rgb(55 65 81 / 0.3);
  }

  .\32xl\:bg-gray-700\/40 {
    background-color: rgb(55 65 81 / 0.4);
  }

  .\32xl\:bg-gray-700\/5 {
    background-color: rgb(55 65 81 / 0.05);
  }

  .\32xl\:bg-gray-700\/50 {
    background-color: rgb(55 65 81 / 0.5);
  }

  .\32xl\:bg-gray-700\/60 {
    background-color: rgb(55 65 81 / 0.6);
  }

  .\32xl\:bg-gray-700\/70 {
    background-color: rgb(55 65 81 / 0.7);
  }

  .\32xl\:bg-gray-700\/80 {
    background-color: rgb(55 65 81 / 0.8);
  }

  .\32xl\:bg-gray-700\/90 {
    background-color: rgb(55 65 81 / 0.9);
  }

  .\32xl\:bg-gray-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-gray-800\/10 {
    background-color: rgb(31 41 55 / 0.1);
  }

  .\32xl\:bg-gray-800\/20 {
    background-color: rgb(31 41 55 / 0.2);
  }

  .\32xl\:bg-gray-800\/30 {
    background-color: rgb(31 41 55 / 0.3);
  }

  .\32xl\:bg-gray-800\/40 {
    background-color: rgb(31 41 55 / 0.4);
  }

  .\32xl\:bg-gray-800\/5 {
    background-color: rgb(31 41 55 / 0.05);
  }

  .\32xl\:bg-gray-800\/50 {
    background-color: rgb(31 41 55 / 0.5);
  }

  .\32xl\:bg-gray-800\/60 {
    background-color: rgb(31 41 55 / 0.6);
  }

  .\32xl\:bg-gray-800\/70 {
    background-color: rgb(31 41 55 / 0.7);
  }

  .\32xl\:bg-gray-800\/80 {
    background-color: rgb(31 41 55 / 0.8);
  }

  .\32xl\:bg-gray-800\/90 {
    background-color: rgb(31 41 55 / 0.9);
  }

  .\32xl\:bg-gray-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-gray-900\/10 {
    background-color: rgb(17 24 39 / 0.1);
  }

  .\32xl\:bg-gray-900\/20 {
    background-color: rgb(17 24 39 / 0.2);
  }

  .\32xl\:bg-gray-900\/30 {
    background-color: rgb(17 24 39 / 0.3);
  }

  .\32xl\:bg-gray-900\/40 {
    background-color: rgb(17 24 39 / 0.4);
  }

  .\32xl\:bg-gray-900\/5 {
    background-color: rgb(17 24 39 / 0.05);
  }

  .\32xl\:bg-gray-900\/50 {
    background-color: rgb(17 24 39 / 0.5);
  }

  .\32xl\:bg-gray-900\/60 {
    background-color: rgb(17 24 39 / 0.6);
  }

  .\32xl\:bg-gray-900\/70 {
    background-color: rgb(17 24 39 / 0.7);
  }

  .\32xl\:bg-gray-900\/80 {
    background-color: rgb(17 24 39 / 0.8);
  }

  .\32xl\:bg-gray-900\/90 {
    background-color: rgb(17 24 39 / 0.9);
  }

  .\32xl\:bg-gray-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(3 7 18 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-gray-950\/10 {
    background-color: rgb(3 7 18 / 0.1);
  }

  .\32xl\:bg-gray-950\/20 {
    background-color: rgb(3 7 18 / 0.2);
  }

  .\32xl\:bg-gray-950\/30 {
    background-color: rgb(3 7 18 / 0.3);
  }

  .\32xl\:bg-gray-950\/40 {
    background-color: rgb(3 7 18 / 0.4);
  }

  .\32xl\:bg-gray-950\/5 {
    background-color: rgb(3 7 18 / 0.05);
  }

  .\32xl\:bg-gray-950\/50 {
    background-color: rgb(3 7 18 / 0.5);
  }

  .\32xl\:bg-gray-950\/60 {
    background-color: rgb(3 7 18 / 0.6);
  }

  .\32xl\:bg-gray-950\/70 {
    background-color: rgb(3 7 18 / 0.7);
  }

  .\32xl\:bg-gray-950\/80 {
    background-color: rgb(3 7 18 / 0.8);
  }

  .\32xl\:bg-gray-950\/90 {
    background-color: rgb(3 7 18 / 0.9);
  }

  .\32xl\:bg-green-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-green-100\/10 {
    background-color: rgb(220 252 231 / 0.1);
  }

  .\32xl\:bg-green-100\/20 {
    background-color: rgb(220 252 231 / 0.2);
  }

  .\32xl\:bg-green-100\/30 {
    background-color: rgb(220 252 231 / 0.3);
  }

  .\32xl\:bg-green-100\/40 {
    background-color: rgb(220 252 231 / 0.4);
  }

  .\32xl\:bg-green-100\/5 {
    background-color: rgb(220 252 231 / 0.05);
  }

  .\32xl\:bg-green-100\/50 {
    background-color: rgb(220 252 231 / 0.5);
  }

  .\32xl\:bg-green-100\/60 {
    background-color: rgb(220 252 231 / 0.6);
  }

  .\32xl\:bg-green-100\/70 {
    background-color: rgb(220 252 231 / 0.7);
  }

  .\32xl\:bg-green-100\/80 {
    background-color: rgb(220 252 231 / 0.8);
  }

  .\32xl\:bg-green-100\/90 {
    background-color: rgb(220 252 231 / 0.9);
  }

  .\32xl\:bg-green-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(187 247 208 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-green-200\/10 {
    background-color: rgb(187 247 208 / 0.1);
  }

  .\32xl\:bg-green-200\/20 {
    background-color: rgb(187 247 208 / 0.2);
  }

  .\32xl\:bg-green-200\/30 {
    background-color: rgb(187 247 208 / 0.3);
  }

  .\32xl\:bg-green-200\/40 {
    background-color: rgb(187 247 208 / 0.4);
  }

  .\32xl\:bg-green-200\/5 {
    background-color: rgb(187 247 208 / 0.05);
  }

  .\32xl\:bg-green-200\/50 {
    background-color: rgb(187 247 208 / 0.5);
  }

  .\32xl\:bg-green-200\/60 {
    background-color: rgb(187 247 208 / 0.6);
  }

  .\32xl\:bg-green-200\/70 {
    background-color: rgb(187 247 208 / 0.7);
  }

  .\32xl\:bg-green-200\/80 {
    background-color: rgb(187 247 208 / 0.8);
  }

  .\32xl\:bg-green-200\/90 {
    background-color: rgb(187 247 208 / 0.9);
  }

  .\32xl\:bg-green-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(134 239 172 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-green-300\/10 {
    background-color: rgb(134 239 172 / 0.1);
  }

  .\32xl\:bg-green-300\/20 {
    background-color: rgb(134 239 172 / 0.2);
  }

  .\32xl\:bg-green-300\/30 {
    background-color: rgb(134 239 172 / 0.3);
  }

  .\32xl\:bg-green-300\/40 {
    background-color: rgb(134 239 172 / 0.4);
  }

  .\32xl\:bg-green-300\/5 {
    background-color: rgb(134 239 172 / 0.05);
  }

  .\32xl\:bg-green-300\/50 {
    background-color: rgb(134 239 172 / 0.5);
  }

  .\32xl\:bg-green-300\/60 {
    background-color: rgb(134 239 172 / 0.6);
  }

  .\32xl\:bg-green-300\/70 {
    background-color: rgb(134 239 172 / 0.7);
  }

  .\32xl\:bg-green-300\/80 {
    background-color: rgb(134 239 172 / 0.8);
  }

  .\32xl\:bg-green-300\/90 {
    background-color: rgb(134 239 172 / 0.9);
  }

  .\32xl\:bg-green-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(74 222 128 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-green-400\/10 {
    background-color: rgb(74 222 128 / 0.1);
  }

  .\32xl\:bg-green-400\/20 {
    background-color: rgb(74 222 128 / 0.2);
  }

  .\32xl\:bg-green-400\/30 {
    background-color: rgb(74 222 128 / 0.3);
  }

  .\32xl\:bg-green-400\/40 {
    background-color: rgb(74 222 128 / 0.4);
  }

  .\32xl\:bg-green-400\/5 {
    background-color: rgb(74 222 128 / 0.05);
  }

  .\32xl\:bg-green-400\/50 {
    background-color: rgb(74 222 128 / 0.5);
  }

  .\32xl\:bg-green-400\/60 {
    background-color: rgb(74 222 128 / 0.6);
  }

  .\32xl\:bg-green-400\/70 {
    background-color: rgb(74 222 128 / 0.7);
  }

  .\32xl\:bg-green-400\/80 {
    background-color: rgb(74 222 128 / 0.8);
  }

  .\32xl\:bg-green-400\/90 {
    background-color: rgb(74 222 128 / 0.9);
  }

  .\32xl\:bg-green-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-green-50\/10 {
    background-color: rgb(240 253 244 / 0.1);
  }

  .\32xl\:bg-green-50\/20 {
    background-color: rgb(240 253 244 / 0.2);
  }

  .\32xl\:bg-green-50\/30 {
    background-color: rgb(240 253 244 / 0.3);
  }

  .\32xl\:bg-green-50\/40 {
    background-color: rgb(240 253 244 / 0.4);
  }

  .\32xl\:bg-green-50\/5 {
    background-color: rgb(240 253 244 / 0.05);
  }

  .\32xl\:bg-green-50\/50 {
    background-color: rgb(240 253 244 / 0.5);
  }

  .\32xl\:bg-green-50\/60 {
    background-color: rgb(240 253 244 / 0.6);
  }

  .\32xl\:bg-green-50\/70 {
    background-color: rgb(240 253 244 / 0.7);
  }

  .\32xl\:bg-green-50\/80 {
    background-color: rgb(240 253 244 / 0.8);
  }

  .\32xl\:bg-green-50\/90 {
    background-color: rgb(240 253 244 / 0.9);
  }

  .\32xl\:bg-green-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-green-500\/10 {
    background-color: rgb(34 197 94 / 0.1);
  }

  .\32xl\:bg-green-500\/20 {
    background-color: rgb(34 197 94 / 0.2);
  }

  .\32xl\:bg-green-500\/30 {
    background-color: rgb(34 197 94 / 0.3);
  }

  .\32xl\:bg-green-500\/40 {
    background-color: rgb(34 197 94 / 0.4);
  }

  .\32xl\:bg-green-500\/5 {
    background-color: rgb(34 197 94 / 0.05);
  }

  .\32xl\:bg-green-500\/50 {
    background-color: rgb(34 197 94 / 0.5);
  }

  .\32xl\:bg-green-500\/60 {
    background-color: rgb(34 197 94 / 0.6);
  }

  .\32xl\:bg-green-500\/70 {
    background-color: rgb(34 197 94 / 0.7);
  }

  .\32xl\:bg-green-500\/80 {
    background-color: rgb(34 197 94 / 0.8);
  }

  .\32xl\:bg-green-500\/90 {
    background-color: rgb(34 197 94 / 0.9);
  }

  .\32xl\:bg-green-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-green-600\/10 {
    background-color: rgb(22 163 74 / 0.1);
  }

  .\32xl\:bg-green-600\/20 {
    background-color: rgb(22 163 74 / 0.2);
  }

  .\32xl\:bg-green-600\/30 {
    background-color: rgb(22 163 74 / 0.3);
  }

  .\32xl\:bg-green-600\/40 {
    background-color: rgb(22 163 74 / 0.4);
  }

  .\32xl\:bg-green-600\/5 {
    background-color: rgb(22 163 74 / 0.05);
  }

  .\32xl\:bg-green-600\/50 {
    background-color: rgb(22 163 74 / 0.5);
  }

  .\32xl\:bg-green-600\/60 {
    background-color: rgb(22 163 74 / 0.6);
  }

  .\32xl\:bg-green-600\/70 {
    background-color: rgb(22 163 74 / 0.7);
  }

  .\32xl\:bg-green-600\/80 {
    background-color: rgb(22 163 74 / 0.8);
  }

  .\32xl\:bg-green-600\/90 {
    background-color: rgb(22 163 74 / 0.9);
  }

  .\32xl\:bg-green-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(21 128 61 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-green-700\/10 {
    background-color: rgb(21 128 61 / 0.1);
  }

  .\32xl\:bg-green-700\/20 {
    background-color: rgb(21 128 61 / 0.2);
  }

  .\32xl\:bg-green-700\/30 {
    background-color: rgb(21 128 61 / 0.3);
  }

  .\32xl\:bg-green-700\/40 {
    background-color: rgb(21 128 61 / 0.4);
  }

  .\32xl\:bg-green-700\/5 {
    background-color: rgb(21 128 61 / 0.05);
  }

  .\32xl\:bg-green-700\/50 {
    background-color: rgb(21 128 61 / 0.5);
  }

  .\32xl\:bg-green-700\/60 {
    background-color: rgb(21 128 61 / 0.6);
  }

  .\32xl\:bg-green-700\/70 {
    background-color: rgb(21 128 61 / 0.7);
  }

  .\32xl\:bg-green-700\/80 {
    background-color: rgb(21 128 61 / 0.8);
  }

  .\32xl\:bg-green-700\/90 {
    background-color: rgb(21 128 61 / 0.9);
  }

  .\32xl\:bg-green-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(22 101 52 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-green-800\/10 {
    background-color: rgb(22 101 52 / 0.1);
  }

  .\32xl\:bg-green-800\/20 {
    background-color: rgb(22 101 52 / 0.2);
  }

  .\32xl\:bg-green-800\/30 {
    background-color: rgb(22 101 52 / 0.3);
  }

  .\32xl\:bg-green-800\/40 {
    background-color: rgb(22 101 52 / 0.4);
  }

  .\32xl\:bg-green-800\/5 {
    background-color: rgb(22 101 52 / 0.05);
  }

  .\32xl\:bg-green-800\/50 {
    background-color: rgb(22 101 52 / 0.5);
  }

  .\32xl\:bg-green-800\/60 {
    background-color: rgb(22 101 52 / 0.6);
  }

  .\32xl\:bg-green-800\/70 {
    background-color: rgb(22 101 52 / 0.7);
  }

  .\32xl\:bg-green-800\/80 {
    background-color: rgb(22 101 52 / 0.8);
  }

  .\32xl\:bg-green-800\/90 {
    background-color: rgb(22 101 52 / 0.9);
  }

  .\32xl\:bg-green-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(20 83 45 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-green-900\/10 {
    background-color: rgb(20 83 45 / 0.1);
  }

  .\32xl\:bg-green-900\/20 {
    background-color: rgb(20 83 45 / 0.2);
  }

  .\32xl\:bg-green-900\/30 {
    background-color: rgb(20 83 45 / 0.3);
  }

  .\32xl\:bg-green-900\/40 {
    background-color: rgb(20 83 45 / 0.4);
  }

  .\32xl\:bg-green-900\/5 {
    background-color: rgb(20 83 45 / 0.05);
  }

  .\32xl\:bg-green-900\/50 {
    background-color: rgb(20 83 45 / 0.5);
  }

  .\32xl\:bg-green-900\/60 {
    background-color: rgb(20 83 45 / 0.6);
  }

  .\32xl\:bg-green-900\/70 {
    background-color: rgb(20 83 45 / 0.7);
  }

  .\32xl\:bg-green-900\/80 {
    background-color: rgb(20 83 45 / 0.8);
  }

  .\32xl\:bg-green-900\/90 {
    background-color: rgb(20 83 45 / 0.9);
  }

  .\32xl\:bg-green-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(5 46 22 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-green-950\/10 {
    background-color: rgb(5 46 22 / 0.1);
  }

  .\32xl\:bg-green-950\/20 {
    background-color: rgb(5 46 22 / 0.2);
  }

  .\32xl\:bg-green-950\/30 {
    background-color: rgb(5 46 22 / 0.3);
  }

  .\32xl\:bg-green-950\/40 {
    background-color: rgb(5 46 22 / 0.4);
  }

  .\32xl\:bg-green-950\/5 {
    background-color: rgb(5 46 22 / 0.05);
  }

  .\32xl\:bg-green-950\/50 {
    background-color: rgb(5 46 22 / 0.5);
  }

  .\32xl\:bg-green-950\/60 {
    background-color: rgb(5 46 22 / 0.6);
  }

  .\32xl\:bg-green-950\/70 {
    background-color: rgb(5 46 22 / 0.7);
  }

  .\32xl\:bg-green-950\/80 {
    background-color: rgb(5 46 22 / 0.8);
  }

  .\32xl\:bg-green-950\/90 {
    background-color: rgb(5 46 22 / 0.9);
  }

  .\32xl\:bg-indigo-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(224 231 255 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-indigo-100\/10 {
    background-color: rgb(224 231 255 / 0.1);
  }

  .\32xl\:bg-indigo-100\/20 {
    background-color: rgb(224 231 255 / 0.2);
  }

  .\32xl\:bg-indigo-100\/30 {
    background-color: rgb(224 231 255 / 0.3);
  }

  .\32xl\:bg-indigo-100\/40 {
    background-color: rgb(224 231 255 / 0.4);
  }

  .\32xl\:bg-indigo-100\/5 {
    background-color: rgb(224 231 255 / 0.05);
  }

  .\32xl\:bg-indigo-100\/50 {
    background-color: rgb(224 231 255 / 0.5);
  }

  .\32xl\:bg-indigo-100\/60 {
    background-color: rgb(224 231 255 / 0.6);
  }

  .\32xl\:bg-indigo-100\/70 {
    background-color: rgb(224 231 255 / 0.7);
  }

  .\32xl\:bg-indigo-100\/80 {
    background-color: rgb(224 231 255 / 0.8);
  }

  .\32xl\:bg-indigo-100\/90 {
    background-color: rgb(224 231 255 / 0.9);
  }

  .\32xl\:bg-indigo-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(199 210 254 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-indigo-200\/10 {
    background-color: rgb(199 210 254 / 0.1);
  }

  .\32xl\:bg-indigo-200\/20 {
    background-color: rgb(199 210 254 / 0.2);
  }

  .\32xl\:bg-indigo-200\/30 {
    background-color: rgb(199 210 254 / 0.3);
  }

  .\32xl\:bg-indigo-200\/40 {
    background-color: rgb(199 210 254 / 0.4);
  }

  .\32xl\:bg-indigo-200\/5 {
    background-color: rgb(199 210 254 / 0.05);
  }

  .\32xl\:bg-indigo-200\/50 {
    background-color: rgb(199 210 254 / 0.5);
  }

  .\32xl\:bg-indigo-200\/60 {
    background-color: rgb(199 210 254 / 0.6);
  }

  .\32xl\:bg-indigo-200\/70 {
    background-color: rgb(199 210 254 / 0.7);
  }

  .\32xl\:bg-indigo-200\/80 {
    background-color: rgb(199 210 254 / 0.8);
  }

  .\32xl\:bg-indigo-200\/90 {
    background-color: rgb(199 210 254 / 0.9);
  }

  .\32xl\:bg-indigo-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(165 180 252 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-indigo-300\/10 {
    background-color: rgb(165 180 252 / 0.1);
  }

  .\32xl\:bg-indigo-300\/20 {
    background-color: rgb(165 180 252 / 0.2);
  }

  .\32xl\:bg-indigo-300\/30 {
    background-color: rgb(165 180 252 / 0.3);
  }

  .\32xl\:bg-indigo-300\/40 {
    background-color: rgb(165 180 252 / 0.4);
  }

  .\32xl\:bg-indigo-300\/5 {
    background-color: rgb(165 180 252 / 0.05);
  }

  .\32xl\:bg-indigo-300\/50 {
    background-color: rgb(165 180 252 / 0.5);
  }

  .\32xl\:bg-indigo-300\/60 {
    background-color: rgb(165 180 252 / 0.6);
  }

  .\32xl\:bg-indigo-300\/70 {
    background-color: rgb(165 180 252 / 0.7);
  }

  .\32xl\:bg-indigo-300\/80 {
    background-color: rgb(165 180 252 / 0.8);
  }

  .\32xl\:bg-indigo-300\/90 {
    background-color: rgb(165 180 252 / 0.9);
  }

  .\32xl\:bg-indigo-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(129 140 248 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-indigo-400\/10 {
    background-color: rgb(129 140 248 / 0.1);
  }

  .\32xl\:bg-indigo-400\/20 {
    background-color: rgb(129 140 248 / 0.2);
  }

  .\32xl\:bg-indigo-400\/30 {
    background-color: rgb(129 140 248 / 0.3);
  }

  .\32xl\:bg-indigo-400\/40 {
    background-color: rgb(129 140 248 / 0.4);
  }

  .\32xl\:bg-indigo-400\/5 {
    background-color: rgb(129 140 248 / 0.05);
  }

  .\32xl\:bg-indigo-400\/50 {
    background-color: rgb(129 140 248 / 0.5);
  }

  .\32xl\:bg-indigo-400\/60 {
    background-color: rgb(129 140 248 / 0.6);
  }

  .\32xl\:bg-indigo-400\/70 {
    background-color: rgb(129 140 248 / 0.7);
  }

  .\32xl\:bg-indigo-400\/80 {
    background-color: rgb(129 140 248 / 0.8);
  }

  .\32xl\:bg-indigo-400\/90 {
    background-color: rgb(129 140 248 / 0.9);
  }

  .\32xl\:bg-indigo-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(238 242 255 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-indigo-50\/10 {
    background-color: rgb(238 242 255 / 0.1);
  }

  .\32xl\:bg-indigo-50\/20 {
    background-color: rgb(238 242 255 / 0.2);
  }

  .\32xl\:bg-indigo-50\/30 {
    background-color: rgb(238 242 255 / 0.3);
  }

  .\32xl\:bg-indigo-50\/40 {
    background-color: rgb(238 242 255 / 0.4);
  }

  .\32xl\:bg-indigo-50\/5 {
    background-color: rgb(238 242 255 / 0.05);
  }

  .\32xl\:bg-indigo-50\/50 {
    background-color: rgb(238 242 255 / 0.5);
  }

  .\32xl\:bg-indigo-50\/60 {
    background-color: rgb(238 242 255 / 0.6);
  }

  .\32xl\:bg-indigo-50\/70 {
    background-color: rgb(238 242 255 / 0.7);
  }

  .\32xl\:bg-indigo-50\/80 {
    background-color: rgb(238 242 255 / 0.8);
  }

  .\32xl\:bg-indigo-50\/90 {
    background-color: rgb(238 242 255 / 0.9);
  }

  .\32xl\:bg-indigo-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(99 102 241 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-indigo-500\/10 {
    background-color: rgb(99 102 241 / 0.1);
  }

  .\32xl\:bg-indigo-500\/20 {
    background-color: rgb(99 102 241 / 0.2);
  }

  .\32xl\:bg-indigo-500\/30 {
    background-color: rgb(99 102 241 / 0.3);
  }

  .\32xl\:bg-indigo-500\/40 {
    background-color: rgb(99 102 241 / 0.4);
  }

  .\32xl\:bg-indigo-500\/5 {
    background-color: rgb(99 102 241 / 0.05);
  }

  .\32xl\:bg-indigo-500\/50 {
    background-color: rgb(99 102 241 / 0.5);
  }

  .\32xl\:bg-indigo-500\/60 {
    background-color: rgb(99 102 241 / 0.6);
  }

  .\32xl\:bg-indigo-500\/70 {
    background-color: rgb(99 102 241 / 0.7);
  }

  .\32xl\:bg-indigo-500\/80 {
    background-color: rgb(99 102 241 / 0.8);
  }

  .\32xl\:bg-indigo-500\/90 {
    background-color: rgb(99 102 241 / 0.9);
  }

  .\32xl\:bg-indigo-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(79 70 229 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-indigo-600\/10 {
    background-color: rgb(79 70 229 / 0.1);
  }

  .\32xl\:bg-indigo-600\/20 {
    background-color: rgb(79 70 229 / 0.2);
  }

  .\32xl\:bg-indigo-600\/30 {
    background-color: rgb(79 70 229 / 0.3);
  }

  .\32xl\:bg-indigo-600\/40 {
    background-color: rgb(79 70 229 / 0.4);
  }

  .\32xl\:bg-indigo-600\/5 {
    background-color: rgb(79 70 229 / 0.05);
  }

  .\32xl\:bg-indigo-600\/50 {
    background-color: rgb(79 70 229 / 0.5);
  }

  .\32xl\:bg-indigo-600\/60 {
    background-color: rgb(79 70 229 / 0.6);
  }

  .\32xl\:bg-indigo-600\/70 {
    background-color: rgb(79 70 229 / 0.7);
  }

  .\32xl\:bg-indigo-600\/80 {
    background-color: rgb(79 70 229 / 0.8);
  }

  .\32xl\:bg-indigo-600\/90 {
    background-color: rgb(79 70 229 / 0.9);
  }

  .\32xl\:bg-indigo-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(67 56 202 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-indigo-700\/10 {
    background-color: rgb(67 56 202 / 0.1);
  }

  .\32xl\:bg-indigo-700\/20 {
    background-color: rgb(67 56 202 / 0.2);
  }

  .\32xl\:bg-indigo-700\/30 {
    background-color: rgb(67 56 202 / 0.3);
  }

  .\32xl\:bg-indigo-700\/40 {
    background-color: rgb(67 56 202 / 0.4);
  }

  .\32xl\:bg-indigo-700\/5 {
    background-color: rgb(67 56 202 / 0.05);
  }

  .\32xl\:bg-indigo-700\/50 {
    background-color: rgb(67 56 202 / 0.5);
  }

  .\32xl\:bg-indigo-700\/60 {
    background-color: rgb(67 56 202 / 0.6);
  }

  .\32xl\:bg-indigo-700\/70 {
    background-color: rgb(67 56 202 / 0.7);
  }

  .\32xl\:bg-indigo-700\/80 {
    background-color: rgb(67 56 202 / 0.8);
  }

  .\32xl\:bg-indigo-700\/90 {
    background-color: rgb(67 56 202 / 0.9);
  }

  .\32xl\:bg-indigo-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(55 48 163 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-indigo-800\/10 {
    background-color: rgb(55 48 163 / 0.1);
  }

  .\32xl\:bg-indigo-800\/20 {
    background-color: rgb(55 48 163 / 0.2);
  }

  .\32xl\:bg-indigo-800\/30 {
    background-color: rgb(55 48 163 / 0.3);
  }

  .\32xl\:bg-indigo-800\/40 {
    background-color: rgb(55 48 163 / 0.4);
  }

  .\32xl\:bg-indigo-800\/5 {
    background-color: rgb(55 48 163 / 0.05);
  }

  .\32xl\:bg-indigo-800\/50 {
    background-color: rgb(55 48 163 / 0.5);
  }

  .\32xl\:bg-indigo-800\/60 {
    background-color: rgb(55 48 163 / 0.6);
  }

  .\32xl\:bg-indigo-800\/70 {
    background-color: rgb(55 48 163 / 0.7);
  }

  .\32xl\:bg-indigo-800\/80 {
    background-color: rgb(55 48 163 / 0.8);
  }

  .\32xl\:bg-indigo-800\/90 {
    background-color: rgb(55 48 163 / 0.9);
  }

  .\32xl\:bg-indigo-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(49 46 129 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-indigo-900\/10 {
    background-color: rgb(49 46 129 / 0.1);
  }

  .\32xl\:bg-indigo-900\/20 {
    background-color: rgb(49 46 129 / 0.2);
  }

  .\32xl\:bg-indigo-900\/30 {
    background-color: rgb(49 46 129 / 0.3);
  }

  .\32xl\:bg-indigo-900\/40 {
    background-color: rgb(49 46 129 / 0.4);
  }

  .\32xl\:bg-indigo-900\/5 {
    background-color: rgb(49 46 129 / 0.05);
  }

  .\32xl\:bg-indigo-900\/50 {
    background-color: rgb(49 46 129 / 0.5);
  }

  .\32xl\:bg-indigo-900\/60 {
    background-color: rgb(49 46 129 / 0.6);
  }

  .\32xl\:bg-indigo-900\/70 {
    background-color: rgb(49 46 129 / 0.7);
  }

  .\32xl\:bg-indigo-900\/80 {
    background-color: rgb(49 46 129 / 0.8);
  }

  .\32xl\:bg-indigo-900\/90 {
    background-color: rgb(49 46 129 / 0.9);
  }

  .\32xl\:bg-indigo-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(30 27 75 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-indigo-950\/10 {
    background-color: rgb(30 27 75 / 0.1);
  }

  .\32xl\:bg-indigo-950\/20 {
    background-color: rgb(30 27 75 / 0.2);
  }

  .\32xl\:bg-indigo-950\/30 {
    background-color: rgb(30 27 75 / 0.3);
  }

  .\32xl\:bg-indigo-950\/40 {
    background-color: rgb(30 27 75 / 0.4);
  }

  .\32xl\:bg-indigo-950\/5 {
    background-color: rgb(30 27 75 / 0.05);
  }

  .\32xl\:bg-indigo-950\/50 {
    background-color: rgb(30 27 75 / 0.5);
  }

  .\32xl\:bg-indigo-950\/60 {
    background-color: rgb(30 27 75 / 0.6);
  }

  .\32xl\:bg-indigo-950\/70 {
    background-color: rgb(30 27 75 / 0.7);
  }

  .\32xl\:bg-indigo-950\/80 {
    background-color: rgb(30 27 75 / 0.8);
  }

  .\32xl\:bg-indigo-950\/90 {
    background-color: rgb(30 27 75 / 0.9);
  }

  .\32xl\:bg-lime-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(236 252 203 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-lime-100\/10 {
    background-color: rgb(236 252 203 / 0.1);
  }

  .\32xl\:bg-lime-100\/20 {
    background-color: rgb(236 252 203 / 0.2);
  }

  .\32xl\:bg-lime-100\/30 {
    background-color: rgb(236 252 203 / 0.3);
  }

  .\32xl\:bg-lime-100\/40 {
    background-color: rgb(236 252 203 / 0.4);
  }

  .\32xl\:bg-lime-100\/5 {
    background-color: rgb(236 252 203 / 0.05);
  }

  .\32xl\:bg-lime-100\/50 {
    background-color: rgb(236 252 203 / 0.5);
  }

  .\32xl\:bg-lime-100\/60 {
    background-color: rgb(236 252 203 / 0.6);
  }

  .\32xl\:bg-lime-100\/70 {
    background-color: rgb(236 252 203 / 0.7);
  }

  .\32xl\:bg-lime-100\/80 {
    background-color: rgb(236 252 203 / 0.8);
  }

  .\32xl\:bg-lime-100\/90 {
    background-color: rgb(236 252 203 / 0.9);
  }

  .\32xl\:bg-lime-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(217 249 157 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-lime-200\/10 {
    background-color: rgb(217 249 157 / 0.1);
  }

  .\32xl\:bg-lime-200\/20 {
    background-color: rgb(217 249 157 / 0.2);
  }

  .\32xl\:bg-lime-200\/30 {
    background-color: rgb(217 249 157 / 0.3);
  }

  .\32xl\:bg-lime-200\/40 {
    background-color: rgb(217 249 157 / 0.4);
  }

  .\32xl\:bg-lime-200\/5 {
    background-color: rgb(217 249 157 / 0.05);
  }

  .\32xl\:bg-lime-200\/50 {
    background-color: rgb(217 249 157 / 0.5);
  }

  .\32xl\:bg-lime-200\/60 {
    background-color: rgb(217 249 157 / 0.6);
  }

  .\32xl\:bg-lime-200\/70 {
    background-color: rgb(217 249 157 / 0.7);
  }

  .\32xl\:bg-lime-200\/80 {
    background-color: rgb(217 249 157 / 0.8);
  }

  .\32xl\:bg-lime-200\/90 {
    background-color: rgb(217 249 157 / 0.9);
  }

  .\32xl\:bg-lime-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(190 242 100 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-lime-300\/10 {
    background-color: rgb(190 242 100 / 0.1);
  }

  .\32xl\:bg-lime-300\/20 {
    background-color: rgb(190 242 100 / 0.2);
  }

  .\32xl\:bg-lime-300\/30 {
    background-color: rgb(190 242 100 / 0.3);
  }

  .\32xl\:bg-lime-300\/40 {
    background-color: rgb(190 242 100 / 0.4);
  }

  .\32xl\:bg-lime-300\/5 {
    background-color: rgb(190 242 100 / 0.05);
  }

  .\32xl\:bg-lime-300\/50 {
    background-color: rgb(190 242 100 / 0.5);
  }

  .\32xl\:bg-lime-300\/60 {
    background-color: rgb(190 242 100 / 0.6);
  }

  .\32xl\:bg-lime-300\/70 {
    background-color: rgb(190 242 100 / 0.7);
  }

  .\32xl\:bg-lime-300\/80 {
    background-color: rgb(190 242 100 / 0.8);
  }

  .\32xl\:bg-lime-300\/90 {
    background-color: rgb(190 242 100 / 0.9);
  }

  .\32xl\:bg-lime-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(163 230 53 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-lime-400\/10 {
    background-color: rgb(163 230 53 / 0.1);
  }

  .\32xl\:bg-lime-400\/20 {
    background-color: rgb(163 230 53 / 0.2);
  }

  .\32xl\:bg-lime-400\/30 {
    background-color: rgb(163 230 53 / 0.3);
  }

  .\32xl\:bg-lime-400\/40 {
    background-color: rgb(163 230 53 / 0.4);
  }

  .\32xl\:bg-lime-400\/5 {
    background-color: rgb(163 230 53 / 0.05);
  }

  .\32xl\:bg-lime-400\/50 {
    background-color: rgb(163 230 53 / 0.5);
  }

  .\32xl\:bg-lime-400\/60 {
    background-color: rgb(163 230 53 / 0.6);
  }

  .\32xl\:bg-lime-400\/70 {
    background-color: rgb(163 230 53 / 0.7);
  }

  .\32xl\:bg-lime-400\/80 {
    background-color: rgb(163 230 53 / 0.8);
  }

  .\32xl\:bg-lime-400\/90 {
    background-color: rgb(163 230 53 / 0.9);
  }

  .\32xl\:bg-lime-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(247 254 231 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-lime-50\/10 {
    background-color: rgb(247 254 231 / 0.1);
  }

  .\32xl\:bg-lime-50\/20 {
    background-color: rgb(247 254 231 / 0.2);
  }

  .\32xl\:bg-lime-50\/30 {
    background-color: rgb(247 254 231 / 0.3);
  }

  .\32xl\:bg-lime-50\/40 {
    background-color: rgb(247 254 231 / 0.4);
  }

  .\32xl\:bg-lime-50\/5 {
    background-color: rgb(247 254 231 / 0.05);
  }

  .\32xl\:bg-lime-50\/50 {
    background-color: rgb(247 254 231 / 0.5);
  }

  .\32xl\:bg-lime-50\/60 {
    background-color: rgb(247 254 231 / 0.6);
  }

  .\32xl\:bg-lime-50\/70 {
    background-color: rgb(247 254 231 / 0.7);
  }

  .\32xl\:bg-lime-50\/80 {
    background-color: rgb(247 254 231 / 0.8);
  }

  .\32xl\:bg-lime-50\/90 {
    background-color: rgb(247 254 231 / 0.9);
  }

  .\32xl\:bg-lime-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(132 204 22 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-lime-500\/10 {
    background-color: rgb(132 204 22 / 0.1);
  }

  .\32xl\:bg-lime-500\/20 {
    background-color: rgb(132 204 22 / 0.2);
  }

  .\32xl\:bg-lime-500\/30 {
    background-color: rgb(132 204 22 / 0.3);
  }

  .\32xl\:bg-lime-500\/40 {
    background-color: rgb(132 204 22 / 0.4);
  }

  .\32xl\:bg-lime-500\/5 {
    background-color: rgb(132 204 22 / 0.05);
  }

  .\32xl\:bg-lime-500\/50 {
    background-color: rgb(132 204 22 / 0.5);
  }

  .\32xl\:bg-lime-500\/60 {
    background-color: rgb(132 204 22 / 0.6);
  }

  .\32xl\:bg-lime-500\/70 {
    background-color: rgb(132 204 22 / 0.7);
  }

  .\32xl\:bg-lime-500\/80 {
    background-color: rgb(132 204 22 / 0.8);
  }

  .\32xl\:bg-lime-500\/90 {
    background-color: rgb(132 204 22 / 0.9);
  }

  .\32xl\:bg-lime-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(101 163 13 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-lime-600\/10 {
    background-color: rgb(101 163 13 / 0.1);
  }

  .\32xl\:bg-lime-600\/20 {
    background-color: rgb(101 163 13 / 0.2);
  }

  .\32xl\:bg-lime-600\/30 {
    background-color: rgb(101 163 13 / 0.3);
  }

  .\32xl\:bg-lime-600\/40 {
    background-color: rgb(101 163 13 / 0.4);
  }

  .\32xl\:bg-lime-600\/5 {
    background-color: rgb(101 163 13 / 0.05);
  }

  .\32xl\:bg-lime-600\/50 {
    background-color: rgb(101 163 13 / 0.5);
  }

  .\32xl\:bg-lime-600\/60 {
    background-color: rgb(101 163 13 / 0.6);
  }

  .\32xl\:bg-lime-600\/70 {
    background-color: rgb(101 163 13 / 0.7);
  }

  .\32xl\:bg-lime-600\/80 {
    background-color: rgb(101 163 13 / 0.8);
  }

  .\32xl\:bg-lime-600\/90 {
    background-color: rgb(101 163 13 / 0.9);
  }

  .\32xl\:bg-lime-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(77 124 15 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-lime-700\/10 {
    background-color: rgb(77 124 15 / 0.1);
  }

  .\32xl\:bg-lime-700\/20 {
    background-color: rgb(77 124 15 / 0.2);
  }

  .\32xl\:bg-lime-700\/30 {
    background-color: rgb(77 124 15 / 0.3);
  }

  .\32xl\:bg-lime-700\/40 {
    background-color: rgb(77 124 15 / 0.4);
  }

  .\32xl\:bg-lime-700\/5 {
    background-color: rgb(77 124 15 / 0.05);
  }

  .\32xl\:bg-lime-700\/50 {
    background-color: rgb(77 124 15 / 0.5);
  }

  .\32xl\:bg-lime-700\/60 {
    background-color: rgb(77 124 15 / 0.6);
  }

  .\32xl\:bg-lime-700\/70 {
    background-color: rgb(77 124 15 / 0.7);
  }

  .\32xl\:bg-lime-700\/80 {
    background-color: rgb(77 124 15 / 0.8);
  }

  .\32xl\:bg-lime-700\/90 {
    background-color: rgb(77 124 15 / 0.9);
  }

  .\32xl\:bg-lime-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(63 98 18 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-lime-800\/10 {
    background-color: rgb(63 98 18 / 0.1);
  }

  .\32xl\:bg-lime-800\/20 {
    background-color: rgb(63 98 18 / 0.2);
  }

  .\32xl\:bg-lime-800\/30 {
    background-color: rgb(63 98 18 / 0.3);
  }

  .\32xl\:bg-lime-800\/40 {
    background-color: rgb(63 98 18 / 0.4);
  }

  .\32xl\:bg-lime-800\/5 {
    background-color: rgb(63 98 18 / 0.05);
  }

  .\32xl\:bg-lime-800\/50 {
    background-color: rgb(63 98 18 / 0.5);
  }

  .\32xl\:bg-lime-800\/60 {
    background-color: rgb(63 98 18 / 0.6);
  }

  .\32xl\:bg-lime-800\/70 {
    background-color: rgb(63 98 18 / 0.7);
  }

  .\32xl\:bg-lime-800\/80 {
    background-color: rgb(63 98 18 / 0.8);
  }

  .\32xl\:bg-lime-800\/90 {
    background-color: rgb(63 98 18 / 0.9);
  }

  .\32xl\:bg-lime-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(54 83 20 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-lime-900\/10 {
    background-color: rgb(54 83 20 / 0.1);
  }

  .\32xl\:bg-lime-900\/20 {
    background-color: rgb(54 83 20 / 0.2);
  }

  .\32xl\:bg-lime-900\/30 {
    background-color: rgb(54 83 20 / 0.3);
  }

  .\32xl\:bg-lime-900\/40 {
    background-color: rgb(54 83 20 / 0.4);
  }

  .\32xl\:bg-lime-900\/5 {
    background-color: rgb(54 83 20 / 0.05);
  }

  .\32xl\:bg-lime-900\/50 {
    background-color: rgb(54 83 20 / 0.5);
  }

  .\32xl\:bg-lime-900\/60 {
    background-color: rgb(54 83 20 / 0.6);
  }

  .\32xl\:bg-lime-900\/70 {
    background-color: rgb(54 83 20 / 0.7);
  }

  .\32xl\:bg-lime-900\/80 {
    background-color: rgb(54 83 20 / 0.8);
  }

  .\32xl\:bg-lime-900\/90 {
    background-color: rgb(54 83 20 / 0.9);
  }

  .\32xl\:bg-lime-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(26 46 5 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-lime-950\/10 {
    background-color: rgb(26 46 5 / 0.1);
  }

  .\32xl\:bg-lime-950\/20 {
    background-color: rgb(26 46 5 / 0.2);
  }

  .\32xl\:bg-lime-950\/30 {
    background-color: rgb(26 46 5 / 0.3);
  }

  .\32xl\:bg-lime-950\/40 {
    background-color: rgb(26 46 5 / 0.4);
  }

  .\32xl\:bg-lime-950\/5 {
    background-color: rgb(26 46 5 / 0.05);
  }

  .\32xl\:bg-lime-950\/50 {
    background-color: rgb(26 46 5 / 0.5);
  }

  .\32xl\:bg-lime-950\/60 {
    background-color: rgb(26 46 5 / 0.6);
  }

  .\32xl\:bg-lime-950\/70 {
    background-color: rgb(26 46 5 / 0.7);
  }

  .\32xl\:bg-lime-950\/80 {
    background-color: rgb(26 46 5 / 0.8);
  }

  .\32xl\:bg-lime-950\/90 {
    background-color: rgb(26 46 5 / 0.9);
  }

  .\32xl\:bg-neutral-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(245 245 245 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-neutral-100\/10 {
    background-color: rgb(245 245 245 / 0.1);
  }

  .\32xl\:bg-neutral-100\/20 {
    background-color: rgb(245 245 245 / 0.2);
  }

  .\32xl\:bg-neutral-100\/30 {
    background-color: rgb(245 245 245 / 0.3);
  }

  .\32xl\:bg-neutral-100\/40 {
    background-color: rgb(245 245 245 / 0.4);
  }

  .\32xl\:bg-neutral-100\/5 {
    background-color: rgb(245 245 245 / 0.05);
  }

  .\32xl\:bg-neutral-100\/50 {
    background-color: rgb(245 245 245 / 0.5);
  }

  .\32xl\:bg-neutral-100\/60 {
    background-color: rgb(245 245 245 / 0.6);
  }

  .\32xl\:bg-neutral-100\/70 {
    background-color: rgb(245 245 245 / 0.7);
  }

  .\32xl\:bg-neutral-100\/80 {
    background-color: rgb(245 245 245 / 0.8);
  }

  .\32xl\:bg-neutral-100\/90 {
    background-color: rgb(245 245 245 / 0.9);
  }

  .\32xl\:bg-neutral-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(229 229 229 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-neutral-200\/10 {
    background-color: rgb(229 229 229 / 0.1);
  }

  .\32xl\:bg-neutral-200\/20 {
    background-color: rgb(229 229 229 / 0.2);
  }

  .\32xl\:bg-neutral-200\/30 {
    background-color: rgb(229 229 229 / 0.3);
  }

  .\32xl\:bg-neutral-200\/40 {
    background-color: rgb(229 229 229 / 0.4);
  }

  .\32xl\:bg-neutral-200\/5 {
    background-color: rgb(229 229 229 / 0.05);
  }

  .\32xl\:bg-neutral-200\/50 {
    background-color: rgb(229 229 229 / 0.5);
  }

  .\32xl\:bg-neutral-200\/60 {
    background-color: rgb(229 229 229 / 0.6);
  }

  .\32xl\:bg-neutral-200\/70 {
    background-color: rgb(229 229 229 / 0.7);
  }

  .\32xl\:bg-neutral-200\/80 {
    background-color: rgb(229 229 229 / 0.8);
  }

  .\32xl\:bg-neutral-200\/90 {
    background-color: rgb(229 229 229 / 0.9);
  }

  .\32xl\:bg-neutral-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(212 212 212 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-neutral-300\/10 {
    background-color: rgb(212 212 212 / 0.1);
  }

  .\32xl\:bg-neutral-300\/20 {
    background-color: rgb(212 212 212 / 0.2);
  }

  .\32xl\:bg-neutral-300\/30 {
    background-color: rgb(212 212 212 / 0.3);
  }

  .\32xl\:bg-neutral-300\/40 {
    background-color: rgb(212 212 212 / 0.4);
  }

  .\32xl\:bg-neutral-300\/5 {
    background-color: rgb(212 212 212 / 0.05);
  }

  .\32xl\:bg-neutral-300\/50 {
    background-color: rgb(212 212 212 / 0.5);
  }

  .\32xl\:bg-neutral-300\/60 {
    background-color: rgb(212 212 212 / 0.6);
  }

  .\32xl\:bg-neutral-300\/70 {
    background-color: rgb(212 212 212 / 0.7);
  }

  .\32xl\:bg-neutral-300\/80 {
    background-color: rgb(212 212 212 / 0.8);
  }

  .\32xl\:bg-neutral-300\/90 {
    background-color: rgb(212 212 212 / 0.9);
  }

  .\32xl\:bg-neutral-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(163 163 163 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-neutral-400\/10 {
    background-color: rgb(163 163 163 / 0.1);
  }

  .\32xl\:bg-neutral-400\/20 {
    background-color: rgb(163 163 163 / 0.2);
  }

  .\32xl\:bg-neutral-400\/30 {
    background-color: rgb(163 163 163 / 0.3);
  }

  .\32xl\:bg-neutral-400\/40 {
    background-color: rgb(163 163 163 / 0.4);
  }

  .\32xl\:bg-neutral-400\/5 {
    background-color: rgb(163 163 163 / 0.05);
  }

  .\32xl\:bg-neutral-400\/50 {
    background-color: rgb(163 163 163 / 0.5);
  }

  .\32xl\:bg-neutral-400\/60 {
    background-color: rgb(163 163 163 / 0.6);
  }

  .\32xl\:bg-neutral-400\/70 {
    background-color: rgb(163 163 163 / 0.7);
  }

  .\32xl\:bg-neutral-400\/80 {
    background-color: rgb(163 163 163 / 0.8);
  }

  .\32xl\:bg-neutral-400\/90 {
    background-color: rgb(163 163 163 / 0.9);
  }

  .\32xl\:bg-neutral-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-neutral-50\/10 {
    background-color: rgb(250 250 250 / 0.1);
  }

  .\32xl\:bg-neutral-50\/20 {
    background-color: rgb(250 250 250 / 0.2);
  }

  .\32xl\:bg-neutral-50\/30 {
    background-color: rgb(250 250 250 / 0.3);
  }

  .\32xl\:bg-neutral-50\/40 {
    background-color: rgb(250 250 250 / 0.4);
  }

  .\32xl\:bg-neutral-50\/5 {
    background-color: rgb(250 250 250 / 0.05);
  }

  .\32xl\:bg-neutral-50\/50 {
    background-color: rgb(250 250 250 / 0.5);
  }

  .\32xl\:bg-neutral-50\/60 {
    background-color: rgb(250 250 250 / 0.6);
  }

  .\32xl\:bg-neutral-50\/70 {
    background-color: rgb(250 250 250 / 0.7);
  }

  .\32xl\:bg-neutral-50\/80 {
    background-color: rgb(250 250 250 / 0.8);
  }

  .\32xl\:bg-neutral-50\/90 {
    background-color: rgb(250 250 250 / 0.9);
  }

  .\32xl\:bg-neutral-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(115 115 115 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-neutral-500\/10 {
    background-color: rgb(115 115 115 / 0.1);
  }

  .\32xl\:bg-neutral-500\/20 {
    background-color: rgb(115 115 115 / 0.2);
  }

  .\32xl\:bg-neutral-500\/30 {
    background-color: rgb(115 115 115 / 0.3);
  }

  .\32xl\:bg-neutral-500\/40 {
    background-color: rgb(115 115 115 / 0.4);
  }

  .\32xl\:bg-neutral-500\/5 {
    background-color: rgb(115 115 115 / 0.05);
  }

  .\32xl\:bg-neutral-500\/50 {
    background-color: rgb(115 115 115 / 0.5);
  }

  .\32xl\:bg-neutral-500\/60 {
    background-color: rgb(115 115 115 / 0.6);
  }

  .\32xl\:bg-neutral-500\/70 {
    background-color: rgb(115 115 115 / 0.7);
  }

  .\32xl\:bg-neutral-500\/80 {
    background-color: rgb(115 115 115 / 0.8);
  }

  .\32xl\:bg-neutral-500\/90 {
    background-color: rgb(115 115 115 / 0.9);
  }

  .\32xl\:bg-neutral-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(82 82 82 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-neutral-600\/10 {
    background-color: rgb(82 82 82 / 0.1);
  }

  .\32xl\:bg-neutral-600\/20 {
    background-color: rgb(82 82 82 / 0.2);
  }

  .\32xl\:bg-neutral-600\/30 {
    background-color: rgb(82 82 82 / 0.3);
  }

  .\32xl\:bg-neutral-600\/40 {
    background-color: rgb(82 82 82 / 0.4);
  }

  .\32xl\:bg-neutral-600\/5 {
    background-color: rgb(82 82 82 / 0.05);
  }

  .\32xl\:bg-neutral-600\/50 {
    background-color: rgb(82 82 82 / 0.5);
  }

  .\32xl\:bg-neutral-600\/60 {
    background-color: rgb(82 82 82 / 0.6);
  }

  .\32xl\:bg-neutral-600\/70 {
    background-color: rgb(82 82 82 / 0.7);
  }

  .\32xl\:bg-neutral-600\/80 {
    background-color: rgb(82 82 82 / 0.8);
  }

  .\32xl\:bg-neutral-600\/90 {
    background-color: rgb(82 82 82 / 0.9);
  }

  .\32xl\:bg-neutral-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(64 64 64 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-neutral-700\/10 {
    background-color: rgb(64 64 64 / 0.1);
  }

  .\32xl\:bg-neutral-700\/20 {
    background-color: rgb(64 64 64 / 0.2);
  }

  .\32xl\:bg-neutral-700\/30 {
    background-color: rgb(64 64 64 / 0.3);
  }

  .\32xl\:bg-neutral-700\/40 {
    background-color: rgb(64 64 64 / 0.4);
  }

  .\32xl\:bg-neutral-700\/5 {
    background-color: rgb(64 64 64 / 0.05);
  }

  .\32xl\:bg-neutral-700\/50 {
    background-color: rgb(64 64 64 / 0.5);
  }

  .\32xl\:bg-neutral-700\/60 {
    background-color: rgb(64 64 64 / 0.6);
  }

  .\32xl\:bg-neutral-700\/70 {
    background-color: rgb(64 64 64 / 0.7);
  }

  .\32xl\:bg-neutral-700\/80 {
    background-color: rgb(64 64 64 / 0.8);
  }

  .\32xl\:bg-neutral-700\/90 {
    background-color: rgb(64 64 64 / 0.9);
  }

  .\32xl\:bg-neutral-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(38 38 38 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-neutral-800\/10 {
    background-color: rgb(38 38 38 / 0.1);
  }

  .\32xl\:bg-neutral-800\/20 {
    background-color: rgb(38 38 38 / 0.2);
  }

  .\32xl\:bg-neutral-800\/30 {
    background-color: rgb(38 38 38 / 0.3);
  }

  .\32xl\:bg-neutral-800\/40 {
    background-color: rgb(38 38 38 / 0.4);
  }

  .\32xl\:bg-neutral-800\/5 {
    background-color: rgb(38 38 38 / 0.05);
  }

  .\32xl\:bg-neutral-800\/50 {
    background-color: rgb(38 38 38 / 0.5);
  }

  .\32xl\:bg-neutral-800\/60 {
    background-color: rgb(38 38 38 / 0.6);
  }

  .\32xl\:bg-neutral-800\/70 {
    background-color: rgb(38 38 38 / 0.7);
  }

  .\32xl\:bg-neutral-800\/80 {
    background-color: rgb(38 38 38 / 0.8);
  }

  .\32xl\:bg-neutral-800\/90 {
    background-color: rgb(38 38 38 / 0.9);
  }

  .\32xl\:bg-neutral-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(23 23 23 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-neutral-900\/10 {
    background-color: rgb(23 23 23 / 0.1);
  }

  .\32xl\:bg-neutral-900\/20 {
    background-color: rgb(23 23 23 / 0.2);
  }

  .\32xl\:bg-neutral-900\/30 {
    background-color: rgb(23 23 23 / 0.3);
  }

  .\32xl\:bg-neutral-900\/40 {
    background-color: rgb(23 23 23 / 0.4);
  }

  .\32xl\:bg-neutral-900\/5 {
    background-color: rgb(23 23 23 / 0.05);
  }

  .\32xl\:bg-neutral-900\/50 {
    background-color: rgb(23 23 23 / 0.5);
  }

  .\32xl\:bg-neutral-900\/60 {
    background-color: rgb(23 23 23 / 0.6);
  }

  .\32xl\:bg-neutral-900\/70 {
    background-color: rgb(23 23 23 / 0.7);
  }

  .\32xl\:bg-neutral-900\/80 {
    background-color: rgb(23 23 23 / 0.8);
  }

  .\32xl\:bg-neutral-900\/90 {
    background-color: rgb(23 23 23 / 0.9);
  }

  .\32xl\:bg-neutral-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(10 10 10 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-neutral-950\/10 {
    background-color: rgb(10 10 10 / 0.1);
  }

  .\32xl\:bg-neutral-950\/20 {
    background-color: rgb(10 10 10 / 0.2);
  }

  .\32xl\:bg-neutral-950\/30 {
    background-color: rgb(10 10 10 / 0.3);
  }

  .\32xl\:bg-neutral-950\/40 {
    background-color: rgb(10 10 10 / 0.4);
  }

  .\32xl\:bg-neutral-950\/5 {
    background-color: rgb(10 10 10 / 0.05);
  }

  .\32xl\:bg-neutral-950\/50 {
    background-color: rgb(10 10 10 / 0.5);
  }

  .\32xl\:bg-neutral-950\/60 {
    background-color: rgb(10 10 10 / 0.6);
  }

  .\32xl\:bg-neutral-950\/70 {
    background-color: rgb(10 10 10 / 0.7);
  }

  .\32xl\:bg-neutral-950\/80 {
    background-color: rgb(10 10 10 / 0.8);
  }

  .\32xl\:bg-neutral-950\/90 {
    background-color: rgb(10 10 10 / 0.9);
  }

  .\32xl\:bg-orange-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 237 213 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-orange-100\/10 {
    background-color: rgb(255 237 213 / 0.1);
  }

  .\32xl\:bg-orange-100\/20 {
    background-color: rgb(255 237 213 / 0.2);
  }

  .\32xl\:bg-orange-100\/30 {
    background-color: rgb(255 237 213 / 0.3);
  }

  .\32xl\:bg-orange-100\/40 {
    background-color: rgb(255 237 213 / 0.4);
  }

  .\32xl\:bg-orange-100\/5 {
    background-color: rgb(255 237 213 / 0.05);
  }

  .\32xl\:bg-orange-100\/50 {
    background-color: rgb(255 237 213 / 0.5);
  }

  .\32xl\:bg-orange-100\/60 {
    background-color: rgb(255 237 213 / 0.6);
  }

  .\32xl\:bg-orange-100\/70 {
    background-color: rgb(255 237 213 / 0.7);
  }

  .\32xl\:bg-orange-100\/80 {
    background-color: rgb(255 237 213 / 0.8);
  }

  .\32xl\:bg-orange-100\/90 {
    background-color: rgb(255 237 213 / 0.9);
  }

  .\32xl\:bg-orange-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 215 170 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-orange-200\/10 {
    background-color: rgb(254 215 170 / 0.1);
  }

  .\32xl\:bg-orange-200\/20 {
    background-color: rgb(254 215 170 / 0.2);
  }

  .\32xl\:bg-orange-200\/30 {
    background-color: rgb(254 215 170 / 0.3);
  }

  .\32xl\:bg-orange-200\/40 {
    background-color: rgb(254 215 170 / 0.4);
  }

  .\32xl\:bg-orange-200\/5 {
    background-color: rgb(254 215 170 / 0.05);
  }

  .\32xl\:bg-orange-200\/50 {
    background-color: rgb(254 215 170 / 0.5);
  }

  .\32xl\:bg-orange-200\/60 {
    background-color: rgb(254 215 170 / 0.6);
  }

  .\32xl\:bg-orange-200\/70 {
    background-color: rgb(254 215 170 / 0.7);
  }

  .\32xl\:bg-orange-200\/80 {
    background-color: rgb(254 215 170 / 0.8);
  }

  .\32xl\:bg-orange-200\/90 {
    background-color: rgb(254 215 170 / 0.9);
  }

  .\32xl\:bg-orange-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(253 186 116 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-orange-300\/10 {
    background-color: rgb(253 186 116 / 0.1);
  }

  .\32xl\:bg-orange-300\/20 {
    background-color: rgb(253 186 116 / 0.2);
  }

  .\32xl\:bg-orange-300\/30 {
    background-color: rgb(253 186 116 / 0.3);
  }

  .\32xl\:bg-orange-300\/40 {
    background-color: rgb(253 186 116 / 0.4);
  }

  .\32xl\:bg-orange-300\/5 {
    background-color: rgb(253 186 116 / 0.05);
  }

  .\32xl\:bg-orange-300\/50 {
    background-color: rgb(253 186 116 / 0.5);
  }

  .\32xl\:bg-orange-300\/60 {
    background-color: rgb(253 186 116 / 0.6);
  }

  .\32xl\:bg-orange-300\/70 {
    background-color: rgb(253 186 116 / 0.7);
  }

  .\32xl\:bg-orange-300\/80 {
    background-color: rgb(253 186 116 / 0.8);
  }

  .\32xl\:bg-orange-300\/90 {
    background-color: rgb(253 186 116 / 0.9);
  }

  .\32xl\:bg-orange-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(251 146 60 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-orange-400\/10 {
    background-color: rgb(251 146 60 / 0.1);
  }

  .\32xl\:bg-orange-400\/20 {
    background-color: rgb(251 146 60 / 0.2);
  }

  .\32xl\:bg-orange-400\/30 {
    background-color: rgb(251 146 60 / 0.3);
  }

  .\32xl\:bg-orange-400\/40 {
    background-color: rgb(251 146 60 / 0.4);
  }

  .\32xl\:bg-orange-400\/5 {
    background-color: rgb(251 146 60 / 0.05);
  }

  .\32xl\:bg-orange-400\/50 {
    background-color: rgb(251 146 60 / 0.5);
  }

  .\32xl\:bg-orange-400\/60 {
    background-color: rgb(251 146 60 / 0.6);
  }

  .\32xl\:bg-orange-400\/70 {
    background-color: rgb(251 146 60 / 0.7);
  }

  .\32xl\:bg-orange-400\/80 {
    background-color: rgb(251 146 60 / 0.8);
  }

  .\32xl\:bg-orange-400\/90 {
    background-color: rgb(251 146 60 / 0.9);
  }

  .\32xl\:bg-orange-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 247 237 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-orange-50\/10 {
    background-color: rgb(255 247 237 / 0.1);
  }

  .\32xl\:bg-orange-50\/20 {
    background-color: rgb(255 247 237 / 0.2);
  }

  .\32xl\:bg-orange-50\/30 {
    background-color: rgb(255 247 237 / 0.3);
  }

  .\32xl\:bg-orange-50\/40 {
    background-color: rgb(255 247 237 / 0.4);
  }

  .\32xl\:bg-orange-50\/5 {
    background-color: rgb(255 247 237 / 0.05);
  }

  .\32xl\:bg-orange-50\/50 {
    background-color: rgb(255 247 237 / 0.5);
  }

  .\32xl\:bg-orange-50\/60 {
    background-color: rgb(255 247 237 / 0.6);
  }

  .\32xl\:bg-orange-50\/70 {
    background-color: rgb(255 247 237 / 0.7);
  }

  .\32xl\:bg-orange-50\/80 {
    background-color: rgb(255 247 237 / 0.8);
  }

  .\32xl\:bg-orange-50\/90 {
    background-color: rgb(255 247 237 / 0.9);
  }

  .\32xl\:bg-orange-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-orange-500\/10 {
    background-color: rgb(249 115 22 / 0.1);
  }

  .\32xl\:bg-orange-500\/20 {
    background-color: rgb(249 115 22 / 0.2);
  }

  .\32xl\:bg-orange-500\/30 {
    background-color: rgb(249 115 22 / 0.3);
  }

  .\32xl\:bg-orange-500\/40 {
    background-color: rgb(249 115 22 / 0.4);
  }

  .\32xl\:bg-orange-500\/5 {
    background-color: rgb(249 115 22 / 0.05);
  }

  .\32xl\:bg-orange-500\/50 {
    background-color: rgb(249 115 22 / 0.5);
  }

  .\32xl\:bg-orange-500\/60 {
    background-color: rgb(249 115 22 / 0.6);
  }

  .\32xl\:bg-orange-500\/70 {
    background-color: rgb(249 115 22 / 0.7);
  }

  .\32xl\:bg-orange-500\/80 {
    background-color: rgb(249 115 22 / 0.8);
  }

  .\32xl\:bg-orange-500\/90 {
    background-color: rgb(249 115 22 / 0.9);
  }

  .\32xl\:bg-orange-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(234 88 12 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-orange-600\/10 {
    background-color: rgb(234 88 12 / 0.1);
  }

  .\32xl\:bg-orange-600\/20 {
    background-color: rgb(234 88 12 / 0.2);
  }

  .\32xl\:bg-orange-600\/30 {
    background-color: rgb(234 88 12 / 0.3);
  }

  .\32xl\:bg-orange-600\/40 {
    background-color: rgb(234 88 12 / 0.4);
  }

  .\32xl\:bg-orange-600\/5 {
    background-color: rgb(234 88 12 / 0.05);
  }

  .\32xl\:bg-orange-600\/50 {
    background-color: rgb(234 88 12 / 0.5);
  }

  .\32xl\:bg-orange-600\/60 {
    background-color: rgb(234 88 12 / 0.6);
  }

  .\32xl\:bg-orange-600\/70 {
    background-color: rgb(234 88 12 / 0.7);
  }

  .\32xl\:bg-orange-600\/80 {
    background-color: rgb(234 88 12 / 0.8);
  }

  .\32xl\:bg-orange-600\/90 {
    background-color: rgb(234 88 12 / 0.9);
  }

  .\32xl\:bg-orange-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(194 65 12 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-orange-700\/10 {
    background-color: rgb(194 65 12 / 0.1);
  }

  .\32xl\:bg-orange-700\/20 {
    background-color: rgb(194 65 12 / 0.2);
  }

  .\32xl\:bg-orange-700\/30 {
    background-color: rgb(194 65 12 / 0.3);
  }

  .\32xl\:bg-orange-700\/40 {
    background-color: rgb(194 65 12 / 0.4);
  }

  .\32xl\:bg-orange-700\/5 {
    background-color: rgb(194 65 12 / 0.05);
  }

  .\32xl\:bg-orange-700\/50 {
    background-color: rgb(194 65 12 / 0.5);
  }

  .\32xl\:bg-orange-700\/60 {
    background-color: rgb(194 65 12 / 0.6);
  }

  .\32xl\:bg-orange-700\/70 {
    background-color: rgb(194 65 12 / 0.7);
  }

  .\32xl\:bg-orange-700\/80 {
    background-color: rgb(194 65 12 / 0.8);
  }

  .\32xl\:bg-orange-700\/90 {
    background-color: rgb(194 65 12 / 0.9);
  }

  .\32xl\:bg-orange-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(154 52 18 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-orange-800\/10 {
    background-color: rgb(154 52 18 / 0.1);
  }

  .\32xl\:bg-orange-800\/20 {
    background-color: rgb(154 52 18 / 0.2);
  }

  .\32xl\:bg-orange-800\/30 {
    background-color: rgb(154 52 18 / 0.3);
  }

  .\32xl\:bg-orange-800\/40 {
    background-color: rgb(154 52 18 / 0.4);
  }

  .\32xl\:bg-orange-800\/5 {
    background-color: rgb(154 52 18 / 0.05);
  }

  .\32xl\:bg-orange-800\/50 {
    background-color: rgb(154 52 18 / 0.5);
  }

  .\32xl\:bg-orange-800\/60 {
    background-color: rgb(154 52 18 / 0.6);
  }

  .\32xl\:bg-orange-800\/70 {
    background-color: rgb(154 52 18 / 0.7);
  }

  .\32xl\:bg-orange-800\/80 {
    background-color: rgb(154 52 18 / 0.8);
  }

  .\32xl\:bg-orange-800\/90 {
    background-color: rgb(154 52 18 / 0.9);
  }

  .\32xl\:bg-orange-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(124 45 18 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-orange-900\/10 {
    background-color: rgb(124 45 18 / 0.1);
  }

  .\32xl\:bg-orange-900\/20 {
    background-color: rgb(124 45 18 / 0.2);
  }

  .\32xl\:bg-orange-900\/30 {
    background-color: rgb(124 45 18 / 0.3);
  }

  .\32xl\:bg-orange-900\/40 {
    background-color: rgb(124 45 18 / 0.4);
  }

  .\32xl\:bg-orange-900\/5 {
    background-color: rgb(124 45 18 / 0.05);
  }

  .\32xl\:bg-orange-900\/50 {
    background-color: rgb(124 45 18 / 0.5);
  }

  .\32xl\:bg-orange-900\/60 {
    background-color: rgb(124 45 18 / 0.6);
  }

  .\32xl\:bg-orange-900\/70 {
    background-color: rgb(124 45 18 / 0.7);
  }

  .\32xl\:bg-orange-900\/80 {
    background-color: rgb(124 45 18 / 0.8);
  }

  .\32xl\:bg-orange-900\/90 {
    background-color: rgb(124 45 18 / 0.9);
  }

  .\32xl\:bg-orange-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(67 20 7 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-orange-950\/10 {
    background-color: rgb(67 20 7 / 0.1);
  }

  .\32xl\:bg-orange-950\/20 {
    background-color: rgb(67 20 7 / 0.2);
  }

  .\32xl\:bg-orange-950\/30 {
    background-color: rgb(67 20 7 / 0.3);
  }

  .\32xl\:bg-orange-950\/40 {
    background-color: rgb(67 20 7 / 0.4);
  }

  .\32xl\:bg-orange-950\/5 {
    background-color: rgb(67 20 7 / 0.05);
  }

  .\32xl\:bg-orange-950\/50 {
    background-color: rgb(67 20 7 / 0.5);
  }

  .\32xl\:bg-orange-950\/60 {
    background-color: rgb(67 20 7 / 0.6);
  }

  .\32xl\:bg-orange-950\/70 {
    background-color: rgb(67 20 7 / 0.7);
  }

  .\32xl\:bg-orange-950\/80 {
    background-color: rgb(67 20 7 / 0.8);
  }

  .\32xl\:bg-orange-950\/90 {
    background-color: rgb(67 20 7 / 0.9);
  }

  .\32xl\:bg-pink-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(252 231 243 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-pink-100\/10 {
    background-color: rgb(252 231 243 / 0.1);
  }

  .\32xl\:bg-pink-100\/20 {
    background-color: rgb(252 231 243 / 0.2);
  }

  .\32xl\:bg-pink-100\/30 {
    background-color: rgb(252 231 243 / 0.3);
  }

  .\32xl\:bg-pink-100\/40 {
    background-color: rgb(252 231 243 / 0.4);
  }

  .\32xl\:bg-pink-100\/5 {
    background-color: rgb(252 231 243 / 0.05);
  }

  .\32xl\:bg-pink-100\/50 {
    background-color: rgb(252 231 243 / 0.5);
  }

  .\32xl\:bg-pink-100\/60 {
    background-color: rgb(252 231 243 / 0.6);
  }

  .\32xl\:bg-pink-100\/70 {
    background-color: rgb(252 231 243 / 0.7);
  }

  .\32xl\:bg-pink-100\/80 {
    background-color: rgb(252 231 243 / 0.8);
  }

  .\32xl\:bg-pink-100\/90 {
    background-color: rgb(252 231 243 / 0.9);
  }

  .\32xl\:bg-pink-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(251 207 232 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-pink-200\/10 {
    background-color: rgb(251 207 232 / 0.1);
  }

  .\32xl\:bg-pink-200\/20 {
    background-color: rgb(251 207 232 / 0.2);
  }

  .\32xl\:bg-pink-200\/30 {
    background-color: rgb(251 207 232 / 0.3);
  }

  .\32xl\:bg-pink-200\/40 {
    background-color: rgb(251 207 232 / 0.4);
  }

  .\32xl\:bg-pink-200\/5 {
    background-color: rgb(251 207 232 / 0.05);
  }

  .\32xl\:bg-pink-200\/50 {
    background-color: rgb(251 207 232 / 0.5);
  }

  .\32xl\:bg-pink-200\/60 {
    background-color: rgb(251 207 232 / 0.6);
  }

  .\32xl\:bg-pink-200\/70 {
    background-color: rgb(251 207 232 / 0.7);
  }

  .\32xl\:bg-pink-200\/80 {
    background-color: rgb(251 207 232 / 0.8);
  }

  .\32xl\:bg-pink-200\/90 {
    background-color: rgb(251 207 232 / 0.9);
  }

  .\32xl\:bg-pink-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(249 168 212 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-pink-300\/10 {
    background-color: rgb(249 168 212 / 0.1);
  }

  .\32xl\:bg-pink-300\/20 {
    background-color: rgb(249 168 212 / 0.2);
  }

  .\32xl\:bg-pink-300\/30 {
    background-color: rgb(249 168 212 / 0.3);
  }

  .\32xl\:bg-pink-300\/40 {
    background-color: rgb(249 168 212 / 0.4);
  }

  .\32xl\:bg-pink-300\/5 {
    background-color: rgb(249 168 212 / 0.05);
  }

  .\32xl\:bg-pink-300\/50 {
    background-color: rgb(249 168 212 / 0.5);
  }

  .\32xl\:bg-pink-300\/60 {
    background-color: rgb(249 168 212 / 0.6);
  }

  .\32xl\:bg-pink-300\/70 {
    background-color: rgb(249 168 212 / 0.7);
  }

  .\32xl\:bg-pink-300\/80 {
    background-color: rgb(249 168 212 / 0.8);
  }

  .\32xl\:bg-pink-300\/90 {
    background-color: rgb(249 168 212 / 0.9);
  }

  .\32xl\:bg-pink-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(244 114 182 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-pink-400\/10 {
    background-color: rgb(244 114 182 / 0.1);
  }

  .\32xl\:bg-pink-400\/20 {
    background-color: rgb(244 114 182 / 0.2);
  }

  .\32xl\:bg-pink-400\/30 {
    background-color: rgb(244 114 182 / 0.3);
  }

  .\32xl\:bg-pink-400\/40 {
    background-color: rgb(244 114 182 / 0.4);
  }

  .\32xl\:bg-pink-400\/5 {
    background-color: rgb(244 114 182 / 0.05);
  }

  .\32xl\:bg-pink-400\/50 {
    background-color: rgb(244 114 182 / 0.5);
  }

  .\32xl\:bg-pink-400\/60 {
    background-color: rgb(244 114 182 / 0.6);
  }

  .\32xl\:bg-pink-400\/70 {
    background-color: rgb(244 114 182 / 0.7);
  }

  .\32xl\:bg-pink-400\/80 {
    background-color: rgb(244 114 182 / 0.8);
  }

  .\32xl\:bg-pink-400\/90 {
    background-color: rgb(244 114 182 / 0.9);
  }

  .\32xl\:bg-pink-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(253 242 248 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-pink-50\/10 {
    background-color: rgb(253 242 248 / 0.1);
  }

  .\32xl\:bg-pink-50\/20 {
    background-color: rgb(253 242 248 / 0.2);
  }

  .\32xl\:bg-pink-50\/30 {
    background-color: rgb(253 242 248 / 0.3);
  }

  .\32xl\:bg-pink-50\/40 {
    background-color: rgb(253 242 248 / 0.4);
  }

  .\32xl\:bg-pink-50\/5 {
    background-color: rgb(253 242 248 / 0.05);
  }

  .\32xl\:bg-pink-50\/50 {
    background-color: rgb(253 242 248 / 0.5);
  }

  .\32xl\:bg-pink-50\/60 {
    background-color: rgb(253 242 248 / 0.6);
  }

  .\32xl\:bg-pink-50\/70 {
    background-color: rgb(253 242 248 / 0.7);
  }

  .\32xl\:bg-pink-50\/80 {
    background-color: rgb(253 242 248 / 0.8);
  }

  .\32xl\:bg-pink-50\/90 {
    background-color: rgb(253 242 248 / 0.9);
  }

  .\32xl\:bg-pink-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(236 72 153 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-pink-500\/10 {
    background-color: rgb(236 72 153 / 0.1);
  }

  .\32xl\:bg-pink-500\/20 {
    background-color: rgb(236 72 153 / 0.2);
  }

  .\32xl\:bg-pink-500\/30 {
    background-color: rgb(236 72 153 / 0.3);
  }

  .\32xl\:bg-pink-500\/40 {
    background-color: rgb(236 72 153 / 0.4);
  }

  .\32xl\:bg-pink-500\/5 {
    background-color: rgb(236 72 153 / 0.05);
  }

  .\32xl\:bg-pink-500\/50 {
    background-color: rgb(236 72 153 / 0.5);
  }

  .\32xl\:bg-pink-500\/60 {
    background-color: rgb(236 72 153 / 0.6);
  }

  .\32xl\:bg-pink-500\/70 {
    background-color: rgb(236 72 153 / 0.7);
  }

  .\32xl\:bg-pink-500\/80 {
    background-color: rgb(236 72 153 / 0.8);
  }

  .\32xl\:bg-pink-500\/90 {
    background-color: rgb(236 72 153 / 0.9);
  }

  .\32xl\:bg-pink-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(219 39 119 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-pink-600\/10 {
    background-color: rgb(219 39 119 / 0.1);
  }

  .\32xl\:bg-pink-600\/20 {
    background-color: rgb(219 39 119 / 0.2);
  }

  .\32xl\:bg-pink-600\/30 {
    background-color: rgb(219 39 119 / 0.3);
  }

  .\32xl\:bg-pink-600\/40 {
    background-color: rgb(219 39 119 / 0.4);
  }

  .\32xl\:bg-pink-600\/5 {
    background-color: rgb(219 39 119 / 0.05);
  }

  .\32xl\:bg-pink-600\/50 {
    background-color: rgb(219 39 119 / 0.5);
  }

  .\32xl\:bg-pink-600\/60 {
    background-color: rgb(219 39 119 / 0.6);
  }

  .\32xl\:bg-pink-600\/70 {
    background-color: rgb(219 39 119 / 0.7);
  }

  .\32xl\:bg-pink-600\/80 {
    background-color: rgb(219 39 119 / 0.8);
  }

  .\32xl\:bg-pink-600\/90 {
    background-color: rgb(219 39 119 / 0.9);
  }

  .\32xl\:bg-pink-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(190 24 93 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-pink-700\/10 {
    background-color: rgb(190 24 93 / 0.1);
  }

  .\32xl\:bg-pink-700\/20 {
    background-color: rgb(190 24 93 / 0.2);
  }

  .\32xl\:bg-pink-700\/30 {
    background-color: rgb(190 24 93 / 0.3);
  }

  .\32xl\:bg-pink-700\/40 {
    background-color: rgb(190 24 93 / 0.4);
  }

  .\32xl\:bg-pink-700\/5 {
    background-color: rgb(190 24 93 / 0.05);
  }

  .\32xl\:bg-pink-700\/50 {
    background-color: rgb(190 24 93 / 0.5);
  }

  .\32xl\:bg-pink-700\/60 {
    background-color: rgb(190 24 93 / 0.6);
  }

  .\32xl\:bg-pink-700\/70 {
    background-color: rgb(190 24 93 / 0.7);
  }

  .\32xl\:bg-pink-700\/80 {
    background-color: rgb(190 24 93 / 0.8);
  }

  .\32xl\:bg-pink-700\/90 {
    background-color: rgb(190 24 93 / 0.9);
  }

  .\32xl\:bg-pink-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(157 23 77 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-pink-800\/10 {
    background-color: rgb(157 23 77 / 0.1);
  }

  .\32xl\:bg-pink-800\/20 {
    background-color: rgb(157 23 77 / 0.2);
  }

  .\32xl\:bg-pink-800\/30 {
    background-color: rgb(157 23 77 / 0.3);
  }

  .\32xl\:bg-pink-800\/40 {
    background-color: rgb(157 23 77 / 0.4);
  }

  .\32xl\:bg-pink-800\/5 {
    background-color: rgb(157 23 77 / 0.05);
  }

  .\32xl\:bg-pink-800\/50 {
    background-color: rgb(157 23 77 / 0.5);
  }

  .\32xl\:bg-pink-800\/60 {
    background-color: rgb(157 23 77 / 0.6);
  }

  .\32xl\:bg-pink-800\/70 {
    background-color: rgb(157 23 77 / 0.7);
  }

  .\32xl\:bg-pink-800\/80 {
    background-color: rgb(157 23 77 / 0.8);
  }

  .\32xl\:bg-pink-800\/90 {
    background-color: rgb(157 23 77 / 0.9);
  }

  .\32xl\:bg-pink-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(131 24 67 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-pink-900\/10 {
    background-color: rgb(131 24 67 / 0.1);
  }

  .\32xl\:bg-pink-900\/20 {
    background-color: rgb(131 24 67 / 0.2);
  }

  .\32xl\:bg-pink-900\/30 {
    background-color: rgb(131 24 67 / 0.3);
  }

  .\32xl\:bg-pink-900\/40 {
    background-color: rgb(131 24 67 / 0.4);
  }

  .\32xl\:bg-pink-900\/5 {
    background-color: rgb(131 24 67 / 0.05);
  }

  .\32xl\:bg-pink-900\/50 {
    background-color: rgb(131 24 67 / 0.5);
  }

  .\32xl\:bg-pink-900\/60 {
    background-color: rgb(131 24 67 / 0.6);
  }

  .\32xl\:bg-pink-900\/70 {
    background-color: rgb(131 24 67 / 0.7);
  }

  .\32xl\:bg-pink-900\/80 {
    background-color: rgb(131 24 67 / 0.8);
  }

  .\32xl\:bg-pink-900\/90 {
    background-color: rgb(131 24 67 / 0.9);
  }

  .\32xl\:bg-pink-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(80 7 36 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-pink-950\/10 {
    background-color: rgb(80 7 36 / 0.1);
  }

  .\32xl\:bg-pink-950\/20 {
    background-color: rgb(80 7 36 / 0.2);
  }

  .\32xl\:bg-pink-950\/30 {
    background-color: rgb(80 7 36 / 0.3);
  }

  .\32xl\:bg-pink-950\/40 {
    background-color: rgb(80 7 36 / 0.4);
  }

  .\32xl\:bg-pink-950\/5 {
    background-color: rgb(80 7 36 / 0.05);
  }

  .\32xl\:bg-pink-950\/50 {
    background-color: rgb(80 7 36 / 0.5);
  }

  .\32xl\:bg-pink-950\/60 {
    background-color: rgb(80 7 36 / 0.6);
  }

  .\32xl\:bg-pink-950\/70 {
    background-color: rgb(80 7 36 / 0.7);
  }

  .\32xl\:bg-pink-950\/80 {
    background-color: rgb(80 7 36 / 0.8);
  }

  .\32xl\:bg-pink-950\/90 {
    background-color: rgb(80 7 36 / 0.9);
  }

  .\32xl\:bg-purple-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(243 232 255 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-purple-100\/10 {
    background-color: rgb(243 232 255 / 0.1);
  }

  .\32xl\:bg-purple-100\/20 {
    background-color: rgb(243 232 255 / 0.2);
  }

  .\32xl\:bg-purple-100\/30 {
    background-color: rgb(243 232 255 / 0.3);
  }

  .\32xl\:bg-purple-100\/40 {
    background-color: rgb(243 232 255 / 0.4);
  }

  .\32xl\:bg-purple-100\/5 {
    background-color: rgb(243 232 255 / 0.05);
  }

  .\32xl\:bg-purple-100\/50 {
    background-color: rgb(243 232 255 / 0.5);
  }

  .\32xl\:bg-purple-100\/60 {
    background-color: rgb(243 232 255 / 0.6);
  }

  .\32xl\:bg-purple-100\/70 {
    background-color: rgb(243 232 255 / 0.7);
  }

  .\32xl\:bg-purple-100\/80 {
    background-color: rgb(243 232 255 / 0.8);
  }

  .\32xl\:bg-purple-100\/90 {
    background-color: rgb(243 232 255 / 0.9);
  }

  .\32xl\:bg-purple-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(233 213 255 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-purple-200\/10 {
    background-color: rgb(233 213 255 / 0.1);
  }

  .\32xl\:bg-purple-200\/20 {
    background-color: rgb(233 213 255 / 0.2);
  }

  .\32xl\:bg-purple-200\/30 {
    background-color: rgb(233 213 255 / 0.3);
  }

  .\32xl\:bg-purple-200\/40 {
    background-color: rgb(233 213 255 / 0.4);
  }

  .\32xl\:bg-purple-200\/5 {
    background-color: rgb(233 213 255 / 0.05);
  }

  .\32xl\:bg-purple-200\/50 {
    background-color: rgb(233 213 255 / 0.5);
  }

  .\32xl\:bg-purple-200\/60 {
    background-color: rgb(233 213 255 / 0.6);
  }

  .\32xl\:bg-purple-200\/70 {
    background-color: rgb(233 213 255 / 0.7);
  }

  .\32xl\:bg-purple-200\/80 {
    background-color: rgb(233 213 255 / 0.8);
  }

  .\32xl\:bg-purple-200\/90 {
    background-color: rgb(233 213 255 / 0.9);
  }

  .\32xl\:bg-purple-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(216 180 254 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-purple-300\/10 {
    background-color: rgb(216 180 254 / 0.1);
  }

  .\32xl\:bg-purple-300\/20 {
    background-color: rgb(216 180 254 / 0.2);
  }

  .\32xl\:bg-purple-300\/30 {
    background-color: rgb(216 180 254 / 0.3);
  }

  .\32xl\:bg-purple-300\/40 {
    background-color: rgb(216 180 254 / 0.4);
  }

  .\32xl\:bg-purple-300\/5 {
    background-color: rgb(216 180 254 / 0.05);
  }

  .\32xl\:bg-purple-300\/50 {
    background-color: rgb(216 180 254 / 0.5);
  }

  .\32xl\:bg-purple-300\/60 {
    background-color: rgb(216 180 254 / 0.6);
  }

  .\32xl\:bg-purple-300\/70 {
    background-color: rgb(216 180 254 / 0.7);
  }

  .\32xl\:bg-purple-300\/80 {
    background-color: rgb(216 180 254 / 0.8);
  }

  .\32xl\:bg-purple-300\/90 {
    background-color: rgb(216 180 254 / 0.9);
  }

  .\32xl\:bg-purple-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(192 132 252 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-purple-400\/10 {
    background-color: rgb(192 132 252 / 0.1);
  }

  .\32xl\:bg-purple-400\/20 {
    background-color: rgb(192 132 252 / 0.2);
  }

  .\32xl\:bg-purple-400\/30 {
    background-color: rgb(192 132 252 / 0.3);
  }

  .\32xl\:bg-purple-400\/40 {
    background-color: rgb(192 132 252 / 0.4);
  }

  .\32xl\:bg-purple-400\/5 {
    background-color: rgb(192 132 252 / 0.05);
  }

  .\32xl\:bg-purple-400\/50 {
    background-color: rgb(192 132 252 / 0.5);
  }

  .\32xl\:bg-purple-400\/60 {
    background-color: rgb(192 132 252 / 0.6);
  }

  .\32xl\:bg-purple-400\/70 {
    background-color: rgb(192 132 252 / 0.7);
  }

  .\32xl\:bg-purple-400\/80 {
    background-color: rgb(192 132 252 / 0.8);
  }

  .\32xl\:bg-purple-400\/90 {
    background-color: rgb(192 132 252 / 0.9);
  }

  .\32xl\:bg-purple-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 245 255 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-purple-50\/10 {
    background-color: rgb(250 245 255 / 0.1);
  }

  .\32xl\:bg-purple-50\/20 {
    background-color: rgb(250 245 255 / 0.2);
  }

  .\32xl\:bg-purple-50\/30 {
    background-color: rgb(250 245 255 / 0.3);
  }

  .\32xl\:bg-purple-50\/40 {
    background-color: rgb(250 245 255 / 0.4);
  }

  .\32xl\:bg-purple-50\/5 {
    background-color: rgb(250 245 255 / 0.05);
  }

  .\32xl\:bg-purple-50\/50 {
    background-color: rgb(250 245 255 / 0.5);
  }

  .\32xl\:bg-purple-50\/60 {
    background-color: rgb(250 245 255 / 0.6);
  }

  .\32xl\:bg-purple-50\/70 {
    background-color: rgb(250 245 255 / 0.7);
  }

  .\32xl\:bg-purple-50\/80 {
    background-color: rgb(250 245 255 / 0.8);
  }

  .\32xl\:bg-purple-50\/90 {
    background-color: rgb(250 245 255 / 0.9);
  }

  .\32xl\:bg-purple-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(168 85 247 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-purple-500\/10 {
    background-color: rgb(168 85 247 / 0.1);
  }

  .\32xl\:bg-purple-500\/20 {
    background-color: rgb(168 85 247 / 0.2);
  }

  .\32xl\:bg-purple-500\/30 {
    background-color: rgb(168 85 247 / 0.3);
  }

  .\32xl\:bg-purple-500\/40 {
    background-color: rgb(168 85 247 / 0.4);
  }

  .\32xl\:bg-purple-500\/5 {
    background-color: rgb(168 85 247 / 0.05);
  }

  .\32xl\:bg-purple-500\/50 {
    background-color: rgb(168 85 247 / 0.5);
  }

  .\32xl\:bg-purple-500\/60 {
    background-color: rgb(168 85 247 / 0.6);
  }

  .\32xl\:bg-purple-500\/70 {
    background-color: rgb(168 85 247 / 0.7);
  }

  .\32xl\:bg-purple-500\/80 {
    background-color: rgb(168 85 247 / 0.8);
  }

  .\32xl\:bg-purple-500\/90 {
    background-color: rgb(168 85 247 / 0.9);
  }

  .\32xl\:bg-purple-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(147 51 234 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-purple-600\/10 {
    background-color: rgb(147 51 234 / 0.1);
  }

  .\32xl\:bg-purple-600\/20 {
    background-color: rgb(147 51 234 / 0.2);
  }

  .\32xl\:bg-purple-600\/30 {
    background-color: rgb(147 51 234 / 0.3);
  }

  .\32xl\:bg-purple-600\/40 {
    background-color: rgb(147 51 234 / 0.4);
  }

  .\32xl\:bg-purple-600\/5 {
    background-color: rgb(147 51 234 / 0.05);
  }

  .\32xl\:bg-purple-600\/50 {
    background-color: rgb(147 51 234 / 0.5);
  }

  .\32xl\:bg-purple-600\/60 {
    background-color: rgb(147 51 234 / 0.6);
  }

  .\32xl\:bg-purple-600\/70 {
    background-color: rgb(147 51 234 / 0.7);
  }

  .\32xl\:bg-purple-600\/80 {
    background-color: rgb(147 51 234 / 0.8);
  }

  .\32xl\:bg-purple-600\/90 {
    background-color: rgb(147 51 234 / 0.9);
  }

  .\32xl\:bg-purple-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(126 34 206 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-purple-700\/10 {
    background-color: rgb(126 34 206 / 0.1);
  }

  .\32xl\:bg-purple-700\/20 {
    background-color: rgb(126 34 206 / 0.2);
  }

  .\32xl\:bg-purple-700\/30 {
    background-color: rgb(126 34 206 / 0.3);
  }

  .\32xl\:bg-purple-700\/40 {
    background-color: rgb(126 34 206 / 0.4);
  }

  .\32xl\:bg-purple-700\/5 {
    background-color: rgb(126 34 206 / 0.05);
  }

  .\32xl\:bg-purple-700\/50 {
    background-color: rgb(126 34 206 / 0.5);
  }

  .\32xl\:bg-purple-700\/60 {
    background-color: rgb(126 34 206 / 0.6);
  }

  .\32xl\:bg-purple-700\/70 {
    background-color: rgb(126 34 206 / 0.7);
  }

  .\32xl\:bg-purple-700\/80 {
    background-color: rgb(126 34 206 / 0.8);
  }

  .\32xl\:bg-purple-700\/90 {
    background-color: rgb(126 34 206 / 0.9);
  }

  .\32xl\:bg-purple-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(107 33 168 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-purple-800\/10 {
    background-color: rgb(107 33 168 / 0.1);
  }

  .\32xl\:bg-purple-800\/20 {
    background-color: rgb(107 33 168 / 0.2);
  }

  .\32xl\:bg-purple-800\/30 {
    background-color: rgb(107 33 168 / 0.3);
  }

  .\32xl\:bg-purple-800\/40 {
    background-color: rgb(107 33 168 / 0.4);
  }

  .\32xl\:bg-purple-800\/5 {
    background-color: rgb(107 33 168 / 0.05);
  }

  .\32xl\:bg-purple-800\/50 {
    background-color: rgb(107 33 168 / 0.5);
  }

  .\32xl\:bg-purple-800\/60 {
    background-color: rgb(107 33 168 / 0.6);
  }

  .\32xl\:bg-purple-800\/70 {
    background-color: rgb(107 33 168 / 0.7);
  }

  .\32xl\:bg-purple-800\/80 {
    background-color: rgb(107 33 168 / 0.8);
  }

  .\32xl\:bg-purple-800\/90 {
    background-color: rgb(107 33 168 / 0.9);
  }

  .\32xl\:bg-purple-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(88 28 135 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-purple-900\/10 {
    background-color: rgb(88 28 135 / 0.1);
  }

  .\32xl\:bg-purple-900\/20 {
    background-color: rgb(88 28 135 / 0.2);
  }

  .\32xl\:bg-purple-900\/30 {
    background-color: rgb(88 28 135 / 0.3);
  }

  .\32xl\:bg-purple-900\/40 {
    background-color: rgb(88 28 135 / 0.4);
  }

  .\32xl\:bg-purple-900\/5 {
    background-color: rgb(88 28 135 / 0.05);
  }

  .\32xl\:bg-purple-900\/50 {
    background-color: rgb(88 28 135 / 0.5);
  }

  .\32xl\:bg-purple-900\/60 {
    background-color: rgb(88 28 135 / 0.6);
  }

  .\32xl\:bg-purple-900\/70 {
    background-color: rgb(88 28 135 / 0.7);
  }

  .\32xl\:bg-purple-900\/80 {
    background-color: rgb(88 28 135 / 0.8);
  }

  .\32xl\:bg-purple-900\/90 {
    background-color: rgb(88 28 135 / 0.9);
  }

  .\32xl\:bg-purple-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(59 7 100 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-purple-950\/10 {
    background-color: rgb(59 7 100 / 0.1);
  }

  .\32xl\:bg-purple-950\/20 {
    background-color: rgb(59 7 100 / 0.2);
  }

  .\32xl\:bg-purple-950\/30 {
    background-color: rgb(59 7 100 / 0.3);
  }

  .\32xl\:bg-purple-950\/40 {
    background-color: rgb(59 7 100 / 0.4);
  }

  .\32xl\:bg-purple-950\/5 {
    background-color: rgb(59 7 100 / 0.05);
  }

  .\32xl\:bg-purple-950\/50 {
    background-color: rgb(59 7 100 / 0.5);
  }

  .\32xl\:bg-purple-950\/60 {
    background-color: rgb(59 7 100 / 0.6);
  }

  .\32xl\:bg-purple-950\/70 {
    background-color: rgb(59 7 100 / 0.7);
  }

  .\32xl\:bg-purple-950\/80 {
    background-color: rgb(59 7 100 / 0.8);
  }

  .\32xl\:bg-purple-950\/90 {
    background-color: rgb(59 7 100 / 0.9);
  }

  .\32xl\:bg-red-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-red-100\/10 {
    background-color: rgb(254 226 226 / 0.1);
  }

  .\32xl\:bg-red-100\/20 {
    background-color: rgb(254 226 226 / 0.2);
  }

  .\32xl\:bg-red-100\/30 {
    background-color: rgb(254 226 226 / 0.3);
  }

  .\32xl\:bg-red-100\/40 {
    background-color: rgb(254 226 226 / 0.4);
  }

  .\32xl\:bg-red-100\/5 {
    background-color: rgb(254 226 226 / 0.05);
  }

  .\32xl\:bg-red-100\/50 {
    background-color: rgb(254 226 226 / 0.5);
  }

  .\32xl\:bg-red-100\/60 {
    background-color: rgb(254 226 226 / 0.6);
  }

  .\32xl\:bg-red-100\/70 {
    background-color: rgb(254 226 226 / 0.7);
  }

  .\32xl\:bg-red-100\/80 {
    background-color: rgb(254 226 226 / 0.8);
  }

  .\32xl\:bg-red-100\/90 {
    background-color: rgb(254 226 226 / 0.9);
  }

  .\32xl\:bg-red-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 202 202 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-red-200\/10 {
    background-color: rgb(254 202 202 / 0.1);
  }

  .\32xl\:bg-red-200\/20 {
    background-color: rgb(254 202 202 / 0.2);
  }

  .\32xl\:bg-red-200\/30 {
    background-color: rgb(254 202 202 / 0.3);
  }

  .\32xl\:bg-red-200\/40 {
    background-color: rgb(254 202 202 / 0.4);
  }

  .\32xl\:bg-red-200\/5 {
    background-color: rgb(254 202 202 / 0.05);
  }

  .\32xl\:bg-red-200\/50 {
    background-color: rgb(254 202 202 / 0.5);
  }

  .\32xl\:bg-red-200\/60 {
    background-color: rgb(254 202 202 / 0.6);
  }

  .\32xl\:bg-red-200\/70 {
    background-color: rgb(254 202 202 / 0.7);
  }

  .\32xl\:bg-red-200\/80 {
    background-color: rgb(254 202 202 / 0.8);
  }

  .\32xl\:bg-red-200\/90 {
    background-color: rgb(254 202 202 / 0.9);
  }

  .\32xl\:bg-red-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(252 165 165 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-red-300\/10 {
    background-color: rgb(252 165 165 / 0.1);
  }

  .\32xl\:bg-red-300\/20 {
    background-color: rgb(252 165 165 / 0.2);
  }

  .\32xl\:bg-red-300\/30 {
    background-color: rgb(252 165 165 / 0.3);
  }

  .\32xl\:bg-red-300\/40 {
    background-color: rgb(252 165 165 / 0.4);
  }

  .\32xl\:bg-red-300\/5 {
    background-color: rgb(252 165 165 / 0.05);
  }

  .\32xl\:bg-red-300\/50 {
    background-color: rgb(252 165 165 / 0.5);
  }

  .\32xl\:bg-red-300\/60 {
    background-color: rgb(252 165 165 / 0.6);
  }

  .\32xl\:bg-red-300\/70 {
    background-color: rgb(252 165 165 / 0.7);
  }

  .\32xl\:bg-red-300\/80 {
    background-color: rgb(252 165 165 / 0.8);
  }

  .\32xl\:bg-red-300\/90 {
    background-color: rgb(252 165 165 / 0.9);
  }

  .\32xl\:bg-red-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(248 113 113 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-red-400\/10 {
    background-color: rgb(248 113 113 / 0.1);
  }

  .\32xl\:bg-red-400\/20 {
    background-color: rgb(248 113 113 / 0.2);
  }

  .\32xl\:bg-red-400\/30 {
    background-color: rgb(248 113 113 / 0.3);
  }

  .\32xl\:bg-red-400\/40 {
    background-color: rgb(248 113 113 / 0.4);
  }

  .\32xl\:bg-red-400\/5 {
    background-color: rgb(248 113 113 / 0.05);
  }

  .\32xl\:bg-red-400\/50 {
    background-color: rgb(248 113 113 / 0.5);
  }

  .\32xl\:bg-red-400\/60 {
    background-color: rgb(248 113 113 / 0.6);
  }

  .\32xl\:bg-red-400\/70 {
    background-color: rgb(248 113 113 / 0.7);
  }

  .\32xl\:bg-red-400\/80 {
    background-color: rgb(248 113 113 / 0.8);
  }

  .\32xl\:bg-red-400\/90 {
    background-color: rgb(248 113 113 / 0.9);
  }

  .\32xl\:bg-red-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-red-50\/10 {
    background-color: rgb(254 242 242 / 0.1);
  }

  .\32xl\:bg-red-50\/20 {
    background-color: rgb(254 242 242 / 0.2);
  }

  .\32xl\:bg-red-50\/30 {
    background-color: rgb(254 242 242 / 0.3);
  }

  .\32xl\:bg-red-50\/40 {
    background-color: rgb(254 242 242 / 0.4);
  }

  .\32xl\:bg-red-50\/5 {
    background-color: rgb(254 242 242 / 0.05);
  }

  .\32xl\:bg-red-50\/50 {
    background-color: rgb(254 242 242 / 0.5);
  }

  .\32xl\:bg-red-50\/60 {
    background-color: rgb(254 242 242 / 0.6);
  }

  .\32xl\:bg-red-50\/70 {
    background-color: rgb(254 242 242 / 0.7);
  }

  .\32xl\:bg-red-50\/80 {
    background-color: rgb(254 242 242 / 0.8);
  }

  .\32xl\:bg-red-50\/90 {
    background-color: rgb(254 242 242 / 0.9);
  }

  .\32xl\:bg-red-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-red-500\/10 {
    background-color: rgb(239 68 68 / 0.1);
  }

  .\32xl\:bg-red-500\/20 {
    background-color: rgb(239 68 68 / 0.2);
  }

  .\32xl\:bg-red-500\/30 {
    background-color: rgb(239 68 68 / 0.3);
  }

  .\32xl\:bg-red-500\/40 {
    background-color: rgb(239 68 68 / 0.4);
  }

  .\32xl\:bg-red-500\/5 {
    background-color: rgb(239 68 68 / 0.05);
  }

  .\32xl\:bg-red-500\/50 {
    background-color: rgb(239 68 68 / 0.5);
  }

  .\32xl\:bg-red-500\/60 {
    background-color: rgb(239 68 68 / 0.6);
  }

  .\32xl\:bg-red-500\/70 {
    background-color: rgb(239 68 68 / 0.7);
  }

  .\32xl\:bg-red-500\/80 {
    background-color: rgb(239 68 68 / 0.8);
  }

  .\32xl\:bg-red-500\/90 {
    background-color: rgb(239 68 68 / 0.9);
  }

  .\32xl\:bg-red-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-red-600\/10 {
    background-color: rgb(220 38 38 / 0.1);
  }

  .\32xl\:bg-red-600\/20 {
    background-color: rgb(220 38 38 / 0.2);
  }

  .\32xl\:bg-red-600\/30 {
    background-color: rgb(220 38 38 / 0.3);
  }

  .\32xl\:bg-red-600\/40 {
    background-color: rgb(220 38 38 / 0.4);
  }

  .\32xl\:bg-red-600\/5 {
    background-color: rgb(220 38 38 / 0.05);
  }

  .\32xl\:bg-red-600\/50 {
    background-color: rgb(220 38 38 / 0.5);
  }

  .\32xl\:bg-red-600\/60 {
    background-color: rgb(220 38 38 / 0.6);
  }

  .\32xl\:bg-red-600\/70 {
    background-color: rgb(220 38 38 / 0.7);
  }

  .\32xl\:bg-red-600\/80 {
    background-color: rgb(220 38 38 / 0.8);
  }

  .\32xl\:bg-red-600\/90 {
    background-color: rgb(220 38 38 / 0.9);
  }

  .\32xl\:bg-red-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-red-700\/10 {
    background-color: rgb(185 28 28 / 0.1);
  }

  .\32xl\:bg-red-700\/20 {
    background-color: rgb(185 28 28 / 0.2);
  }

  .\32xl\:bg-red-700\/30 {
    background-color: rgb(185 28 28 / 0.3);
  }

  .\32xl\:bg-red-700\/40 {
    background-color: rgb(185 28 28 / 0.4);
  }

  .\32xl\:bg-red-700\/5 {
    background-color: rgb(185 28 28 / 0.05);
  }

  .\32xl\:bg-red-700\/50 {
    background-color: rgb(185 28 28 / 0.5);
  }

  .\32xl\:bg-red-700\/60 {
    background-color: rgb(185 28 28 / 0.6);
  }

  .\32xl\:bg-red-700\/70 {
    background-color: rgb(185 28 28 / 0.7);
  }

  .\32xl\:bg-red-700\/80 {
    background-color: rgb(185 28 28 / 0.8);
  }

  .\32xl\:bg-red-700\/90 {
    background-color: rgb(185 28 28 / 0.9);
  }

  .\32xl\:bg-red-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(153 27 27 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-red-800\/10 {
    background-color: rgb(153 27 27 / 0.1);
  }

  .\32xl\:bg-red-800\/20 {
    background-color: rgb(153 27 27 / 0.2);
  }

  .\32xl\:bg-red-800\/30 {
    background-color: rgb(153 27 27 / 0.3);
  }

  .\32xl\:bg-red-800\/40 {
    background-color: rgb(153 27 27 / 0.4);
  }

  .\32xl\:bg-red-800\/5 {
    background-color: rgb(153 27 27 / 0.05);
  }

  .\32xl\:bg-red-800\/50 {
    background-color: rgb(153 27 27 / 0.5);
  }

  .\32xl\:bg-red-800\/60 {
    background-color: rgb(153 27 27 / 0.6);
  }

  .\32xl\:bg-red-800\/70 {
    background-color: rgb(153 27 27 / 0.7);
  }

  .\32xl\:bg-red-800\/80 {
    background-color: rgb(153 27 27 / 0.8);
  }

  .\32xl\:bg-red-800\/90 {
    background-color: rgb(153 27 27 / 0.9);
  }

  .\32xl\:bg-red-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(127 29 29 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-red-900\/10 {
    background-color: rgb(127 29 29 / 0.1);
  }

  .\32xl\:bg-red-900\/20 {
    background-color: rgb(127 29 29 / 0.2);
  }

  .\32xl\:bg-red-900\/30 {
    background-color: rgb(127 29 29 / 0.3);
  }

  .\32xl\:bg-red-900\/40 {
    background-color: rgb(127 29 29 / 0.4);
  }

  .\32xl\:bg-red-900\/5 {
    background-color: rgb(127 29 29 / 0.05);
  }

  .\32xl\:bg-red-900\/50 {
    background-color: rgb(127 29 29 / 0.5);
  }

  .\32xl\:bg-red-900\/60 {
    background-color: rgb(127 29 29 / 0.6);
  }

  .\32xl\:bg-red-900\/70 {
    background-color: rgb(127 29 29 / 0.7);
  }

  .\32xl\:bg-red-900\/80 {
    background-color: rgb(127 29 29 / 0.8);
  }

  .\32xl\:bg-red-900\/90 {
    background-color: rgb(127 29 29 / 0.9);
  }

  .\32xl\:bg-red-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(69 10 10 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-red-950\/10 {
    background-color: rgb(69 10 10 / 0.1);
  }

  .\32xl\:bg-red-950\/20 {
    background-color: rgb(69 10 10 / 0.2);
  }

  .\32xl\:bg-red-950\/30 {
    background-color: rgb(69 10 10 / 0.3);
  }

  .\32xl\:bg-red-950\/40 {
    background-color: rgb(69 10 10 / 0.4);
  }

  .\32xl\:bg-red-950\/5 {
    background-color: rgb(69 10 10 / 0.05);
  }

  .\32xl\:bg-red-950\/50 {
    background-color: rgb(69 10 10 / 0.5);
  }

  .\32xl\:bg-red-950\/60 {
    background-color: rgb(69 10 10 / 0.6);
  }

  .\32xl\:bg-red-950\/70 {
    background-color: rgb(69 10 10 / 0.7);
  }

  .\32xl\:bg-red-950\/80 {
    background-color: rgb(69 10 10 / 0.8);
  }

  .\32xl\:bg-red-950\/90 {
    background-color: rgb(69 10 10 / 0.9);
  }

  .\32xl\:bg-rose-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 228 230 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-rose-100\/10 {
    background-color: rgb(255 228 230 / 0.1);
  }

  .\32xl\:bg-rose-100\/20 {
    background-color: rgb(255 228 230 / 0.2);
  }

  .\32xl\:bg-rose-100\/30 {
    background-color: rgb(255 228 230 / 0.3);
  }

  .\32xl\:bg-rose-100\/40 {
    background-color: rgb(255 228 230 / 0.4);
  }

  .\32xl\:bg-rose-100\/5 {
    background-color: rgb(255 228 230 / 0.05);
  }

  .\32xl\:bg-rose-100\/50 {
    background-color: rgb(255 228 230 / 0.5);
  }

  .\32xl\:bg-rose-100\/60 {
    background-color: rgb(255 228 230 / 0.6);
  }

  .\32xl\:bg-rose-100\/70 {
    background-color: rgb(255 228 230 / 0.7);
  }

  .\32xl\:bg-rose-100\/80 {
    background-color: rgb(255 228 230 / 0.8);
  }

  .\32xl\:bg-rose-100\/90 {
    background-color: rgb(255 228 230 / 0.9);
  }

  .\32xl\:bg-rose-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 205 211 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-rose-200\/10 {
    background-color: rgb(254 205 211 / 0.1);
  }

  .\32xl\:bg-rose-200\/20 {
    background-color: rgb(254 205 211 / 0.2);
  }

  .\32xl\:bg-rose-200\/30 {
    background-color: rgb(254 205 211 / 0.3);
  }

  .\32xl\:bg-rose-200\/40 {
    background-color: rgb(254 205 211 / 0.4);
  }

  .\32xl\:bg-rose-200\/5 {
    background-color: rgb(254 205 211 / 0.05);
  }

  .\32xl\:bg-rose-200\/50 {
    background-color: rgb(254 205 211 / 0.5);
  }

  .\32xl\:bg-rose-200\/60 {
    background-color: rgb(254 205 211 / 0.6);
  }

  .\32xl\:bg-rose-200\/70 {
    background-color: rgb(254 205 211 / 0.7);
  }

  .\32xl\:bg-rose-200\/80 {
    background-color: rgb(254 205 211 / 0.8);
  }

  .\32xl\:bg-rose-200\/90 {
    background-color: rgb(254 205 211 / 0.9);
  }

  .\32xl\:bg-rose-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(253 164 175 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-rose-300\/10 {
    background-color: rgb(253 164 175 / 0.1);
  }

  .\32xl\:bg-rose-300\/20 {
    background-color: rgb(253 164 175 / 0.2);
  }

  .\32xl\:bg-rose-300\/30 {
    background-color: rgb(253 164 175 / 0.3);
  }

  .\32xl\:bg-rose-300\/40 {
    background-color: rgb(253 164 175 / 0.4);
  }

  .\32xl\:bg-rose-300\/5 {
    background-color: rgb(253 164 175 / 0.05);
  }

  .\32xl\:bg-rose-300\/50 {
    background-color: rgb(253 164 175 / 0.5);
  }

  .\32xl\:bg-rose-300\/60 {
    background-color: rgb(253 164 175 / 0.6);
  }

  .\32xl\:bg-rose-300\/70 {
    background-color: rgb(253 164 175 / 0.7);
  }

  .\32xl\:bg-rose-300\/80 {
    background-color: rgb(253 164 175 / 0.8);
  }

  .\32xl\:bg-rose-300\/90 {
    background-color: rgb(253 164 175 / 0.9);
  }

  .\32xl\:bg-rose-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(251 113 133 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-rose-400\/10 {
    background-color: rgb(251 113 133 / 0.1);
  }

  .\32xl\:bg-rose-400\/20 {
    background-color: rgb(251 113 133 / 0.2);
  }

  .\32xl\:bg-rose-400\/30 {
    background-color: rgb(251 113 133 / 0.3);
  }

  .\32xl\:bg-rose-400\/40 {
    background-color: rgb(251 113 133 / 0.4);
  }

  .\32xl\:bg-rose-400\/5 {
    background-color: rgb(251 113 133 / 0.05);
  }

  .\32xl\:bg-rose-400\/50 {
    background-color: rgb(251 113 133 / 0.5);
  }

  .\32xl\:bg-rose-400\/60 {
    background-color: rgb(251 113 133 / 0.6);
  }

  .\32xl\:bg-rose-400\/70 {
    background-color: rgb(251 113 133 / 0.7);
  }

  .\32xl\:bg-rose-400\/80 {
    background-color: rgb(251 113 133 / 0.8);
  }

  .\32xl\:bg-rose-400\/90 {
    background-color: rgb(251 113 133 / 0.9);
  }

  .\32xl\:bg-rose-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 241 242 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-rose-50\/10 {
    background-color: rgb(255 241 242 / 0.1);
  }

  .\32xl\:bg-rose-50\/20 {
    background-color: rgb(255 241 242 / 0.2);
  }

  .\32xl\:bg-rose-50\/30 {
    background-color: rgb(255 241 242 / 0.3);
  }

  .\32xl\:bg-rose-50\/40 {
    background-color: rgb(255 241 242 / 0.4);
  }

  .\32xl\:bg-rose-50\/5 {
    background-color: rgb(255 241 242 / 0.05);
  }

  .\32xl\:bg-rose-50\/50 {
    background-color: rgb(255 241 242 / 0.5);
  }

  .\32xl\:bg-rose-50\/60 {
    background-color: rgb(255 241 242 / 0.6);
  }

  .\32xl\:bg-rose-50\/70 {
    background-color: rgb(255 241 242 / 0.7);
  }

  .\32xl\:bg-rose-50\/80 {
    background-color: rgb(255 241 242 / 0.8);
  }

  .\32xl\:bg-rose-50\/90 {
    background-color: rgb(255 241 242 / 0.9);
  }

  .\32xl\:bg-rose-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(244 63 94 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-rose-500\/10 {
    background-color: rgb(244 63 94 / 0.1);
  }

  .\32xl\:bg-rose-500\/20 {
    background-color: rgb(244 63 94 / 0.2);
  }

  .\32xl\:bg-rose-500\/30 {
    background-color: rgb(244 63 94 / 0.3);
  }

  .\32xl\:bg-rose-500\/40 {
    background-color: rgb(244 63 94 / 0.4);
  }

  .\32xl\:bg-rose-500\/5 {
    background-color: rgb(244 63 94 / 0.05);
  }

  .\32xl\:bg-rose-500\/50 {
    background-color: rgb(244 63 94 / 0.5);
  }

  .\32xl\:bg-rose-500\/60 {
    background-color: rgb(244 63 94 / 0.6);
  }

  .\32xl\:bg-rose-500\/70 {
    background-color: rgb(244 63 94 / 0.7);
  }

  .\32xl\:bg-rose-500\/80 {
    background-color: rgb(244 63 94 / 0.8);
  }

  .\32xl\:bg-rose-500\/90 {
    background-color: rgb(244 63 94 / 0.9);
  }

  .\32xl\:bg-rose-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(225 29 72 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-rose-600\/10 {
    background-color: rgb(225 29 72 / 0.1);
  }

  .\32xl\:bg-rose-600\/20 {
    background-color: rgb(225 29 72 / 0.2);
  }

  .\32xl\:bg-rose-600\/30 {
    background-color: rgb(225 29 72 / 0.3);
  }

  .\32xl\:bg-rose-600\/40 {
    background-color: rgb(225 29 72 / 0.4);
  }

  .\32xl\:bg-rose-600\/5 {
    background-color: rgb(225 29 72 / 0.05);
  }

  .\32xl\:bg-rose-600\/50 {
    background-color: rgb(225 29 72 / 0.5);
  }

  .\32xl\:bg-rose-600\/60 {
    background-color: rgb(225 29 72 / 0.6);
  }

  .\32xl\:bg-rose-600\/70 {
    background-color: rgb(225 29 72 / 0.7);
  }

  .\32xl\:bg-rose-600\/80 {
    background-color: rgb(225 29 72 / 0.8);
  }

  .\32xl\:bg-rose-600\/90 {
    background-color: rgb(225 29 72 / 0.9);
  }

  .\32xl\:bg-rose-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(190 18 60 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-rose-700\/10 {
    background-color: rgb(190 18 60 / 0.1);
  }

  .\32xl\:bg-rose-700\/20 {
    background-color: rgb(190 18 60 / 0.2);
  }

  .\32xl\:bg-rose-700\/30 {
    background-color: rgb(190 18 60 / 0.3);
  }

  .\32xl\:bg-rose-700\/40 {
    background-color: rgb(190 18 60 / 0.4);
  }

  .\32xl\:bg-rose-700\/5 {
    background-color: rgb(190 18 60 / 0.05);
  }

  .\32xl\:bg-rose-700\/50 {
    background-color: rgb(190 18 60 / 0.5);
  }

  .\32xl\:bg-rose-700\/60 {
    background-color: rgb(190 18 60 / 0.6);
  }

  .\32xl\:bg-rose-700\/70 {
    background-color: rgb(190 18 60 / 0.7);
  }

  .\32xl\:bg-rose-700\/80 {
    background-color: rgb(190 18 60 / 0.8);
  }

  .\32xl\:bg-rose-700\/90 {
    background-color: rgb(190 18 60 / 0.9);
  }

  .\32xl\:bg-rose-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(159 18 57 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-rose-800\/10 {
    background-color: rgb(159 18 57 / 0.1);
  }

  .\32xl\:bg-rose-800\/20 {
    background-color: rgb(159 18 57 / 0.2);
  }

  .\32xl\:bg-rose-800\/30 {
    background-color: rgb(159 18 57 / 0.3);
  }

  .\32xl\:bg-rose-800\/40 {
    background-color: rgb(159 18 57 / 0.4);
  }

  .\32xl\:bg-rose-800\/5 {
    background-color: rgb(159 18 57 / 0.05);
  }

  .\32xl\:bg-rose-800\/50 {
    background-color: rgb(159 18 57 / 0.5);
  }

  .\32xl\:bg-rose-800\/60 {
    background-color: rgb(159 18 57 / 0.6);
  }

  .\32xl\:bg-rose-800\/70 {
    background-color: rgb(159 18 57 / 0.7);
  }

  .\32xl\:bg-rose-800\/80 {
    background-color: rgb(159 18 57 / 0.8);
  }

  .\32xl\:bg-rose-800\/90 {
    background-color: rgb(159 18 57 / 0.9);
  }

  .\32xl\:bg-rose-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(136 19 55 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-rose-900\/10 {
    background-color: rgb(136 19 55 / 0.1);
  }

  .\32xl\:bg-rose-900\/20 {
    background-color: rgb(136 19 55 / 0.2);
  }

  .\32xl\:bg-rose-900\/30 {
    background-color: rgb(136 19 55 / 0.3);
  }

  .\32xl\:bg-rose-900\/40 {
    background-color: rgb(136 19 55 / 0.4);
  }

  .\32xl\:bg-rose-900\/5 {
    background-color: rgb(136 19 55 / 0.05);
  }

  .\32xl\:bg-rose-900\/50 {
    background-color: rgb(136 19 55 / 0.5);
  }

  .\32xl\:bg-rose-900\/60 {
    background-color: rgb(136 19 55 / 0.6);
  }

  .\32xl\:bg-rose-900\/70 {
    background-color: rgb(136 19 55 / 0.7);
  }

  .\32xl\:bg-rose-900\/80 {
    background-color: rgb(136 19 55 / 0.8);
  }

  .\32xl\:bg-rose-900\/90 {
    background-color: rgb(136 19 55 / 0.9);
  }

  .\32xl\:bg-rose-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(76 5 25 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-rose-950\/10 {
    background-color: rgb(76 5 25 / 0.1);
  }

  .\32xl\:bg-rose-950\/20 {
    background-color: rgb(76 5 25 / 0.2);
  }

  .\32xl\:bg-rose-950\/30 {
    background-color: rgb(76 5 25 / 0.3);
  }

  .\32xl\:bg-rose-950\/40 {
    background-color: rgb(76 5 25 / 0.4);
  }

  .\32xl\:bg-rose-950\/5 {
    background-color: rgb(76 5 25 / 0.05);
  }

  .\32xl\:bg-rose-950\/50 {
    background-color: rgb(76 5 25 / 0.5);
  }

  .\32xl\:bg-rose-950\/60 {
    background-color: rgb(76 5 25 / 0.6);
  }

  .\32xl\:bg-rose-950\/70 {
    background-color: rgb(76 5 25 / 0.7);
  }

  .\32xl\:bg-rose-950\/80 {
    background-color: rgb(76 5 25 / 0.8);
  }

  .\32xl\:bg-rose-950\/90 {
    background-color: rgb(76 5 25 / 0.9);
  }

  .\32xl\:bg-sky-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(224 242 254 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-sky-100\/10 {
    background-color: rgb(224 242 254 / 0.1);
  }

  .\32xl\:bg-sky-100\/20 {
    background-color: rgb(224 242 254 / 0.2);
  }

  .\32xl\:bg-sky-100\/30 {
    background-color: rgb(224 242 254 / 0.3);
  }

  .\32xl\:bg-sky-100\/40 {
    background-color: rgb(224 242 254 / 0.4);
  }

  .\32xl\:bg-sky-100\/5 {
    background-color: rgb(224 242 254 / 0.05);
  }

  .\32xl\:bg-sky-100\/50 {
    background-color: rgb(224 242 254 / 0.5);
  }

  .\32xl\:bg-sky-100\/60 {
    background-color: rgb(224 242 254 / 0.6);
  }

  .\32xl\:bg-sky-100\/70 {
    background-color: rgb(224 242 254 / 0.7);
  }

  .\32xl\:bg-sky-100\/80 {
    background-color: rgb(224 242 254 / 0.8);
  }

  .\32xl\:bg-sky-100\/90 {
    background-color: rgb(224 242 254 / 0.9);
  }

  .\32xl\:bg-sky-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(186 230 253 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-sky-200\/10 {
    background-color: rgb(186 230 253 / 0.1);
  }

  .\32xl\:bg-sky-200\/20 {
    background-color: rgb(186 230 253 / 0.2);
  }

  .\32xl\:bg-sky-200\/30 {
    background-color: rgb(186 230 253 / 0.3);
  }

  .\32xl\:bg-sky-200\/40 {
    background-color: rgb(186 230 253 / 0.4);
  }

  .\32xl\:bg-sky-200\/5 {
    background-color: rgb(186 230 253 / 0.05);
  }

  .\32xl\:bg-sky-200\/50 {
    background-color: rgb(186 230 253 / 0.5);
  }

  .\32xl\:bg-sky-200\/60 {
    background-color: rgb(186 230 253 / 0.6);
  }

  .\32xl\:bg-sky-200\/70 {
    background-color: rgb(186 230 253 / 0.7);
  }

  .\32xl\:bg-sky-200\/80 {
    background-color: rgb(186 230 253 / 0.8);
  }

  .\32xl\:bg-sky-200\/90 {
    background-color: rgb(186 230 253 / 0.9);
  }

  .\32xl\:bg-sky-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(125 211 252 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-sky-300\/10 {
    background-color: rgb(125 211 252 / 0.1);
  }

  .\32xl\:bg-sky-300\/20 {
    background-color: rgb(125 211 252 / 0.2);
  }

  .\32xl\:bg-sky-300\/30 {
    background-color: rgb(125 211 252 / 0.3);
  }

  .\32xl\:bg-sky-300\/40 {
    background-color: rgb(125 211 252 / 0.4);
  }

  .\32xl\:bg-sky-300\/5 {
    background-color: rgb(125 211 252 / 0.05);
  }

  .\32xl\:bg-sky-300\/50 {
    background-color: rgb(125 211 252 / 0.5);
  }

  .\32xl\:bg-sky-300\/60 {
    background-color: rgb(125 211 252 / 0.6);
  }

  .\32xl\:bg-sky-300\/70 {
    background-color: rgb(125 211 252 / 0.7);
  }

  .\32xl\:bg-sky-300\/80 {
    background-color: rgb(125 211 252 / 0.8);
  }

  .\32xl\:bg-sky-300\/90 {
    background-color: rgb(125 211 252 / 0.9);
  }

  .\32xl\:bg-sky-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(56 189 248 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-sky-400\/10 {
    background-color: rgb(56 189 248 / 0.1);
  }

  .\32xl\:bg-sky-400\/20 {
    background-color: rgb(56 189 248 / 0.2);
  }

  .\32xl\:bg-sky-400\/30 {
    background-color: rgb(56 189 248 / 0.3);
  }

  .\32xl\:bg-sky-400\/40 {
    background-color: rgb(56 189 248 / 0.4);
  }

  .\32xl\:bg-sky-400\/5 {
    background-color: rgb(56 189 248 / 0.05);
  }

  .\32xl\:bg-sky-400\/50 {
    background-color: rgb(56 189 248 / 0.5);
  }

  .\32xl\:bg-sky-400\/60 {
    background-color: rgb(56 189 248 / 0.6);
  }

  .\32xl\:bg-sky-400\/70 {
    background-color: rgb(56 189 248 / 0.7);
  }

  .\32xl\:bg-sky-400\/80 {
    background-color: rgb(56 189 248 / 0.8);
  }

  .\32xl\:bg-sky-400\/90 {
    background-color: rgb(56 189 248 / 0.9);
  }

  .\32xl\:bg-sky-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(240 249 255 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-sky-50\/10 {
    background-color: rgb(240 249 255 / 0.1);
  }

  .\32xl\:bg-sky-50\/20 {
    background-color: rgb(240 249 255 / 0.2);
  }

  .\32xl\:bg-sky-50\/30 {
    background-color: rgb(240 249 255 / 0.3);
  }

  .\32xl\:bg-sky-50\/40 {
    background-color: rgb(240 249 255 / 0.4);
  }

  .\32xl\:bg-sky-50\/5 {
    background-color: rgb(240 249 255 / 0.05);
  }

  .\32xl\:bg-sky-50\/50 {
    background-color: rgb(240 249 255 / 0.5);
  }

  .\32xl\:bg-sky-50\/60 {
    background-color: rgb(240 249 255 / 0.6);
  }

  .\32xl\:bg-sky-50\/70 {
    background-color: rgb(240 249 255 / 0.7);
  }

  .\32xl\:bg-sky-50\/80 {
    background-color: rgb(240 249 255 / 0.8);
  }

  .\32xl\:bg-sky-50\/90 {
    background-color: rgb(240 249 255 / 0.9);
  }

  .\32xl\:bg-sky-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(14 165 233 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-sky-500\/10 {
    background-color: rgb(14 165 233 / 0.1);
  }

  .\32xl\:bg-sky-500\/20 {
    background-color: rgb(14 165 233 / 0.2);
  }

  .\32xl\:bg-sky-500\/30 {
    background-color: rgb(14 165 233 / 0.3);
  }

  .\32xl\:bg-sky-500\/40 {
    background-color: rgb(14 165 233 / 0.4);
  }

  .\32xl\:bg-sky-500\/5 {
    background-color: rgb(14 165 233 / 0.05);
  }

  .\32xl\:bg-sky-500\/50 {
    background-color: rgb(14 165 233 / 0.5);
  }

  .\32xl\:bg-sky-500\/60 {
    background-color: rgb(14 165 233 / 0.6);
  }

  .\32xl\:bg-sky-500\/70 {
    background-color: rgb(14 165 233 / 0.7);
  }

  .\32xl\:bg-sky-500\/80 {
    background-color: rgb(14 165 233 / 0.8);
  }

  .\32xl\:bg-sky-500\/90 {
    background-color: rgb(14 165 233 / 0.9);
  }

  .\32xl\:bg-sky-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(2 132 199 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-sky-600\/10 {
    background-color: rgb(2 132 199 / 0.1);
  }

  .\32xl\:bg-sky-600\/20 {
    background-color: rgb(2 132 199 / 0.2);
  }

  .\32xl\:bg-sky-600\/30 {
    background-color: rgb(2 132 199 / 0.3);
  }

  .\32xl\:bg-sky-600\/40 {
    background-color: rgb(2 132 199 / 0.4);
  }

  .\32xl\:bg-sky-600\/5 {
    background-color: rgb(2 132 199 / 0.05);
  }

  .\32xl\:bg-sky-600\/50 {
    background-color: rgb(2 132 199 / 0.5);
  }

  .\32xl\:bg-sky-600\/60 {
    background-color: rgb(2 132 199 / 0.6);
  }

  .\32xl\:bg-sky-600\/70 {
    background-color: rgb(2 132 199 / 0.7);
  }

  .\32xl\:bg-sky-600\/80 {
    background-color: rgb(2 132 199 / 0.8);
  }

  .\32xl\:bg-sky-600\/90 {
    background-color: rgb(2 132 199 / 0.9);
  }

  .\32xl\:bg-sky-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(3 105 161 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-sky-700\/10 {
    background-color: rgb(3 105 161 / 0.1);
  }

  .\32xl\:bg-sky-700\/20 {
    background-color: rgb(3 105 161 / 0.2);
  }

  .\32xl\:bg-sky-700\/30 {
    background-color: rgb(3 105 161 / 0.3);
  }

  .\32xl\:bg-sky-700\/40 {
    background-color: rgb(3 105 161 / 0.4);
  }

  .\32xl\:bg-sky-700\/5 {
    background-color: rgb(3 105 161 / 0.05);
  }

  .\32xl\:bg-sky-700\/50 {
    background-color: rgb(3 105 161 / 0.5);
  }

  .\32xl\:bg-sky-700\/60 {
    background-color: rgb(3 105 161 / 0.6);
  }

  .\32xl\:bg-sky-700\/70 {
    background-color: rgb(3 105 161 / 0.7);
  }

  .\32xl\:bg-sky-700\/80 {
    background-color: rgb(3 105 161 / 0.8);
  }

  .\32xl\:bg-sky-700\/90 {
    background-color: rgb(3 105 161 / 0.9);
  }

  .\32xl\:bg-sky-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(7 89 133 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-sky-800\/10 {
    background-color: rgb(7 89 133 / 0.1);
  }

  .\32xl\:bg-sky-800\/20 {
    background-color: rgb(7 89 133 / 0.2);
  }

  .\32xl\:bg-sky-800\/30 {
    background-color: rgb(7 89 133 / 0.3);
  }

  .\32xl\:bg-sky-800\/40 {
    background-color: rgb(7 89 133 / 0.4);
  }

  .\32xl\:bg-sky-800\/5 {
    background-color: rgb(7 89 133 / 0.05);
  }

  .\32xl\:bg-sky-800\/50 {
    background-color: rgb(7 89 133 / 0.5);
  }

  .\32xl\:bg-sky-800\/60 {
    background-color: rgb(7 89 133 / 0.6);
  }

  .\32xl\:bg-sky-800\/70 {
    background-color: rgb(7 89 133 / 0.7);
  }

  .\32xl\:bg-sky-800\/80 {
    background-color: rgb(7 89 133 / 0.8);
  }

  .\32xl\:bg-sky-800\/90 {
    background-color: rgb(7 89 133 / 0.9);
  }

  .\32xl\:bg-sky-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(12 74 110 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-sky-900\/10 {
    background-color: rgb(12 74 110 / 0.1);
  }

  .\32xl\:bg-sky-900\/20 {
    background-color: rgb(12 74 110 / 0.2);
  }

  .\32xl\:bg-sky-900\/30 {
    background-color: rgb(12 74 110 / 0.3);
  }

  .\32xl\:bg-sky-900\/40 {
    background-color: rgb(12 74 110 / 0.4);
  }

  .\32xl\:bg-sky-900\/5 {
    background-color: rgb(12 74 110 / 0.05);
  }

  .\32xl\:bg-sky-900\/50 {
    background-color: rgb(12 74 110 / 0.5);
  }

  .\32xl\:bg-sky-900\/60 {
    background-color: rgb(12 74 110 / 0.6);
  }

  .\32xl\:bg-sky-900\/70 {
    background-color: rgb(12 74 110 / 0.7);
  }

  .\32xl\:bg-sky-900\/80 {
    background-color: rgb(12 74 110 / 0.8);
  }

  .\32xl\:bg-sky-900\/90 {
    background-color: rgb(12 74 110 / 0.9);
  }

  .\32xl\:bg-sky-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(8 47 73 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-sky-950\/10 {
    background-color: rgb(8 47 73 / 0.1);
  }

  .\32xl\:bg-sky-950\/20 {
    background-color: rgb(8 47 73 / 0.2);
  }

  .\32xl\:bg-sky-950\/30 {
    background-color: rgb(8 47 73 / 0.3);
  }

  .\32xl\:bg-sky-950\/40 {
    background-color: rgb(8 47 73 / 0.4);
  }

  .\32xl\:bg-sky-950\/5 {
    background-color: rgb(8 47 73 / 0.05);
  }

  .\32xl\:bg-sky-950\/50 {
    background-color: rgb(8 47 73 / 0.5);
  }

  .\32xl\:bg-sky-950\/60 {
    background-color: rgb(8 47 73 / 0.6);
  }

  .\32xl\:bg-sky-950\/70 {
    background-color: rgb(8 47 73 / 0.7);
  }

  .\32xl\:bg-sky-950\/80 {
    background-color: rgb(8 47 73 / 0.8);
  }

  .\32xl\:bg-sky-950\/90 {
    background-color: rgb(8 47 73 / 0.9);
  }

  .\32xl\:bg-slate-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-slate-100\/10 {
    background-color: rgb(241 245 249 / 0.1);
  }

  .\32xl\:bg-slate-100\/20 {
    background-color: rgb(241 245 249 / 0.2);
  }

  .\32xl\:bg-slate-100\/30 {
    background-color: rgb(241 245 249 / 0.3);
  }

  .\32xl\:bg-slate-100\/40 {
    background-color: rgb(241 245 249 / 0.4);
  }

  .\32xl\:bg-slate-100\/5 {
    background-color: rgb(241 245 249 / 0.05);
  }

  .\32xl\:bg-slate-100\/50 {
    background-color: rgb(241 245 249 / 0.5);
  }

  .\32xl\:bg-slate-100\/60 {
    background-color: rgb(241 245 249 / 0.6);
  }

  .\32xl\:bg-slate-100\/70 {
    background-color: rgb(241 245 249 / 0.7);
  }

  .\32xl\:bg-slate-100\/80 {
    background-color: rgb(241 245 249 / 0.8);
  }

  .\32xl\:bg-slate-100\/90 {
    background-color: rgb(241 245 249 / 0.9);
  }

  .\32xl\:bg-slate-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(226 232 240 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-slate-200\/10 {
    background-color: rgb(226 232 240 / 0.1);
  }

  .\32xl\:bg-slate-200\/20 {
    background-color: rgb(226 232 240 / 0.2);
  }

  .\32xl\:bg-slate-200\/30 {
    background-color: rgb(226 232 240 / 0.3);
  }

  .\32xl\:bg-slate-200\/40 {
    background-color: rgb(226 232 240 / 0.4);
  }

  .\32xl\:bg-slate-200\/5 {
    background-color: rgb(226 232 240 / 0.05);
  }

  .\32xl\:bg-slate-200\/50 {
    background-color: rgb(226 232 240 / 0.5);
  }

  .\32xl\:bg-slate-200\/60 {
    background-color: rgb(226 232 240 / 0.6);
  }

  .\32xl\:bg-slate-200\/70 {
    background-color: rgb(226 232 240 / 0.7);
  }

  .\32xl\:bg-slate-200\/80 {
    background-color: rgb(226 232 240 / 0.8);
  }

  .\32xl\:bg-slate-200\/90 {
    background-color: rgb(226 232 240 / 0.9);
  }

  .\32xl\:bg-slate-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(203 213 225 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-slate-300\/10 {
    background-color: rgb(203 213 225 / 0.1);
  }

  .\32xl\:bg-slate-300\/20 {
    background-color: rgb(203 213 225 / 0.2);
  }

  .\32xl\:bg-slate-300\/30 {
    background-color: rgb(203 213 225 / 0.3);
  }

  .\32xl\:bg-slate-300\/40 {
    background-color: rgb(203 213 225 / 0.4);
  }

  .\32xl\:bg-slate-300\/5 {
    background-color: rgb(203 213 225 / 0.05);
  }

  .\32xl\:bg-slate-300\/50 {
    background-color: rgb(203 213 225 / 0.5);
  }

  .\32xl\:bg-slate-300\/60 {
    background-color: rgb(203 213 225 / 0.6);
  }

  .\32xl\:bg-slate-300\/70 {
    background-color: rgb(203 213 225 / 0.7);
  }

  .\32xl\:bg-slate-300\/80 {
    background-color: rgb(203 213 225 / 0.8);
  }

  .\32xl\:bg-slate-300\/90 {
    background-color: rgb(203 213 225 / 0.9);
  }

  .\32xl\:bg-slate-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(148 163 184 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-slate-400\/10 {
    background-color: rgb(148 163 184 / 0.1);
  }

  .\32xl\:bg-slate-400\/20 {
    background-color: rgb(148 163 184 / 0.2);
  }

  .\32xl\:bg-slate-400\/30 {
    background-color: rgb(148 163 184 / 0.3);
  }

  .\32xl\:bg-slate-400\/40 {
    background-color: rgb(148 163 184 / 0.4);
  }

  .\32xl\:bg-slate-400\/5 {
    background-color: rgb(148 163 184 / 0.05);
  }

  .\32xl\:bg-slate-400\/50 {
    background-color: rgb(148 163 184 / 0.5);
  }

  .\32xl\:bg-slate-400\/60 {
    background-color: rgb(148 163 184 / 0.6);
  }

  .\32xl\:bg-slate-400\/70 {
    background-color: rgb(148 163 184 / 0.7);
  }

  .\32xl\:bg-slate-400\/80 {
    background-color: rgb(148 163 184 / 0.8);
  }

  .\32xl\:bg-slate-400\/90 {
    background-color: rgb(148 163 184 / 0.9);
  }

  .\32xl\:bg-slate-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-slate-50\/10 {
    background-color: rgb(248 250 252 / 0.1);
  }

  .\32xl\:bg-slate-50\/20 {
    background-color: rgb(248 250 252 / 0.2);
  }

  .\32xl\:bg-slate-50\/30 {
    background-color: rgb(248 250 252 / 0.3);
  }

  .\32xl\:bg-slate-50\/40 {
    background-color: rgb(248 250 252 / 0.4);
  }

  .\32xl\:bg-slate-50\/5 {
    background-color: rgb(248 250 252 / 0.05);
  }

  .\32xl\:bg-slate-50\/50 {
    background-color: rgb(248 250 252 / 0.5);
  }

  .\32xl\:bg-slate-50\/60 {
    background-color: rgb(248 250 252 / 0.6);
  }

  .\32xl\:bg-slate-50\/70 {
    background-color: rgb(248 250 252 / 0.7);
  }

  .\32xl\:bg-slate-50\/80 {
    background-color: rgb(248 250 252 / 0.8);
  }

  .\32xl\:bg-slate-50\/90 {
    background-color: rgb(248 250 252 / 0.9);
  }

  .\32xl\:bg-slate-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(100 116 139 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-slate-500\/10 {
    background-color: rgb(100 116 139 / 0.1);
  }

  .\32xl\:bg-slate-500\/20 {
    background-color: rgb(100 116 139 / 0.2);
  }

  .\32xl\:bg-slate-500\/30 {
    background-color: rgb(100 116 139 / 0.3);
  }

  .\32xl\:bg-slate-500\/40 {
    background-color: rgb(100 116 139 / 0.4);
  }

  .\32xl\:bg-slate-500\/5 {
    background-color: rgb(100 116 139 / 0.05);
  }

  .\32xl\:bg-slate-500\/50 {
    background-color: rgb(100 116 139 / 0.5);
  }

  .\32xl\:bg-slate-500\/60 {
    background-color: rgb(100 116 139 / 0.6);
  }

  .\32xl\:bg-slate-500\/70 {
    background-color: rgb(100 116 139 / 0.7);
  }

  .\32xl\:bg-slate-500\/80 {
    background-color: rgb(100 116 139 / 0.8);
  }

  .\32xl\:bg-slate-500\/90 {
    background-color: rgb(100 116 139 / 0.9);
  }

  .\32xl\:bg-slate-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(71 85 105 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-slate-600\/10 {
    background-color: rgb(71 85 105 / 0.1);
  }

  .\32xl\:bg-slate-600\/20 {
    background-color: rgb(71 85 105 / 0.2);
  }

  .\32xl\:bg-slate-600\/30 {
    background-color: rgb(71 85 105 / 0.3);
  }

  .\32xl\:bg-slate-600\/40 {
    background-color: rgb(71 85 105 / 0.4);
  }

  .\32xl\:bg-slate-600\/5 {
    background-color: rgb(71 85 105 / 0.05);
  }

  .\32xl\:bg-slate-600\/50 {
    background-color: rgb(71 85 105 / 0.5);
  }

  .\32xl\:bg-slate-600\/60 {
    background-color: rgb(71 85 105 / 0.6);
  }

  .\32xl\:bg-slate-600\/70 {
    background-color: rgb(71 85 105 / 0.7);
  }

  .\32xl\:bg-slate-600\/80 {
    background-color: rgb(71 85 105 / 0.8);
  }

  .\32xl\:bg-slate-600\/90 {
    background-color: rgb(71 85 105 / 0.9);
  }

  .\32xl\:bg-slate-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(51 65 85 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-slate-700\/10 {
    background-color: rgb(51 65 85 / 0.1);
  }

  .\32xl\:bg-slate-700\/20 {
    background-color: rgb(51 65 85 / 0.2);
  }

  .\32xl\:bg-slate-700\/30 {
    background-color: rgb(51 65 85 / 0.3);
  }

  .\32xl\:bg-slate-700\/40 {
    background-color: rgb(51 65 85 / 0.4);
  }

  .\32xl\:bg-slate-700\/5 {
    background-color: rgb(51 65 85 / 0.05);
  }

  .\32xl\:bg-slate-700\/50 {
    background-color: rgb(51 65 85 / 0.5);
  }

  .\32xl\:bg-slate-700\/60 {
    background-color: rgb(51 65 85 / 0.6);
  }

  .\32xl\:bg-slate-700\/70 {
    background-color: rgb(51 65 85 / 0.7);
  }

  .\32xl\:bg-slate-700\/80 {
    background-color: rgb(51 65 85 / 0.8);
  }

  .\32xl\:bg-slate-700\/90 {
    background-color: rgb(51 65 85 / 0.9);
  }

  .\32xl\:bg-slate-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(30 41 59 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-slate-800\/10 {
    background-color: rgb(30 41 59 / 0.1);
  }

  .\32xl\:bg-slate-800\/20 {
    background-color: rgb(30 41 59 / 0.2);
  }

  .\32xl\:bg-slate-800\/30 {
    background-color: rgb(30 41 59 / 0.3);
  }

  .\32xl\:bg-slate-800\/40 {
    background-color: rgb(30 41 59 / 0.4);
  }

  .\32xl\:bg-slate-800\/5 {
    background-color: rgb(30 41 59 / 0.05);
  }

  .\32xl\:bg-slate-800\/50 {
    background-color: rgb(30 41 59 / 0.5);
  }

  .\32xl\:bg-slate-800\/60 {
    background-color: rgb(30 41 59 / 0.6);
  }

  .\32xl\:bg-slate-800\/70 {
    background-color: rgb(30 41 59 / 0.7);
  }

  .\32xl\:bg-slate-800\/80 {
    background-color: rgb(30 41 59 / 0.8);
  }

  .\32xl\:bg-slate-800\/90 {
    background-color: rgb(30 41 59 / 0.9);
  }

  .\32xl\:bg-slate-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(15 23 42 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-slate-900\/10 {
    background-color: rgb(15 23 42 / 0.1);
  }

  .\32xl\:bg-slate-900\/20 {
    background-color: rgb(15 23 42 / 0.2);
  }

  .\32xl\:bg-slate-900\/30 {
    background-color: rgb(15 23 42 / 0.3);
  }

  .\32xl\:bg-slate-900\/40 {
    background-color: rgb(15 23 42 / 0.4);
  }

  .\32xl\:bg-slate-900\/5 {
    background-color: rgb(15 23 42 / 0.05);
  }

  .\32xl\:bg-slate-900\/50 {
    background-color: rgb(15 23 42 / 0.5);
  }

  .\32xl\:bg-slate-900\/60 {
    background-color: rgb(15 23 42 / 0.6);
  }

  .\32xl\:bg-slate-900\/70 {
    background-color: rgb(15 23 42 / 0.7);
  }

  .\32xl\:bg-slate-900\/80 {
    background-color: rgb(15 23 42 / 0.8);
  }

  .\32xl\:bg-slate-900\/90 {
    background-color: rgb(15 23 42 / 0.9);
  }

  .\32xl\:bg-slate-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(2 6 23 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-slate-950\/10 {
    background-color: rgb(2 6 23 / 0.1);
  }

  .\32xl\:bg-slate-950\/20 {
    background-color: rgb(2 6 23 / 0.2);
  }

  .\32xl\:bg-slate-950\/30 {
    background-color: rgb(2 6 23 / 0.3);
  }

  .\32xl\:bg-slate-950\/40 {
    background-color: rgb(2 6 23 / 0.4);
  }

  .\32xl\:bg-slate-950\/5 {
    background-color: rgb(2 6 23 / 0.05);
  }

  .\32xl\:bg-slate-950\/50 {
    background-color: rgb(2 6 23 / 0.5);
  }

  .\32xl\:bg-slate-950\/60 {
    background-color: rgb(2 6 23 / 0.6);
  }

  .\32xl\:bg-slate-950\/70 {
    background-color: rgb(2 6 23 / 0.7);
  }

  .\32xl\:bg-slate-950\/80 {
    background-color: rgb(2 6 23 / 0.8);
  }

  .\32xl\:bg-slate-950\/90 {
    background-color: rgb(2 6 23 / 0.9);
  }

  .\32xl\:bg-stone-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(245 245 244 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-stone-100\/10 {
    background-color: rgb(245 245 244 / 0.1);
  }

  .\32xl\:bg-stone-100\/20 {
    background-color: rgb(245 245 244 / 0.2);
  }

  .\32xl\:bg-stone-100\/30 {
    background-color: rgb(245 245 244 / 0.3);
  }

  .\32xl\:bg-stone-100\/40 {
    background-color: rgb(245 245 244 / 0.4);
  }

  .\32xl\:bg-stone-100\/5 {
    background-color: rgb(245 245 244 / 0.05);
  }

  .\32xl\:bg-stone-100\/50 {
    background-color: rgb(245 245 244 / 0.5);
  }

  .\32xl\:bg-stone-100\/60 {
    background-color: rgb(245 245 244 / 0.6);
  }

  .\32xl\:bg-stone-100\/70 {
    background-color: rgb(245 245 244 / 0.7);
  }

  .\32xl\:bg-stone-100\/80 {
    background-color: rgb(245 245 244 / 0.8);
  }

  .\32xl\:bg-stone-100\/90 {
    background-color: rgb(245 245 244 / 0.9);
  }

  .\32xl\:bg-stone-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(231 229 228 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-stone-200\/10 {
    background-color: rgb(231 229 228 / 0.1);
  }

  .\32xl\:bg-stone-200\/20 {
    background-color: rgb(231 229 228 / 0.2);
  }

  .\32xl\:bg-stone-200\/30 {
    background-color: rgb(231 229 228 / 0.3);
  }

  .\32xl\:bg-stone-200\/40 {
    background-color: rgb(231 229 228 / 0.4);
  }

  .\32xl\:bg-stone-200\/5 {
    background-color: rgb(231 229 228 / 0.05);
  }

  .\32xl\:bg-stone-200\/50 {
    background-color: rgb(231 229 228 / 0.5);
  }

  .\32xl\:bg-stone-200\/60 {
    background-color: rgb(231 229 228 / 0.6);
  }

  .\32xl\:bg-stone-200\/70 {
    background-color: rgb(231 229 228 / 0.7);
  }

  .\32xl\:bg-stone-200\/80 {
    background-color: rgb(231 229 228 / 0.8);
  }

  .\32xl\:bg-stone-200\/90 {
    background-color: rgb(231 229 228 / 0.9);
  }

  .\32xl\:bg-stone-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(214 211 209 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-stone-300\/10 {
    background-color: rgb(214 211 209 / 0.1);
  }

  .\32xl\:bg-stone-300\/20 {
    background-color: rgb(214 211 209 / 0.2);
  }

  .\32xl\:bg-stone-300\/30 {
    background-color: rgb(214 211 209 / 0.3);
  }

  .\32xl\:bg-stone-300\/40 {
    background-color: rgb(214 211 209 / 0.4);
  }

  .\32xl\:bg-stone-300\/5 {
    background-color: rgb(214 211 209 / 0.05);
  }

  .\32xl\:bg-stone-300\/50 {
    background-color: rgb(214 211 209 / 0.5);
  }

  .\32xl\:bg-stone-300\/60 {
    background-color: rgb(214 211 209 / 0.6);
  }

  .\32xl\:bg-stone-300\/70 {
    background-color: rgb(214 211 209 / 0.7);
  }

  .\32xl\:bg-stone-300\/80 {
    background-color: rgb(214 211 209 / 0.8);
  }

  .\32xl\:bg-stone-300\/90 {
    background-color: rgb(214 211 209 / 0.9);
  }

  .\32xl\:bg-stone-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(168 162 158 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-stone-400\/10 {
    background-color: rgb(168 162 158 / 0.1);
  }

  .\32xl\:bg-stone-400\/20 {
    background-color: rgb(168 162 158 / 0.2);
  }

  .\32xl\:bg-stone-400\/30 {
    background-color: rgb(168 162 158 / 0.3);
  }

  .\32xl\:bg-stone-400\/40 {
    background-color: rgb(168 162 158 / 0.4);
  }

  .\32xl\:bg-stone-400\/5 {
    background-color: rgb(168 162 158 / 0.05);
  }

  .\32xl\:bg-stone-400\/50 {
    background-color: rgb(168 162 158 / 0.5);
  }

  .\32xl\:bg-stone-400\/60 {
    background-color: rgb(168 162 158 / 0.6);
  }

  .\32xl\:bg-stone-400\/70 {
    background-color: rgb(168 162 158 / 0.7);
  }

  .\32xl\:bg-stone-400\/80 {
    background-color: rgb(168 162 158 / 0.8);
  }

  .\32xl\:bg-stone-400\/90 {
    background-color: rgb(168 162 158 / 0.9);
  }

  .\32xl\:bg-stone-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 250 249 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-stone-50\/10 {
    background-color: rgb(250 250 249 / 0.1);
  }

  .\32xl\:bg-stone-50\/20 {
    background-color: rgb(250 250 249 / 0.2);
  }

  .\32xl\:bg-stone-50\/30 {
    background-color: rgb(250 250 249 / 0.3);
  }

  .\32xl\:bg-stone-50\/40 {
    background-color: rgb(250 250 249 / 0.4);
  }

  .\32xl\:bg-stone-50\/5 {
    background-color: rgb(250 250 249 / 0.05);
  }

  .\32xl\:bg-stone-50\/50 {
    background-color: rgb(250 250 249 / 0.5);
  }

  .\32xl\:bg-stone-50\/60 {
    background-color: rgb(250 250 249 / 0.6);
  }

  .\32xl\:bg-stone-50\/70 {
    background-color: rgb(250 250 249 / 0.7);
  }

  .\32xl\:bg-stone-50\/80 {
    background-color: rgb(250 250 249 / 0.8);
  }

  .\32xl\:bg-stone-50\/90 {
    background-color: rgb(250 250 249 / 0.9);
  }

  .\32xl\:bg-stone-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(120 113 108 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-stone-500\/10 {
    background-color: rgb(120 113 108 / 0.1);
  }

  .\32xl\:bg-stone-500\/20 {
    background-color: rgb(120 113 108 / 0.2);
  }

  .\32xl\:bg-stone-500\/30 {
    background-color: rgb(120 113 108 / 0.3);
  }

  .\32xl\:bg-stone-500\/40 {
    background-color: rgb(120 113 108 / 0.4);
  }

  .\32xl\:bg-stone-500\/5 {
    background-color: rgb(120 113 108 / 0.05);
  }

  .\32xl\:bg-stone-500\/50 {
    background-color: rgb(120 113 108 / 0.5);
  }

  .\32xl\:bg-stone-500\/60 {
    background-color: rgb(120 113 108 / 0.6);
  }

  .\32xl\:bg-stone-500\/70 {
    background-color: rgb(120 113 108 / 0.7);
  }

  .\32xl\:bg-stone-500\/80 {
    background-color: rgb(120 113 108 / 0.8);
  }

  .\32xl\:bg-stone-500\/90 {
    background-color: rgb(120 113 108 / 0.9);
  }

  .\32xl\:bg-stone-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(87 83 78 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-stone-600\/10 {
    background-color: rgb(87 83 78 / 0.1);
  }

  .\32xl\:bg-stone-600\/20 {
    background-color: rgb(87 83 78 / 0.2);
  }

  .\32xl\:bg-stone-600\/30 {
    background-color: rgb(87 83 78 / 0.3);
  }

  .\32xl\:bg-stone-600\/40 {
    background-color: rgb(87 83 78 / 0.4);
  }

  .\32xl\:bg-stone-600\/5 {
    background-color: rgb(87 83 78 / 0.05);
  }

  .\32xl\:bg-stone-600\/50 {
    background-color: rgb(87 83 78 / 0.5);
  }

  .\32xl\:bg-stone-600\/60 {
    background-color: rgb(87 83 78 / 0.6);
  }

  .\32xl\:bg-stone-600\/70 {
    background-color: rgb(87 83 78 / 0.7);
  }

  .\32xl\:bg-stone-600\/80 {
    background-color: rgb(87 83 78 / 0.8);
  }

  .\32xl\:bg-stone-600\/90 {
    background-color: rgb(87 83 78 / 0.9);
  }

  .\32xl\:bg-stone-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(68 64 60 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-stone-700\/10 {
    background-color: rgb(68 64 60 / 0.1);
  }

  .\32xl\:bg-stone-700\/20 {
    background-color: rgb(68 64 60 / 0.2);
  }

  .\32xl\:bg-stone-700\/30 {
    background-color: rgb(68 64 60 / 0.3);
  }

  .\32xl\:bg-stone-700\/40 {
    background-color: rgb(68 64 60 / 0.4);
  }

  .\32xl\:bg-stone-700\/5 {
    background-color: rgb(68 64 60 / 0.05);
  }

  .\32xl\:bg-stone-700\/50 {
    background-color: rgb(68 64 60 / 0.5);
  }

  .\32xl\:bg-stone-700\/60 {
    background-color: rgb(68 64 60 / 0.6);
  }

  .\32xl\:bg-stone-700\/70 {
    background-color: rgb(68 64 60 / 0.7);
  }

  .\32xl\:bg-stone-700\/80 {
    background-color: rgb(68 64 60 / 0.8);
  }

  .\32xl\:bg-stone-700\/90 {
    background-color: rgb(68 64 60 / 0.9);
  }

  .\32xl\:bg-stone-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(41 37 36 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-stone-800\/10 {
    background-color: rgb(41 37 36 / 0.1);
  }

  .\32xl\:bg-stone-800\/20 {
    background-color: rgb(41 37 36 / 0.2);
  }

  .\32xl\:bg-stone-800\/30 {
    background-color: rgb(41 37 36 / 0.3);
  }

  .\32xl\:bg-stone-800\/40 {
    background-color: rgb(41 37 36 / 0.4);
  }

  .\32xl\:bg-stone-800\/5 {
    background-color: rgb(41 37 36 / 0.05);
  }

  .\32xl\:bg-stone-800\/50 {
    background-color: rgb(41 37 36 / 0.5);
  }

  .\32xl\:bg-stone-800\/60 {
    background-color: rgb(41 37 36 / 0.6);
  }

  .\32xl\:bg-stone-800\/70 {
    background-color: rgb(41 37 36 / 0.7);
  }

  .\32xl\:bg-stone-800\/80 {
    background-color: rgb(41 37 36 / 0.8);
  }

  .\32xl\:bg-stone-800\/90 {
    background-color: rgb(41 37 36 / 0.9);
  }

  .\32xl\:bg-stone-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(28 25 23 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-stone-900\/10 {
    background-color: rgb(28 25 23 / 0.1);
  }

  .\32xl\:bg-stone-900\/20 {
    background-color: rgb(28 25 23 / 0.2);
  }

  .\32xl\:bg-stone-900\/30 {
    background-color: rgb(28 25 23 / 0.3);
  }

  .\32xl\:bg-stone-900\/40 {
    background-color: rgb(28 25 23 / 0.4);
  }

  .\32xl\:bg-stone-900\/5 {
    background-color: rgb(28 25 23 / 0.05);
  }

  .\32xl\:bg-stone-900\/50 {
    background-color: rgb(28 25 23 / 0.5);
  }

  .\32xl\:bg-stone-900\/60 {
    background-color: rgb(28 25 23 / 0.6);
  }

  .\32xl\:bg-stone-900\/70 {
    background-color: rgb(28 25 23 / 0.7);
  }

  .\32xl\:bg-stone-900\/80 {
    background-color: rgb(28 25 23 / 0.8);
  }

  .\32xl\:bg-stone-900\/90 {
    background-color: rgb(28 25 23 / 0.9);
  }

  .\32xl\:bg-stone-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(12 10 9 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-stone-950\/10 {
    background-color: rgb(12 10 9 / 0.1);
  }

  .\32xl\:bg-stone-950\/20 {
    background-color: rgb(12 10 9 / 0.2);
  }

  .\32xl\:bg-stone-950\/30 {
    background-color: rgb(12 10 9 / 0.3);
  }

  .\32xl\:bg-stone-950\/40 {
    background-color: rgb(12 10 9 / 0.4);
  }

  .\32xl\:bg-stone-950\/5 {
    background-color: rgb(12 10 9 / 0.05);
  }

  .\32xl\:bg-stone-950\/50 {
    background-color: rgb(12 10 9 / 0.5);
  }

  .\32xl\:bg-stone-950\/60 {
    background-color: rgb(12 10 9 / 0.6);
  }

  .\32xl\:bg-stone-950\/70 {
    background-color: rgb(12 10 9 / 0.7);
  }

  .\32xl\:bg-stone-950\/80 {
    background-color: rgb(12 10 9 / 0.8);
  }

  .\32xl\:bg-stone-950\/90 {
    background-color: rgb(12 10 9 / 0.9);
  }

  .\32xl\:bg-teal-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(204 251 241 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-teal-100\/10 {
    background-color: rgb(204 251 241 / 0.1);
  }

  .\32xl\:bg-teal-100\/20 {
    background-color: rgb(204 251 241 / 0.2);
  }

  .\32xl\:bg-teal-100\/30 {
    background-color: rgb(204 251 241 / 0.3);
  }

  .\32xl\:bg-teal-100\/40 {
    background-color: rgb(204 251 241 / 0.4);
  }

  .\32xl\:bg-teal-100\/5 {
    background-color: rgb(204 251 241 / 0.05);
  }

  .\32xl\:bg-teal-100\/50 {
    background-color: rgb(204 251 241 / 0.5);
  }

  .\32xl\:bg-teal-100\/60 {
    background-color: rgb(204 251 241 / 0.6);
  }

  .\32xl\:bg-teal-100\/70 {
    background-color: rgb(204 251 241 / 0.7);
  }

  .\32xl\:bg-teal-100\/80 {
    background-color: rgb(204 251 241 / 0.8);
  }

  .\32xl\:bg-teal-100\/90 {
    background-color: rgb(204 251 241 / 0.9);
  }

  .\32xl\:bg-teal-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(153 246 228 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-teal-200\/10 {
    background-color: rgb(153 246 228 / 0.1);
  }

  .\32xl\:bg-teal-200\/20 {
    background-color: rgb(153 246 228 / 0.2);
  }

  .\32xl\:bg-teal-200\/30 {
    background-color: rgb(153 246 228 / 0.3);
  }

  .\32xl\:bg-teal-200\/40 {
    background-color: rgb(153 246 228 / 0.4);
  }

  .\32xl\:bg-teal-200\/5 {
    background-color: rgb(153 246 228 / 0.05);
  }

  .\32xl\:bg-teal-200\/50 {
    background-color: rgb(153 246 228 / 0.5);
  }

  .\32xl\:bg-teal-200\/60 {
    background-color: rgb(153 246 228 / 0.6);
  }

  .\32xl\:bg-teal-200\/70 {
    background-color: rgb(153 246 228 / 0.7);
  }

  .\32xl\:bg-teal-200\/80 {
    background-color: rgb(153 246 228 / 0.8);
  }

  .\32xl\:bg-teal-200\/90 {
    background-color: rgb(153 246 228 / 0.9);
  }

  .\32xl\:bg-teal-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(94 234 212 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-teal-300\/10 {
    background-color: rgb(94 234 212 / 0.1);
  }

  .\32xl\:bg-teal-300\/20 {
    background-color: rgb(94 234 212 / 0.2);
  }

  .\32xl\:bg-teal-300\/30 {
    background-color: rgb(94 234 212 / 0.3);
  }

  .\32xl\:bg-teal-300\/40 {
    background-color: rgb(94 234 212 / 0.4);
  }

  .\32xl\:bg-teal-300\/5 {
    background-color: rgb(94 234 212 / 0.05);
  }

  .\32xl\:bg-teal-300\/50 {
    background-color: rgb(94 234 212 / 0.5);
  }

  .\32xl\:bg-teal-300\/60 {
    background-color: rgb(94 234 212 / 0.6);
  }

  .\32xl\:bg-teal-300\/70 {
    background-color: rgb(94 234 212 / 0.7);
  }

  .\32xl\:bg-teal-300\/80 {
    background-color: rgb(94 234 212 / 0.8);
  }

  .\32xl\:bg-teal-300\/90 {
    background-color: rgb(94 234 212 / 0.9);
  }

  .\32xl\:bg-teal-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(45 212 191 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-teal-400\/10 {
    background-color: rgb(45 212 191 / 0.1);
  }

  .\32xl\:bg-teal-400\/20 {
    background-color: rgb(45 212 191 / 0.2);
  }

  .\32xl\:bg-teal-400\/30 {
    background-color: rgb(45 212 191 / 0.3);
  }

  .\32xl\:bg-teal-400\/40 {
    background-color: rgb(45 212 191 / 0.4);
  }

  .\32xl\:bg-teal-400\/5 {
    background-color: rgb(45 212 191 / 0.05);
  }

  .\32xl\:bg-teal-400\/50 {
    background-color: rgb(45 212 191 / 0.5);
  }

  .\32xl\:bg-teal-400\/60 {
    background-color: rgb(45 212 191 / 0.6);
  }

  .\32xl\:bg-teal-400\/70 {
    background-color: rgb(45 212 191 / 0.7);
  }

  .\32xl\:bg-teal-400\/80 {
    background-color: rgb(45 212 191 / 0.8);
  }

  .\32xl\:bg-teal-400\/90 {
    background-color: rgb(45 212 191 / 0.9);
  }

  .\32xl\:bg-teal-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(240 253 250 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-teal-50\/10 {
    background-color: rgb(240 253 250 / 0.1);
  }

  .\32xl\:bg-teal-50\/20 {
    background-color: rgb(240 253 250 / 0.2);
  }

  .\32xl\:bg-teal-50\/30 {
    background-color: rgb(240 253 250 / 0.3);
  }

  .\32xl\:bg-teal-50\/40 {
    background-color: rgb(240 253 250 / 0.4);
  }

  .\32xl\:bg-teal-50\/5 {
    background-color: rgb(240 253 250 / 0.05);
  }

  .\32xl\:bg-teal-50\/50 {
    background-color: rgb(240 253 250 / 0.5);
  }

  .\32xl\:bg-teal-50\/60 {
    background-color: rgb(240 253 250 / 0.6);
  }

  .\32xl\:bg-teal-50\/70 {
    background-color: rgb(240 253 250 / 0.7);
  }

  .\32xl\:bg-teal-50\/80 {
    background-color: rgb(240 253 250 / 0.8);
  }

  .\32xl\:bg-teal-50\/90 {
    background-color: rgb(240 253 250 / 0.9);
  }

  .\32xl\:bg-teal-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(20 184 166 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-teal-500\/10 {
    background-color: rgb(20 184 166 / 0.1);
  }

  .\32xl\:bg-teal-500\/20 {
    background-color: rgb(20 184 166 / 0.2);
  }

  .\32xl\:bg-teal-500\/30 {
    background-color: rgb(20 184 166 / 0.3);
  }

  .\32xl\:bg-teal-500\/40 {
    background-color: rgb(20 184 166 / 0.4);
  }

  .\32xl\:bg-teal-500\/5 {
    background-color: rgb(20 184 166 / 0.05);
  }

  .\32xl\:bg-teal-500\/50 {
    background-color: rgb(20 184 166 / 0.5);
  }

  .\32xl\:bg-teal-500\/60 {
    background-color: rgb(20 184 166 / 0.6);
  }

  .\32xl\:bg-teal-500\/70 {
    background-color: rgb(20 184 166 / 0.7);
  }

  .\32xl\:bg-teal-500\/80 {
    background-color: rgb(20 184 166 / 0.8);
  }

  .\32xl\:bg-teal-500\/90 {
    background-color: rgb(20 184 166 / 0.9);
  }

  .\32xl\:bg-teal-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(13 148 136 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-teal-600\/10 {
    background-color: rgb(13 148 136 / 0.1);
  }

  .\32xl\:bg-teal-600\/20 {
    background-color: rgb(13 148 136 / 0.2);
  }

  .\32xl\:bg-teal-600\/30 {
    background-color: rgb(13 148 136 / 0.3);
  }

  .\32xl\:bg-teal-600\/40 {
    background-color: rgb(13 148 136 / 0.4);
  }

  .\32xl\:bg-teal-600\/5 {
    background-color: rgb(13 148 136 / 0.05);
  }

  .\32xl\:bg-teal-600\/50 {
    background-color: rgb(13 148 136 / 0.5);
  }

  .\32xl\:bg-teal-600\/60 {
    background-color: rgb(13 148 136 / 0.6);
  }

  .\32xl\:bg-teal-600\/70 {
    background-color: rgb(13 148 136 / 0.7);
  }

  .\32xl\:bg-teal-600\/80 {
    background-color: rgb(13 148 136 / 0.8);
  }

  .\32xl\:bg-teal-600\/90 {
    background-color: rgb(13 148 136 / 0.9);
  }

  .\32xl\:bg-teal-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(15 118 110 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-teal-700\/10 {
    background-color: rgb(15 118 110 / 0.1);
  }

  .\32xl\:bg-teal-700\/20 {
    background-color: rgb(15 118 110 / 0.2);
  }

  .\32xl\:bg-teal-700\/30 {
    background-color: rgb(15 118 110 / 0.3);
  }

  .\32xl\:bg-teal-700\/40 {
    background-color: rgb(15 118 110 / 0.4);
  }

  .\32xl\:bg-teal-700\/5 {
    background-color: rgb(15 118 110 / 0.05);
  }

  .\32xl\:bg-teal-700\/50 {
    background-color: rgb(15 118 110 / 0.5);
  }

  .\32xl\:bg-teal-700\/60 {
    background-color: rgb(15 118 110 / 0.6);
  }

  .\32xl\:bg-teal-700\/70 {
    background-color: rgb(15 118 110 / 0.7);
  }

  .\32xl\:bg-teal-700\/80 {
    background-color: rgb(15 118 110 / 0.8);
  }

  .\32xl\:bg-teal-700\/90 {
    background-color: rgb(15 118 110 / 0.9);
  }

  .\32xl\:bg-teal-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(17 94 89 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-teal-800\/10 {
    background-color: rgb(17 94 89 / 0.1);
  }

  .\32xl\:bg-teal-800\/20 {
    background-color: rgb(17 94 89 / 0.2);
  }

  .\32xl\:bg-teal-800\/30 {
    background-color: rgb(17 94 89 / 0.3);
  }

  .\32xl\:bg-teal-800\/40 {
    background-color: rgb(17 94 89 / 0.4);
  }

  .\32xl\:bg-teal-800\/5 {
    background-color: rgb(17 94 89 / 0.05);
  }

  .\32xl\:bg-teal-800\/50 {
    background-color: rgb(17 94 89 / 0.5);
  }

  .\32xl\:bg-teal-800\/60 {
    background-color: rgb(17 94 89 / 0.6);
  }

  .\32xl\:bg-teal-800\/70 {
    background-color: rgb(17 94 89 / 0.7);
  }

  .\32xl\:bg-teal-800\/80 {
    background-color: rgb(17 94 89 / 0.8);
  }

  .\32xl\:bg-teal-800\/90 {
    background-color: rgb(17 94 89 / 0.9);
  }

  .\32xl\:bg-teal-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(19 78 74 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-teal-900\/10 {
    background-color: rgb(19 78 74 / 0.1);
  }

  .\32xl\:bg-teal-900\/20 {
    background-color: rgb(19 78 74 / 0.2);
  }

  .\32xl\:bg-teal-900\/30 {
    background-color: rgb(19 78 74 / 0.3);
  }

  .\32xl\:bg-teal-900\/40 {
    background-color: rgb(19 78 74 / 0.4);
  }

  .\32xl\:bg-teal-900\/5 {
    background-color: rgb(19 78 74 / 0.05);
  }

  .\32xl\:bg-teal-900\/50 {
    background-color: rgb(19 78 74 / 0.5);
  }

  .\32xl\:bg-teal-900\/60 {
    background-color: rgb(19 78 74 / 0.6);
  }

  .\32xl\:bg-teal-900\/70 {
    background-color: rgb(19 78 74 / 0.7);
  }

  .\32xl\:bg-teal-900\/80 {
    background-color: rgb(19 78 74 / 0.8);
  }

  .\32xl\:bg-teal-900\/90 {
    background-color: rgb(19 78 74 / 0.9);
  }

  .\32xl\:bg-teal-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(4 47 46 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-teal-950\/10 {
    background-color: rgb(4 47 46 / 0.1);
  }

  .\32xl\:bg-teal-950\/20 {
    background-color: rgb(4 47 46 / 0.2);
  }

  .\32xl\:bg-teal-950\/30 {
    background-color: rgb(4 47 46 / 0.3);
  }

  .\32xl\:bg-teal-950\/40 {
    background-color: rgb(4 47 46 / 0.4);
  }

  .\32xl\:bg-teal-950\/5 {
    background-color: rgb(4 47 46 / 0.05);
  }

  .\32xl\:bg-teal-950\/50 {
    background-color: rgb(4 47 46 / 0.5);
  }

  .\32xl\:bg-teal-950\/60 {
    background-color: rgb(4 47 46 / 0.6);
  }

  .\32xl\:bg-teal-950\/70 {
    background-color: rgb(4 47 46 / 0.7);
  }

  .\32xl\:bg-teal-950\/80 {
    background-color: rgb(4 47 46 / 0.8);
  }

  .\32xl\:bg-teal-950\/90 {
    background-color: rgb(4 47 46 / 0.9);
  }

  .\32xl\:bg-violet-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(237 233 254 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-violet-100\/10 {
    background-color: rgb(237 233 254 / 0.1);
  }

  .\32xl\:bg-violet-100\/20 {
    background-color: rgb(237 233 254 / 0.2);
  }

  .\32xl\:bg-violet-100\/30 {
    background-color: rgb(237 233 254 / 0.3);
  }

  .\32xl\:bg-violet-100\/40 {
    background-color: rgb(237 233 254 / 0.4);
  }

  .\32xl\:bg-violet-100\/5 {
    background-color: rgb(237 233 254 / 0.05);
  }

  .\32xl\:bg-violet-100\/50 {
    background-color: rgb(237 233 254 / 0.5);
  }

  .\32xl\:bg-violet-100\/60 {
    background-color: rgb(237 233 254 / 0.6);
  }

  .\32xl\:bg-violet-100\/70 {
    background-color: rgb(237 233 254 / 0.7);
  }

  .\32xl\:bg-violet-100\/80 {
    background-color: rgb(237 233 254 / 0.8);
  }

  .\32xl\:bg-violet-100\/90 {
    background-color: rgb(237 233 254 / 0.9);
  }

  .\32xl\:bg-violet-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(221 214 254 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-violet-200\/10 {
    background-color: rgb(221 214 254 / 0.1);
  }

  .\32xl\:bg-violet-200\/20 {
    background-color: rgb(221 214 254 / 0.2);
  }

  .\32xl\:bg-violet-200\/30 {
    background-color: rgb(221 214 254 / 0.3);
  }

  .\32xl\:bg-violet-200\/40 {
    background-color: rgb(221 214 254 / 0.4);
  }

  .\32xl\:bg-violet-200\/5 {
    background-color: rgb(221 214 254 / 0.05);
  }

  .\32xl\:bg-violet-200\/50 {
    background-color: rgb(221 214 254 / 0.5);
  }

  .\32xl\:bg-violet-200\/60 {
    background-color: rgb(221 214 254 / 0.6);
  }

  .\32xl\:bg-violet-200\/70 {
    background-color: rgb(221 214 254 / 0.7);
  }

  .\32xl\:bg-violet-200\/80 {
    background-color: rgb(221 214 254 / 0.8);
  }

  .\32xl\:bg-violet-200\/90 {
    background-color: rgb(221 214 254 / 0.9);
  }

  .\32xl\:bg-violet-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(196 181 253 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-violet-300\/10 {
    background-color: rgb(196 181 253 / 0.1);
  }

  .\32xl\:bg-violet-300\/20 {
    background-color: rgb(196 181 253 / 0.2);
  }

  .\32xl\:bg-violet-300\/30 {
    background-color: rgb(196 181 253 / 0.3);
  }

  .\32xl\:bg-violet-300\/40 {
    background-color: rgb(196 181 253 / 0.4);
  }

  .\32xl\:bg-violet-300\/5 {
    background-color: rgb(196 181 253 / 0.05);
  }

  .\32xl\:bg-violet-300\/50 {
    background-color: rgb(196 181 253 / 0.5);
  }

  .\32xl\:bg-violet-300\/60 {
    background-color: rgb(196 181 253 / 0.6);
  }

  .\32xl\:bg-violet-300\/70 {
    background-color: rgb(196 181 253 / 0.7);
  }

  .\32xl\:bg-violet-300\/80 {
    background-color: rgb(196 181 253 / 0.8);
  }

  .\32xl\:bg-violet-300\/90 {
    background-color: rgb(196 181 253 / 0.9);
  }

  .\32xl\:bg-violet-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(167 139 250 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-violet-400\/10 {
    background-color: rgb(167 139 250 / 0.1);
  }

  .\32xl\:bg-violet-400\/20 {
    background-color: rgb(167 139 250 / 0.2);
  }

  .\32xl\:bg-violet-400\/30 {
    background-color: rgb(167 139 250 / 0.3);
  }

  .\32xl\:bg-violet-400\/40 {
    background-color: rgb(167 139 250 / 0.4);
  }

  .\32xl\:bg-violet-400\/5 {
    background-color: rgb(167 139 250 / 0.05);
  }

  .\32xl\:bg-violet-400\/50 {
    background-color: rgb(167 139 250 / 0.5);
  }

  .\32xl\:bg-violet-400\/60 {
    background-color: rgb(167 139 250 / 0.6);
  }

  .\32xl\:bg-violet-400\/70 {
    background-color: rgb(167 139 250 / 0.7);
  }

  .\32xl\:bg-violet-400\/80 {
    background-color: rgb(167 139 250 / 0.8);
  }

  .\32xl\:bg-violet-400\/90 {
    background-color: rgb(167 139 250 / 0.9);
  }

  .\32xl\:bg-violet-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(245 243 255 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-violet-50\/10 {
    background-color: rgb(245 243 255 / 0.1);
  }

  .\32xl\:bg-violet-50\/20 {
    background-color: rgb(245 243 255 / 0.2);
  }

  .\32xl\:bg-violet-50\/30 {
    background-color: rgb(245 243 255 / 0.3);
  }

  .\32xl\:bg-violet-50\/40 {
    background-color: rgb(245 243 255 / 0.4);
  }

  .\32xl\:bg-violet-50\/5 {
    background-color: rgb(245 243 255 / 0.05);
  }

  .\32xl\:bg-violet-50\/50 {
    background-color: rgb(245 243 255 / 0.5);
  }

  .\32xl\:bg-violet-50\/60 {
    background-color: rgb(245 243 255 / 0.6);
  }

  .\32xl\:bg-violet-50\/70 {
    background-color: rgb(245 243 255 / 0.7);
  }

  .\32xl\:bg-violet-50\/80 {
    background-color: rgb(245 243 255 / 0.8);
  }

  .\32xl\:bg-violet-50\/90 {
    background-color: rgb(245 243 255 / 0.9);
  }

  .\32xl\:bg-violet-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(139 92 246 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-violet-500\/10 {
    background-color: rgb(139 92 246 / 0.1);
  }

  .\32xl\:bg-violet-500\/20 {
    background-color: rgb(139 92 246 / 0.2);
  }

  .\32xl\:bg-violet-500\/30 {
    background-color: rgb(139 92 246 / 0.3);
  }

  .\32xl\:bg-violet-500\/40 {
    background-color: rgb(139 92 246 / 0.4);
  }

  .\32xl\:bg-violet-500\/5 {
    background-color: rgb(139 92 246 / 0.05);
  }

  .\32xl\:bg-violet-500\/50 {
    background-color: rgb(139 92 246 / 0.5);
  }

  .\32xl\:bg-violet-500\/60 {
    background-color: rgb(139 92 246 / 0.6);
  }

  .\32xl\:bg-violet-500\/70 {
    background-color: rgb(139 92 246 / 0.7);
  }

  .\32xl\:bg-violet-500\/80 {
    background-color: rgb(139 92 246 / 0.8);
  }

  .\32xl\:bg-violet-500\/90 {
    background-color: rgb(139 92 246 / 0.9);
  }

  .\32xl\:bg-violet-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(124 58 237 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-violet-600\/10 {
    background-color: rgb(124 58 237 / 0.1);
  }

  .\32xl\:bg-violet-600\/20 {
    background-color: rgb(124 58 237 / 0.2);
  }

  .\32xl\:bg-violet-600\/30 {
    background-color: rgb(124 58 237 / 0.3);
  }

  .\32xl\:bg-violet-600\/40 {
    background-color: rgb(124 58 237 / 0.4);
  }

  .\32xl\:bg-violet-600\/5 {
    background-color: rgb(124 58 237 / 0.05);
  }

  .\32xl\:bg-violet-600\/50 {
    background-color: rgb(124 58 237 / 0.5);
  }

  .\32xl\:bg-violet-600\/60 {
    background-color: rgb(124 58 237 / 0.6);
  }

  .\32xl\:bg-violet-600\/70 {
    background-color: rgb(124 58 237 / 0.7);
  }

  .\32xl\:bg-violet-600\/80 {
    background-color: rgb(124 58 237 / 0.8);
  }

  .\32xl\:bg-violet-600\/90 {
    background-color: rgb(124 58 237 / 0.9);
  }

  .\32xl\:bg-violet-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(109 40 217 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-violet-700\/10 {
    background-color: rgb(109 40 217 / 0.1);
  }

  .\32xl\:bg-violet-700\/20 {
    background-color: rgb(109 40 217 / 0.2);
  }

  .\32xl\:bg-violet-700\/30 {
    background-color: rgb(109 40 217 / 0.3);
  }

  .\32xl\:bg-violet-700\/40 {
    background-color: rgb(109 40 217 / 0.4);
  }

  .\32xl\:bg-violet-700\/5 {
    background-color: rgb(109 40 217 / 0.05);
  }

  .\32xl\:bg-violet-700\/50 {
    background-color: rgb(109 40 217 / 0.5);
  }

  .\32xl\:bg-violet-700\/60 {
    background-color: rgb(109 40 217 / 0.6);
  }

  .\32xl\:bg-violet-700\/70 {
    background-color: rgb(109 40 217 / 0.7);
  }

  .\32xl\:bg-violet-700\/80 {
    background-color: rgb(109 40 217 / 0.8);
  }

  .\32xl\:bg-violet-700\/90 {
    background-color: rgb(109 40 217 / 0.9);
  }

  .\32xl\:bg-violet-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(91 33 182 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-violet-800\/10 {
    background-color: rgb(91 33 182 / 0.1);
  }

  .\32xl\:bg-violet-800\/20 {
    background-color: rgb(91 33 182 / 0.2);
  }

  .\32xl\:bg-violet-800\/30 {
    background-color: rgb(91 33 182 / 0.3);
  }

  .\32xl\:bg-violet-800\/40 {
    background-color: rgb(91 33 182 / 0.4);
  }

  .\32xl\:bg-violet-800\/5 {
    background-color: rgb(91 33 182 / 0.05);
  }

  .\32xl\:bg-violet-800\/50 {
    background-color: rgb(91 33 182 / 0.5);
  }

  .\32xl\:bg-violet-800\/60 {
    background-color: rgb(91 33 182 / 0.6);
  }

  .\32xl\:bg-violet-800\/70 {
    background-color: rgb(91 33 182 / 0.7);
  }

  .\32xl\:bg-violet-800\/80 {
    background-color: rgb(91 33 182 / 0.8);
  }

  .\32xl\:bg-violet-800\/90 {
    background-color: rgb(91 33 182 / 0.9);
  }

  .\32xl\:bg-violet-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(76 29 149 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-violet-900\/10 {
    background-color: rgb(76 29 149 / 0.1);
  }

  .\32xl\:bg-violet-900\/20 {
    background-color: rgb(76 29 149 / 0.2);
  }

  .\32xl\:bg-violet-900\/30 {
    background-color: rgb(76 29 149 / 0.3);
  }

  .\32xl\:bg-violet-900\/40 {
    background-color: rgb(76 29 149 / 0.4);
  }

  .\32xl\:bg-violet-900\/5 {
    background-color: rgb(76 29 149 / 0.05);
  }

  .\32xl\:bg-violet-900\/50 {
    background-color: rgb(76 29 149 / 0.5);
  }

  .\32xl\:bg-violet-900\/60 {
    background-color: rgb(76 29 149 / 0.6);
  }

  .\32xl\:bg-violet-900\/70 {
    background-color: rgb(76 29 149 / 0.7);
  }

  .\32xl\:bg-violet-900\/80 {
    background-color: rgb(76 29 149 / 0.8);
  }

  .\32xl\:bg-violet-900\/90 {
    background-color: rgb(76 29 149 / 0.9);
  }

  .\32xl\:bg-violet-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(46 16 101 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-violet-950\/10 {
    background-color: rgb(46 16 101 / 0.1);
  }

  .\32xl\:bg-violet-950\/20 {
    background-color: rgb(46 16 101 / 0.2);
  }

  .\32xl\:bg-violet-950\/30 {
    background-color: rgb(46 16 101 / 0.3);
  }

  .\32xl\:bg-violet-950\/40 {
    background-color: rgb(46 16 101 / 0.4);
  }

  .\32xl\:bg-violet-950\/5 {
    background-color: rgb(46 16 101 / 0.05);
  }

  .\32xl\:bg-violet-950\/50 {
    background-color: rgb(46 16 101 / 0.5);
  }

  .\32xl\:bg-violet-950\/60 {
    background-color: rgb(46 16 101 / 0.6);
  }

  .\32xl\:bg-violet-950\/70 {
    background-color: rgb(46 16 101 / 0.7);
  }

  .\32xl\:bg-violet-950\/80 {
    background-color: rgb(46 16 101 / 0.8);
  }

  .\32xl\:bg-violet-950\/90 {
    background-color: rgb(46 16 101 / 0.9);
  }

  .\32xl\:bg-yellow-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-yellow-100\/10 {
    background-color: rgb(254 249 195 / 0.1);
  }

  .\32xl\:bg-yellow-100\/20 {
    background-color: rgb(254 249 195 / 0.2);
  }

  .\32xl\:bg-yellow-100\/30 {
    background-color: rgb(254 249 195 / 0.3);
  }

  .\32xl\:bg-yellow-100\/40 {
    background-color: rgb(254 249 195 / 0.4);
  }

  .\32xl\:bg-yellow-100\/5 {
    background-color: rgb(254 249 195 / 0.05);
  }

  .\32xl\:bg-yellow-100\/50 {
    background-color: rgb(254 249 195 / 0.5);
  }

  .\32xl\:bg-yellow-100\/60 {
    background-color: rgb(254 249 195 / 0.6);
  }

  .\32xl\:bg-yellow-100\/70 {
    background-color: rgb(254 249 195 / 0.7);
  }

  .\32xl\:bg-yellow-100\/80 {
    background-color: rgb(254 249 195 / 0.8);
  }

  .\32xl\:bg-yellow-100\/90 {
    background-color: rgb(254 249 195 / 0.9);
  }

  .\32xl\:bg-yellow-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 240 138 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-yellow-200\/10 {
    background-color: rgb(254 240 138 / 0.1);
  }

  .\32xl\:bg-yellow-200\/20 {
    background-color: rgb(254 240 138 / 0.2);
  }

  .\32xl\:bg-yellow-200\/30 {
    background-color: rgb(254 240 138 / 0.3);
  }

  .\32xl\:bg-yellow-200\/40 {
    background-color: rgb(254 240 138 / 0.4);
  }

  .\32xl\:bg-yellow-200\/5 {
    background-color: rgb(254 240 138 / 0.05);
  }

  .\32xl\:bg-yellow-200\/50 {
    background-color: rgb(254 240 138 / 0.5);
  }

  .\32xl\:bg-yellow-200\/60 {
    background-color: rgb(254 240 138 / 0.6);
  }

  .\32xl\:bg-yellow-200\/70 {
    background-color: rgb(254 240 138 / 0.7);
  }

  .\32xl\:bg-yellow-200\/80 {
    background-color: rgb(254 240 138 / 0.8);
  }

  .\32xl\:bg-yellow-200\/90 {
    background-color: rgb(254 240 138 / 0.9);
  }

  .\32xl\:bg-yellow-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(253 224 71 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-yellow-300\/10 {
    background-color: rgb(253 224 71 / 0.1);
  }

  .\32xl\:bg-yellow-300\/20 {
    background-color: rgb(253 224 71 / 0.2);
  }

  .\32xl\:bg-yellow-300\/30 {
    background-color: rgb(253 224 71 / 0.3);
  }

  .\32xl\:bg-yellow-300\/40 {
    background-color: rgb(253 224 71 / 0.4);
  }

  .\32xl\:bg-yellow-300\/5 {
    background-color: rgb(253 224 71 / 0.05);
  }

  .\32xl\:bg-yellow-300\/50 {
    background-color: rgb(253 224 71 / 0.5);
  }

  .\32xl\:bg-yellow-300\/60 {
    background-color: rgb(253 224 71 / 0.6);
  }

  .\32xl\:bg-yellow-300\/70 {
    background-color: rgb(253 224 71 / 0.7);
  }

  .\32xl\:bg-yellow-300\/80 {
    background-color: rgb(253 224 71 / 0.8);
  }

  .\32xl\:bg-yellow-300\/90 {
    background-color: rgb(253 224 71 / 0.9);
  }

  .\32xl\:bg-yellow-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 204 21 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-yellow-400\/10 {
    background-color: rgb(250 204 21 / 0.1);
  }

  .\32xl\:bg-yellow-400\/20 {
    background-color: rgb(250 204 21 / 0.2);
  }

  .\32xl\:bg-yellow-400\/30 {
    background-color: rgb(250 204 21 / 0.3);
  }

  .\32xl\:bg-yellow-400\/40 {
    background-color: rgb(250 204 21 / 0.4);
  }

  .\32xl\:bg-yellow-400\/5 {
    background-color: rgb(250 204 21 / 0.05);
  }

  .\32xl\:bg-yellow-400\/50 {
    background-color: rgb(250 204 21 / 0.5);
  }

  .\32xl\:bg-yellow-400\/60 {
    background-color: rgb(250 204 21 / 0.6);
  }

  .\32xl\:bg-yellow-400\/70 {
    background-color: rgb(250 204 21 / 0.7);
  }

  .\32xl\:bg-yellow-400\/80 {
    background-color: rgb(250 204 21 / 0.8);
  }

  .\32xl\:bg-yellow-400\/90 {
    background-color: rgb(250 204 21 / 0.9);
  }

  .\32xl\:bg-yellow-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-yellow-50\/10 {
    background-color: rgb(254 252 232 / 0.1);
  }

  .\32xl\:bg-yellow-50\/20 {
    background-color: rgb(254 252 232 / 0.2);
  }

  .\32xl\:bg-yellow-50\/30 {
    background-color: rgb(254 252 232 / 0.3);
  }

  .\32xl\:bg-yellow-50\/40 {
    background-color: rgb(254 252 232 / 0.4);
  }

  .\32xl\:bg-yellow-50\/5 {
    background-color: rgb(254 252 232 / 0.05);
  }

  .\32xl\:bg-yellow-50\/50 {
    background-color: rgb(254 252 232 / 0.5);
  }

  .\32xl\:bg-yellow-50\/60 {
    background-color: rgb(254 252 232 / 0.6);
  }

  .\32xl\:bg-yellow-50\/70 {
    background-color: rgb(254 252 232 / 0.7);
  }

  .\32xl\:bg-yellow-50\/80 {
    background-color: rgb(254 252 232 / 0.8);
  }

  .\32xl\:bg-yellow-50\/90 {
    background-color: rgb(254 252 232 / 0.9);
  }

  .\32xl\:bg-yellow-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(234 179 8 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-yellow-500\/10 {
    background-color: rgb(234 179 8 / 0.1);
  }

  .\32xl\:bg-yellow-500\/20 {
    background-color: rgb(234 179 8 / 0.2);
  }

  .\32xl\:bg-yellow-500\/30 {
    background-color: rgb(234 179 8 / 0.3);
  }

  .\32xl\:bg-yellow-500\/40 {
    background-color: rgb(234 179 8 / 0.4);
  }

  .\32xl\:bg-yellow-500\/5 {
    background-color: rgb(234 179 8 / 0.05);
  }

  .\32xl\:bg-yellow-500\/50 {
    background-color: rgb(234 179 8 / 0.5);
  }

  .\32xl\:bg-yellow-500\/60 {
    background-color: rgb(234 179 8 / 0.6);
  }

  .\32xl\:bg-yellow-500\/70 {
    background-color: rgb(234 179 8 / 0.7);
  }

  .\32xl\:bg-yellow-500\/80 {
    background-color: rgb(234 179 8 / 0.8);
  }

  .\32xl\:bg-yellow-500\/90 {
    background-color: rgb(234 179 8 / 0.9);
  }

  .\32xl\:bg-yellow-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(202 138 4 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-yellow-600\/10 {
    background-color: rgb(202 138 4 / 0.1);
  }

  .\32xl\:bg-yellow-600\/20 {
    background-color: rgb(202 138 4 / 0.2);
  }

  .\32xl\:bg-yellow-600\/30 {
    background-color: rgb(202 138 4 / 0.3);
  }

  .\32xl\:bg-yellow-600\/40 {
    background-color: rgb(202 138 4 / 0.4);
  }

  .\32xl\:bg-yellow-600\/5 {
    background-color: rgb(202 138 4 / 0.05);
  }

  .\32xl\:bg-yellow-600\/50 {
    background-color: rgb(202 138 4 / 0.5);
  }

  .\32xl\:bg-yellow-600\/60 {
    background-color: rgb(202 138 4 / 0.6);
  }

  .\32xl\:bg-yellow-600\/70 {
    background-color: rgb(202 138 4 / 0.7);
  }

  .\32xl\:bg-yellow-600\/80 {
    background-color: rgb(202 138 4 / 0.8);
  }

  .\32xl\:bg-yellow-600\/90 {
    background-color: rgb(202 138 4 / 0.9);
  }

  .\32xl\:bg-yellow-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(161 98 7 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-yellow-700\/10 {
    background-color: rgb(161 98 7 / 0.1);
  }

  .\32xl\:bg-yellow-700\/20 {
    background-color: rgb(161 98 7 / 0.2);
  }

  .\32xl\:bg-yellow-700\/30 {
    background-color: rgb(161 98 7 / 0.3);
  }

  .\32xl\:bg-yellow-700\/40 {
    background-color: rgb(161 98 7 / 0.4);
  }

  .\32xl\:bg-yellow-700\/5 {
    background-color: rgb(161 98 7 / 0.05);
  }

  .\32xl\:bg-yellow-700\/50 {
    background-color: rgb(161 98 7 / 0.5);
  }

  .\32xl\:bg-yellow-700\/60 {
    background-color: rgb(161 98 7 / 0.6);
  }

  .\32xl\:bg-yellow-700\/70 {
    background-color: rgb(161 98 7 / 0.7);
  }

  .\32xl\:bg-yellow-700\/80 {
    background-color: rgb(161 98 7 / 0.8);
  }

  .\32xl\:bg-yellow-700\/90 {
    background-color: rgb(161 98 7 / 0.9);
  }

  .\32xl\:bg-yellow-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(133 77 14 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-yellow-800\/10 {
    background-color: rgb(133 77 14 / 0.1);
  }

  .\32xl\:bg-yellow-800\/20 {
    background-color: rgb(133 77 14 / 0.2);
  }

  .\32xl\:bg-yellow-800\/30 {
    background-color: rgb(133 77 14 / 0.3);
  }

  .\32xl\:bg-yellow-800\/40 {
    background-color: rgb(133 77 14 / 0.4);
  }

  .\32xl\:bg-yellow-800\/5 {
    background-color: rgb(133 77 14 / 0.05);
  }

  .\32xl\:bg-yellow-800\/50 {
    background-color: rgb(133 77 14 / 0.5);
  }

  .\32xl\:bg-yellow-800\/60 {
    background-color: rgb(133 77 14 / 0.6);
  }

  .\32xl\:bg-yellow-800\/70 {
    background-color: rgb(133 77 14 / 0.7);
  }

  .\32xl\:bg-yellow-800\/80 {
    background-color: rgb(133 77 14 / 0.8);
  }

  .\32xl\:bg-yellow-800\/90 {
    background-color: rgb(133 77 14 / 0.9);
  }

  .\32xl\:bg-yellow-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(113 63 18 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-yellow-900\/10 {
    background-color: rgb(113 63 18 / 0.1);
  }

  .\32xl\:bg-yellow-900\/20 {
    background-color: rgb(113 63 18 / 0.2);
  }

  .\32xl\:bg-yellow-900\/30 {
    background-color: rgb(113 63 18 / 0.3);
  }

  .\32xl\:bg-yellow-900\/40 {
    background-color: rgb(113 63 18 / 0.4);
  }

  .\32xl\:bg-yellow-900\/5 {
    background-color: rgb(113 63 18 / 0.05);
  }

  .\32xl\:bg-yellow-900\/50 {
    background-color: rgb(113 63 18 / 0.5);
  }

  .\32xl\:bg-yellow-900\/60 {
    background-color: rgb(113 63 18 / 0.6);
  }

  .\32xl\:bg-yellow-900\/70 {
    background-color: rgb(113 63 18 / 0.7);
  }

  .\32xl\:bg-yellow-900\/80 {
    background-color: rgb(113 63 18 / 0.8);
  }

  .\32xl\:bg-yellow-900\/90 {
    background-color: rgb(113 63 18 / 0.9);
  }

  .\32xl\:bg-yellow-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(66 32 6 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-yellow-950\/10 {
    background-color: rgb(66 32 6 / 0.1);
  }

  .\32xl\:bg-yellow-950\/20 {
    background-color: rgb(66 32 6 / 0.2);
  }

  .\32xl\:bg-yellow-950\/30 {
    background-color: rgb(66 32 6 / 0.3);
  }

  .\32xl\:bg-yellow-950\/40 {
    background-color: rgb(66 32 6 / 0.4);
  }

  .\32xl\:bg-yellow-950\/5 {
    background-color: rgb(66 32 6 / 0.05);
  }

  .\32xl\:bg-yellow-950\/50 {
    background-color: rgb(66 32 6 / 0.5);
  }

  .\32xl\:bg-yellow-950\/60 {
    background-color: rgb(66 32 6 / 0.6);
  }

  .\32xl\:bg-yellow-950\/70 {
    background-color: rgb(66 32 6 / 0.7);
  }

  .\32xl\:bg-yellow-950\/80 {
    background-color: rgb(66 32 6 / 0.8);
  }

  .\32xl\:bg-yellow-950\/90 {
    background-color: rgb(66 32 6 / 0.9);
  }

  .\32xl\:bg-zinc-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(244 244 245 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-zinc-100\/10 {
    background-color: rgb(244 244 245 / 0.1);
  }

  .\32xl\:bg-zinc-100\/20 {
    background-color: rgb(244 244 245 / 0.2);
  }

  .\32xl\:bg-zinc-100\/30 {
    background-color: rgb(244 244 245 / 0.3);
  }

  .\32xl\:bg-zinc-100\/40 {
    background-color: rgb(244 244 245 / 0.4);
  }

  .\32xl\:bg-zinc-100\/5 {
    background-color: rgb(244 244 245 / 0.05);
  }

  .\32xl\:bg-zinc-100\/50 {
    background-color: rgb(244 244 245 / 0.5);
  }

  .\32xl\:bg-zinc-100\/60 {
    background-color: rgb(244 244 245 / 0.6);
  }

  .\32xl\:bg-zinc-100\/70 {
    background-color: rgb(244 244 245 / 0.7);
  }

  .\32xl\:bg-zinc-100\/80 {
    background-color: rgb(244 244 245 / 0.8);
  }

  .\32xl\:bg-zinc-100\/90 {
    background-color: rgb(244 244 245 / 0.9);
  }

  .\32xl\:bg-zinc-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(228 228 231 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-zinc-200\/10 {
    background-color: rgb(228 228 231 / 0.1);
  }

  .\32xl\:bg-zinc-200\/20 {
    background-color: rgb(228 228 231 / 0.2);
  }

  .\32xl\:bg-zinc-200\/30 {
    background-color: rgb(228 228 231 / 0.3);
  }

  .\32xl\:bg-zinc-200\/40 {
    background-color: rgb(228 228 231 / 0.4);
  }

  .\32xl\:bg-zinc-200\/5 {
    background-color: rgb(228 228 231 / 0.05);
  }

  .\32xl\:bg-zinc-200\/50 {
    background-color: rgb(228 228 231 / 0.5);
  }

  .\32xl\:bg-zinc-200\/60 {
    background-color: rgb(228 228 231 / 0.6);
  }

  .\32xl\:bg-zinc-200\/70 {
    background-color: rgb(228 228 231 / 0.7);
  }

  .\32xl\:bg-zinc-200\/80 {
    background-color: rgb(228 228 231 / 0.8);
  }

  .\32xl\:bg-zinc-200\/90 {
    background-color: rgb(228 228 231 / 0.9);
  }

  .\32xl\:bg-zinc-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(212 212 216 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-zinc-300\/10 {
    background-color: rgb(212 212 216 / 0.1);
  }

  .\32xl\:bg-zinc-300\/20 {
    background-color: rgb(212 212 216 / 0.2);
  }

  .\32xl\:bg-zinc-300\/30 {
    background-color: rgb(212 212 216 / 0.3);
  }

  .\32xl\:bg-zinc-300\/40 {
    background-color: rgb(212 212 216 / 0.4);
  }

  .\32xl\:bg-zinc-300\/5 {
    background-color: rgb(212 212 216 / 0.05);
  }

  .\32xl\:bg-zinc-300\/50 {
    background-color: rgb(212 212 216 / 0.5);
  }

  .\32xl\:bg-zinc-300\/60 {
    background-color: rgb(212 212 216 / 0.6);
  }

  .\32xl\:bg-zinc-300\/70 {
    background-color: rgb(212 212 216 / 0.7);
  }

  .\32xl\:bg-zinc-300\/80 {
    background-color: rgb(212 212 216 / 0.8);
  }

  .\32xl\:bg-zinc-300\/90 {
    background-color: rgb(212 212 216 / 0.9);
  }

  .\32xl\:bg-zinc-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(161 161 170 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-zinc-400\/10 {
    background-color: rgb(161 161 170 / 0.1);
  }

  .\32xl\:bg-zinc-400\/20 {
    background-color: rgb(161 161 170 / 0.2);
  }

  .\32xl\:bg-zinc-400\/30 {
    background-color: rgb(161 161 170 / 0.3);
  }

  .\32xl\:bg-zinc-400\/40 {
    background-color: rgb(161 161 170 / 0.4);
  }

  .\32xl\:bg-zinc-400\/5 {
    background-color: rgb(161 161 170 / 0.05);
  }

  .\32xl\:bg-zinc-400\/50 {
    background-color: rgb(161 161 170 / 0.5);
  }

  .\32xl\:bg-zinc-400\/60 {
    background-color: rgb(161 161 170 / 0.6);
  }

  .\32xl\:bg-zinc-400\/70 {
    background-color: rgb(161 161 170 / 0.7);
  }

  .\32xl\:bg-zinc-400\/80 {
    background-color: rgb(161 161 170 / 0.8);
  }

  .\32xl\:bg-zinc-400\/90 {
    background-color: rgb(161 161 170 / 0.9);
  }

  .\32xl\:bg-zinc-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-zinc-50\/10 {
    background-color: rgb(250 250 250 / 0.1);
  }

  .\32xl\:bg-zinc-50\/20 {
    background-color: rgb(250 250 250 / 0.2);
  }

  .\32xl\:bg-zinc-50\/30 {
    background-color: rgb(250 250 250 / 0.3);
  }

  .\32xl\:bg-zinc-50\/40 {
    background-color: rgb(250 250 250 / 0.4);
  }

  .\32xl\:bg-zinc-50\/5 {
    background-color: rgb(250 250 250 / 0.05);
  }

  .\32xl\:bg-zinc-50\/50 {
    background-color: rgb(250 250 250 / 0.5);
  }

  .\32xl\:bg-zinc-50\/60 {
    background-color: rgb(250 250 250 / 0.6);
  }

  .\32xl\:bg-zinc-50\/70 {
    background-color: rgb(250 250 250 / 0.7);
  }

  .\32xl\:bg-zinc-50\/80 {
    background-color: rgb(250 250 250 / 0.8);
  }

  .\32xl\:bg-zinc-50\/90 {
    background-color: rgb(250 250 250 / 0.9);
  }

  .\32xl\:bg-zinc-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(113 113 122 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-zinc-500\/10 {
    background-color: rgb(113 113 122 / 0.1);
  }

  .\32xl\:bg-zinc-500\/20 {
    background-color: rgb(113 113 122 / 0.2);
  }

  .\32xl\:bg-zinc-500\/30 {
    background-color: rgb(113 113 122 / 0.3);
  }

  .\32xl\:bg-zinc-500\/40 {
    background-color: rgb(113 113 122 / 0.4);
  }

  .\32xl\:bg-zinc-500\/5 {
    background-color: rgb(113 113 122 / 0.05);
  }

  .\32xl\:bg-zinc-500\/50 {
    background-color: rgb(113 113 122 / 0.5);
  }

  .\32xl\:bg-zinc-500\/60 {
    background-color: rgb(113 113 122 / 0.6);
  }

  .\32xl\:bg-zinc-500\/70 {
    background-color: rgb(113 113 122 / 0.7);
  }

  .\32xl\:bg-zinc-500\/80 {
    background-color: rgb(113 113 122 / 0.8);
  }

  .\32xl\:bg-zinc-500\/90 {
    background-color: rgb(113 113 122 / 0.9);
  }

  .\32xl\:bg-zinc-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(82 82 91 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-zinc-600\/10 {
    background-color: rgb(82 82 91 / 0.1);
  }

  .\32xl\:bg-zinc-600\/20 {
    background-color: rgb(82 82 91 / 0.2);
  }

  .\32xl\:bg-zinc-600\/30 {
    background-color: rgb(82 82 91 / 0.3);
  }

  .\32xl\:bg-zinc-600\/40 {
    background-color: rgb(82 82 91 / 0.4);
  }

  .\32xl\:bg-zinc-600\/5 {
    background-color: rgb(82 82 91 / 0.05);
  }

  .\32xl\:bg-zinc-600\/50 {
    background-color: rgb(82 82 91 / 0.5);
  }

  .\32xl\:bg-zinc-600\/60 {
    background-color: rgb(82 82 91 / 0.6);
  }

  .\32xl\:bg-zinc-600\/70 {
    background-color: rgb(82 82 91 / 0.7);
  }

  .\32xl\:bg-zinc-600\/80 {
    background-color: rgb(82 82 91 / 0.8);
  }

  .\32xl\:bg-zinc-600\/90 {
    background-color: rgb(82 82 91 / 0.9);
  }

  .\32xl\:bg-zinc-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(63 63 70 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-zinc-700\/10 {
    background-color: rgb(63 63 70 / 0.1);
  }

  .\32xl\:bg-zinc-700\/20 {
    background-color: rgb(63 63 70 / 0.2);
  }

  .\32xl\:bg-zinc-700\/30 {
    background-color: rgb(63 63 70 / 0.3);
  }

  .\32xl\:bg-zinc-700\/40 {
    background-color: rgb(63 63 70 / 0.4);
  }

  .\32xl\:bg-zinc-700\/5 {
    background-color: rgb(63 63 70 / 0.05);
  }

  .\32xl\:bg-zinc-700\/50 {
    background-color: rgb(63 63 70 / 0.5);
  }

  .\32xl\:bg-zinc-700\/60 {
    background-color: rgb(63 63 70 / 0.6);
  }

  .\32xl\:bg-zinc-700\/70 {
    background-color: rgb(63 63 70 / 0.7);
  }

  .\32xl\:bg-zinc-700\/80 {
    background-color: rgb(63 63 70 / 0.8);
  }

  .\32xl\:bg-zinc-700\/90 {
    background-color: rgb(63 63 70 / 0.9);
  }

  .\32xl\:bg-zinc-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(39 39 42 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-zinc-800\/10 {
    background-color: rgb(39 39 42 / 0.1);
  }

  .\32xl\:bg-zinc-800\/20 {
    background-color: rgb(39 39 42 / 0.2);
  }

  .\32xl\:bg-zinc-800\/30 {
    background-color: rgb(39 39 42 / 0.3);
  }

  .\32xl\:bg-zinc-800\/40 {
    background-color: rgb(39 39 42 / 0.4);
  }

  .\32xl\:bg-zinc-800\/5 {
    background-color: rgb(39 39 42 / 0.05);
  }

  .\32xl\:bg-zinc-800\/50 {
    background-color: rgb(39 39 42 / 0.5);
  }

  .\32xl\:bg-zinc-800\/60 {
    background-color: rgb(39 39 42 / 0.6);
  }

  .\32xl\:bg-zinc-800\/70 {
    background-color: rgb(39 39 42 / 0.7);
  }

  .\32xl\:bg-zinc-800\/80 {
    background-color: rgb(39 39 42 / 0.8);
  }

  .\32xl\:bg-zinc-800\/90 {
    background-color: rgb(39 39 42 / 0.9);
  }

  .\32xl\:bg-zinc-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(24 24 27 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-zinc-900\/10 {
    background-color: rgb(24 24 27 / 0.1);
  }

  .\32xl\:bg-zinc-900\/20 {
    background-color: rgb(24 24 27 / 0.2);
  }

  .\32xl\:bg-zinc-900\/30 {
    background-color: rgb(24 24 27 / 0.3);
  }

  .\32xl\:bg-zinc-900\/40 {
    background-color: rgb(24 24 27 / 0.4);
  }

  .\32xl\:bg-zinc-900\/5 {
    background-color: rgb(24 24 27 / 0.05);
  }

  .\32xl\:bg-zinc-900\/50 {
    background-color: rgb(24 24 27 / 0.5);
  }

  .\32xl\:bg-zinc-900\/60 {
    background-color: rgb(24 24 27 / 0.6);
  }

  .\32xl\:bg-zinc-900\/70 {
    background-color: rgb(24 24 27 / 0.7);
  }

  .\32xl\:bg-zinc-900\/80 {
    background-color: rgb(24 24 27 / 0.8);
  }

  .\32xl\:bg-zinc-900\/90 {
    background-color: rgb(24 24 27 / 0.9);
  }

  .\32xl\:bg-zinc-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(9 9 11 / var(--tw-bg-opacity, 1));
  }

  .\32xl\:bg-zinc-950\/10 {
    background-color: rgb(9 9 11 / 0.1);
  }

  .\32xl\:bg-zinc-950\/20 {
    background-color: rgb(9 9 11 / 0.2);
  }

  .\32xl\:bg-zinc-950\/30 {
    background-color: rgb(9 9 11 / 0.3);
  }

  .\32xl\:bg-zinc-950\/40 {
    background-color: rgb(9 9 11 / 0.4);
  }

  .\32xl\:bg-zinc-950\/5 {
    background-color: rgb(9 9 11 / 0.05);
  }

  .\32xl\:bg-zinc-950\/50 {
    background-color: rgb(9 9 11 / 0.5);
  }

  .\32xl\:bg-zinc-950\/60 {
    background-color: rgb(9 9 11 / 0.6);
  }

  .\32xl\:bg-zinc-950\/70 {
    background-color: rgb(9 9 11 / 0.7);
  }

  .\32xl\:bg-zinc-950\/80 {
    background-color: rgb(9 9 11 / 0.8);
  }

  .\32xl\:bg-zinc-950\/90 {
    background-color: rgb(9 9 11 / 0.9);
  }

  .\32xl\:p-0 {
    padding: 0px;
  }

  .\32xl\:p-1 {
    padding: 0.25rem;
  }

  .\32xl\:p-10 {
    padding: 2.5rem;
  }

  .\32xl\:p-11 {
    padding: 2.75rem;
  }

  .\32xl\:p-12 {
    padding: 3rem;
  }

  .\32xl\:p-14 {
    padding: 3.5rem;
  }

  .\32xl\:p-16 {
    padding: 4rem;
  }

  .\32xl\:p-2 {
    padding: 0.5rem;
  }

  .\32xl\:p-20 {
    padding: 5rem;
  }

  .\32xl\:p-24 {
    padding: 6rem;
  }

  .\32xl\:p-28 {
    padding: 7rem;
  }

  .\32xl\:p-3 {
    padding: 0.75rem;
  }

  .\32xl\:p-32 {
    padding: 8rem;
  }

  .\32xl\:p-36 {
    padding: 9rem;
  }

  .\32xl\:p-4 {
    padding: 1rem;
  }

  .\32xl\:p-40 {
    padding: 10rem;
  }

  .\32xl\:p-44 {
    padding: 11rem;
  }

  .\32xl\:p-48 {
    padding: 12rem;
  }

  .\32xl\:p-5 {
    padding: 1.25rem;
  }

  .\32xl\:p-52 {
    padding: 13rem;
  }

  .\32xl\:p-56 {
    padding: 14rem;
  }

  .\32xl\:p-6 {
    padding: 1.5rem;
  }

  .\32xl\:p-60 {
    padding: 15rem;
  }

  .\32xl\:p-64 {
    padding: 16rem;
  }

  .\32xl\:p-7 {
    padding: 1.75rem;
  }

  .\32xl\:p-72 {
    padding: 18rem;
  }

  .\32xl\:p-8 {
    padding: 2rem;
  }

  .\32xl\:p-80 {
    padding: 20rem;
  }

  .\32xl\:p-9 {
    padding: 2.25rem;
  }

  .\32xl\:p-96 {
    padding: 24rem;
  }

  .\32xl\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .\32xl\:px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .\32xl\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .\32xl\:px-11 {
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }

  .\32xl\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .\32xl\:px-14 {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .\32xl\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .\32xl\:px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .\32xl\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .\32xl\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .\32xl\:px-28 {
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .\32xl\:px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .\32xl\:px-32 {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .\32xl\:px-36 {
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .\32xl\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .\32xl\:px-40 {
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .\32xl\:px-44 {
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .\32xl\:px-48 {
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .\32xl\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .\32xl\:px-52 {
    padding-left: 13rem;
    padding-right: 13rem;
  }

  .\32xl\:px-56 {
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .\32xl\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .\32xl\:px-60 {
    padding-left: 15rem;
    padding-right: 15rem;
  }

  .\32xl\:px-64 {
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .\32xl\:px-7 {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .\32xl\:px-72 {
    padding-left: 18rem;
    padding-right: 18rem;
  }

  .\32xl\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .\32xl\:px-80 {
    padding-left: 20rem;
    padding-right: 20rem;
  }

  .\32xl\:px-9 {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .\32xl\:px-96 {
    padding-left: 24rem;
    padding-right: 24rem;
  }

  .\32xl\:py-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .\32xl\:py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .\32xl\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .\32xl\:py-11 {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .\32xl\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .\32xl\:py-14 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .\32xl\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .\32xl\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .\32xl\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .\32xl\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .\32xl\:py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .\32xl\:py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .\32xl\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .\32xl\:py-36 {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .\32xl\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .\32xl\:py-40 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .\32xl\:py-44 {
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .\32xl\:py-48 {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .\32xl\:py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .\32xl\:py-52 {
    padding-top: 13rem;
    padding-bottom: 13rem;
  }

  .\32xl\:py-56 {
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .\32xl\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .\32xl\:py-60 {
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .\32xl\:py-64 {
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .\32xl\:py-7 {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .\32xl\:py-72 {
    padding-top: 18rem;
    padding-bottom: 18rem;
  }

  .\32xl\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .\32xl\:py-80 {
    padding-top: 20rem;
    padding-bottom: 20rem;
  }

  .\32xl\:py-9 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .\32xl\:py-96 {
    padding-top: 24rem;
    padding-bottom: 24rem;
  }

  .\32xl\:pb-0 {
    padding-bottom: 0px;
  }

  .\32xl\:pb-1 {
    padding-bottom: 0.25rem;
  }

  .\32xl\:pb-10 {
    padding-bottom: 2.5rem;
  }

  .\32xl\:pb-11 {
    padding-bottom: 2.75rem;
  }

  .\32xl\:pb-12 {
    padding-bottom: 3rem;
  }

  .\32xl\:pb-14 {
    padding-bottom: 3.5rem;
  }

  .\32xl\:pb-16 {
    padding-bottom: 4rem;
  }

  .\32xl\:pb-2 {
    padding-bottom: 0.5rem;
  }

  .\32xl\:pb-20 {
    padding-bottom: 5rem;
  }

  .\32xl\:pb-24 {
    padding-bottom: 6rem;
  }

  .\32xl\:pb-28 {
    padding-bottom: 7rem;
  }

  .\32xl\:pb-3 {
    padding-bottom: 0.75rem;
  }

  .\32xl\:pb-32 {
    padding-bottom: 8rem;
  }

  .\32xl\:pb-36 {
    padding-bottom: 9rem;
  }

  .\32xl\:pb-4 {
    padding-bottom: 1rem;
  }

  .\32xl\:pb-40 {
    padding-bottom: 10rem;
  }

  .\32xl\:pb-44 {
    padding-bottom: 11rem;
  }

  .\32xl\:pb-48 {
    padding-bottom: 12rem;
  }

  .\32xl\:pb-5 {
    padding-bottom: 1.25rem;
  }

  .\32xl\:pb-52 {
    padding-bottom: 13rem;
  }

  .\32xl\:pb-56 {
    padding-bottom: 14rem;
  }

  .\32xl\:pb-6 {
    padding-bottom: 1.5rem;
  }

  .\32xl\:pb-60 {
    padding-bottom: 15rem;
  }

  .\32xl\:pb-64 {
    padding-bottom: 16rem;
  }

  .\32xl\:pb-7 {
    padding-bottom: 1.75rem;
  }

  .\32xl\:pb-72 {
    padding-bottom: 18rem;
  }

  .\32xl\:pb-8 {
    padding-bottom: 2rem;
  }

  .\32xl\:pb-80 {
    padding-bottom: 20rem;
  }

  .\32xl\:pb-9 {
    padding-bottom: 2.25rem;
  }

  .\32xl\:pb-96 {
    padding-bottom: 24rem;
  }

  .\32xl\:pl-0 {
    padding-left: 0px;
  }

  .\32xl\:pl-1 {
    padding-left: 0.25rem;
  }

  .\32xl\:pl-10 {
    padding-left: 2.5rem;
  }

  .\32xl\:pl-11 {
    padding-left: 2.75rem;
  }

  .\32xl\:pl-12 {
    padding-left: 3rem;
  }

  .\32xl\:pl-14 {
    padding-left: 3.5rem;
  }

  .\32xl\:pl-16 {
    padding-left: 4rem;
  }

  .\32xl\:pl-2 {
    padding-left: 0.5rem;
  }

  .\32xl\:pl-20 {
    padding-left: 5rem;
  }

  .\32xl\:pl-24 {
    padding-left: 6rem;
  }

  .\32xl\:pl-28 {
    padding-left: 7rem;
  }

  .\32xl\:pl-3 {
    padding-left: 0.75rem;
  }

  .\32xl\:pl-32 {
    padding-left: 8rem;
  }

  .\32xl\:pl-36 {
    padding-left: 9rem;
  }

  .\32xl\:pl-4 {
    padding-left: 1rem;
  }

  .\32xl\:pl-40 {
    padding-left: 10rem;
  }

  .\32xl\:pl-44 {
    padding-left: 11rem;
  }

  .\32xl\:pl-48 {
    padding-left: 12rem;
  }

  .\32xl\:pl-5 {
    padding-left: 1.25rem;
  }

  .\32xl\:pl-52 {
    padding-left: 13rem;
  }

  .\32xl\:pl-56 {
    padding-left: 14rem;
  }

  .\32xl\:pl-6 {
    padding-left: 1.5rem;
  }

  .\32xl\:pl-60 {
    padding-left: 15rem;
  }

  .\32xl\:pl-64 {
    padding-left: 16rem;
  }

  .\32xl\:pl-7 {
    padding-left: 1.75rem;
  }

  .\32xl\:pl-72 {
    padding-left: 18rem;
  }

  .\32xl\:pl-8 {
    padding-left: 2rem;
  }

  .\32xl\:pl-80 {
    padding-left: 20rem;
  }

  .\32xl\:pl-9 {
    padding-left: 2.25rem;
  }

  .\32xl\:pl-96 {
    padding-left: 24rem;
  }

  .\32xl\:pr-0 {
    padding-right: 0px;
  }

  .\32xl\:pr-1 {
    padding-right: 0.25rem;
  }

  .\32xl\:pr-10 {
    padding-right: 2.5rem;
  }

  .\32xl\:pr-11 {
    padding-right: 2.75rem;
  }

  .\32xl\:pr-12 {
    padding-right: 3rem;
  }

  .\32xl\:pr-14 {
    padding-right: 3.5rem;
  }

  .\32xl\:pr-16 {
    padding-right: 4rem;
  }

  .\32xl\:pr-2 {
    padding-right: 0.5rem;
  }

  .\32xl\:pr-20 {
    padding-right: 5rem;
  }

  .\32xl\:pr-24 {
    padding-right: 6rem;
  }

  .\32xl\:pr-28 {
    padding-right: 7rem;
  }

  .\32xl\:pr-3 {
    padding-right: 0.75rem;
  }

  .\32xl\:pr-32 {
    padding-right: 8rem;
  }

  .\32xl\:pr-36 {
    padding-right: 9rem;
  }

  .\32xl\:pr-4 {
    padding-right: 1rem;
  }

  .\32xl\:pr-40 {
    padding-right: 10rem;
  }

  .\32xl\:pr-44 {
    padding-right: 11rem;
  }

  .\32xl\:pr-48 {
    padding-right: 12rem;
  }

  .\32xl\:pr-5 {
    padding-right: 1.25rem;
  }

  .\32xl\:pr-52 {
    padding-right: 13rem;
  }

  .\32xl\:pr-56 {
    padding-right: 14rem;
  }

  .\32xl\:pr-6 {
    padding-right: 1.5rem;
  }

  .\32xl\:pr-60 {
    padding-right: 15rem;
  }

  .\32xl\:pr-64 {
    padding-right: 16rem;
  }

  .\32xl\:pr-7 {
    padding-right: 1.75rem;
  }

  .\32xl\:pr-72 {
    padding-right: 18rem;
  }

  .\32xl\:pr-8 {
    padding-right: 2rem;
  }

  .\32xl\:pr-80 {
    padding-right: 20rem;
  }

  .\32xl\:pr-9 {
    padding-right: 2.25rem;
  }

  .\32xl\:pr-96 {
    padding-right: 24rem;
  }

  .\32xl\:pt-0 {
    padding-top: 0px;
  }

  .\32xl\:pt-1 {
    padding-top: 0.25rem;
  }

  .\32xl\:pt-10 {
    padding-top: 2.5rem;
  }

  .\32xl\:pt-11 {
    padding-top: 2.75rem;
  }

  .\32xl\:pt-12 {
    padding-top: 3rem;
  }

  .\32xl\:pt-14 {
    padding-top: 3.5rem;
  }

  .\32xl\:pt-16 {
    padding-top: 4rem;
  }

  .\32xl\:pt-2 {
    padding-top: 0.5rem;
  }

  .\32xl\:pt-20 {
    padding-top: 5rem;
  }

  .\32xl\:pt-24 {
    padding-top: 6rem;
  }

  .\32xl\:pt-28 {
    padding-top: 7rem;
  }

  .\32xl\:pt-3 {
    padding-top: 0.75rem;
  }

  .\32xl\:pt-32 {
    padding-top: 8rem;
  }

  .\32xl\:pt-36 {
    padding-top: 9rem;
  }

  .\32xl\:pt-4 {
    padding-top: 1rem;
  }

  .\32xl\:pt-40 {
    padding-top: 10rem;
  }

  .\32xl\:pt-44 {
    padding-top: 11rem;
  }

  .\32xl\:pt-48 {
    padding-top: 12rem;
  }

  .\32xl\:pt-5 {
    padding-top: 1.25rem;
  }

  .\32xl\:pt-52 {
    padding-top: 13rem;
  }

  .\32xl\:pt-56 {
    padding-top: 14rem;
  }

  .\32xl\:pt-6 {
    padding-top: 1.5rem;
  }

  .\32xl\:pt-60 {
    padding-top: 15rem;
  }

  .\32xl\:pt-64 {
    padding-top: 16rem;
  }

  .\32xl\:pt-7 {
    padding-top: 1.75rem;
  }

  .\32xl\:pt-72 {
    padding-top: 18rem;
  }

  .\32xl\:pt-8 {
    padding-top: 2rem;
  }

  .\32xl\:pt-80 {
    padding-top: 20rem;
  }

  .\32xl\:pt-9 {
    padding-top: 2.25rem;
  }

  .\32xl\:pt-96 {
    padding-top: 24rem;
  }

  .\32xl\:font-arial {
    font-family: Arial, Helvetica, sans-serif;
  }

  .\32xl\:font-assistant {
    font-family: Assistant, sans-serif;
  }

  .\32xl\:font-dancingscript {
    font-family: Dancing Script, cursive;
  }

  .\32xl\:font-firacode {
    font-family: Fira Code, monospace;
  }

  .\32xl\:font-frankRuhlLibre {
    font-family: Frank Ruhl Libre, serif;
  }

  .\32xl\:font-jetbrains {
    font-family: JetBrains Mono, monospace;
  }

  .\32xl\:font-lato {
    font-family: Lato, sans-serif;
  }

  .\32xl\:font-lobster {
    font-family: Lobster, cursive;
  }

  .\32xl\:font-lobsterTwo {
    font-family: Lobster Two, cursive;
  }

  .\32xl\:font-lora {
    font-family: Lora, serif;
  }

  .\32xl\:font-montserrat {
    font-family: Montserrat, sans-serif;
  }

  .\32xl\:font-opensans {
    font-family: Open Sans, sans-serif;
  }

  .\32xl\:font-oswald {
    font-family: Oswald, sans-serif;
  }

  .\32xl\:font-pacifico {
    font-family: Pacifico, cursive;
  }

  .\32xl\:font-poppins {
    font-family: Poppins, sans-serif;
  }

  .\32xl\:font-raleway {
    font-family: Raleway, sans-serif;
  }

  .\32xl\:font-roboto {
    font-family: Roboto, sans-serif;
  }

  .\32xl\:text-lg {
    font-size: 1.125rem;
  }

  .\32xl\:text-amber-100 {
    --tw-text-opacity: 1;
    color: rgb(254 243 199 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-amber-200 {
    --tw-text-opacity: 1;
    color: rgb(253 230 138 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-amber-300 {
    --tw-text-opacity: 1;
    color: rgb(252 211 77 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-amber-400 {
    --tw-text-opacity: 1;
    color: rgb(251 191 36 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-amber-50 {
    --tw-text-opacity: 1;
    color: rgb(255 251 235 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-amber-500 {
    --tw-text-opacity: 1;
    color: rgb(245 158 11 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-amber-600 {
    --tw-text-opacity: 1;
    color: rgb(217 119 6 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-amber-700 {
    --tw-text-opacity: 1;
    color: rgb(180 83 9 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-amber-800 {
    --tw-text-opacity: 1;
    color: rgb(146 64 14 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-amber-900 {
    --tw-text-opacity: 1;
    color: rgb(120 53 15 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-amber-950 {
    --tw-text-opacity: 1;
    color: rgb(69 26 3 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-blue-100 {
    --tw-text-opacity: 1;
    color: rgb(219 234 254 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-blue-200 {
    --tw-text-opacity: 1;
    color: rgb(191 219 254 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-blue-300 {
    --tw-text-opacity: 1;
    color: rgb(147 197 253 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-blue-400 {
    --tw-text-opacity: 1;
    color: rgb(96 165 250 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-blue-50 {
    --tw-text-opacity: 1;
    color: rgb(239 246 255 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-blue-500 {
    --tw-text-opacity: 1;
    color: rgb(59 130 246 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-blue-600 {
    --tw-text-opacity: 1;
    color: rgb(37 99 235 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-blue-700 {
    --tw-text-opacity: 1;
    color: rgb(29 78 216 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-blue-800 {
    --tw-text-opacity: 1;
    color: rgb(30 64 175 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-blue-900 {
    --tw-text-opacity: 1;
    color: rgb(30 58 138 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-blue-950 {
    --tw-text-opacity: 1;
    color: rgb(23 37 84 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-cyan-100 {
    --tw-text-opacity: 1;
    color: rgb(207 250 254 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-cyan-200 {
    --tw-text-opacity: 1;
    color: rgb(165 243 252 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-cyan-300 {
    --tw-text-opacity: 1;
    color: rgb(103 232 249 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-cyan-400 {
    --tw-text-opacity: 1;
    color: rgb(34 211 238 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-cyan-50 {
    --tw-text-opacity: 1;
    color: rgb(236 254 255 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-cyan-500 {
    --tw-text-opacity: 1;
    color: rgb(6 182 212 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-cyan-600 {
    --tw-text-opacity: 1;
    color: rgb(8 145 178 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-cyan-700 {
    --tw-text-opacity: 1;
    color: rgb(14 116 144 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-cyan-800 {
    --tw-text-opacity: 1;
    color: rgb(21 94 117 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-cyan-900 {
    --tw-text-opacity: 1;
    color: rgb(22 78 99 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-cyan-950 {
    --tw-text-opacity: 1;
    color: rgb(8 51 68 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-emerald-100 {
    --tw-text-opacity: 1;
    color: rgb(209 250 229 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-emerald-200 {
    --tw-text-opacity: 1;
    color: rgb(167 243 208 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-emerald-300 {
    --tw-text-opacity: 1;
    color: rgb(110 231 183 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-emerald-400 {
    --tw-text-opacity: 1;
    color: rgb(52 211 153 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-emerald-50 {
    --tw-text-opacity: 1;
    color: rgb(236 253 245 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-emerald-500 {
    --tw-text-opacity: 1;
    color: rgb(16 185 129 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-emerald-600 {
    --tw-text-opacity: 1;
    color: rgb(5 150 105 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-emerald-700 {
    --tw-text-opacity: 1;
    color: rgb(4 120 87 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-emerald-800 {
    --tw-text-opacity: 1;
    color: rgb(6 95 70 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-emerald-900 {
    --tw-text-opacity: 1;
    color: rgb(6 78 59 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-emerald-950 {
    --tw-text-opacity: 1;
    color: rgb(2 44 34 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-fuchsia-100 {
    --tw-text-opacity: 1;
    color: rgb(250 232 255 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-fuchsia-200 {
    --tw-text-opacity: 1;
    color: rgb(245 208 254 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-fuchsia-300 {
    --tw-text-opacity: 1;
    color: rgb(240 171 252 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-fuchsia-400 {
    --tw-text-opacity: 1;
    color: rgb(232 121 249 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-fuchsia-50 {
    --tw-text-opacity: 1;
    color: rgb(253 244 255 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-fuchsia-500 {
    --tw-text-opacity: 1;
    color: rgb(217 70 239 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-fuchsia-600 {
    --tw-text-opacity: 1;
    color: rgb(192 38 211 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-fuchsia-700 {
    --tw-text-opacity: 1;
    color: rgb(162 28 175 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-fuchsia-800 {
    --tw-text-opacity: 1;
    color: rgb(134 25 143 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-fuchsia-900 {
    --tw-text-opacity: 1;
    color: rgb(112 26 117 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-fuchsia-950 {
    --tw-text-opacity: 1;
    color: rgb(74 4 78 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-gray-100 {
    --tw-text-opacity: 1;
    color: rgb(243 244 246 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-gray-200 {
    --tw-text-opacity: 1;
    color: rgb(229 231 235 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-gray-300 {
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-gray-400 {
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-gray-50 {
    --tw-text-opacity: 1;
    color: rgb(249 250 251 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-gray-500 {
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-gray-600 {
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-gray-700 {
    --tw-text-opacity: 1;
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-gray-800 {
    --tw-text-opacity: 1;
    color: rgb(31 41 55 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-gray-900 {
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-gray-950 {
    --tw-text-opacity: 1;
    color: rgb(3 7 18 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-green-100 {
    --tw-text-opacity: 1;
    color: rgb(220 252 231 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-green-200 {
    --tw-text-opacity: 1;
    color: rgb(187 247 208 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-green-300 {
    --tw-text-opacity: 1;
    color: rgb(134 239 172 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-green-400 {
    --tw-text-opacity: 1;
    color: rgb(74 222 128 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-green-50 {
    --tw-text-opacity: 1;
    color: rgb(240 253 244 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-green-500 {
    --tw-text-opacity: 1;
    color: rgb(34 197 94 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-green-600 {
    --tw-text-opacity: 1;
    color: rgb(22 163 74 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-green-700 {
    --tw-text-opacity: 1;
    color: rgb(21 128 61 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-green-800 {
    --tw-text-opacity: 1;
    color: rgb(22 101 52 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-green-900 {
    --tw-text-opacity: 1;
    color: rgb(20 83 45 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-green-950 {
    --tw-text-opacity: 1;
    color: rgb(5 46 22 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-indigo-100 {
    --tw-text-opacity: 1;
    color: rgb(224 231 255 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-indigo-200 {
    --tw-text-opacity: 1;
    color: rgb(199 210 254 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-indigo-300 {
    --tw-text-opacity: 1;
    color: rgb(165 180 252 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-indigo-400 {
    --tw-text-opacity: 1;
    color: rgb(129 140 248 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-indigo-50 {
    --tw-text-opacity: 1;
    color: rgb(238 242 255 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-indigo-500 {
    --tw-text-opacity: 1;
    color: rgb(99 102 241 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-indigo-600 {
    --tw-text-opacity: 1;
    color: rgb(79 70 229 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-indigo-700 {
    --tw-text-opacity: 1;
    color: rgb(67 56 202 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-indigo-800 {
    --tw-text-opacity: 1;
    color: rgb(55 48 163 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-indigo-900 {
    --tw-text-opacity: 1;
    color: rgb(49 46 129 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-indigo-950 {
    --tw-text-opacity: 1;
    color: rgb(30 27 75 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-lime-100 {
    --tw-text-opacity: 1;
    color: rgb(236 252 203 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-lime-200 {
    --tw-text-opacity: 1;
    color: rgb(217 249 157 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-lime-300 {
    --tw-text-opacity: 1;
    color: rgb(190 242 100 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-lime-400 {
    --tw-text-opacity: 1;
    color: rgb(163 230 53 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-lime-50 {
    --tw-text-opacity: 1;
    color: rgb(247 254 231 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-lime-500 {
    --tw-text-opacity: 1;
    color: rgb(132 204 22 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-lime-600 {
    --tw-text-opacity: 1;
    color: rgb(101 163 13 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-lime-700 {
    --tw-text-opacity: 1;
    color: rgb(77 124 15 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-lime-800 {
    --tw-text-opacity: 1;
    color: rgb(63 98 18 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-lime-900 {
    --tw-text-opacity: 1;
    color: rgb(54 83 20 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-lime-950 {
    --tw-text-opacity: 1;
    color: rgb(26 46 5 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-neutral-100 {
    --tw-text-opacity: 1;
    color: rgb(245 245 245 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-neutral-200 {
    --tw-text-opacity: 1;
    color: rgb(229 229 229 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-neutral-300 {
    --tw-text-opacity: 1;
    color: rgb(212 212 212 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-neutral-400 {
    --tw-text-opacity: 1;
    color: rgb(163 163 163 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-neutral-50 {
    --tw-text-opacity: 1;
    color: rgb(250 250 250 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-neutral-500 {
    --tw-text-opacity: 1;
    color: rgb(115 115 115 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-neutral-600 {
    --tw-text-opacity: 1;
    color: rgb(82 82 82 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-neutral-700 {
    --tw-text-opacity: 1;
    color: rgb(64 64 64 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-neutral-800 {
    --tw-text-opacity: 1;
    color: rgb(38 38 38 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-neutral-900 {
    --tw-text-opacity: 1;
    color: rgb(23 23 23 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-neutral-950 {
    --tw-text-opacity: 1;
    color: rgb(10 10 10 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-orange-100 {
    --tw-text-opacity: 1;
    color: rgb(255 237 213 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-orange-200 {
    --tw-text-opacity: 1;
    color: rgb(254 215 170 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-orange-300 {
    --tw-text-opacity: 1;
    color: rgb(253 186 116 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-orange-400 {
    --tw-text-opacity: 1;
    color: rgb(251 146 60 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-orange-50 {
    --tw-text-opacity: 1;
    color: rgb(255 247 237 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-orange-500 {
    --tw-text-opacity: 1;
    color: rgb(249 115 22 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-orange-600 {
    --tw-text-opacity: 1;
    color: rgb(234 88 12 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-orange-700 {
    --tw-text-opacity: 1;
    color: rgb(194 65 12 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-orange-800 {
    --tw-text-opacity: 1;
    color: rgb(154 52 18 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-orange-900 {
    --tw-text-opacity: 1;
    color: rgb(124 45 18 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-orange-950 {
    --tw-text-opacity: 1;
    color: rgb(67 20 7 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-pink-100 {
    --tw-text-opacity: 1;
    color: rgb(252 231 243 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-pink-200 {
    --tw-text-opacity: 1;
    color: rgb(251 207 232 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-pink-300 {
    --tw-text-opacity: 1;
    color: rgb(249 168 212 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-pink-400 {
    --tw-text-opacity: 1;
    color: rgb(244 114 182 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-pink-50 {
    --tw-text-opacity: 1;
    color: rgb(253 242 248 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-pink-500 {
    --tw-text-opacity: 1;
    color: rgb(236 72 153 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-pink-600 {
    --tw-text-opacity: 1;
    color: rgb(219 39 119 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-pink-700 {
    --tw-text-opacity: 1;
    color: rgb(190 24 93 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-pink-800 {
    --tw-text-opacity: 1;
    color: rgb(157 23 77 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-pink-900 {
    --tw-text-opacity: 1;
    color: rgb(131 24 67 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-pink-950 {
    --tw-text-opacity: 1;
    color: rgb(80 7 36 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-purple-100 {
    --tw-text-opacity: 1;
    color: rgb(243 232 255 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-purple-200 {
    --tw-text-opacity: 1;
    color: rgb(233 213 255 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-purple-300 {
    --tw-text-opacity: 1;
    color: rgb(216 180 254 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-purple-400 {
    --tw-text-opacity: 1;
    color: rgb(192 132 252 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-purple-50 {
    --tw-text-opacity: 1;
    color: rgb(250 245 255 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-purple-500 {
    --tw-text-opacity: 1;
    color: rgb(168 85 247 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-purple-600 {
    --tw-text-opacity: 1;
    color: rgb(147 51 234 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-purple-700 {
    --tw-text-opacity: 1;
    color: rgb(126 34 206 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-purple-800 {
    --tw-text-opacity: 1;
    color: rgb(107 33 168 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-purple-900 {
    --tw-text-opacity: 1;
    color: rgb(88 28 135 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-purple-950 {
    --tw-text-opacity: 1;
    color: rgb(59 7 100 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-red-100 {
    --tw-text-opacity: 1;
    color: rgb(254 226 226 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-red-200 {
    --tw-text-opacity: 1;
    color: rgb(254 202 202 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-red-300 {
    --tw-text-opacity: 1;
    color: rgb(252 165 165 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-red-400 {
    --tw-text-opacity: 1;
    color: rgb(248 113 113 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-red-50 {
    --tw-text-opacity: 1;
    color: rgb(254 242 242 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-red-500 {
    --tw-text-opacity: 1;
    color: rgb(239 68 68 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-red-600 {
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-red-700 {
    --tw-text-opacity: 1;
    color: rgb(185 28 28 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-red-800 {
    --tw-text-opacity: 1;
    color: rgb(153 27 27 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-red-900 {
    --tw-text-opacity: 1;
    color: rgb(127 29 29 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-red-950 {
    --tw-text-opacity: 1;
    color: rgb(69 10 10 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-rose-100 {
    --tw-text-opacity: 1;
    color: rgb(255 228 230 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-rose-200 {
    --tw-text-opacity: 1;
    color: rgb(254 205 211 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-rose-300 {
    --tw-text-opacity: 1;
    color: rgb(253 164 175 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-rose-400 {
    --tw-text-opacity: 1;
    color: rgb(251 113 133 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-rose-50 {
    --tw-text-opacity: 1;
    color: rgb(255 241 242 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-rose-500 {
    --tw-text-opacity: 1;
    color: rgb(244 63 94 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-rose-600 {
    --tw-text-opacity: 1;
    color: rgb(225 29 72 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-rose-700 {
    --tw-text-opacity: 1;
    color: rgb(190 18 60 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-rose-800 {
    --tw-text-opacity: 1;
    color: rgb(159 18 57 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-rose-900 {
    --tw-text-opacity: 1;
    color: rgb(136 19 55 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-rose-950 {
    --tw-text-opacity: 1;
    color: rgb(76 5 25 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-sky-100 {
    --tw-text-opacity: 1;
    color: rgb(224 242 254 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-sky-200 {
    --tw-text-opacity: 1;
    color: rgb(186 230 253 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-sky-300 {
    --tw-text-opacity: 1;
    color: rgb(125 211 252 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-sky-400 {
    --tw-text-opacity: 1;
    color: rgb(56 189 248 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-sky-50 {
    --tw-text-opacity: 1;
    color: rgb(240 249 255 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-sky-500 {
    --tw-text-opacity: 1;
    color: rgb(14 165 233 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-sky-600 {
    --tw-text-opacity: 1;
    color: rgb(2 132 199 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-sky-700 {
    --tw-text-opacity: 1;
    color: rgb(3 105 161 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-sky-800 {
    --tw-text-opacity: 1;
    color: rgb(7 89 133 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-sky-900 {
    --tw-text-opacity: 1;
    color: rgb(12 74 110 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-sky-950 {
    --tw-text-opacity: 1;
    color: rgb(8 47 73 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-slate-100 {
    --tw-text-opacity: 1;
    color: rgb(241 245 249 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-slate-200 {
    --tw-text-opacity: 1;
    color: rgb(226 232 240 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-slate-300 {
    --tw-text-opacity: 1;
    color: rgb(203 213 225 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-slate-400 {
    --tw-text-opacity: 1;
    color: rgb(148 163 184 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-slate-50 {
    --tw-text-opacity: 1;
    color: rgb(248 250 252 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-slate-500 {
    --tw-text-opacity: 1;
    color: rgb(100 116 139 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-slate-600 {
    --tw-text-opacity: 1;
    color: rgb(71 85 105 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-slate-700 {
    --tw-text-opacity: 1;
    color: rgb(51 65 85 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-slate-800 {
    --tw-text-opacity: 1;
    color: rgb(30 41 59 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-slate-900 {
    --tw-text-opacity: 1;
    color: rgb(15 23 42 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-slate-950 {
    --tw-text-opacity: 1;
    color: rgb(2 6 23 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-stone-100 {
    --tw-text-opacity: 1;
    color: rgb(245 245 244 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-stone-200 {
    --tw-text-opacity: 1;
    color: rgb(231 229 228 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-stone-300 {
    --tw-text-opacity: 1;
    color: rgb(214 211 209 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-stone-400 {
    --tw-text-opacity: 1;
    color: rgb(168 162 158 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-stone-50 {
    --tw-text-opacity: 1;
    color: rgb(250 250 249 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-stone-500 {
    --tw-text-opacity: 1;
    color: rgb(120 113 108 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-stone-600 {
    --tw-text-opacity: 1;
    color: rgb(87 83 78 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-stone-700 {
    --tw-text-opacity: 1;
    color: rgb(68 64 60 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-stone-800 {
    --tw-text-opacity: 1;
    color: rgb(41 37 36 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-stone-900 {
    --tw-text-opacity: 1;
    color: rgb(28 25 23 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-stone-950 {
    --tw-text-opacity: 1;
    color: rgb(12 10 9 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-teal-100 {
    --tw-text-opacity: 1;
    color: rgb(204 251 241 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-teal-200 {
    --tw-text-opacity: 1;
    color: rgb(153 246 228 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-teal-300 {
    --tw-text-opacity: 1;
    color: rgb(94 234 212 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-teal-400 {
    --tw-text-opacity: 1;
    color: rgb(45 212 191 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-teal-50 {
    --tw-text-opacity: 1;
    color: rgb(240 253 250 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-teal-500 {
    --tw-text-opacity: 1;
    color: rgb(20 184 166 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-teal-600 {
    --tw-text-opacity: 1;
    color: rgb(13 148 136 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-teal-700 {
    --tw-text-opacity: 1;
    color: rgb(15 118 110 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-teal-800 {
    --tw-text-opacity: 1;
    color: rgb(17 94 89 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-teal-900 {
    --tw-text-opacity: 1;
    color: rgb(19 78 74 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-teal-950 {
    --tw-text-opacity: 1;
    color: rgb(4 47 46 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-violet-100 {
    --tw-text-opacity: 1;
    color: rgb(237 233 254 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-violet-200 {
    --tw-text-opacity: 1;
    color: rgb(221 214 254 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-violet-300 {
    --tw-text-opacity: 1;
    color: rgb(196 181 253 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-violet-400 {
    --tw-text-opacity: 1;
    color: rgb(167 139 250 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-violet-50 {
    --tw-text-opacity: 1;
    color: rgb(245 243 255 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-violet-500 {
    --tw-text-opacity: 1;
    color: rgb(139 92 246 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-violet-600 {
    --tw-text-opacity: 1;
    color: rgb(124 58 237 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-violet-700 {
    --tw-text-opacity: 1;
    color: rgb(109 40 217 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-violet-800 {
    --tw-text-opacity: 1;
    color: rgb(91 33 182 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-violet-900 {
    --tw-text-opacity: 1;
    color: rgb(76 29 149 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-violet-950 {
    --tw-text-opacity: 1;
    color: rgb(46 16 101 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-yellow-100 {
    --tw-text-opacity: 1;
    color: rgb(254 249 195 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-yellow-200 {
    --tw-text-opacity: 1;
    color: rgb(254 240 138 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-yellow-300 {
    --tw-text-opacity: 1;
    color: rgb(253 224 71 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-yellow-400 {
    --tw-text-opacity: 1;
    color: rgb(250 204 21 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-yellow-50 {
    --tw-text-opacity: 1;
    color: rgb(254 252 232 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-yellow-500 {
    --tw-text-opacity: 1;
    color: rgb(234 179 8 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-yellow-600 {
    --tw-text-opacity: 1;
    color: rgb(202 138 4 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-yellow-700 {
    --tw-text-opacity: 1;
    color: rgb(161 98 7 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-yellow-800 {
    --tw-text-opacity: 1;
    color: rgb(133 77 14 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-yellow-900 {
    --tw-text-opacity: 1;
    color: rgb(113 63 18 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-yellow-950 {
    --tw-text-opacity: 1;
    color: rgb(66 32 6 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-zinc-100 {
    --tw-text-opacity: 1;
    color: rgb(244 244 245 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-zinc-200 {
    --tw-text-opacity: 1;
    color: rgb(228 228 231 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-zinc-300 {
    --tw-text-opacity: 1;
    color: rgb(212 212 216 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-zinc-400 {
    --tw-text-opacity: 1;
    color: rgb(161 161 170 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-zinc-50 {
    --tw-text-opacity: 1;
    color: rgb(250 250 250 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-zinc-500 {
    --tw-text-opacity: 1;
    color: rgb(113 113 122 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-zinc-600 {
    --tw-text-opacity: 1;
    color: rgb(82 82 91 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-zinc-700 {
    --tw-text-opacity: 1;
    color: rgb(63 63 70 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-zinc-800 {
    --tw-text-opacity: 1;
    color: rgb(39 39 42 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-zinc-900 {
    --tw-text-opacity: 1;
    color: rgb(24 24 27 / var(--tw-text-opacity, 1));
  }

  .\32xl\:text-zinc-950 {
    --tw-text-opacity: 1;
    color: rgb(9 9 11 / var(--tw-text-opacity, 1));
  }

  .\32xl\:shadow-lg {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .\32xl\:shadow-md {
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .\32xl\:shadow-sm {
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .\32xl\:shadow-amber-100 {
    --tw-shadow-color: #fef3c7;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-100\/10 {
    --tw-shadow-color: rgb(254 243 199 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-100\/20 {
    --tw-shadow-color: rgb(254 243 199 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-100\/30 {
    --tw-shadow-color: rgb(254 243 199 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-100\/40 {
    --tw-shadow-color: rgb(254 243 199 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-100\/5 {
    --tw-shadow-color: rgb(254 243 199 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-100\/50 {
    --tw-shadow-color: rgb(254 243 199 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-100\/60 {
    --tw-shadow-color: rgb(254 243 199 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-100\/70 {
    --tw-shadow-color: rgb(254 243 199 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-100\/80 {
    --tw-shadow-color: rgb(254 243 199 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-100\/90 {
    --tw-shadow-color: rgb(254 243 199 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-200 {
    --tw-shadow-color: #fde68a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-200\/10 {
    --tw-shadow-color: rgb(253 230 138 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-200\/20 {
    --tw-shadow-color: rgb(253 230 138 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-200\/30 {
    --tw-shadow-color: rgb(253 230 138 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-200\/40 {
    --tw-shadow-color: rgb(253 230 138 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-200\/5 {
    --tw-shadow-color: rgb(253 230 138 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-200\/50 {
    --tw-shadow-color: rgb(253 230 138 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-200\/60 {
    --tw-shadow-color: rgb(253 230 138 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-200\/70 {
    --tw-shadow-color: rgb(253 230 138 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-200\/80 {
    --tw-shadow-color: rgb(253 230 138 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-200\/90 {
    --tw-shadow-color: rgb(253 230 138 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-300 {
    --tw-shadow-color: #fcd34d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-300\/10 {
    --tw-shadow-color: rgb(252 211 77 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-300\/20 {
    --tw-shadow-color: rgb(252 211 77 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-300\/30 {
    --tw-shadow-color: rgb(252 211 77 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-300\/40 {
    --tw-shadow-color: rgb(252 211 77 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-300\/5 {
    --tw-shadow-color: rgb(252 211 77 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-300\/50 {
    --tw-shadow-color: rgb(252 211 77 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-300\/60 {
    --tw-shadow-color: rgb(252 211 77 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-300\/70 {
    --tw-shadow-color: rgb(252 211 77 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-300\/80 {
    --tw-shadow-color: rgb(252 211 77 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-300\/90 {
    --tw-shadow-color: rgb(252 211 77 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-400 {
    --tw-shadow-color: #fbbf24;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-400\/10 {
    --tw-shadow-color: rgb(251 191 36 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-400\/20 {
    --tw-shadow-color: rgb(251 191 36 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-400\/30 {
    --tw-shadow-color: rgb(251 191 36 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-400\/40 {
    --tw-shadow-color: rgb(251 191 36 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-400\/5 {
    --tw-shadow-color: rgb(251 191 36 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-400\/50 {
    --tw-shadow-color: rgb(251 191 36 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-400\/60 {
    --tw-shadow-color: rgb(251 191 36 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-400\/70 {
    --tw-shadow-color: rgb(251 191 36 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-400\/80 {
    --tw-shadow-color: rgb(251 191 36 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-400\/90 {
    --tw-shadow-color: rgb(251 191 36 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-50 {
    --tw-shadow-color: #fffbeb;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-50\/10 {
    --tw-shadow-color: rgb(255 251 235 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-50\/20 {
    --tw-shadow-color: rgb(255 251 235 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-50\/30 {
    --tw-shadow-color: rgb(255 251 235 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-50\/40 {
    --tw-shadow-color: rgb(255 251 235 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-50\/5 {
    --tw-shadow-color: rgb(255 251 235 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-50\/50 {
    --tw-shadow-color: rgb(255 251 235 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-50\/60 {
    --tw-shadow-color: rgb(255 251 235 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-50\/70 {
    --tw-shadow-color: rgb(255 251 235 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-50\/80 {
    --tw-shadow-color: rgb(255 251 235 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-50\/90 {
    --tw-shadow-color: rgb(255 251 235 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-500 {
    --tw-shadow-color: #f59e0b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-500\/10 {
    --tw-shadow-color: rgb(245 158 11 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-500\/20 {
    --tw-shadow-color: rgb(245 158 11 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-500\/30 {
    --tw-shadow-color: rgb(245 158 11 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-500\/40 {
    --tw-shadow-color: rgb(245 158 11 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-500\/5 {
    --tw-shadow-color: rgb(245 158 11 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-500\/50 {
    --tw-shadow-color: rgb(245 158 11 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-500\/60 {
    --tw-shadow-color: rgb(245 158 11 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-500\/70 {
    --tw-shadow-color: rgb(245 158 11 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-500\/80 {
    --tw-shadow-color: rgb(245 158 11 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-500\/90 {
    --tw-shadow-color: rgb(245 158 11 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-600 {
    --tw-shadow-color: #d97706;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-600\/10 {
    --tw-shadow-color: rgb(217 119 6 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-600\/20 {
    --tw-shadow-color: rgb(217 119 6 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-600\/30 {
    --tw-shadow-color: rgb(217 119 6 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-600\/40 {
    --tw-shadow-color: rgb(217 119 6 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-600\/5 {
    --tw-shadow-color: rgb(217 119 6 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-600\/50 {
    --tw-shadow-color: rgb(217 119 6 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-600\/60 {
    --tw-shadow-color: rgb(217 119 6 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-600\/70 {
    --tw-shadow-color: rgb(217 119 6 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-600\/80 {
    --tw-shadow-color: rgb(217 119 6 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-600\/90 {
    --tw-shadow-color: rgb(217 119 6 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-700 {
    --tw-shadow-color: #b45309;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-700\/10 {
    --tw-shadow-color: rgb(180 83 9 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-700\/20 {
    --tw-shadow-color: rgb(180 83 9 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-700\/30 {
    --tw-shadow-color: rgb(180 83 9 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-700\/40 {
    --tw-shadow-color: rgb(180 83 9 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-700\/5 {
    --tw-shadow-color: rgb(180 83 9 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-700\/50 {
    --tw-shadow-color: rgb(180 83 9 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-700\/60 {
    --tw-shadow-color: rgb(180 83 9 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-700\/70 {
    --tw-shadow-color: rgb(180 83 9 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-700\/80 {
    --tw-shadow-color: rgb(180 83 9 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-700\/90 {
    --tw-shadow-color: rgb(180 83 9 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-800 {
    --tw-shadow-color: #92400e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-800\/10 {
    --tw-shadow-color: rgb(146 64 14 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-800\/20 {
    --tw-shadow-color: rgb(146 64 14 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-800\/30 {
    --tw-shadow-color: rgb(146 64 14 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-800\/40 {
    --tw-shadow-color: rgb(146 64 14 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-800\/5 {
    --tw-shadow-color: rgb(146 64 14 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-800\/50 {
    --tw-shadow-color: rgb(146 64 14 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-800\/60 {
    --tw-shadow-color: rgb(146 64 14 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-800\/70 {
    --tw-shadow-color: rgb(146 64 14 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-800\/80 {
    --tw-shadow-color: rgb(146 64 14 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-800\/90 {
    --tw-shadow-color: rgb(146 64 14 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-900 {
    --tw-shadow-color: #78350f;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-900\/10 {
    --tw-shadow-color: rgb(120 53 15 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-900\/20 {
    --tw-shadow-color: rgb(120 53 15 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-900\/30 {
    --tw-shadow-color: rgb(120 53 15 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-900\/40 {
    --tw-shadow-color: rgb(120 53 15 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-900\/5 {
    --tw-shadow-color: rgb(120 53 15 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-900\/50 {
    --tw-shadow-color: rgb(120 53 15 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-900\/60 {
    --tw-shadow-color: rgb(120 53 15 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-900\/70 {
    --tw-shadow-color: rgb(120 53 15 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-900\/80 {
    --tw-shadow-color: rgb(120 53 15 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-900\/90 {
    --tw-shadow-color: rgb(120 53 15 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-950 {
    --tw-shadow-color: #451a03;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-950\/10 {
    --tw-shadow-color: rgb(69 26 3 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-950\/20 {
    --tw-shadow-color: rgb(69 26 3 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-950\/30 {
    --tw-shadow-color: rgb(69 26 3 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-950\/40 {
    --tw-shadow-color: rgb(69 26 3 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-950\/5 {
    --tw-shadow-color: rgb(69 26 3 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-950\/50 {
    --tw-shadow-color: rgb(69 26 3 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-950\/60 {
    --tw-shadow-color: rgb(69 26 3 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-950\/70 {
    --tw-shadow-color: rgb(69 26 3 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-950\/80 {
    --tw-shadow-color: rgb(69 26 3 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-amber-950\/90 {
    --tw-shadow-color: rgb(69 26 3 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-100 {
    --tw-shadow-color: #dbeafe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-100\/10 {
    --tw-shadow-color: rgb(219 234 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-100\/20 {
    --tw-shadow-color: rgb(219 234 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-100\/30 {
    --tw-shadow-color: rgb(219 234 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-100\/40 {
    --tw-shadow-color: rgb(219 234 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-100\/5 {
    --tw-shadow-color: rgb(219 234 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-100\/50 {
    --tw-shadow-color: rgb(219 234 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-100\/60 {
    --tw-shadow-color: rgb(219 234 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-100\/70 {
    --tw-shadow-color: rgb(219 234 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-100\/80 {
    --tw-shadow-color: rgb(219 234 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-100\/90 {
    --tw-shadow-color: rgb(219 234 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-200 {
    --tw-shadow-color: #bfdbfe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-200\/10 {
    --tw-shadow-color: rgb(191 219 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-200\/20 {
    --tw-shadow-color: rgb(191 219 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-200\/30 {
    --tw-shadow-color: rgb(191 219 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-200\/40 {
    --tw-shadow-color: rgb(191 219 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-200\/5 {
    --tw-shadow-color: rgb(191 219 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-200\/50 {
    --tw-shadow-color: rgb(191 219 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-200\/60 {
    --tw-shadow-color: rgb(191 219 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-200\/70 {
    --tw-shadow-color: rgb(191 219 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-200\/80 {
    --tw-shadow-color: rgb(191 219 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-200\/90 {
    --tw-shadow-color: rgb(191 219 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-300 {
    --tw-shadow-color: #93c5fd;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-300\/10 {
    --tw-shadow-color: rgb(147 197 253 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-300\/20 {
    --tw-shadow-color: rgb(147 197 253 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-300\/30 {
    --tw-shadow-color: rgb(147 197 253 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-300\/40 {
    --tw-shadow-color: rgb(147 197 253 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-300\/5 {
    --tw-shadow-color: rgb(147 197 253 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-300\/50 {
    --tw-shadow-color: rgb(147 197 253 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-300\/60 {
    --tw-shadow-color: rgb(147 197 253 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-300\/70 {
    --tw-shadow-color: rgb(147 197 253 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-300\/80 {
    --tw-shadow-color: rgb(147 197 253 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-300\/90 {
    --tw-shadow-color: rgb(147 197 253 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-400 {
    --tw-shadow-color: #60a5fa;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-400\/10 {
    --tw-shadow-color: rgb(96 165 250 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-400\/20 {
    --tw-shadow-color: rgb(96 165 250 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-400\/30 {
    --tw-shadow-color: rgb(96 165 250 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-400\/40 {
    --tw-shadow-color: rgb(96 165 250 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-400\/5 {
    --tw-shadow-color: rgb(96 165 250 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-400\/50 {
    --tw-shadow-color: rgb(96 165 250 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-400\/60 {
    --tw-shadow-color: rgb(96 165 250 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-400\/70 {
    --tw-shadow-color: rgb(96 165 250 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-400\/80 {
    --tw-shadow-color: rgb(96 165 250 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-400\/90 {
    --tw-shadow-color: rgb(96 165 250 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-50 {
    --tw-shadow-color: #eff6ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-50\/10 {
    --tw-shadow-color: rgb(239 246 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-50\/20 {
    --tw-shadow-color: rgb(239 246 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-50\/30 {
    --tw-shadow-color: rgb(239 246 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-50\/40 {
    --tw-shadow-color: rgb(239 246 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-50\/5 {
    --tw-shadow-color: rgb(239 246 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-50\/50 {
    --tw-shadow-color: rgb(239 246 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-50\/60 {
    --tw-shadow-color: rgb(239 246 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-50\/70 {
    --tw-shadow-color: rgb(239 246 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-50\/80 {
    --tw-shadow-color: rgb(239 246 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-50\/90 {
    --tw-shadow-color: rgb(239 246 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-500 {
    --tw-shadow-color: #3b82f6;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-500\/10 {
    --tw-shadow-color: rgb(59 130 246 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-500\/20 {
    --tw-shadow-color: rgb(59 130 246 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-500\/30 {
    --tw-shadow-color: rgb(59 130 246 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-500\/40 {
    --tw-shadow-color: rgb(59 130 246 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-500\/5 {
    --tw-shadow-color: rgb(59 130 246 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-500\/50 {
    --tw-shadow-color: rgb(59 130 246 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-500\/60 {
    --tw-shadow-color: rgb(59 130 246 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-500\/70 {
    --tw-shadow-color: rgb(59 130 246 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-500\/80 {
    --tw-shadow-color: rgb(59 130 246 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-500\/90 {
    --tw-shadow-color: rgb(59 130 246 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-600 {
    --tw-shadow-color: #2563eb;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-600\/10 {
    --tw-shadow-color: rgb(37 99 235 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-600\/20 {
    --tw-shadow-color: rgb(37 99 235 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-600\/30 {
    --tw-shadow-color: rgb(37 99 235 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-600\/40 {
    --tw-shadow-color: rgb(37 99 235 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-600\/5 {
    --tw-shadow-color: rgb(37 99 235 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-600\/50 {
    --tw-shadow-color: rgb(37 99 235 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-600\/60 {
    --tw-shadow-color: rgb(37 99 235 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-600\/70 {
    --tw-shadow-color: rgb(37 99 235 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-600\/80 {
    --tw-shadow-color: rgb(37 99 235 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-600\/90 {
    --tw-shadow-color: rgb(37 99 235 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-700 {
    --tw-shadow-color: #1d4ed8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-700\/10 {
    --tw-shadow-color: rgb(29 78 216 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-700\/20 {
    --tw-shadow-color: rgb(29 78 216 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-700\/30 {
    --tw-shadow-color: rgb(29 78 216 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-700\/40 {
    --tw-shadow-color: rgb(29 78 216 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-700\/5 {
    --tw-shadow-color: rgb(29 78 216 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-700\/50 {
    --tw-shadow-color: rgb(29 78 216 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-700\/60 {
    --tw-shadow-color: rgb(29 78 216 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-700\/70 {
    --tw-shadow-color: rgb(29 78 216 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-700\/80 {
    --tw-shadow-color: rgb(29 78 216 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-700\/90 {
    --tw-shadow-color: rgb(29 78 216 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-800 {
    --tw-shadow-color: #1e40af;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-800\/10 {
    --tw-shadow-color: rgb(30 64 175 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-800\/20 {
    --tw-shadow-color: rgb(30 64 175 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-800\/30 {
    --tw-shadow-color: rgb(30 64 175 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-800\/40 {
    --tw-shadow-color: rgb(30 64 175 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-800\/5 {
    --tw-shadow-color: rgb(30 64 175 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-800\/50 {
    --tw-shadow-color: rgb(30 64 175 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-800\/60 {
    --tw-shadow-color: rgb(30 64 175 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-800\/70 {
    --tw-shadow-color: rgb(30 64 175 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-800\/80 {
    --tw-shadow-color: rgb(30 64 175 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-800\/90 {
    --tw-shadow-color: rgb(30 64 175 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-900 {
    --tw-shadow-color: #1e3a8a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-900\/10 {
    --tw-shadow-color: rgb(30 58 138 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-900\/20 {
    --tw-shadow-color: rgb(30 58 138 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-900\/30 {
    --tw-shadow-color: rgb(30 58 138 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-900\/40 {
    --tw-shadow-color: rgb(30 58 138 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-900\/5 {
    --tw-shadow-color: rgb(30 58 138 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-900\/50 {
    --tw-shadow-color: rgb(30 58 138 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-900\/60 {
    --tw-shadow-color: rgb(30 58 138 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-900\/70 {
    --tw-shadow-color: rgb(30 58 138 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-900\/80 {
    --tw-shadow-color: rgb(30 58 138 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-900\/90 {
    --tw-shadow-color: rgb(30 58 138 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-950 {
    --tw-shadow-color: #172554;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-950\/10 {
    --tw-shadow-color: rgb(23 37 84 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-950\/20 {
    --tw-shadow-color: rgb(23 37 84 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-950\/30 {
    --tw-shadow-color: rgb(23 37 84 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-950\/40 {
    --tw-shadow-color: rgb(23 37 84 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-950\/5 {
    --tw-shadow-color: rgb(23 37 84 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-950\/50 {
    --tw-shadow-color: rgb(23 37 84 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-950\/60 {
    --tw-shadow-color: rgb(23 37 84 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-950\/70 {
    --tw-shadow-color: rgb(23 37 84 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-950\/80 {
    --tw-shadow-color: rgb(23 37 84 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-blue-950\/90 {
    --tw-shadow-color: rgb(23 37 84 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-100 {
    --tw-shadow-color: #cffafe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-100\/10 {
    --tw-shadow-color: rgb(207 250 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-100\/20 {
    --tw-shadow-color: rgb(207 250 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-100\/30 {
    --tw-shadow-color: rgb(207 250 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-100\/40 {
    --tw-shadow-color: rgb(207 250 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-100\/5 {
    --tw-shadow-color: rgb(207 250 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-100\/50 {
    --tw-shadow-color: rgb(207 250 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-100\/60 {
    --tw-shadow-color: rgb(207 250 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-100\/70 {
    --tw-shadow-color: rgb(207 250 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-100\/80 {
    --tw-shadow-color: rgb(207 250 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-100\/90 {
    --tw-shadow-color: rgb(207 250 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-200 {
    --tw-shadow-color: #a5f3fc;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-200\/10 {
    --tw-shadow-color: rgb(165 243 252 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-200\/20 {
    --tw-shadow-color: rgb(165 243 252 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-200\/30 {
    --tw-shadow-color: rgb(165 243 252 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-200\/40 {
    --tw-shadow-color: rgb(165 243 252 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-200\/5 {
    --tw-shadow-color: rgb(165 243 252 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-200\/50 {
    --tw-shadow-color: rgb(165 243 252 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-200\/60 {
    --tw-shadow-color: rgb(165 243 252 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-200\/70 {
    --tw-shadow-color: rgb(165 243 252 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-200\/80 {
    --tw-shadow-color: rgb(165 243 252 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-200\/90 {
    --tw-shadow-color: rgb(165 243 252 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-300 {
    --tw-shadow-color: #67e8f9;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-300\/10 {
    --tw-shadow-color: rgb(103 232 249 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-300\/20 {
    --tw-shadow-color: rgb(103 232 249 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-300\/30 {
    --tw-shadow-color: rgb(103 232 249 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-300\/40 {
    --tw-shadow-color: rgb(103 232 249 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-300\/5 {
    --tw-shadow-color: rgb(103 232 249 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-300\/50 {
    --tw-shadow-color: rgb(103 232 249 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-300\/60 {
    --tw-shadow-color: rgb(103 232 249 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-300\/70 {
    --tw-shadow-color: rgb(103 232 249 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-300\/80 {
    --tw-shadow-color: rgb(103 232 249 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-300\/90 {
    --tw-shadow-color: rgb(103 232 249 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-400 {
    --tw-shadow-color: #22d3ee;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-400\/10 {
    --tw-shadow-color: rgb(34 211 238 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-400\/20 {
    --tw-shadow-color: rgb(34 211 238 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-400\/30 {
    --tw-shadow-color: rgb(34 211 238 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-400\/40 {
    --tw-shadow-color: rgb(34 211 238 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-400\/5 {
    --tw-shadow-color: rgb(34 211 238 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-400\/50 {
    --tw-shadow-color: rgb(34 211 238 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-400\/60 {
    --tw-shadow-color: rgb(34 211 238 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-400\/70 {
    --tw-shadow-color: rgb(34 211 238 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-400\/80 {
    --tw-shadow-color: rgb(34 211 238 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-400\/90 {
    --tw-shadow-color: rgb(34 211 238 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-50 {
    --tw-shadow-color: #ecfeff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-50\/10 {
    --tw-shadow-color: rgb(236 254 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-50\/20 {
    --tw-shadow-color: rgb(236 254 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-50\/30 {
    --tw-shadow-color: rgb(236 254 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-50\/40 {
    --tw-shadow-color: rgb(236 254 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-50\/5 {
    --tw-shadow-color: rgb(236 254 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-50\/50 {
    --tw-shadow-color: rgb(236 254 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-50\/60 {
    --tw-shadow-color: rgb(236 254 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-50\/70 {
    --tw-shadow-color: rgb(236 254 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-50\/80 {
    --tw-shadow-color: rgb(236 254 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-50\/90 {
    --tw-shadow-color: rgb(236 254 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-500 {
    --tw-shadow-color: #06b6d4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-500\/10 {
    --tw-shadow-color: rgb(6 182 212 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-500\/20 {
    --tw-shadow-color: rgb(6 182 212 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-500\/30 {
    --tw-shadow-color: rgb(6 182 212 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-500\/40 {
    --tw-shadow-color: rgb(6 182 212 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-500\/5 {
    --tw-shadow-color: rgb(6 182 212 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-500\/50 {
    --tw-shadow-color: rgb(6 182 212 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-500\/60 {
    --tw-shadow-color: rgb(6 182 212 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-500\/70 {
    --tw-shadow-color: rgb(6 182 212 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-500\/80 {
    --tw-shadow-color: rgb(6 182 212 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-500\/90 {
    --tw-shadow-color: rgb(6 182 212 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-600 {
    --tw-shadow-color: #0891b2;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-600\/10 {
    --tw-shadow-color: rgb(8 145 178 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-600\/20 {
    --tw-shadow-color: rgb(8 145 178 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-600\/30 {
    --tw-shadow-color: rgb(8 145 178 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-600\/40 {
    --tw-shadow-color: rgb(8 145 178 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-600\/5 {
    --tw-shadow-color: rgb(8 145 178 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-600\/50 {
    --tw-shadow-color: rgb(8 145 178 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-600\/60 {
    --tw-shadow-color: rgb(8 145 178 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-600\/70 {
    --tw-shadow-color: rgb(8 145 178 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-600\/80 {
    --tw-shadow-color: rgb(8 145 178 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-600\/90 {
    --tw-shadow-color: rgb(8 145 178 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-700 {
    --tw-shadow-color: #0e7490;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-700\/10 {
    --tw-shadow-color: rgb(14 116 144 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-700\/20 {
    --tw-shadow-color: rgb(14 116 144 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-700\/30 {
    --tw-shadow-color: rgb(14 116 144 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-700\/40 {
    --tw-shadow-color: rgb(14 116 144 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-700\/5 {
    --tw-shadow-color: rgb(14 116 144 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-700\/50 {
    --tw-shadow-color: rgb(14 116 144 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-700\/60 {
    --tw-shadow-color: rgb(14 116 144 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-700\/70 {
    --tw-shadow-color: rgb(14 116 144 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-700\/80 {
    --tw-shadow-color: rgb(14 116 144 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-700\/90 {
    --tw-shadow-color: rgb(14 116 144 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-800 {
    --tw-shadow-color: #155e75;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-800\/10 {
    --tw-shadow-color: rgb(21 94 117 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-800\/20 {
    --tw-shadow-color: rgb(21 94 117 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-800\/30 {
    --tw-shadow-color: rgb(21 94 117 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-800\/40 {
    --tw-shadow-color: rgb(21 94 117 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-800\/5 {
    --tw-shadow-color: rgb(21 94 117 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-800\/50 {
    --tw-shadow-color: rgb(21 94 117 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-800\/60 {
    --tw-shadow-color: rgb(21 94 117 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-800\/70 {
    --tw-shadow-color: rgb(21 94 117 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-800\/80 {
    --tw-shadow-color: rgb(21 94 117 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-800\/90 {
    --tw-shadow-color: rgb(21 94 117 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-900 {
    --tw-shadow-color: #164e63;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-900\/10 {
    --tw-shadow-color: rgb(22 78 99 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-900\/20 {
    --tw-shadow-color: rgb(22 78 99 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-900\/30 {
    --tw-shadow-color: rgb(22 78 99 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-900\/40 {
    --tw-shadow-color: rgb(22 78 99 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-900\/5 {
    --tw-shadow-color: rgb(22 78 99 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-900\/50 {
    --tw-shadow-color: rgb(22 78 99 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-900\/60 {
    --tw-shadow-color: rgb(22 78 99 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-900\/70 {
    --tw-shadow-color: rgb(22 78 99 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-900\/80 {
    --tw-shadow-color: rgb(22 78 99 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-900\/90 {
    --tw-shadow-color: rgb(22 78 99 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-950 {
    --tw-shadow-color: #083344;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-950\/10 {
    --tw-shadow-color: rgb(8 51 68 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-950\/20 {
    --tw-shadow-color: rgb(8 51 68 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-950\/30 {
    --tw-shadow-color: rgb(8 51 68 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-950\/40 {
    --tw-shadow-color: rgb(8 51 68 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-950\/5 {
    --tw-shadow-color: rgb(8 51 68 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-950\/50 {
    --tw-shadow-color: rgb(8 51 68 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-950\/60 {
    --tw-shadow-color: rgb(8 51 68 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-950\/70 {
    --tw-shadow-color: rgb(8 51 68 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-950\/80 {
    --tw-shadow-color: rgb(8 51 68 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-cyan-950\/90 {
    --tw-shadow-color: rgb(8 51 68 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-100 {
    --tw-shadow-color: #d1fae5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-100\/10 {
    --tw-shadow-color: rgb(209 250 229 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-100\/20 {
    --tw-shadow-color: rgb(209 250 229 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-100\/30 {
    --tw-shadow-color: rgb(209 250 229 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-100\/40 {
    --tw-shadow-color: rgb(209 250 229 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-100\/5 {
    --tw-shadow-color: rgb(209 250 229 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-100\/50 {
    --tw-shadow-color: rgb(209 250 229 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-100\/60 {
    --tw-shadow-color: rgb(209 250 229 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-100\/70 {
    --tw-shadow-color: rgb(209 250 229 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-100\/80 {
    --tw-shadow-color: rgb(209 250 229 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-100\/90 {
    --tw-shadow-color: rgb(209 250 229 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-200 {
    --tw-shadow-color: #a7f3d0;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-200\/10 {
    --tw-shadow-color: rgb(167 243 208 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-200\/20 {
    --tw-shadow-color: rgb(167 243 208 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-200\/30 {
    --tw-shadow-color: rgb(167 243 208 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-200\/40 {
    --tw-shadow-color: rgb(167 243 208 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-200\/5 {
    --tw-shadow-color: rgb(167 243 208 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-200\/50 {
    --tw-shadow-color: rgb(167 243 208 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-200\/60 {
    --tw-shadow-color: rgb(167 243 208 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-200\/70 {
    --tw-shadow-color: rgb(167 243 208 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-200\/80 {
    --tw-shadow-color: rgb(167 243 208 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-200\/90 {
    --tw-shadow-color: rgb(167 243 208 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-300 {
    --tw-shadow-color: #6ee7b7;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-300\/10 {
    --tw-shadow-color: rgb(110 231 183 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-300\/20 {
    --tw-shadow-color: rgb(110 231 183 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-300\/30 {
    --tw-shadow-color: rgb(110 231 183 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-300\/40 {
    --tw-shadow-color: rgb(110 231 183 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-300\/5 {
    --tw-shadow-color: rgb(110 231 183 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-300\/50 {
    --tw-shadow-color: rgb(110 231 183 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-300\/60 {
    --tw-shadow-color: rgb(110 231 183 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-300\/70 {
    --tw-shadow-color: rgb(110 231 183 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-300\/80 {
    --tw-shadow-color: rgb(110 231 183 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-300\/90 {
    --tw-shadow-color: rgb(110 231 183 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-400 {
    --tw-shadow-color: #34d399;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-400\/10 {
    --tw-shadow-color: rgb(52 211 153 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-400\/20 {
    --tw-shadow-color: rgb(52 211 153 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-400\/30 {
    --tw-shadow-color: rgb(52 211 153 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-400\/40 {
    --tw-shadow-color: rgb(52 211 153 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-400\/5 {
    --tw-shadow-color: rgb(52 211 153 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-400\/50 {
    --tw-shadow-color: rgb(52 211 153 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-400\/60 {
    --tw-shadow-color: rgb(52 211 153 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-400\/70 {
    --tw-shadow-color: rgb(52 211 153 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-400\/80 {
    --tw-shadow-color: rgb(52 211 153 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-400\/90 {
    --tw-shadow-color: rgb(52 211 153 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-50 {
    --tw-shadow-color: #ecfdf5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-50\/10 {
    --tw-shadow-color: rgb(236 253 245 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-50\/20 {
    --tw-shadow-color: rgb(236 253 245 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-50\/30 {
    --tw-shadow-color: rgb(236 253 245 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-50\/40 {
    --tw-shadow-color: rgb(236 253 245 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-50\/5 {
    --tw-shadow-color: rgb(236 253 245 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-50\/50 {
    --tw-shadow-color: rgb(236 253 245 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-50\/60 {
    --tw-shadow-color: rgb(236 253 245 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-50\/70 {
    --tw-shadow-color: rgb(236 253 245 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-50\/80 {
    --tw-shadow-color: rgb(236 253 245 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-50\/90 {
    --tw-shadow-color: rgb(236 253 245 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-500 {
    --tw-shadow-color: #10b981;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-500\/10 {
    --tw-shadow-color: rgb(16 185 129 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-500\/20 {
    --tw-shadow-color: rgb(16 185 129 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-500\/30 {
    --tw-shadow-color: rgb(16 185 129 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-500\/40 {
    --tw-shadow-color: rgb(16 185 129 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-500\/5 {
    --tw-shadow-color: rgb(16 185 129 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-500\/50 {
    --tw-shadow-color: rgb(16 185 129 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-500\/60 {
    --tw-shadow-color: rgb(16 185 129 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-500\/70 {
    --tw-shadow-color: rgb(16 185 129 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-500\/80 {
    --tw-shadow-color: rgb(16 185 129 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-500\/90 {
    --tw-shadow-color: rgb(16 185 129 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-600 {
    --tw-shadow-color: #059669;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-600\/10 {
    --tw-shadow-color: rgb(5 150 105 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-600\/20 {
    --tw-shadow-color: rgb(5 150 105 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-600\/30 {
    --tw-shadow-color: rgb(5 150 105 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-600\/40 {
    --tw-shadow-color: rgb(5 150 105 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-600\/5 {
    --tw-shadow-color: rgb(5 150 105 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-600\/50 {
    --tw-shadow-color: rgb(5 150 105 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-600\/60 {
    --tw-shadow-color: rgb(5 150 105 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-600\/70 {
    --tw-shadow-color: rgb(5 150 105 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-600\/80 {
    --tw-shadow-color: rgb(5 150 105 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-600\/90 {
    --tw-shadow-color: rgb(5 150 105 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-700 {
    --tw-shadow-color: #047857;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-700\/10 {
    --tw-shadow-color: rgb(4 120 87 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-700\/20 {
    --tw-shadow-color: rgb(4 120 87 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-700\/30 {
    --tw-shadow-color: rgb(4 120 87 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-700\/40 {
    --tw-shadow-color: rgb(4 120 87 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-700\/5 {
    --tw-shadow-color: rgb(4 120 87 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-700\/50 {
    --tw-shadow-color: rgb(4 120 87 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-700\/60 {
    --tw-shadow-color: rgb(4 120 87 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-700\/70 {
    --tw-shadow-color: rgb(4 120 87 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-700\/80 {
    --tw-shadow-color: rgb(4 120 87 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-700\/90 {
    --tw-shadow-color: rgb(4 120 87 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-800 {
    --tw-shadow-color: #065f46;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-800\/10 {
    --tw-shadow-color: rgb(6 95 70 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-800\/20 {
    --tw-shadow-color: rgb(6 95 70 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-800\/30 {
    --tw-shadow-color: rgb(6 95 70 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-800\/40 {
    --tw-shadow-color: rgb(6 95 70 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-800\/5 {
    --tw-shadow-color: rgb(6 95 70 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-800\/50 {
    --tw-shadow-color: rgb(6 95 70 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-800\/60 {
    --tw-shadow-color: rgb(6 95 70 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-800\/70 {
    --tw-shadow-color: rgb(6 95 70 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-800\/80 {
    --tw-shadow-color: rgb(6 95 70 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-800\/90 {
    --tw-shadow-color: rgb(6 95 70 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-900 {
    --tw-shadow-color: #064e3b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-900\/10 {
    --tw-shadow-color: rgb(6 78 59 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-900\/20 {
    --tw-shadow-color: rgb(6 78 59 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-900\/30 {
    --tw-shadow-color: rgb(6 78 59 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-900\/40 {
    --tw-shadow-color: rgb(6 78 59 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-900\/5 {
    --tw-shadow-color: rgb(6 78 59 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-900\/50 {
    --tw-shadow-color: rgb(6 78 59 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-900\/60 {
    --tw-shadow-color: rgb(6 78 59 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-900\/70 {
    --tw-shadow-color: rgb(6 78 59 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-900\/80 {
    --tw-shadow-color: rgb(6 78 59 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-900\/90 {
    --tw-shadow-color: rgb(6 78 59 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-950 {
    --tw-shadow-color: #022c22;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-950\/10 {
    --tw-shadow-color: rgb(2 44 34 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-950\/20 {
    --tw-shadow-color: rgb(2 44 34 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-950\/30 {
    --tw-shadow-color: rgb(2 44 34 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-950\/40 {
    --tw-shadow-color: rgb(2 44 34 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-950\/5 {
    --tw-shadow-color: rgb(2 44 34 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-950\/50 {
    --tw-shadow-color: rgb(2 44 34 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-950\/60 {
    --tw-shadow-color: rgb(2 44 34 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-950\/70 {
    --tw-shadow-color: rgb(2 44 34 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-950\/80 {
    --tw-shadow-color: rgb(2 44 34 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-emerald-950\/90 {
    --tw-shadow-color: rgb(2 44 34 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-100 {
    --tw-shadow-color: #fae8ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-100\/10 {
    --tw-shadow-color: rgb(250 232 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-100\/20 {
    --tw-shadow-color: rgb(250 232 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-100\/30 {
    --tw-shadow-color: rgb(250 232 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-100\/40 {
    --tw-shadow-color: rgb(250 232 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-100\/5 {
    --tw-shadow-color: rgb(250 232 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-100\/50 {
    --tw-shadow-color: rgb(250 232 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-100\/60 {
    --tw-shadow-color: rgb(250 232 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-100\/70 {
    --tw-shadow-color: rgb(250 232 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-100\/80 {
    --tw-shadow-color: rgb(250 232 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-100\/90 {
    --tw-shadow-color: rgb(250 232 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-200 {
    --tw-shadow-color: #f5d0fe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-200\/10 {
    --tw-shadow-color: rgb(245 208 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-200\/20 {
    --tw-shadow-color: rgb(245 208 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-200\/30 {
    --tw-shadow-color: rgb(245 208 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-200\/40 {
    --tw-shadow-color: rgb(245 208 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-200\/5 {
    --tw-shadow-color: rgb(245 208 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-200\/50 {
    --tw-shadow-color: rgb(245 208 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-200\/60 {
    --tw-shadow-color: rgb(245 208 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-200\/70 {
    --tw-shadow-color: rgb(245 208 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-200\/80 {
    --tw-shadow-color: rgb(245 208 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-200\/90 {
    --tw-shadow-color: rgb(245 208 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-300 {
    --tw-shadow-color: #f0abfc;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-300\/10 {
    --tw-shadow-color: rgb(240 171 252 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-300\/20 {
    --tw-shadow-color: rgb(240 171 252 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-300\/30 {
    --tw-shadow-color: rgb(240 171 252 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-300\/40 {
    --tw-shadow-color: rgb(240 171 252 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-300\/5 {
    --tw-shadow-color: rgb(240 171 252 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-300\/50 {
    --tw-shadow-color: rgb(240 171 252 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-300\/60 {
    --tw-shadow-color: rgb(240 171 252 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-300\/70 {
    --tw-shadow-color: rgb(240 171 252 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-300\/80 {
    --tw-shadow-color: rgb(240 171 252 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-300\/90 {
    --tw-shadow-color: rgb(240 171 252 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-400 {
    --tw-shadow-color: #e879f9;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-400\/10 {
    --tw-shadow-color: rgb(232 121 249 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-400\/20 {
    --tw-shadow-color: rgb(232 121 249 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-400\/30 {
    --tw-shadow-color: rgb(232 121 249 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-400\/40 {
    --tw-shadow-color: rgb(232 121 249 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-400\/5 {
    --tw-shadow-color: rgb(232 121 249 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-400\/50 {
    --tw-shadow-color: rgb(232 121 249 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-400\/60 {
    --tw-shadow-color: rgb(232 121 249 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-400\/70 {
    --tw-shadow-color: rgb(232 121 249 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-400\/80 {
    --tw-shadow-color: rgb(232 121 249 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-400\/90 {
    --tw-shadow-color: rgb(232 121 249 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-50 {
    --tw-shadow-color: #fdf4ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-50\/10 {
    --tw-shadow-color: rgb(253 244 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-50\/20 {
    --tw-shadow-color: rgb(253 244 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-50\/30 {
    --tw-shadow-color: rgb(253 244 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-50\/40 {
    --tw-shadow-color: rgb(253 244 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-50\/5 {
    --tw-shadow-color: rgb(253 244 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-50\/50 {
    --tw-shadow-color: rgb(253 244 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-50\/60 {
    --tw-shadow-color: rgb(253 244 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-50\/70 {
    --tw-shadow-color: rgb(253 244 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-50\/80 {
    --tw-shadow-color: rgb(253 244 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-50\/90 {
    --tw-shadow-color: rgb(253 244 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-500 {
    --tw-shadow-color: #d946ef;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-500\/10 {
    --tw-shadow-color: rgb(217 70 239 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-500\/20 {
    --tw-shadow-color: rgb(217 70 239 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-500\/30 {
    --tw-shadow-color: rgb(217 70 239 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-500\/40 {
    --tw-shadow-color: rgb(217 70 239 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-500\/5 {
    --tw-shadow-color: rgb(217 70 239 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-500\/50 {
    --tw-shadow-color: rgb(217 70 239 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-500\/60 {
    --tw-shadow-color: rgb(217 70 239 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-500\/70 {
    --tw-shadow-color: rgb(217 70 239 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-500\/80 {
    --tw-shadow-color: rgb(217 70 239 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-500\/90 {
    --tw-shadow-color: rgb(217 70 239 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-600 {
    --tw-shadow-color: #c026d3;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-600\/10 {
    --tw-shadow-color: rgb(192 38 211 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-600\/20 {
    --tw-shadow-color: rgb(192 38 211 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-600\/30 {
    --tw-shadow-color: rgb(192 38 211 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-600\/40 {
    --tw-shadow-color: rgb(192 38 211 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-600\/5 {
    --tw-shadow-color: rgb(192 38 211 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-600\/50 {
    --tw-shadow-color: rgb(192 38 211 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-600\/60 {
    --tw-shadow-color: rgb(192 38 211 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-600\/70 {
    --tw-shadow-color: rgb(192 38 211 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-600\/80 {
    --tw-shadow-color: rgb(192 38 211 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-600\/90 {
    --tw-shadow-color: rgb(192 38 211 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-700 {
    --tw-shadow-color: #a21caf;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-700\/10 {
    --tw-shadow-color: rgb(162 28 175 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-700\/20 {
    --tw-shadow-color: rgb(162 28 175 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-700\/30 {
    --tw-shadow-color: rgb(162 28 175 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-700\/40 {
    --tw-shadow-color: rgb(162 28 175 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-700\/5 {
    --tw-shadow-color: rgb(162 28 175 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-700\/50 {
    --tw-shadow-color: rgb(162 28 175 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-700\/60 {
    --tw-shadow-color: rgb(162 28 175 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-700\/70 {
    --tw-shadow-color: rgb(162 28 175 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-700\/80 {
    --tw-shadow-color: rgb(162 28 175 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-700\/90 {
    --tw-shadow-color: rgb(162 28 175 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-800 {
    --tw-shadow-color: #86198f;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-800\/10 {
    --tw-shadow-color: rgb(134 25 143 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-800\/20 {
    --tw-shadow-color: rgb(134 25 143 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-800\/30 {
    --tw-shadow-color: rgb(134 25 143 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-800\/40 {
    --tw-shadow-color: rgb(134 25 143 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-800\/5 {
    --tw-shadow-color: rgb(134 25 143 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-800\/50 {
    --tw-shadow-color: rgb(134 25 143 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-800\/60 {
    --tw-shadow-color: rgb(134 25 143 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-800\/70 {
    --tw-shadow-color: rgb(134 25 143 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-800\/80 {
    --tw-shadow-color: rgb(134 25 143 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-800\/90 {
    --tw-shadow-color: rgb(134 25 143 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-900 {
    --tw-shadow-color: #701a75;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-900\/10 {
    --tw-shadow-color: rgb(112 26 117 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-900\/20 {
    --tw-shadow-color: rgb(112 26 117 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-900\/30 {
    --tw-shadow-color: rgb(112 26 117 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-900\/40 {
    --tw-shadow-color: rgb(112 26 117 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-900\/5 {
    --tw-shadow-color: rgb(112 26 117 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-900\/50 {
    --tw-shadow-color: rgb(112 26 117 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-900\/60 {
    --tw-shadow-color: rgb(112 26 117 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-900\/70 {
    --tw-shadow-color: rgb(112 26 117 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-900\/80 {
    --tw-shadow-color: rgb(112 26 117 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-900\/90 {
    --tw-shadow-color: rgb(112 26 117 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-950 {
    --tw-shadow-color: #4a044e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-950\/10 {
    --tw-shadow-color: rgb(74 4 78 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-950\/20 {
    --tw-shadow-color: rgb(74 4 78 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-950\/30 {
    --tw-shadow-color: rgb(74 4 78 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-950\/40 {
    --tw-shadow-color: rgb(74 4 78 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-950\/5 {
    --tw-shadow-color: rgb(74 4 78 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-950\/50 {
    --tw-shadow-color: rgb(74 4 78 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-950\/60 {
    --tw-shadow-color: rgb(74 4 78 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-950\/70 {
    --tw-shadow-color: rgb(74 4 78 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-950\/80 {
    --tw-shadow-color: rgb(74 4 78 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-fuchsia-950\/90 {
    --tw-shadow-color: rgb(74 4 78 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-100 {
    --tw-shadow-color: #f3f4f6;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-100\/10 {
    --tw-shadow-color: rgb(243 244 246 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-100\/20 {
    --tw-shadow-color: rgb(243 244 246 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-100\/30 {
    --tw-shadow-color: rgb(243 244 246 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-100\/40 {
    --tw-shadow-color: rgb(243 244 246 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-100\/5 {
    --tw-shadow-color: rgb(243 244 246 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-100\/50 {
    --tw-shadow-color: rgb(243 244 246 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-100\/60 {
    --tw-shadow-color: rgb(243 244 246 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-100\/70 {
    --tw-shadow-color: rgb(243 244 246 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-100\/80 {
    --tw-shadow-color: rgb(243 244 246 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-100\/90 {
    --tw-shadow-color: rgb(243 244 246 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-200 {
    --tw-shadow-color: #e5e7eb;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-200\/10 {
    --tw-shadow-color: rgb(229 231 235 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-200\/20 {
    --tw-shadow-color: rgb(229 231 235 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-200\/30 {
    --tw-shadow-color: rgb(229 231 235 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-200\/40 {
    --tw-shadow-color: rgb(229 231 235 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-200\/5 {
    --tw-shadow-color: rgb(229 231 235 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-200\/50 {
    --tw-shadow-color: rgb(229 231 235 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-200\/60 {
    --tw-shadow-color: rgb(229 231 235 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-200\/70 {
    --tw-shadow-color: rgb(229 231 235 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-200\/80 {
    --tw-shadow-color: rgb(229 231 235 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-200\/90 {
    --tw-shadow-color: rgb(229 231 235 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-300 {
    --tw-shadow-color: #d1d5db;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-300\/10 {
    --tw-shadow-color: rgb(209 213 219 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-300\/20 {
    --tw-shadow-color: rgb(209 213 219 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-300\/30 {
    --tw-shadow-color: rgb(209 213 219 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-300\/40 {
    --tw-shadow-color: rgb(209 213 219 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-300\/5 {
    --tw-shadow-color: rgb(209 213 219 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-300\/50 {
    --tw-shadow-color: rgb(209 213 219 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-300\/60 {
    --tw-shadow-color: rgb(209 213 219 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-300\/70 {
    --tw-shadow-color: rgb(209 213 219 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-300\/80 {
    --tw-shadow-color: rgb(209 213 219 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-300\/90 {
    --tw-shadow-color: rgb(209 213 219 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-400 {
    --tw-shadow-color: #9ca3af;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-400\/10 {
    --tw-shadow-color: rgb(156 163 175 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-400\/20 {
    --tw-shadow-color: rgb(156 163 175 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-400\/30 {
    --tw-shadow-color: rgb(156 163 175 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-400\/40 {
    --tw-shadow-color: rgb(156 163 175 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-400\/5 {
    --tw-shadow-color: rgb(156 163 175 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-400\/50 {
    --tw-shadow-color: rgb(156 163 175 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-400\/60 {
    --tw-shadow-color: rgb(156 163 175 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-400\/70 {
    --tw-shadow-color: rgb(156 163 175 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-400\/80 {
    --tw-shadow-color: rgb(156 163 175 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-400\/90 {
    --tw-shadow-color: rgb(156 163 175 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-50 {
    --tw-shadow-color: #f9fafb;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-50\/10 {
    --tw-shadow-color: rgb(249 250 251 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-50\/20 {
    --tw-shadow-color: rgb(249 250 251 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-50\/30 {
    --tw-shadow-color: rgb(249 250 251 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-50\/40 {
    --tw-shadow-color: rgb(249 250 251 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-50\/5 {
    --tw-shadow-color: rgb(249 250 251 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-50\/50 {
    --tw-shadow-color: rgb(249 250 251 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-50\/60 {
    --tw-shadow-color: rgb(249 250 251 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-50\/70 {
    --tw-shadow-color: rgb(249 250 251 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-50\/80 {
    --tw-shadow-color: rgb(249 250 251 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-50\/90 {
    --tw-shadow-color: rgb(249 250 251 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-500 {
    --tw-shadow-color: #6b7280;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-500\/10 {
    --tw-shadow-color: rgb(107 114 128 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-500\/20 {
    --tw-shadow-color: rgb(107 114 128 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-500\/30 {
    --tw-shadow-color: rgb(107 114 128 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-500\/40 {
    --tw-shadow-color: rgb(107 114 128 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-500\/5 {
    --tw-shadow-color: rgb(107 114 128 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-500\/50 {
    --tw-shadow-color: rgb(107 114 128 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-500\/60 {
    --tw-shadow-color: rgb(107 114 128 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-500\/70 {
    --tw-shadow-color: rgb(107 114 128 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-500\/80 {
    --tw-shadow-color: rgb(107 114 128 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-500\/90 {
    --tw-shadow-color: rgb(107 114 128 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-600 {
    --tw-shadow-color: #4b5563;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-600\/10 {
    --tw-shadow-color: rgb(75 85 99 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-600\/20 {
    --tw-shadow-color: rgb(75 85 99 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-600\/30 {
    --tw-shadow-color: rgb(75 85 99 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-600\/40 {
    --tw-shadow-color: rgb(75 85 99 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-600\/5 {
    --tw-shadow-color: rgb(75 85 99 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-600\/50 {
    --tw-shadow-color: rgb(75 85 99 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-600\/60 {
    --tw-shadow-color: rgb(75 85 99 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-600\/70 {
    --tw-shadow-color: rgb(75 85 99 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-600\/80 {
    --tw-shadow-color: rgb(75 85 99 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-600\/90 {
    --tw-shadow-color: rgb(75 85 99 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-700 {
    --tw-shadow-color: #374151;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-700\/10 {
    --tw-shadow-color: rgb(55 65 81 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-700\/20 {
    --tw-shadow-color: rgb(55 65 81 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-700\/30 {
    --tw-shadow-color: rgb(55 65 81 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-700\/40 {
    --tw-shadow-color: rgb(55 65 81 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-700\/5 {
    --tw-shadow-color: rgb(55 65 81 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-700\/50 {
    --tw-shadow-color: rgb(55 65 81 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-700\/60 {
    --tw-shadow-color: rgb(55 65 81 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-700\/70 {
    --tw-shadow-color: rgb(55 65 81 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-700\/80 {
    --tw-shadow-color: rgb(55 65 81 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-700\/90 {
    --tw-shadow-color: rgb(55 65 81 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-800 {
    --tw-shadow-color: #1f2937;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-800\/10 {
    --tw-shadow-color: rgb(31 41 55 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-800\/20 {
    --tw-shadow-color: rgb(31 41 55 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-800\/30 {
    --tw-shadow-color: rgb(31 41 55 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-800\/40 {
    --tw-shadow-color: rgb(31 41 55 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-800\/5 {
    --tw-shadow-color: rgb(31 41 55 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-800\/50 {
    --tw-shadow-color: rgb(31 41 55 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-800\/60 {
    --tw-shadow-color: rgb(31 41 55 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-800\/70 {
    --tw-shadow-color: rgb(31 41 55 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-800\/80 {
    --tw-shadow-color: rgb(31 41 55 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-800\/90 {
    --tw-shadow-color: rgb(31 41 55 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-900 {
    --tw-shadow-color: #111827;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-900\/10 {
    --tw-shadow-color: rgb(17 24 39 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-900\/20 {
    --tw-shadow-color: rgb(17 24 39 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-900\/30 {
    --tw-shadow-color: rgb(17 24 39 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-900\/40 {
    --tw-shadow-color: rgb(17 24 39 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-900\/5 {
    --tw-shadow-color: rgb(17 24 39 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-900\/50 {
    --tw-shadow-color: rgb(17 24 39 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-900\/60 {
    --tw-shadow-color: rgb(17 24 39 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-900\/70 {
    --tw-shadow-color: rgb(17 24 39 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-900\/80 {
    --tw-shadow-color: rgb(17 24 39 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-900\/90 {
    --tw-shadow-color: rgb(17 24 39 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-950 {
    --tw-shadow-color: #030712;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-950\/10 {
    --tw-shadow-color: rgb(3 7 18 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-950\/20 {
    --tw-shadow-color: rgb(3 7 18 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-950\/30 {
    --tw-shadow-color: rgb(3 7 18 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-950\/40 {
    --tw-shadow-color: rgb(3 7 18 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-950\/5 {
    --tw-shadow-color: rgb(3 7 18 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-950\/50 {
    --tw-shadow-color: rgb(3 7 18 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-950\/60 {
    --tw-shadow-color: rgb(3 7 18 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-950\/70 {
    --tw-shadow-color: rgb(3 7 18 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-950\/80 {
    --tw-shadow-color: rgb(3 7 18 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-gray-950\/90 {
    --tw-shadow-color: rgb(3 7 18 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-100 {
    --tw-shadow-color: #dcfce7;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-100\/10 {
    --tw-shadow-color: rgb(220 252 231 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-100\/20 {
    --tw-shadow-color: rgb(220 252 231 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-100\/30 {
    --tw-shadow-color: rgb(220 252 231 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-100\/40 {
    --tw-shadow-color: rgb(220 252 231 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-100\/5 {
    --tw-shadow-color: rgb(220 252 231 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-100\/50 {
    --tw-shadow-color: rgb(220 252 231 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-100\/60 {
    --tw-shadow-color: rgb(220 252 231 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-100\/70 {
    --tw-shadow-color: rgb(220 252 231 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-100\/80 {
    --tw-shadow-color: rgb(220 252 231 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-100\/90 {
    --tw-shadow-color: rgb(220 252 231 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-200 {
    --tw-shadow-color: #bbf7d0;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-200\/10 {
    --tw-shadow-color: rgb(187 247 208 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-200\/20 {
    --tw-shadow-color: rgb(187 247 208 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-200\/30 {
    --tw-shadow-color: rgb(187 247 208 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-200\/40 {
    --tw-shadow-color: rgb(187 247 208 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-200\/5 {
    --tw-shadow-color: rgb(187 247 208 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-200\/50 {
    --tw-shadow-color: rgb(187 247 208 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-200\/60 {
    --tw-shadow-color: rgb(187 247 208 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-200\/70 {
    --tw-shadow-color: rgb(187 247 208 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-200\/80 {
    --tw-shadow-color: rgb(187 247 208 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-200\/90 {
    --tw-shadow-color: rgb(187 247 208 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-300 {
    --tw-shadow-color: #86efac;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-300\/10 {
    --tw-shadow-color: rgb(134 239 172 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-300\/20 {
    --tw-shadow-color: rgb(134 239 172 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-300\/30 {
    --tw-shadow-color: rgb(134 239 172 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-300\/40 {
    --tw-shadow-color: rgb(134 239 172 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-300\/5 {
    --tw-shadow-color: rgb(134 239 172 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-300\/50 {
    --tw-shadow-color: rgb(134 239 172 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-300\/60 {
    --tw-shadow-color: rgb(134 239 172 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-300\/70 {
    --tw-shadow-color: rgb(134 239 172 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-300\/80 {
    --tw-shadow-color: rgb(134 239 172 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-300\/90 {
    --tw-shadow-color: rgb(134 239 172 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-400 {
    --tw-shadow-color: #4ade80;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-400\/10 {
    --tw-shadow-color: rgb(74 222 128 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-400\/20 {
    --tw-shadow-color: rgb(74 222 128 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-400\/30 {
    --tw-shadow-color: rgb(74 222 128 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-400\/40 {
    --tw-shadow-color: rgb(74 222 128 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-400\/5 {
    --tw-shadow-color: rgb(74 222 128 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-400\/50 {
    --tw-shadow-color: rgb(74 222 128 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-400\/60 {
    --tw-shadow-color: rgb(74 222 128 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-400\/70 {
    --tw-shadow-color: rgb(74 222 128 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-400\/80 {
    --tw-shadow-color: rgb(74 222 128 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-400\/90 {
    --tw-shadow-color: rgb(74 222 128 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-50 {
    --tw-shadow-color: #f0fdf4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-50\/10 {
    --tw-shadow-color: rgb(240 253 244 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-50\/20 {
    --tw-shadow-color: rgb(240 253 244 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-50\/30 {
    --tw-shadow-color: rgb(240 253 244 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-50\/40 {
    --tw-shadow-color: rgb(240 253 244 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-50\/5 {
    --tw-shadow-color: rgb(240 253 244 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-50\/50 {
    --tw-shadow-color: rgb(240 253 244 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-50\/60 {
    --tw-shadow-color: rgb(240 253 244 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-50\/70 {
    --tw-shadow-color: rgb(240 253 244 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-50\/80 {
    --tw-shadow-color: rgb(240 253 244 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-50\/90 {
    --tw-shadow-color: rgb(240 253 244 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-500 {
    --tw-shadow-color: #22c55e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-500\/10 {
    --tw-shadow-color: rgb(34 197 94 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-500\/20 {
    --tw-shadow-color: rgb(34 197 94 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-500\/30 {
    --tw-shadow-color: rgb(34 197 94 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-500\/40 {
    --tw-shadow-color: rgb(34 197 94 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-500\/5 {
    --tw-shadow-color: rgb(34 197 94 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-500\/50 {
    --tw-shadow-color: rgb(34 197 94 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-500\/60 {
    --tw-shadow-color: rgb(34 197 94 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-500\/70 {
    --tw-shadow-color: rgb(34 197 94 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-500\/80 {
    --tw-shadow-color: rgb(34 197 94 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-500\/90 {
    --tw-shadow-color: rgb(34 197 94 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-600 {
    --tw-shadow-color: #16a34a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-600\/10 {
    --tw-shadow-color: rgb(22 163 74 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-600\/20 {
    --tw-shadow-color: rgb(22 163 74 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-600\/30 {
    --tw-shadow-color: rgb(22 163 74 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-600\/40 {
    --tw-shadow-color: rgb(22 163 74 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-600\/5 {
    --tw-shadow-color: rgb(22 163 74 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-600\/50 {
    --tw-shadow-color: rgb(22 163 74 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-600\/60 {
    --tw-shadow-color: rgb(22 163 74 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-600\/70 {
    --tw-shadow-color: rgb(22 163 74 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-600\/80 {
    --tw-shadow-color: rgb(22 163 74 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-600\/90 {
    --tw-shadow-color: rgb(22 163 74 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-700 {
    --tw-shadow-color: #15803d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-700\/10 {
    --tw-shadow-color: rgb(21 128 61 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-700\/20 {
    --tw-shadow-color: rgb(21 128 61 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-700\/30 {
    --tw-shadow-color: rgb(21 128 61 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-700\/40 {
    --tw-shadow-color: rgb(21 128 61 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-700\/5 {
    --tw-shadow-color: rgb(21 128 61 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-700\/50 {
    --tw-shadow-color: rgb(21 128 61 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-700\/60 {
    --tw-shadow-color: rgb(21 128 61 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-700\/70 {
    --tw-shadow-color: rgb(21 128 61 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-700\/80 {
    --tw-shadow-color: rgb(21 128 61 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-700\/90 {
    --tw-shadow-color: rgb(21 128 61 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-800 {
    --tw-shadow-color: #166534;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-800\/10 {
    --tw-shadow-color: rgb(22 101 52 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-800\/20 {
    --tw-shadow-color: rgb(22 101 52 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-800\/30 {
    --tw-shadow-color: rgb(22 101 52 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-800\/40 {
    --tw-shadow-color: rgb(22 101 52 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-800\/5 {
    --tw-shadow-color: rgb(22 101 52 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-800\/50 {
    --tw-shadow-color: rgb(22 101 52 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-800\/60 {
    --tw-shadow-color: rgb(22 101 52 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-800\/70 {
    --tw-shadow-color: rgb(22 101 52 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-800\/80 {
    --tw-shadow-color: rgb(22 101 52 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-800\/90 {
    --tw-shadow-color: rgb(22 101 52 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-900 {
    --tw-shadow-color: #14532d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-900\/10 {
    --tw-shadow-color: rgb(20 83 45 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-900\/20 {
    --tw-shadow-color: rgb(20 83 45 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-900\/30 {
    --tw-shadow-color: rgb(20 83 45 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-900\/40 {
    --tw-shadow-color: rgb(20 83 45 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-900\/5 {
    --tw-shadow-color: rgb(20 83 45 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-900\/50 {
    --tw-shadow-color: rgb(20 83 45 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-900\/60 {
    --tw-shadow-color: rgb(20 83 45 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-900\/70 {
    --tw-shadow-color: rgb(20 83 45 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-900\/80 {
    --tw-shadow-color: rgb(20 83 45 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-900\/90 {
    --tw-shadow-color: rgb(20 83 45 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-950 {
    --tw-shadow-color: #052e16;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-950\/10 {
    --tw-shadow-color: rgb(5 46 22 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-950\/20 {
    --tw-shadow-color: rgb(5 46 22 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-950\/30 {
    --tw-shadow-color: rgb(5 46 22 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-950\/40 {
    --tw-shadow-color: rgb(5 46 22 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-950\/5 {
    --tw-shadow-color: rgb(5 46 22 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-950\/50 {
    --tw-shadow-color: rgb(5 46 22 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-950\/60 {
    --tw-shadow-color: rgb(5 46 22 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-950\/70 {
    --tw-shadow-color: rgb(5 46 22 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-950\/80 {
    --tw-shadow-color: rgb(5 46 22 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-green-950\/90 {
    --tw-shadow-color: rgb(5 46 22 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-100 {
    --tw-shadow-color: #e0e7ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-100\/10 {
    --tw-shadow-color: rgb(224 231 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-100\/20 {
    --tw-shadow-color: rgb(224 231 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-100\/30 {
    --tw-shadow-color: rgb(224 231 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-100\/40 {
    --tw-shadow-color: rgb(224 231 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-100\/5 {
    --tw-shadow-color: rgb(224 231 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-100\/50 {
    --tw-shadow-color: rgb(224 231 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-100\/60 {
    --tw-shadow-color: rgb(224 231 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-100\/70 {
    --tw-shadow-color: rgb(224 231 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-100\/80 {
    --tw-shadow-color: rgb(224 231 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-100\/90 {
    --tw-shadow-color: rgb(224 231 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-200 {
    --tw-shadow-color: #c7d2fe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-200\/10 {
    --tw-shadow-color: rgb(199 210 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-200\/20 {
    --tw-shadow-color: rgb(199 210 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-200\/30 {
    --tw-shadow-color: rgb(199 210 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-200\/40 {
    --tw-shadow-color: rgb(199 210 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-200\/5 {
    --tw-shadow-color: rgb(199 210 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-200\/50 {
    --tw-shadow-color: rgb(199 210 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-200\/60 {
    --tw-shadow-color: rgb(199 210 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-200\/70 {
    --tw-shadow-color: rgb(199 210 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-200\/80 {
    --tw-shadow-color: rgb(199 210 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-200\/90 {
    --tw-shadow-color: rgb(199 210 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-300 {
    --tw-shadow-color: #a5b4fc;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-300\/10 {
    --tw-shadow-color: rgb(165 180 252 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-300\/20 {
    --tw-shadow-color: rgb(165 180 252 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-300\/30 {
    --tw-shadow-color: rgb(165 180 252 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-300\/40 {
    --tw-shadow-color: rgb(165 180 252 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-300\/5 {
    --tw-shadow-color: rgb(165 180 252 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-300\/50 {
    --tw-shadow-color: rgb(165 180 252 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-300\/60 {
    --tw-shadow-color: rgb(165 180 252 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-300\/70 {
    --tw-shadow-color: rgb(165 180 252 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-300\/80 {
    --tw-shadow-color: rgb(165 180 252 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-300\/90 {
    --tw-shadow-color: rgb(165 180 252 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-400 {
    --tw-shadow-color: #818cf8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-400\/10 {
    --tw-shadow-color: rgb(129 140 248 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-400\/20 {
    --tw-shadow-color: rgb(129 140 248 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-400\/30 {
    --tw-shadow-color: rgb(129 140 248 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-400\/40 {
    --tw-shadow-color: rgb(129 140 248 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-400\/5 {
    --tw-shadow-color: rgb(129 140 248 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-400\/50 {
    --tw-shadow-color: rgb(129 140 248 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-400\/60 {
    --tw-shadow-color: rgb(129 140 248 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-400\/70 {
    --tw-shadow-color: rgb(129 140 248 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-400\/80 {
    --tw-shadow-color: rgb(129 140 248 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-400\/90 {
    --tw-shadow-color: rgb(129 140 248 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-50 {
    --tw-shadow-color: #eef2ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-50\/10 {
    --tw-shadow-color: rgb(238 242 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-50\/20 {
    --tw-shadow-color: rgb(238 242 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-50\/30 {
    --tw-shadow-color: rgb(238 242 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-50\/40 {
    --tw-shadow-color: rgb(238 242 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-50\/5 {
    --tw-shadow-color: rgb(238 242 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-50\/50 {
    --tw-shadow-color: rgb(238 242 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-50\/60 {
    --tw-shadow-color: rgb(238 242 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-50\/70 {
    --tw-shadow-color: rgb(238 242 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-50\/80 {
    --tw-shadow-color: rgb(238 242 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-50\/90 {
    --tw-shadow-color: rgb(238 242 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-500 {
    --tw-shadow-color: #6366f1;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-500\/10 {
    --tw-shadow-color: rgb(99 102 241 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-500\/20 {
    --tw-shadow-color: rgb(99 102 241 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-500\/30 {
    --tw-shadow-color: rgb(99 102 241 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-500\/40 {
    --tw-shadow-color: rgb(99 102 241 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-500\/5 {
    --tw-shadow-color: rgb(99 102 241 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-500\/50 {
    --tw-shadow-color: rgb(99 102 241 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-500\/60 {
    --tw-shadow-color: rgb(99 102 241 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-500\/70 {
    --tw-shadow-color: rgb(99 102 241 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-500\/80 {
    --tw-shadow-color: rgb(99 102 241 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-500\/90 {
    --tw-shadow-color: rgb(99 102 241 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-600 {
    --tw-shadow-color: #4f46e5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-600\/10 {
    --tw-shadow-color: rgb(79 70 229 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-600\/20 {
    --tw-shadow-color: rgb(79 70 229 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-600\/30 {
    --tw-shadow-color: rgb(79 70 229 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-600\/40 {
    --tw-shadow-color: rgb(79 70 229 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-600\/5 {
    --tw-shadow-color: rgb(79 70 229 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-600\/50 {
    --tw-shadow-color: rgb(79 70 229 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-600\/60 {
    --tw-shadow-color: rgb(79 70 229 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-600\/70 {
    --tw-shadow-color: rgb(79 70 229 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-600\/80 {
    --tw-shadow-color: rgb(79 70 229 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-600\/90 {
    --tw-shadow-color: rgb(79 70 229 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-700 {
    --tw-shadow-color: #4338ca;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-700\/10 {
    --tw-shadow-color: rgb(67 56 202 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-700\/20 {
    --tw-shadow-color: rgb(67 56 202 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-700\/30 {
    --tw-shadow-color: rgb(67 56 202 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-700\/40 {
    --tw-shadow-color: rgb(67 56 202 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-700\/5 {
    --tw-shadow-color: rgb(67 56 202 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-700\/50 {
    --tw-shadow-color: rgb(67 56 202 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-700\/60 {
    --tw-shadow-color: rgb(67 56 202 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-700\/70 {
    --tw-shadow-color: rgb(67 56 202 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-700\/80 {
    --tw-shadow-color: rgb(67 56 202 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-700\/90 {
    --tw-shadow-color: rgb(67 56 202 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-800 {
    --tw-shadow-color: #3730a3;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-800\/10 {
    --tw-shadow-color: rgb(55 48 163 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-800\/20 {
    --tw-shadow-color: rgb(55 48 163 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-800\/30 {
    --tw-shadow-color: rgb(55 48 163 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-800\/40 {
    --tw-shadow-color: rgb(55 48 163 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-800\/5 {
    --tw-shadow-color: rgb(55 48 163 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-800\/50 {
    --tw-shadow-color: rgb(55 48 163 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-800\/60 {
    --tw-shadow-color: rgb(55 48 163 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-800\/70 {
    --tw-shadow-color: rgb(55 48 163 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-800\/80 {
    --tw-shadow-color: rgb(55 48 163 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-800\/90 {
    --tw-shadow-color: rgb(55 48 163 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-900 {
    --tw-shadow-color: #312e81;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-900\/10 {
    --tw-shadow-color: rgb(49 46 129 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-900\/20 {
    --tw-shadow-color: rgb(49 46 129 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-900\/30 {
    --tw-shadow-color: rgb(49 46 129 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-900\/40 {
    --tw-shadow-color: rgb(49 46 129 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-900\/5 {
    --tw-shadow-color: rgb(49 46 129 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-900\/50 {
    --tw-shadow-color: rgb(49 46 129 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-900\/60 {
    --tw-shadow-color: rgb(49 46 129 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-900\/70 {
    --tw-shadow-color: rgb(49 46 129 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-900\/80 {
    --tw-shadow-color: rgb(49 46 129 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-900\/90 {
    --tw-shadow-color: rgb(49 46 129 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-950 {
    --tw-shadow-color: #1e1b4b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-950\/10 {
    --tw-shadow-color: rgb(30 27 75 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-950\/20 {
    --tw-shadow-color: rgb(30 27 75 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-950\/30 {
    --tw-shadow-color: rgb(30 27 75 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-950\/40 {
    --tw-shadow-color: rgb(30 27 75 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-950\/5 {
    --tw-shadow-color: rgb(30 27 75 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-950\/50 {
    --tw-shadow-color: rgb(30 27 75 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-950\/60 {
    --tw-shadow-color: rgb(30 27 75 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-950\/70 {
    --tw-shadow-color: rgb(30 27 75 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-950\/80 {
    --tw-shadow-color: rgb(30 27 75 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-indigo-950\/90 {
    --tw-shadow-color: rgb(30 27 75 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-100 {
    --tw-shadow-color: #ecfccb;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-100\/10 {
    --tw-shadow-color: rgb(236 252 203 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-100\/20 {
    --tw-shadow-color: rgb(236 252 203 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-100\/30 {
    --tw-shadow-color: rgb(236 252 203 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-100\/40 {
    --tw-shadow-color: rgb(236 252 203 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-100\/5 {
    --tw-shadow-color: rgb(236 252 203 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-100\/50 {
    --tw-shadow-color: rgb(236 252 203 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-100\/60 {
    --tw-shadow-color: rgb(236 252 203 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-100\/70 {
    --tw-shadow-color: rgb(236 252 203 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-100\/80 {
    --tw-shadow-color: rgb(236 252 203 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-100\/90 {
    --tw-shadow-color: rgb(236 252 203 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-200 {
    --tw-shadow-color: #d9f99d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-200\/10 {
    --tw-shadow-color: rgb(217 249 157 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-200\/20 {
    --tw-shadow-color: rgb(217 249 157 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-200\/30 {
    --tw-shadow-color: rgb(217 249 157 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-200\/40 {
    --tw-shadow-color: rgb(217 249 157 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-200\/5 {
    --tw-shadow-color: rgb(217 249 157 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-200\/50 {
    --tw-shadow-color: rgb(217 249 157 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-200\/60 {
    --tw-shadow-color: rgb(217 249 157 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-200\/70 {
    --tw-shadow-color: rgb(217 249 157 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-200\/80 {
    --tw-shadow-color: rgb(217 249 157 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-200\/90 {
    --tw-shadow-color: rgb(217 249 157 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-300 {
    --tw-shadow-color: #bef264;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-300\/10 {
    --tw-shadow-color: rgb(190 242 100 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-300\/20 {
    --tw-shadow-color: rgb(190 242 100 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-300\/30 {
    --tw-shadow-color: rgb(190 242 100 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-300\/40 {
    --tw-shadow-color: rgb(190 242 100 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-300\/5 {
    --tw-shadow-color: rgb(190 242 100 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-300\/50 {
    --tw-shadow-color: rgb(190 242 100 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-300\/60 {
    --tw-shadow-color: rgb(190 242 100 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-300\/70 {
    --tw-shadow-color: rgb(190 242 100 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-300\/80 {
    --tw-shadow-color: rgb(190 242 100 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-300\/90 {
    --tw-shadow-color: rgb(190 242 100 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-400 {
    --tw-shadow-color: #a3e635;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-400\/10 {
    --tw-shadow-color: rgb(163 230 53 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-400\/20 {
    --tw-shadow-color: rgb(163 230 53 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-400\/30 {
    --tw-shadow-color: rgb(163 230 53 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-400\/40 {
    --tw-shadow-color: rgb(163 230 53 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-400\/5 {
    --tw-shadow-color: rgb(163 230 53 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-400\/50 {
    --tw-shadow-color: rgb(163 230 53 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-400\/60 {
    --tw-shadow-color: rgb(163 230 53 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-400\/70 {
    --tw-shadow-color: rgb(163 230 53 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-400\/80 {
    --tw-shadow-color: rgb(163 230 53 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-400\/90 {
    --tw-shadow-color: rgb(163 230 53 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-50 {
    --tw-shadow-color: #f7fee7;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-50\/10 {
    --tw-shadow-color: rgb(247 254 231 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-50\/20 {
    --tw-shadow-color: rgb(247 254 231 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-50\/30 {
    --tw-shadow-color: rgb(247 254 231 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-50\/40 {
    --tw-shadow-color: rgb(247 254 231 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-50\/5 {
    --tw-shadow-color: rgb(247 254 231 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-50\/50 {
    --tw-shadow-color: rgb(247 254 231 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-50\/60 {
    --tw-shadow-color: rgb(247 254 231 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-50\/70 {
    --tw-shadow-color: rgb(247 254 231 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-50\/80 {
    --tw-shadow-color: rgb(247 254 231 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-50\/90 {
    --tw-shadow-color: rgb(247 254 231 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-500 {
    --tw-shadow-color: #84cc16;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-500\/10 {
    --tw-shadow-color: rgb(132 204 22 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-500\/20 {
    --tw-shadow-color: rgb(132 204 22 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-500\/30 {
    --tw-shadow-color: rgb(132 204 22 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-500\/40 {
    --tw-shadow-color: rgb(132 204 22 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-500\/5 {
    --tw-shadow-color: rgb(132 204 22 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-500\/50 {
    --tw-shadow-color: rgb(132 204 22 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-500\/60 {
    --tw-shadow-color: rgb(132 204 22 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-500\/70 {
    --tw-shadow-color: rgb(132 204 22 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-500\/80 {
    --tw-shadow-color: rgb(132 204 22 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-500\/90 {
    --tw-shadow-color: rgb(132 204 22 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-600 {
    --tw-shadow-color: #65a30d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-600\/10 {
    --tw-shadow-color: rgb(101 163 13 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-600\/20 {
    --tw-shadow-color: rgb(101 163 13 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-600\/30 {
    --tw-shadow-color: rgb(101 163 13 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-600\/40 {
    --tw-shadow-color: rgb(101 163 13 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-600\/5 {
    --tw-shadow-color: rgb(101 163 13 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-600\/50 {
    --tw-shadow-color: rgb(101 163 13 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-600\/60 {
    --tw-shadow-color: rgb(101 163 13 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-600\/70 {
    --tw-shadow-color: rgb(101 163 13 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-600\/80 {
    --tw-shadow-color: rgb(101 163 13 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-600\/90 {
    --tw-shadow-color: rgb(101 163 13 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-700 {
    --tw-shadow-color: #4d7c0f;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-700\/10 {
    --tw-shadow-color: rgb(77 124 15 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-700\/20 {
    --tw-shadow-color: rgb(77 124 15 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-700\/30 {
    --tw-shadow-color: rgb(77 124 15 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-700\/40 {
    --tw-shadow-color: rgb(77 124 15 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-700\/5 {
    --tw-shadow-color: rgb(77 124 15 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-700\/50 {
    --tw-shadow-color: rgb(77 124 15 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-700\/60 {
    --tw-shadow-color: rgb(77 124 15 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-700\/70 {
    --tw-shadow-color: rgb(77 124 15 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-700\/80 {
    --tw-shadow-color: rgb(77 124 15 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-700\/90 {
    --tw-shadow-color: rgb(77 124 15 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-800 {
    --tw-shadow-color: #3f6212;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-800\/10 {
    --tw-shadow-color: rgb(63 98 18 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-800\/20 {
    --tw-shadow-color: rgb(63 98 18 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-800\/30 {
    --tw-shadow-color: rgb(63 98 18 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-800\/40 {
    --tw-shadow-color: rgb(63 98 18 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-800\/5 {
    --tw-shadow-color: rgb(63 98 18 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-800\/50 {
    --tw-shadow-color: rgb(63 98 18 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-800\/60 {
    --tw-shadow-color: rgb(63 98 18 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-800\/70 {
    --tw-shadow-color: rgb(63 98 18 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-800\/80 {
    --tw-shadow-color: rgb(63 98 18 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-800\/90 {
    --tw-shadow-color: rgb(63 98 18 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-900 {
    --tw-shadow-color: #365314;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-900\/10 {
    --tw-shadow-color: rgb(54 83 20 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-900\/20 {
    --tw-shadow-color: rgb(54 83 20 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-900\/30 {
    --tw-shadow-color: rgb(54 83 20 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-900\/40 {
    --tw-shadow-color: rgb(54 83 20 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-900\/5 {
    --tw-shadow-color: rgb(54 83 20 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-900\/50 {
    --tw-shadow-color: rgb(54 83 20 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-900\/60 {
    --tw-shadow-color: rgb(54 83 20 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-900\/70 {
    --tw-shadow-color: rgb(54 83 20 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-900\/80 {
    --tw-shadow-color: rgb(54 83 20 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-900\/90 {
    --tw-shadow-color: rgb(54 83 20 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-950 {
    --tw-shadow-color: #1a2e05;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-950\/10 {
    --tw-shadow-color: rgb(26 46 5 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-950\/20 {
    --tw-shadow-color: rgb(26 46 5 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-950\/30 {
    --tw-shadow-color: rgb(26 46 5 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-950\/40 {
    --tw-shadow-color: rgb(26 46 5 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-950\/5 {
    --tw-shadow-color: rgb(26 46 5 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-950\/50 {
    --tw-shadow-color: rgb(26 46 5 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-950\/60 {
    --tw-shadow-color: rgb(26 46 5 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-950\/70 {
    --tw-shadow-color: rgb(26 46 5 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-950\/80 {
    --tw-shadow-color: rgb(26 46 5 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-lime-950\/90 {
    --tw-shadow-color: rgb(26 46 5 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-100 {
    --tw-shadow-color: #f5f5f5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-100\/10 {
    --tw-shadow-color: rgb(245 245 245 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-100\/20 {
    --tw-shadow-color: rgb(245 245 245 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-100\/30 {
    --tw-shadow-color: rgb(245 245 245 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-100\/40 {
    --tw-shadow-color: rgb(245 245 245 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-100\/5 {
    --tw-shadow-color: rgb(245 245 245 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-100\/50 {
    --tw-shadow-color: rgb(245 245 245 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-100\/60 {
    --tw-shadow-color: rgb(245 245 245 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-100\/70 {
    --tw-shadow-color: rgb(245 245 245 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-100\/80 {
    --tw-shadow-color: rgb(245 245 245 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-100\/90 {
    --tw-shadow-color: rgb(245 245 245 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-200 {
    --tw-shadow-color: #e5e5e5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-200\/10 {
    --tw-shadow-color: rgb(229 229 229 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-200\/20 {
    --tw-shadow-color: rgb(229 229 229 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-200\/30 {
    --tw-shadow-color: rgb(229 229 229 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-200\/40 {
    --tw-shadow-color: rgb(229 229 229 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-200\/5 {
    --tw-shadow-color: rgb(229 229 229 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-200\/50 {
    --tw-shadow-color: rgb(229 229 229 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-200\/60 {
    --tw-shadow-color: rgb(229 229 229 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-200\/70 {
    --tw-shadow-color: rgb(229 229 229 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-200\/80 {
    --tw-shadow-color: rgb(229 229 229 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-200\/90 {
    --tw-shadow-color: rgb(229 229 229 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-300 {
    --tw-shadow-color: #d4d4d4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-300\/10 {
    --tw-shadow-color: rgb(212 212 212 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-300\/20 {
    --tw-shadow-color: rgb(212 212 212 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-300\/30 {
    --tw-shadow-color: rgb(212 212 212 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-300\/40 {
    --tw-shadow-color: rgb(212 212 212 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-300\/5 {
    --tw-shadow-color: rgb(212 212 212 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-300\/50 {
    --tw-shadow-color: rgb(212 212 212 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-300\/60 {
    --tw-shadow-color: rgb(212 212 212 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-300\/70 {
    --tw-shadow-color: rgb(212 212 212 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-300\/80 {
    --tw-shadow-color: rgb(212 212 212 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-300\/90 {
    --tw-shadow-color: rgb(212 212 212 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-400 {
    --tw-shadow-color: #a3a3a3;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-400\/10 {
    --tw-shadow-color: rgb(163 163 163 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-400\/20 {
    --tw-shadow-color: rgb(163 163 163 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-400\/30 {
    --tw-shadow-color: rgb(163 163 163 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-400\/40 {
    --tw-shadow-color: rgb(163 163 163 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-400\/5 {
    --tw-shadow-color: rgb(163 163 163 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-400\/50 {
    --tw-shadow-color: rgb(163 163 163 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-400\/60 {
    --tw-shadow-color: rgb(163 163 163 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-400\/70 {
    --tw-shadow-color: rgb(163 163 163 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-400\/80 {
    --tw-shadow-color: rgb(163 163 163 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-400\/90 {
    --tw-shadow-color: rgb(163 163 163 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-50 {
    --tw-shadow-color: #fafafa;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-50\/10 {
    --tw-shadow-color: rgb(250 250 250 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-50\/20 {
    --tw-shadow-color: rgb(250 250 250 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-50\/30 {
    --tw-shadow-color: rgb(250 250 250 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-50\/40 {
    --tw-shadow-color: rgb(250 250 250 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-50\/5 {
    --tw-shadow-color: rgb(250 250 250 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-50\/50 {
    --tw-shadow-color: rgb(250 250 250 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-50\/60 {
    --tw-shadow-color: rgb(250 250 250 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-50\/70 {
    --tw-shadow-color: rgb(250 250 250 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-50\/80 {
    --tw-shadow-color: rgb(250 250 250 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-50\/90 {
    --tw-shadow-color: rgb(250 250 250 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-500 {
    --tw-shadow-color: #737373;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-500\/10 {
    --tw-shadow-color: rgb(115 115 115 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-500\/20 {
    --tw-shadow-color: rgb(115 115 115 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-500\/30 {
    --tw-shadow-color: rgb(115 115 115 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-500\/40 {
    --tw-shadow-color: rgb(115 115 115 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-500\/5 {
    --tw-shadow-color: rgb(115 115 115 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-500\/50 {
    --tw-shadow-color: rgb(115 115 115 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-500\/60 {
    --tw-shadow-color: rgb(115 115 115 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-500\/70 {
    --tw-shadow-color: rgb(115 115 115 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-500\/80 {
    --tw-shadow-color: rgb(115 115 115 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-500\/90 {
    --tw-shadow-color: rgb(115 115 115 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-600 {
    --tw-shadow-color: #525252;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-600\/10 {
    --tw-shadow-color: rgb(82 82 82 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-600\/20 {
    --tw-shadow-color: rgb(82 82 82 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-600\/30 {
    --tw-shadow-color: rgb(82 82 82 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-600\/40 {
    --tw-shadow-color: rgb(82 82 82 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-600\/5 {
    --tw-shadow-color: rgb(82 82 82 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-600\/50 {
    --tw-shadow-color: rgb(82 82 82 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-600\/60 {
    --tw-shadow-color: rgb(82 82 82 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-600\/70 {
    --tw-shadow-color: rgb(82 82 82 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-600\/80 {
    --tw-shadow-color: rgb(82 82 82 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-600\/90 {
    --tw-shadow-color: rgb(82 82 82 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-700 {
    --tw-shadow-color: #404040;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-700\/10 {
    --tw-shadow-color: rgb(64 64 64 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-700\/20 {
    --tw-shadow-color: rgb(64 64 64 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-700\/30 {
    --tw-shadow-color: rgb(64 64 64 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-700\/40 {
    --tw-shadow-color: rgb(64 64 64 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-700\/5 {
    --tw-shadow-color: rgb(64 64 64 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-700\/50 {
    --tw-shadow-color: rgb(64 64 64 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-700\/60 {
    --tw-shadow-color: rgb(64 64 64 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-700\/70 {
    --tw-shadow-color: rgb(64 64 64 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-700\/80 {
    --tw-shadow-color: rgb(64 64 64 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-700\/90 {
    --tw-shadow-color: rgb(64 64 64 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-800 {
    --tw-shadow-color: #262626;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-800\/10 {
    --tw-shadow-color: rgb(38 38 38 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-800\/20 {
    --tw-shadow-color: rgb(38 38 38 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-800\/30 {
    --tw-shadow-color: rgb(38 38 38 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-800\/40 {
    --tw-shadow-color: rgb(38 38 38 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-800\/5 {
    --tw-shadow-color: rgb(38 38 38 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-800\/50 {
    --tw-shadow-color: rgb(38 38 38 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-800\/60 {
    --tw-shadow-color: rgb(38 38 38 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-800\/70 {
    --tw-shadow-color: rgb(38 38 38 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-800\/80 {
    --tw-shadow-color: rgb(38 38 38 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-800\/90 {
    --tw-shadow-color: rgb(38 38 38 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-900 {
    --tw-shadow-color: #171717;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-900\/10 {
    --tw-shadow-color: rgb(23 23 23 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-900\/20 {
    --tw-shadow-color: rgb(23 23 23 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-900\/30 {
    --tw-shadow-color: rgb(23 23 23 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-900\/40 {
    --tw-shadow-color: rgb(23 23 23 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-900\/5 {
    --tw-shadow-color: rgb(23 23 23 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-900\/50 {
    --tw-shadow-color: rgb(23 23 23 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-900\/60 {
    --tw-shadow-color: rgb(23 23 23 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-900\/70 {
    --tw-shadow-color: rgb(23 23 23 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-900\/80 {
    --tw-shadow-color: rgb(23 23 23 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-900\/90 {
    --tw-shadow-color: rgb(23 23 23 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-950 {
    --tw-shadow-color: #0a0a0a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-950\/10 {
    --tw-shadow-color: rgb(10 10 10 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-950\/20 {
    --tw-shadow-color: rgb(10 10 10 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-950\/30 {
    --tw-shadow-color: rgb(10 10 10 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-950\/40 {
    --tw-shadow-color: rgb(10 10 10 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-950\/5 {
    --tw-shadow-color: rgb(10 10 10 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-950\/50 {
    --tw-shadow-color: rgb(10 10 10 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-950\/60 {
    --tw-shadow-color: rgb(10 10 10 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-950\/70 {
    --tw-shadow-color: rgb(10 10 10 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-950\/80 {
    --tw-shadow-color: rgb(10 10 10 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-neutral-950\/90 {
    --tw-shadow-color: rgb(10 10 10 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-100 {
    --tw-shadow-color: #ffedd5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-100\/10 {
    --tw-shadow-color: rgb(255 237 213 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-100\/20 {
    --tw-shadow-color: rgb(255 237 213 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-100\/30 {
    --tw-shadow-color: rgb(255 237 213 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-100\/40 {
    --tw-shadow-color: rgb(255 237 213 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-100\/5 {
    --tw-shadow-color: rgb(255 237 213 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-100\/50 {
    --tw-shadow-color: rgb(255 237 213 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-100\/60 {
    --tw-shadow-color: rgb(255 237 213 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-100\/70 {
    --tw-shadow-color: rgb(255 237 213 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-100\/80 {
    --tw-shadow-color: rgb(255 237 213 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-100\/90 {
    --tw-shadow-color: rgb(255 237 213 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-200 {
    --tw-shadow-color: #fed7aa;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-200\/10 {
    --tw-shadow-color: rgb(254 215 170 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-200\/20 {
    --tw-shadow-color: rgb(254 215 170 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-200\/30 {
    --tw-shadow-color: rgb(254 215 170 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-200\/40 {
    --tw-shadow-color: rgb(254 215 170 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-200\/5 {
    --tw-shadow-color: rgb(254 215 170 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-200\/50 {
    --tw-shadow-color: rgb(254 215 170 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-200\/60 {
    --tw-shadow-color: rgb(254 215 170 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-200\/70 {
    --tw-shadow-color: rgb(254 215 170 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-200\/80 {
    --tw-shadow-color: rgb(254 215 170 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-200\/90 {
    --tw-shadow-color: rgb(254 215 170 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-300 {
    --tw-shadow-color: #fdba74;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-300\/10 {
    --tw-shadow-color: rgb(253 186 116 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-300\/20 {
    --tw-shadow-color: rgb(253 186 116 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-300\/30 {
    --tw-shadow-color: rgb(253 186 116 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-300\/40 {
    --tw-shadow-color: rgb(253 186 116 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-300\/5 {
    --tw-shadow-color: rgb(253 186 116 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-300\/50 {
    --tw-shadow-color: rgb(253 186 116 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-300\/60 {
    --tw-shadow-color: rgb(253 186 116 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-300\/70 {
    --tw-shadow-color: rgb(253 186 116 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-300\/80 {
    --tw-shadow-color: rgb(253 186 116 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-300\/90 {
    --tw-shadow-color: rgb(253 186 116 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-400 {
    --tw-shadow-color: #fb923c;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-400\/10 {
    --tw-shadow-color: rgb(251 146 60 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-400\/20 {
    --tw-shadow-color: rgb(251 146 60 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-400\/30 {
    --tw-shadow-color: rgb(251 146 60 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-400\/40 {
    --tw-shadow-color: rgb(251 146 60 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-400\/5 {
    --tw-shadow-color: rgb(251 146 60 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-400\/50 {
    --tw-shadow-color: rgb(251 146 60 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-400\/60 {
    --tw-shadow-color: rgb(251 146 60 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-400\/70 {
    --tw-shadow-color: rgb(251 146 60 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-400\/80 {
    --tw-shadow-color: rgb(251 146 60 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-400\/90 {
    --tw-shadow-color: rgb(251 146 60 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-50 {
    --tw-shadow-color: #fff7ed;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-50\/10 {
    --tw-shadow-color: rgb(255 247 237 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-50\/20 {
    --tw-shadow-color: rgb(255 247 237 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-50\/30 {
    --tw-shadow-color: rgb(255 247 237 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-50\/40 {
    --tw-shadow-color: rgb(255 247 237 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-50\/5 {
    --tw-shadow-color: rgb(255 247 237 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-50\/50 {
    --tw-shadow-color: rgb(255 247 237 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-50\/60 {
    --tw-shadow-color: rgb(255 247 237 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-50\/70 {
    --tw-shadow-color: rgb(255 247 237 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-50\/80 {
    --tw-shadow-color: rgb(255 247 237 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-50\/90 {
    --tw-shadow-color: rgb(255 247 237 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-500 {
    --tw-shadow-color: #f97316;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-500\/10 {
    --tw-shadow-color: rgb(249 115 22 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-500\/20 {
    --tw-shadow-color: rgb(249 115 22 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-500\/30 {
    --tw-shadow-color: rgb(249 115 22 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-500\/40 {
    --tw-shadow-color: rgb(249 115 22 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-500\/5 {
    --tw-shadow-color: rgb(249 115 22 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-500\/50 {
    --tw-shadow-color: rgb(249 115 22 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-500\/60 {
    --tw-shadow-color: rgb(249 115 22 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-500\/70 {
    --tw-shadow-color: rgb(249 115 22 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-500\/80 {
    --tw-shadow-color: rgb(249 115 22 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-500\/90 {
    --tw-shadow-color: rgb(249 115 22 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-600 {
    --tw-shadow-color: #ea580c;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-600\/10 {
    --tw-shadow-color: rgb(234 88 12 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-600\/20 {
    --tw-shadow-color: rgb(234 88 12 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-600\/30 {
    --tw-shadow-color: rgb(234 88 12 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-600\/40 {
    --tw-shadow-color: rgb(234 88 12 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-600\/5 {
    --tw-shadow-color: rgb(234 88 12 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-600\/50 {
    --tw-shadow-color: rgb(234 88 12 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-600\/60 {
    --tw-shadow-color: rgb(234 88 12 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-600\/70 {
    --tw-shadow-color: rgb(234 88 12 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-600\/80 {
    --tw-shadow-color: rgb(234 88 12 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-600\/90 {
    --tw-shadow-color: rgb(234 88 12 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-700 {
    --tw-shadow-color: #c2410c;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-700\/10 {
    --tw-shadow-color: rgb(194 65 12 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-700\/20 {
    --tw-shadow-color: rgb(194 65 12 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-700\/30 {
    --tw-shadow-color: rgb(194 65 12 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-700\/40 {
    --tw-shadow-color: rgb(194 65 12 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-700\/5 {
    --tw-shadow-color: rgb(194 65 12 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-700\/50 {
    --tw-shadow-color: rgb(194 65 12 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-700\/60 {
    --tw-shadow-color: rgb(194 65 12 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-700\/70 {
    --tw-shadow-color: rgb(194 65 12 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-700\/80 {
    --tw-shadow-color: rgb(194 65 12 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-700\/90 {
    --tw-shadow-color: rgb(194 65 12 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-800 {
    --tw-shadow-color: #9a3412;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-800\/10 {
    --tw-shadow-color: rgb(154 52 18 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-800\/20 {
    --tw-shadow-color: rgb(154 52 18 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-800\/30 {
    --tw-shadow-color: rgb(154 52 18 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-800\/40 {
    --tw-shadow-color: rgb(154 52 18 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-800\/5 {
    --tw-shadow-color: rgb(154 52 18 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-800\/50 {
    --tw-shadow-color: rgb(154 52 18 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-800\/60 {
    --tw-shadow-color: rgb(154 52 18 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-800\/70 {
    --tw-shadow-color: rgb(154 52 18 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-800\/80 {
    --tw-shadow-color: rgb(154 52 18 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-800\/90 {
    --tw-shadow-color: rgb(154 52 18 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-900 {
    --tw-shadow-color: #7c2d12;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-900\/10 {
    --tw-shadow-color: rgb(124 45 18 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-900\/20 {
    --tw-shadow-color: rgb(124 45 18 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-900\/30 {
    --tw-shadow-color: rgb(124 45 18 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-900\/40 {
    --tw-shadow-color: rgb(124 45 18 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-900\/5 {
    --tw-shadow-color: rgb(124 45 18 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-900\/50 {
    --tw-shadow-color: rgb(124 45 18 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-900\/60 {
    --tw-shadow-color: rgb(124 45 18 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-900\/70 {
    --tw-shadow-color: rgb(124 45 18 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-900\/80 {
    --tw-shadow-color: rgb(124 45 18 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-900\/90 {
    --tw-shadow-color: rgb(124 45 18 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-950 {
    --tw-shadow-color: #431407;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-950\/10 {
    --tw-shadow-color: rgb(67 20 7 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-950\/20 {
    --tw-shadow-color: rgb(67 20 7 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-950\/30 {
    --tw-shadow-color: rgb(67 20 7 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-950\/40 {
    --tw-shadow-color: rgb(67 20 7 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-950\/5 {
    --tw-shadow-color: rgb(67 20 7 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-950\/50 {
    --tw-shadow-color: rgb(67 20 7 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-950\/60 {
    --tw-shadow-color: rgb(67 20 7 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-950\/70 {
    --tw-shadow-color: rgb(67 20 7 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-950\/80 {
    --tw-shadow-color: rgb(67 20 7 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-orange-950\/90 {
    --tw-shadow-color: rgb(67 20 7 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-100 {
    --tw-shadow-color: #fce7f3;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-100\/10 {
    --tw-shadow-color: rgb(252 231 243 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-100\/20 {
    --tw-shadow-color: rgb(252 231 243 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-100\/30 {
    --tw-shadow-color: rgb(252 231 243 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-100\/40 {
    --tw-shadow-color: rgb(252 231 243 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-100\/5 {
    --tw-shadow-color: rgb(252 231 243 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-100\/50 {
    --tw-shadow-color: rgb(252 231 243 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-100\/60 {
    --tw-shadow-color: rgb(252 231 243 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-100\/70 {
    --tw-shadow-color: rgb(252 231 243 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-100\/80 {
    --tw-shadow-color: rgb(252 231 243 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-100\/90 {
    --tw-shadow-color: rgb(252 231 243 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-200 {
    --tw-shadow-color: #fbcfe8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-200\/10 {
    --tw-shadow-color: rgb(251 207 232 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-200\/20 {
    --tw-shadow-color: rgb(251 207 232 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-200\/30 {
    --tw-shadow-color: rgb(251 207 232 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-200\/40 {
    --tw-shadow-color: rgb(251 207 232 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-200\/5 {
    --tw-shadow-color: rgb(251 207 232 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-200\/50 {
    --tw-shadow-color: rgb(251 207 232 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-200\/60 {
    --tw-shadow-color: rgb(251 207 232 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-200\/70 {
    --tw-shadow-color: rgb(251 207 232 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-200\/80 {
    --tw-shadow-color: rgb(251 207 232 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-200\/90 {
    --tw-shadow-color: rgb(251 207 232 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-300 {
    --tw-shadow-color: #f9a8d4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-300\/10 {
    --tw-shadow-color: rgb(249 168 212 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-300\/20 {
    --tw-shadow-color: rgb(249 168 212 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-300\/30 {
    --tw-shadow-color: rgb(249 168 212 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-300\/40 {
    --tw-shadow-color: rgb(249 168 212 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-300\/5 {
    --tw-shadow-color: rgb(249 168 212 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-300\/50 {
    --tw-shadow-color: rgb(249 168 212 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-300\/60 {
    --tw-shadow-color: rgb(249 168 212 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-300\/70 {
    --tw-shadow-color: rgb(249 168 212 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-300\/80 {
    --tw-shadow-color: rgb(249 168 212 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-300\/90 {
    --tw-shadow-color: rgb(249 168 212 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-400 {
    --tw-shadow-color: #f472b6;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-400\/10 {
    --tw-shadow-color: rgb(244 114 182 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-400\/20 {
    --tw-shadow-color: rgb(244 114 182 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-400\/30 {
    --tw-shadow-color: rgb(244 114 182 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-400\/40 {
    --tw-shadow-color: rgb(244 114 182 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-400\/5 {
    --tw-shadow-color: rgb(244 114 182 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-400\/50 {
    --tw-shadow-color: rgb(244 114 182 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-400\/60 {
    --tw-shadow-color: rgb(244 114 182 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-400\/70 {
    --tw-shadow-color: rgb(244 114 182 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-400\/80 {
    --tw-shadow-color: rgb(244 114 182 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-400\/90 {
    --tw-shadow-color: rgb(244 114 182 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-50 {
    --tw-shadow-color: #fdf2f8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-50\/10 {
    --tw-shadow-color: rgb(253 242 248 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-50\/20 {
    --tw-shadow-color: rgb(253 242 248 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-50\/30 {
    --tw-shadow-color: rgb(253 242 248 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-50\/40 {
    --tw-shadow-color: rgb(253 242 248 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-50\/5 {
    --tw-shadow-color: rgb(253 242 248 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-50\/50 {
    --tw-shadow-color: rgb(253 242 248 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-50\/60 {
    --tw-shadow-color: rgb(253 242 248 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-50\/70 {
    --tw-shadow-color: rgb(253 242 248 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-50\/80 {
    --tw-shadow-color: rgb(253 242 248 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-50\/90 {
    --tw-shadow-color: rgb(253 242 248 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-500 {
    --tw-shadow-color: #ec4899;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-500\/10 {
    --tw-shadow-color: rgb(236 72 153 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-500\/20 {
    --tw-shadow-color: rgb(236 72 153 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-500\/30 {
    --tw-shadow-color: rgb(236 72 153 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-500\/40 {
    --tw-shadow-color: rgb(236 72 153 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-500\/5 {
    --tw-shadow-color: rgb(236 72 153 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-500\/50 {
    --tw-shadow-color: rgb(236 72 153 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-500\/60 {
    --tw-shadow-color: rgb(236 72 153 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-500\/70 {
    --tw-shadow-color: rgb(236 72 153 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-500\/80 {
    --tw-shadow-color: rgb(236 72 153 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-500\/90 {
    --tw-shadow-color: rgb(236 72 153 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-600 {
    --tw-shadow-color: #db2777;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-600\/10 {
    --tw-shadow-color: rgb(219 39 119 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-600\/20 {
    --tw-shadow-color: rgb(219 39 119 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-600\/30 {
    --tw-shadow-color: rgb(219 39 119 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-600\/40 {
    --tw-shadow-color: rgb(219 39 119 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-600\/5 {
    --tw-shadow-color: rgb(219 39 119 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-600\/50 {
    --tw-shadow-color: rgb(219 39 119 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-600\/60 {
    --tw-shadow-color: rgb(219 39 119 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-600\/70 {
    --tw-shadow-color: rgb(219 39 119 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-600\/80 {
    --tw-shadow-color: rgb(219 39 119 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-600\/90 {
    --tw-shadow-color: rgb(219 39 119 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-700 {
    --tw-shadow-color: #be185d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-700\/10 {
    --tw-shadow-color: rgb(190 24 93 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-700\/20 {
    --tw-shadow-color: rgb(190 24 93 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-700\/30 {
    --tw-shadow-color: rgb(190 24 93 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-700\/40 {
    --tw-shadow-color: rgb(190 24 93 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-700\/5 {
    --tw-shadow-color: rgb(190 24 93 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-700\/50 {
    --tw-shadow-color: rgb(190 24 93 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-700\/60 {
    --tw-shadow-color: rgb(190 24 93 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-700\/70 {
    --tw-shadow-color: rgb(190 24 93 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-700\/80 {
    --tw-shadow-color: rgb(190 24 93 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-700\/90 {
    --tw-shadow-color: rgb(190 24 93 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-800 {
    --tw-shadow-color: #9d174d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-800\/10 {
    --tw-shadow-color: rgb(157 23 77 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-800\/20 {
    --tw-shadow-color: rgb(157 23 77 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-800\/30 {
    --tw-shadow-color: rgb(157 23 77 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-800\/40 {
    --tw-shadow-color: rgb(157 23 77 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-800\/5 {
    --tw-shadow-color: rgb(157 23 77 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-800\/50 {
    --tw-shadow-color: rgb(157 23 77 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-800\/60 {
    --tw-shadow-color: rgb(157 23 77 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-800\/70 {
    --tw-shadow-color: rgb(157 23 77 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-800\/80 {
    --tw-shadow-color: rgb(157 23 77 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-800\/90 {
    --tw-shadow-color: rgb(157 23 77 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-900 {
    --tw-shadow-color: #831843;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-900\/10 {
    --tw-shadow-color: rgb(131 24 67 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-900\/20 {
    --tw-shadow-color: rgb(131 24 67 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-900\/30 {
    --tw-shadow-color: rgb(131 24 67 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-900\/40 {
    --tw-shadow-color: rgb(131 24 67 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-900\/5 {
    --tw-shadow-color: rgb(131 24 67 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-900\/50 {
    --tw-shadow-color: rgb(131 24 67 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-900\/60 {
    --tw-shadow-color: rgb(131 24 67 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-900\/70 {
    --tw-shadow-color: rgb(131 24 67 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-900\/80 {
    --tw-shadow-color: rgb(131 24 67 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-900\/90 {
    --tw-shadow-color: rgb(131 24 67 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-950 {
    --tw-shadow-color: #500724;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-950\/10 {
    --tw-shadow-color: rgb(80 7 36 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-950\/20 {
    --tw-shadow-color: rgb(80 7 36 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-950\/30 {
    --tw-shadow-color: rgb(80 7 36 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-950\/40 {
    --tw-shadow-color: rgb(80 7 36 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-950\/5 {
    --tw-shadow-color: rgb(80 7 36 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-950\/50 {
    --tw-shadow-color: rgb(80 7 36 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-950\/60 {
    --tw-shadow-color: rgb(80 7 36 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-950\/70 {
    --tw-shadow-color: rgb(80 7 36 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-950\/80 {
    --tw-shadow-color: rgb(80 7 36 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-pink-950\/90 {
    --tw-shadow-color: rgb(80 7 36 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-100 {
    --tw-shadow-color: #f3e8ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-100\/10 {
    --tw-shadow-color: rgb(243 232 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-100\/20 {
    --tw-shadow-color: rgb(243 232 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-100\/30 {
    --tw-shadow-color: rgb(243 232 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-100\/40 {
    --tw-shadow-color: rgb(243 232 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-100\/5 {
    --tw-shadow-color: rgb(243 232 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-100\/50 {
    --tw-shadow-color: rgb(243 232 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-100\/60 {
    --tw-shadow-color: rgb(243 232 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-100\/70 {
    --tw-shadow-color: rgb(243 232 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-100\/80 {
    --tw-shadow-color: rgb(243 232 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-100\/90 {
    --tw-shadow-color: rgb(243 232 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-200 {
    --tw-shadow-color: #e9d5ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-200\/10 {
    --tw-shadow-color: rgb(233 213 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-200\/20 {
    --tw-shadow-color: rgb(233 213 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-200\/30 {
    --tw-shadow-color: rgb(233 213 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-200\/40 {
    --tw-shadow-color: rgb(233 213 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-200\/5 {
    --tw-shadow-color: rgb(233 213 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-200\/50 {
    --tw-shadow-color: rgb(233 213 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-200\/60 {
    --tw-shadow-color: rgb(233 213 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-200\/70 {
    --tw-shadow-color: rgb(233 213 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-200\/80 {
    --tw-shadow-color: rgb(233 213 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-200\/90 {
    --tw-shadow-color: rgb(233 213 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-300 {
    --tw-shadow-color: #d8b4fe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-300\/10 {
    --tw-shadow-color: rgb(216 180 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-300\/20 {
    --tw-shadow-color: rgb(216 180 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-300\/30 {
    --tw-shadow-color: rgb(216 180 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-300\/40 {
    --tw-shadow-color: rgb(216 180 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-300\/5 {
    --tw-shadow-color: rgb(216 180 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-300\/50 {
    --tw-shadow-color: rgb(216 180 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-300\/60 {
    --tw-shadow-color: rgb(216 180 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-300\/70 {
    --tw-shadow-color: rgb(216 180 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-300\/80 {
    --tw-shadow-color: rgb(216 180 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-300\/90 {
    --tw-shadow-color: rgb(216 180 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-400 {
    --tw-shadow-color: #c084fc;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-400\/10 {
    --tw-shadow-color: rgb(192 132 252 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-400\/20 {
    --tw-shadow-color: rgb(192 132 252 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-400\/30 {
    --tw-shadow-color: rgb(192 132 252 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-400\/40 {
    --tw-shadow-color: rgb(192 132 252 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-400\/5 {
    --tw-shadow-color: rgb(192 132 252 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-400\/50 {
    --tw-shadow-color: rgb(192 132 252 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-400\/60 {
    --tw-shadow-color: rgb(192 132 252 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-400\/70 {
    --tw-shadow-color: rgb(192 132 252 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-400\/80 {
    --tw-shadow-color: rgb(192 132 252 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-400\/90 {
    --tw-shadow-color: rgb(192 132 252 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-50 {
    --tw-shadow-color: #faf5ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-50\/10 {
    --tw-shadow-color: rgb(250 245 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-50\/20 {
    --tw-shadow-color: rgb(250 245 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-50\/30 {
    --tw-shadow-color: rgb(250 245 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-50\/40 {
    --tw-shadow-color: rgb(250 245 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-50\/5 {
    --tw-shadow-color: rgb(250 245 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-50\/50 {
    --tw-shadow-color: rgb(250 245 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-50\/60 {
    --tw-shadow-color: rgb(250 245 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-50\/70 {
    --tw-shadow-color: rgb(250 245 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-50\/80 {
    --tw-shadow-color: rgb(250 245 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-50\/90 {
    --tw-shadow-color: rgb(250 245 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-500 {
    --tw-shadow-color: #a855f7;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-500\/10 {
    --tw-shadow-color: rgb(168 85 247 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-500\/20 {
    --tw-shadow-color: rgb(168 85 247 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-500\/30 {
    --tw-shadow-color: rgb(168 85 247 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-500\/40 {
    --tw-shadow-color: rgb(168 85 247 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-500\/5 {
    --tw-shadow-color: rgb(168 85 247 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-500\/50 {
    --tw-shadow-color: rgb(168 85 247 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-500\/60 {
    --tw-shadow-color: rgb(168 85 247 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-500\/70 {
    --tw-shadow-color: rgb(168 85 247 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-500\/80 {
    --tw-shadow-color: rgb(168 85 247 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-500\/90 {
    --tw-shadow-color: rgb(168 85 247 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-600 {
    --tw-shadow-color: #9333ea;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-600\/10 {
    --tw-shadow-color: rgb(147 51 234 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-600\/20 {
    --tw-shadow-color: rgb(147 51 234 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-600\/30 {
    --tw-shadow-color: rgb(147 51 234 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-600\/40 {
    --tw-shadow-color: rgb(147 51 234 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-600\/5 {
    --tw-shadow-color: rgb(147 51 234 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-600\/50 {
    --tw-shadow-color: rgb(147 51 234 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-600\/60 {
    --tw-shadow-color: rgb(147 51 234 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-600\/70 {
    --tw-shadow-color: rgb(147 51 234 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-600\/80 {
    --tw-shadow-color: rgb(147 51 234 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-600\/90 {
    --tw-shadow-color: rgb(147 51 234 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-700 {
    --tw-shadow-color: #7e22ce;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-700\/10 {
    --tw-shadow-color: rgb(126 34 206 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-700\/20 {
    --tw-shadow-color: rgb(126 34 206 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-700\/30 {
    --tw-shadow-color: rgb(126 34 206 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-700\/40 {
    --tw-shadow-color: rgb(126 34 206 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-700\/5 {
    --tw-shadow-color: rgb(126 34 206 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-700\/50 {
    --tw-shadow-color: rgb(126 34 206 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-700\/60 {
    --tw-shadow-color: rgb(126 34 206 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-700\/70 {
    --tw-shadow-color: rgb(126 34 206 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-700\/80 {
    --tw-shadow-color: rgb(126 34 206 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-700\/90 {
    --tw-shadow-color: rgb(126 34 206 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-800 {
    --tw-shadow-color: #6b21a8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-800\/10 {
    --tw-shadow-color: rgb(107 33 168 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-800\/20 {
    --tw-shadow-color: rgb(107 33 168 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-800\/30 {
    --tw-shadow-color: rgb(107 33 168 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-800\/40 {
    --tw-shadow-color: rgb(107 33 168 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-800\/5 {
    --tw-shadow-color: rgb(107 33 168 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-800\/50 {
    --tw-shadow-color: rgb(107 33 168 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-800\/60 {
    --tw-shadow-color: rgb(107 33 168 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-800\/70 {
    --tw-shadow-color: rgb(107 33 168 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-800\/80 {
    --tw-shadow-color: rgb(107 33 168 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-800\/90 {
    --tw-shadow-color: rgb(107 33 168 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-900 {
    --tw-shadow-color: #581c87;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-900\/10 {
    --tw-shadow-color: rgb(88 28 135 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-900\/20 {
    --tw-shadow-color: rgb(88 28 135 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-900\/30 {
    --tw-shadow-color: rgb(88 28 135 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-900\/40 {
    --tw-shadow-color: rgb(88 28 135 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-900\/5 {
    --tw-shadow-color: rgb(88 28 135 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-900\/50 {
    --tw-shadow-color: rgb(88 28 135 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-900\/60 {
    --tw-shadow-color: rgb(88 28 135 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-900\/70 {
    --tw-shadow-color: rgb(88 28 135 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-900\/80 {
    --tw-shadow-color: rgb(88 28 135 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-900\/90 {
    --tw-shadow-color: rgb(88 28 135 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-950 {
    --tw-shadow-color: #3b0764;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-950\/10 {
    --tw-shadow-color: rgb(59 7 100 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-950\/20 {
    --tw-shadow-color: rgb(59 7 100 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-950\/30 {
    --tw-shadow-color: rgb(59 7 100 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-950\/40 {
    --tw-shadow-color: rgb(59 7 100 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-950\/5 {
    --tw-shadow-color: rgb(59 7 100 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-950\/50 {
    --tw-shadow-color: rgb(59 7 100 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-950\/60 {
    --tw-shadow-color: rgb(59 7 100 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-950\/70 {
    --tw-shadow-color: rgb(59 7 100 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-950\/80 {
    --tw-shadow-color: rgb(59 7 100 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-purple-950\/90 {
    --tw-shadow-color: rgb(59 7 100 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-100 {
    --tw-shadow-color: #fee2e2;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-100\/10 {
    --tw-shadow-color: rgb(254 226 226 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-100\/20 {
    --tw-shadow-color: rgb(254 226 226 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-100\/30 {
    --tw-shadow-color: rgb(254 226 226 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-100\/40 {
    --tw-shadow-color: rgb(254 226 226 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-100\/5 {
    --tw-shadow-color: rgb(254 226 226 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-100\/50 {
    --tw-shadow-color: rgb(254 226 226 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-100\/60 {
    --tw-shadow-color: rgb(254 226 226 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-100\/70 {
    --tw-shadow-color: rgb(254 226 226 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-100\/80 {
    --tw-shadow-color: rgb(254 226 226 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-100\/90 {
    --tw-shadow-color: rgb(254 226 226 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-200 {
    --tw-shadow-color: #fecaca;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-200\/10 {
    --tw-shadow-color: rgb(254 202 202 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-200\/20 {
    --tw-shadow-color: rgb(254 202 202 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-200\/30 {
    --tw-shadow-color: rgb(254 202 202 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-200\/40 {
    --tw-shadow-color: rgb(254 202 202 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-200\/5 {
    --tw-shadow-color: rgb(254 202 202 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-200\/50 {
    --tw-shadow-color: rgb(254 202 202 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-200\/60 {
    --tw-shadow-color: rgb(254 202 202 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-200\/70 {
    --tw-shadow-color: rgb(254 202 202 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-200\/80 {
    --tw-shadow-color: rgb(254 202 202 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-200\/90 {
    --tw-shadow-color: rgb(254 202 202 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-300 {
    --tw-shadow-color: #fca5a5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-300\/10 {
    --tw-shadow-color: rgb(252 165 165 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-300\/20 {
    --tw-shadow-color: rgb(252 165 165 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-300\/30 {
    --tw-shadow-color: rgb(252 165 165 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-300\/40 {
    --tw-shadow-color: rgb(252 165 165 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-300\/5 {
    --tw-shadow-color: rgb(252 165 165 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-300\/50 {
    --tw-shadow-color: rgb(252 165 165 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-300\/60 {
    --tw-shadow-color: rgb(252 165 165 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-300\/70 {
    --tw-shadow-color: rgb(252 165 165 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-300\/80 {
    --tw-shadow-color: rgb(252 165 165 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-300\/90 {
    --tw-shadow-color: rgb(252 165 165 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-400 {
    --tw-shadow-color: #f87171;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-400\/10 {
    --tw-shadow-color: rgb(248 113 113 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-400\/20 {
    --tw-shadow-color: rgb(248 113 113 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-400\/30 {
    --tw-shadow-color: rgb(248 113 113 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-400\/40 {
    --tw-shadow-color: rgb(248 113 113 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-400\/5 {
    --tw-shadow-color: rgb(248 113 113 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-400\/50 {
    --tw-shadow-color: rgb(248 113 113 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-400\/60 {
    --tw-shadow-color: rgb(248 113 113 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-400\/70 {
    --tw-shadow-color: rgb(248 113 113 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-400\/80 {
    --tw-shadow-color: rgb(248 113 113 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-400\/90 {
    --tw-shadow-color: rgb(248 113 113 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-50 {
    --tw-shadow-color: #fef2f2;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-50\/10 {
    --tw-shadow-color: rgb(254 242 242 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-50\/20 {
    --tw-shadow-color: rgb(254 242 242 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-50\/30 {
    --tw-shadow-color: rgb(254 242 242 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-50\/40 {
    --tw-shadow-color: rgb(254 242 242 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-50\/5 {
    --tw-shadow-color: rgb(254 242 242 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-50\/50 {
    --tw-shadow-color: rgb(254 242 242 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-50\/60 {
    --tw-shadow-color: rgb(254 242 242 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-50\/70 {
    --tw-shadow-color: rgb(254 242 242 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-50\/80 {
    --tw-shadow-color: rgb(254 242 242 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-50\/90 {
    --tw-shadow-color: rgb(254 242 242 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-500 {
    --tw-shadow-color: #ef4444;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-500\/10 {
    --tw-shadow-color: rgb(239 68 68 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-500\/20 {
    --tw-shadow-color: rgb(239 68 68 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-500\/30 {
    --tw-shadow-color: rgb(239 68 68 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-500\/40 {
    --tw-shadow-color: rgb(239 68 68 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-500\/5 {
    --tw-shadow-color: rgb(239 68 68 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-500\/50 {
    --tw-shadow-color: rgb(239 68 68 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-500\/60 {
    --tw-shadow-color: rgb(239 68 68 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-500\/70 {
    --tw-shadow-color: rgb(239 68 68 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-500\/80 {
    --tw-shadow-color: rgb(239 68 68 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-500\/90 {
    --tw-shadow-color: rgb(239 68 68 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-600 {
    --tw-shadow-color: #dc2626;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-600\/10 {
    --tw-shadow-color: rgb(220 38 38 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-600\/20 {
    --tw-shadow-color: rgb(220 38 38 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-600\/30 {
    --tw-shadow-color: rgb(220 38 38 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-600\/40 {
    --tw-shadow-color: rgb(220 38 38 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-600\/5 {
    --tw-shadow-color: rgb(220 38 38 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-600\/50 {
    --tw-shadow-color: rgb(220 38 38 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-600\/60 {
    --tw-shadow-color: rgb(220 38 38 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-600\/70 {
    --tw-shadow-color: rgb(220 38 38 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-600\/80 {
    --tw-shadow-color: rgb(220 38 38 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-600\/90 {
    --tw-shadow-color: rgb(220 38 38 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-700 {
    --tw-shadow-color: #b91c1c;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-700\/10 {
    --tw-shadow-color: rgb(185 28 28 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-700\/20 {
    --tw-shadow-color: rgb(185 28 28 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-700\/30 {
    --tw-shadow-color: rgb(185 28 28 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-700\/40 {
    --tw-shadow-color: rgb(185 28 28 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-700\/5 {
    --tw-shadow-color: rgb(185 28 28 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-700\/50 {
    --tw-shadow-color: rgb(185 28 28 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-700\/60 {
    --tw-shadow-color: rgb(185 28 28 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-700\/70 {
    --tw-shadow-color: rgb(185 28 28 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-700\/80 {
    --tw-shadow-color: rgb(185 28 28 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-700\/90 {
    --tw-shadow-color: rgb(185 28 28 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-800 {
    --tw-shadow-color: #991b1b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-800\/10 {
    --tw-shadow-color: rgb(153 27 27 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-800\/20 {
    --tw-shadow-color: rgb(153 27 27 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-800\/30 {
    --tw-shadow-color: rgb(153 27 27 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-800\/40 {
    --tw-shadow-color: rgb(153 27 27 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-800\/5 {
    --tw-shadow-color: rgb(153 27 27 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-800\/50 {
    --tw-shadow-color: rgb(153 27 27 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-800\/60 {
    --tw-shadow-color: rgb(153 27 27 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-800\/70 {
    --tw-shadow-color: rgb(153 27 27 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-800\/80 {
    --tw-shadow-color: rgb(153 27 27 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-800\/90 {
    --tw-shadow-color: rgb(153 27 27 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-900 {
    --tw-shadow-color: #7f1d1d;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-900\/10 {
    --tw-shadow-color: rgb(127 29 29 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-900\/20 {
    --tw-shadow-color: rgb(127 29 29 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-900\/30 {
    --tw-shadow-color: rgb(127 29 29 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-900\/40 {
    --tw-shadow-color: rgb(127 29 29 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-900\/5 {
    --tw-shadow-color: rgb(127 29 29 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-900\/50 {
    --tw-shadow-color: rgb(127 29 29 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-900\/60 {
    --tw-shadow-color: rgb(127 29 29 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-900\/70 {
    --tw-shadow-color: rgb(127 29 29 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-900\/80 {
    --tw-shadow-color: rgb(127 29 29 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-900\/90 {
    --tw-shadow-color: rgb(127 29 29 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-950 {
    --tw-shadow-color: #450a0a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-950\/10 {
    --tw-shadow-color: rgb(69 10 10 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-950\/20 {
    --tw-shadow-color: rgb(69 10 10 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-950\/30 {
    --tw-shadow-color: rgb(69 10 10 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-950\/40 {
    --tw-shadow-color: rgb(69 10 10 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-950\/5 {
    --tw-shadow-color: rgb(69 10 10 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-950\/50 {
    --tw-shadow-color: rgb(69 10 10 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-950\/60 {
    --tw-shadow-color: rgb(69 10 10 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-950\/70 {
    --tw-shadow-color: rgb(69 10 10 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-950\/80 {
    --tw-shadow-color: rgb(69 10 10 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-red-950\/90 {
    --tw-shadow-color: rgb(69 10 10 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-100 {
    --tw-shadow-color: #ffe4e6;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-100\/10 {
    --tw-shadow-color: rgb(255 228 230 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-100\/20 {
    --tw-shadow-color: rgb(255 228 230 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-100\/30 {
    --tw-shadow-color: rgb(255 228 230 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-100\/40 {
    --tw-shadow-color: rgb(255 228 230 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-100\/5 {
    --tw-shadow-color: rgb(255 228 230 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-100\/50 {
    --tw-shadow-color: rgb(255 228 230 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-100\/60 {
    --tw-shadow-color: rgb(255 228 230 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-100\/70 {
    --tw-shadow-color: rgb(255 228 230 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-100\/80 {
    --tw-shadow-color: rgb(255 228 230 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-100\/90 {
    --tw-shadow-color: rgb(255 228 230 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-200 {
    --tw-shadow-color: #fecdd3;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-200\/10 {
    --tw-shadow-color: rgb(254 205 211 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-200\/20 {
    --tw-shadow-color: rgb(254 205 211 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-200\/30 {
    --tw-shadow-color: rgb(254 205 211 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-200\/40 {
    --tw-shadow-color: rgb(254 205 211 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-200\/5 {
    --tw-shadow-color: rgb(254 205 211 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-200\/50 {
    --tw-shadow-color: rgb(254 205 211 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-200\/60 {
    --tw-shadow-color: rgb(254 205 211 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-200\/70 {
    --tw-shadow-color: rgb(254 205 211 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-200\/80 {
    --tw-shadow-color: rgb(254 205 211 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-200\/90 {
    --tw-shadow-color: rgb(254 205 211 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-300 {
    --tw-shadow-color: #fda4af;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-300\/10 {
    --tw-shadow-color: rgb(253 164 175 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-300\/20 {
    --tw-shadow-color: rgb(253 164 175 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-300\/30 {
    --tw-shadow-color: rgb(253 164 175 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-300\/40 {
    --tw-shadow-color: rgb(253 164 175 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-300\/5 {
    --tw-shadow-color: rgb(253 164 175 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-300\/50 {
    --tw-shadow-color: rgb(253 164 175 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-300\/60 {
    --tw-shadow-color: rgb(253 164 175 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-300\/70 {
    --tw-shadow-color: rgb(253 164 175 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-300\/80 {
    --tw-shadow-color: rgb(253 164 175 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-300\/90 {
    --tw-shadow-color: rgb(253 164 175 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-400 {
    --tw-shadow-color: #fb7185;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-400\/10 {
    --tw-shadow-color: rgb(251 113 133 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-400\/20 {
    --tw-shadow-color: rgb(251 113 133 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-400\/30 {
    --tw-shadow-color: rgb(251 113 133 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-400\/40 {
    --tw-shadow-color: rgb(251 113 133 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-400\/5 {
    --tw-shadow-color: rgb(251 113 133 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-400\/50 {
    --tw-shadow-color: rgb(251 113 133 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-400\/60 {
    --tw-shadow-color: rgb(251 113 133 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-400\/70 {
    --tw-shadow-color: rgb(251 113 133 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-400\/80 {
    --tw-shadow-color: rgb(251 113 133 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-400\/90 {
    --tw-shadow-color: rgb(251 113 133 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-50 {
    --tw-shadow-color: #fff1f2;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-50\/10 {
    --tw-shadow-color: rgb(255 241 242 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-50\/20 {
    --tw-shadow-color: rgb(255 241 242 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-50\/30 {
    --tw-shadow-color: rgb(255 241 242 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-50\/40 {
    --tw-shadow-color: rgb(255 241 242 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-50\/5 {
    --tw-shadow-color: rgb(255 241 242 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-50\/50 {
    --tw-shadow-color: rgb(255 241 242 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-50\/60 {
    --tw-shadow-color: rgb(255 241 242 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-50\/70 {
    --tw-shadow-color: rgb(255 241 242 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-50\/80 {
    --tw-shadow-color: rgb(255 241 242 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-50\/90 {
    --tw-shadow-color: rgb(255 241 242 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-500 {
    --tw-shadow-color: #f43f5e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-500\/10 {
    --tw-shadow-color: rgb(244 63 94 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-500\/20 {
    --tw-shadow-color: rgb(244 63 94 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-500\/30 {
    --tw-shadow-color: rgb(244 63 94 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-500\/40 {
    --tw-shadow-color: rgb(244 63 94 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-500\/5 {
    --tw-shadow-color: rgb(244 63 94 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-500\/50 {
    --tw-shadow-color: rgb(244 63 94 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-500\/60 {
    --tw-shadow-color: rgb(244 63 94 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-500\/70 {
    --tw-shadow-color: rgb(244 63 94 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-500\/80 {
    --tw-shadow-color: rgb(244 63 94 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-500\/90 {
    --tw-shadow-color: rgb(244 63 94 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-600 {
    --tw-shadow-color: #e11d48;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-600\/10 {
    --tw-shadow-color: rgb(225 29 72 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-600\/20 {
    --tw-shadow-color: rgb(225 29 72 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-600\/30 {
    --tw-shadow-color: rgb(225 29 72 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-600\/40 {
    --tw-shadow-color: rgb(225 29 72 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-600\/5 {
    --tw-shadow-color: rgb(225 29 72 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-600\/50 {
    --tw-shadow-color: rgb(225 29 72 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-600\/60 {
    --tw-shadow-color: rgb(225 29 72 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-600\/70 {
    --tw-shadow-color: rgb(225 29 72 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-600\/80 {
    --tw-shadow-color: rgb(225 29 72 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-600\/90 {
    --tw-shadow-color: rgb(225 29 72 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-700 {
    --tw-shadow-color: #be123c;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-700\/10 {
    --tw-shadow-color: rgb(190 18 60 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-700\/20 {
    --tw-shadow-color: rgb(190 18 60 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-700\/30 {
    --tw-shadow-color: rgb(190 18 60 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-700\/40 {
    --tw-shadow-color: rgb(190 18 60 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-700\/5 {
    --tw-shadow-color: rgb(190 18 60 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-700\/50 {
    --tw-shadow-color: rgb(190 18 60 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-700\/60 {
    --tw-shadow-color: rgb(190 18 60 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-700\/70 {
    --tw-shadow-color: rgb(190 18 60 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-700\/80 {
    --tw-shadow-color: rgb(190 18 60 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-700\/90 {
    --tw-shadow-color: rgb(190 18 60 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-800 {
    --tw-shadow-color: #9f1239;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-800\/10 {
    --tw-shadow-color: rgb(159 18 57 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-800\/20 {
    --tw-shadow-color: rgb(159 18 57 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-800\/30 {
    --tw-shadow-color: rgb(159 18 57 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-800\/40 {
    --tw-shadow-color: rgb(159 18 57 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-800\/5 {
    --tw-shadow-color: rgb(159 18 57 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-800\/50 {
    --tw-shadow-color: rgb(159 18 57 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-800\/60 {
    --tw-shadow-color: rgb(159 18 57 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-800\/70 {
    --tw-shadow-color: rgb(159 18 57 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-800\/80 {
    --tw-shadow-color: rgb(159 18 57 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-800\/90 {
    --tw-shadow-color: rgb(159 18 57 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-900 {
    --tw-shadow-color: #881337;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-900\/10 {
    --tw-shadow-color: rgb(136 19 55 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-900\/20 {
    --tw-shadow-color: rgb(136 19 55 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-900\/30 {
    --tw-shadow-color: rgb(136 19 55 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-900\/40 {
    --tw-shadow-color: rgb(136 19 55 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-900\/5 {
    --tw-shadow-color: rgb(136 19 55 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-900\/50 {
    --tw-shadow-color: rgb(136 19 55 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-900\/60 {
    --tw-shadow-color: rgb(136 19 55 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-900\/70 {
    --tw-shadow-color: rgb(136 19 55 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-900\/80 {
    --tw-shadow-color: rgb(136 19 55 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-900\/90 {
    --tw-shadow-color: rgb(136 19 55 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-950 {
    --tw-shadow-color: #4c0519;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-950\/10 {
    --tw-shadow-color: rgb(76 5 25 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-950\/20 {
    --tw-shadow-color: rgb(76 5 25 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-950\/30 {
    --tw-shadow-color: rgb(76 5 25 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-950\/40 {
    --tw-shadow-color: rgb(76 5 25 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-950\/5 {
    --tw-shadow-color: rgb(76 5 25 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-950\/50 {
    --tw-shadow-color: rgb(76 5 25 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-950\/60 {
    --tw-shadow-color: rgb(76 5 25 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-950\/70 {
    --tw-shadow-color: rgb(76 5 25 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-950\/80 {
    --tw-shadow-color: rgb(76 5 25 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-rose-950\/90 {
    --tw-shadow-color: rgb(76 5 25 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-100 {
    --tw-shadow-color: #e0f2fe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-100\/10 {
    --tw-shadow-color: rgb(224 242 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-100\/20 {
    --tw-shadow-color: rgb(224 242 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-100\/30 {
    --tw-shadow-color: rgb(224 242 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-100\/40 {
    --tw-shadow-color: rgb(224 242 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-100\/5 {
    --tw-shadow-color: rgb(224 242 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-100\/50 {
    --tw-shadow-color: rgb(224 242 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-100\/60 {
    --tw-shadow-color: rgb(224 242 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-100\/70 {
    --tw-shadow-color: rgb(224 242 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-100\/80 {
    --tw-shadow-color: rgb(224 242 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-100\/90 {
    --tw-shadow-color: rgb(224 242 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-200 {
    --tw-shadow-color: #bae6fd;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-200\/10 {
    --tw-shadow-color: rgb(186 230 253 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-200\/20 {
    --tw-shadow-color: rgb(186 230 253 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-200\/30 {
    --tw-shadow-color: rgb(186 230 253 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-200\/40 {
    --tw-shadow-color: rgb(186 230 253 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-200\/5 {
    --tw-shadow-color: rgb(186 230 253 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-200\/50 {
    --tw-shadow-color: rgb(186 230 253 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-200\/60 {
    --tw-shadow-color: rgb(186 230 253 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-200\/70 {
    --tw-shadow-color: rgb(186 230 253 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-200\/80 {
    --tw-shadow-color: rgb(186 230 253 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-200\/90 {
    --tw-shadow-color: rgb(186 230 253 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-300 {
    --tw-shadow-color: #7dd3fc;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-300\/10 {
    --tw-shadow-color: rgb(125 211 252 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-300\/20 {
    --tw-shadow-color: rgb(125 211 252 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-300\/30 {
    --tw-shadow-color: rgb(125 211 252 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-300\/40 {
    --tw-shadow-color: rgb(125 211 252 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-300\/5 {
    --tw-shadow-color: rgb(125 211 252 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-300\/50 {
    --tw-shadow-color: rgb(125 211 252 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-300\/60 {
    --tw-shadow-color: rgb(125 211 252 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-300\/70 {
    --tw-shadow-color: rgb(125 211 252 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-300\/80 {
    --tw-shadow-color: rgb(125 211 252 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-300\/90 {
    --tw-shadow-color: rgb(125 211 252 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-400 {
    --tw-shadow-color: #38bdf8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-400\/10 {
    --tw-shadow-color: rgb(56 189 248 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-400\/20 {
    --tw-shadow-color: rgb(56 189 248 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-400\/30 {
    --tw-shadow-color: rgb(56 189 248 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-400\/40 {
    --tw-shadow-color: rgb(56 189 248 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-400\/5 {
    --tw-shadow-color: rgb(56 189 248 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-400\/50 {
    --tw-shadow-color: rgb(56 189 248 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-400\/60 {
    --tw-shadow-color: rgb(56 189 248 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-400\/70 {
    --tw-shadow-color: rgb(56 189 248 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-400\/80 {
    --tw-shadow-color: rgb(56 189 248 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-400\/90 {
    --tw-shadow-color: rgb(56 189 248 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-50 {
    --tw-shadow-color: #f0f9ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-50\/10 {
    --tw-shadow-color: rgb(240 249 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-50\/20 {
    --tw-shadow-color: rgb(240 249 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-50\/30 {
    --tw-shadow-color: rgb(240 249 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-50\/40 {
    --tw-shadow-color: rgb(240 249 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-50\/5 {
    --tw-shadow-color: rgb(240 249 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-50\/50 {
    --tw-shadow-color: rgb(240 249 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-50\/60 {
    --tw-shadow-color: rgb(240 249 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-50\/70 {
    --tw-shadow-color: rgb(240 249 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-50\/80 {
    --tw-shadow-color: rgb(240 249 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-50\/90 {
    --tw-shadow-color: rgb(240 249 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-500 {
    --tw-shadow-color: #0ea5e9;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-500\/10 {
    --tw-shadow-color: rgb(14 165 233 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-500\/20 {
    --tw-shadow-color: rgb(14 165 233 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-500\/30 {
    --tw-shadow-color: rgb(14 165 233 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-500\/40 {
    --tw-shadow-color: rgb(14 165 233 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-500\/5 {
    --tw-shadow-color: rgb(14 165 233 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-500\/50 {
    --tw-shadow-color: rgb(14 165 233 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-500\/60 {
    --tw-shadow-color: rgb(14 165 233 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-500\/70 {
    --tw-shadow-color: rgb(14 165 233 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-500\/80 {
    --tw-shadow-color: rgb(14 165 233 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-500\/90 {
    --tw-shadow-color: rgb(14 165 233 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-600 {
    --tw-shadow-color: #0284c7;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-600\/10 {
    --tw-shadow-color: rgb(2 132 199 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-600\/20 {
    --tw-shadow-color: rgb(2 132 199 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-600\/30 {
    --tw-shadow-color: rgb(2 132 199 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-600\/40 {
    --tw-shadow-color: rgb(2 132 199 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-600\/5 {
    --tw-shadow-color: rgb(2 132 199 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-600\/50 {
    --tw-shadow-color: rgb(2 132 199 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-600\/60 {
    --tw-shadow-color: rgb(2 132 199 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-600\/70 {
    --tw-shadow-color: rgb(2 132 199 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-600\/80 {
    --tw-shadow-color: rgb(2 132 199 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-600\/90 {
    --tw-shadow-color: rgb(2 132 199 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-700 {
    --tw-shadow-color: #0369a1;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-700\/10 {
    --tw-shadow-color: rgb(3 105 161 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-700\/20 {
    --tw-shadow-color: rgb(3 105 161 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-700\/30 {
    --tw-shadow-color: rgb(3 105 161 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-700\/40 {
    --tw-shadow-color: rgb(3 105 161 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-700\/5 {
    --tw-shadow-color: rgb(3 105 161 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-700\/50 {
    --tw-shadow-color: rgb(3 105 161 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-700\/60 {
    --tw-shadow-color: rgb(3 105 161 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-700\/70 {
    --tw-shadow-color: rgb(3 105 161 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-700\/80 {
    --tw-shadow-color: rgb(3 105 161 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-700\/90 {
    --tw-shadow-color: rgb(3 105 161 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-800 {
    --tw-shadow-color: #075985;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-800\/10 {
    --tw-shadow-color: rgb(7 89 133 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-800\/20 {
    --tw-shadow-color: rgb(7 89 133 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-800\/30 {
    --tw-shadow-color: rgb(7 89 133 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-800\/40 {
    --tw-shadow-color: rgb(7 89 133 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-800\/5 {
    --tw-shadow-color: rgb(7 89 133 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-800\/50 {
    --tw-shadow-color: rgb(7 89 133 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-800\/60 {
    --tw-shadow-color: rgb(7 89 133 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-800\/70 {
    --tw-shadow-color: rgb(7 89 133 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-800\/80 {
    --tw-shadow-color: rgb(7 89 133 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-800\/90 {
    --tw-shadow-color: rgb(7 89 133 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-900 {
    --tw-shadow-color: #0c4a6e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-900\/10 {
    --tw-shadow-color: rgb(12 74 110 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-900\/20 {
    --tw-shadow-color: rgb(12 74 110 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-900\/30 {
    --tw-shadow-color: rgb(12 74 110 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-900\/40 {
    --tw-shadow-color: rgb(12 74 110 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-900\/5 {
    --tw-shadow-color: rgb(12 74 110 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-900\/50 {
    --tw-shadow-color: rgb(12 74 110 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-900\/60 {
    --tw-shadow-color: rgb(12 74 110 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-900\/70 {
    --tw-shadow-color: rgb(12 74 110 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-900\/80 {
    --tw-shadow-color: rgb(12 74 110 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-900\/90 {
    --tw-shadow-color: rgb(12 74 110 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-950 {
    --tw-shadow-color: #082f49;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-950\/10 {
    --tw-shadow-color: rgb(8 47 73 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-950\/20 {
    --tw-shadow-color: rgb(8 47 73 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-950\/30 {
    --tw-shadow-color: rgb(8 47 73 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-950\/40 {
    --tw-shadow-color: rgb(8 47 73 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-950\/5 {
    --tw-shadow-color: rgb(8 47 73 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-950\/50 {
    --tw-shadow-color: rgb(8 47 73 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-950\/60 {
    --tw-shadow-color: rgb(8 47 73 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-950\/70 {
    --tw-shadow-color: rgb(8 47 73 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-950\/80 {
    --tw-shadow-color: rgb(8 47 73 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-sky-950\/90 {
    --tw-shadow-color: rgb(8 47 73 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-100 {
    --tw-shadow-color: #f1f5f9;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-100\/10 {
    --tw-shadow-color: rgb(241 245 249 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-100\/20 {
    --tw-shadow-color: rgb(241 245 249 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-100\/30 {
    --tw-shadow-color: rgb(241 245 249 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-100\/40 {
    --tw-shadow-color: rgb(241 245 249 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-100\/5 {
    --tw-shadow-color: rgb(241 245 249 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-100\/50 {
    --tw-shadow-color: rgb(241 245 249 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-100\/60 {
    --tw-shadow-color: rgb(241 245 249 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-100\/70 {
    --tw-shadow-color: rgb(241 245 249 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-100\/80 {
    --tw-shadow-color: rgb(241 245 249 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-100\/90 {
    --tw-shadow-color: rgb(241 245 249 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-200 {
    --tw-shadow-color: #e2e8f0;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-200\/10 {
    --tw-shadow-color: rgb(226 232 240 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-200\/20 {
    --tw-shadow-color: rgb(226 232 240 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-200\/30 {
    --tw-shadow-color: rgb(226 232 240 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-200\/40 {
    --tw-shadow-color: rgb(226 232 240 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-200\/5 {
    --tw-shadow-color: rgb(226 232 240 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-200\/50 {
    --tw-shadow-color: rgb(226 232 240 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-200\/60 {
    --tw-shadow-color: rgb(226 232 240 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-200\/70 {
    --tw-shadow-color: rgb(226 232 240 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-200\/80 {
    --tw-shadow-color: rgb(226 232 240 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-200\/90 {
    --tw-shadow-color: rgb(226 232 240 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-300 {
    --tw-shadow-color: #cbd5e1;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-300\/10 {
    --tw-shadow-color: rgb(203 213 225 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-300\/20 {
    --tw-shadow-color: rgb(203 213 225 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-300\/30 {
    --tw-shadow-color: rgb(203 213 225 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-300\/40 {
    --tw-shadow-color: rgb(203 213 225 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-300\/5 {
    --tw-shadow-color: rgb(203 213 225 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-300\/50 {
    --tw-shadow-color: rgb(203 213 225 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-300\/60 {
    --tw-shadow-color: rgb(203 213 225 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-300\/70 {
    --tw-shadow-color: rgb(203 213 225 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-300\/80 {
    --tw-shadow-color: rgb(203 213 225 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-300\/90 {
    --tw-shadow-color: rgb(203 213 225 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-400 {
    --tw-shadow-color: #94a3b8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-400\/10 {
    --tw-shadow-color: rgb(148 163 184 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-400\/20 {
    --tw-shadow-color: rgb(148 163 184 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-400\/30 {
    --tw-shadow-color: rgb(148 163 184 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-400\/40 {
    --tw-shadow-color: rgb(148 163 184 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-400\/5 {
    --tw-shadow-color: rgb(148 163 184 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-400\/50 {
    --tw-shadow-color: rgb(148 163 184 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-400\/60 {
    --tw-shadow-color: rgb(148 163 184 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-400\/70 {
    --tw-shadow-color: rgb(148 163 184 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-400\/80 {
    --tw-shadow-color: rgb(148 163 184 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-400\/90 {
    --tw-shadow-color: rgb(148 163 184 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-50 {
    --tw-shadow-color: #f8fafc;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-50\/10 {
    --tw-shadow-color: rgb(248 250 252 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-50\/20 {
    --tw-shadow-color: rgb(248 250 252 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-50\/30 {
    --tw-shadow-color: rgb(248 250 252 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-50\/40 {
    --tw-shadow-color: rgb(248 250 252 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-50\/5 {
    --tw-shadow-color: rgb(248 250 252 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-50\/50 {
    --tw-shadow-color: rgb(248 250 252 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-50\/60 {
    --tw-shadow-color: rgb(248 250 252 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-50\/70 {
    --tw-shadow-color: rgb(248 250 252 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-50\/80 {
    --tw-shadow-color: rgb(248 250 252 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-50\/90 {
    --tw-shadow-color: rgb(248 250 252 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-500 {
    --tw-shadow-color: #64748b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-500\/10 {
    --tw-shadow-color: rgb(100 116 139 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-500\/20 {
    --tw-shadow-color: rgb(100 116 139 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-500\/30 {
    --tw-shadow-color: rgb(100 116 139 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-500\/40 {
    --tw-shadow-color: rgb(100 116 139 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-500\/5 {
    --tw-shadow-color: rgb(100 116 139 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-500\/50 {
    --tw-shadow-color: rgb(100 116 139 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-500\/60 {
    --tw-shadow-color: rgb(100 116 139 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-500\/70 {
    --tw-shadow-color: rgb(100 116 139 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-500\/80 {
    --tw-shadow-color: rgb(100 116 139 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-500\/90 {
    --tw-shadow-color: rgb(100 116 139 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-600 {
    --tw-shadow-color: #475569;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-600\/10 {
    --tw-shadow-color: rgb(71 85 105 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-600\/20 {
    --tw-shadow-color: rgb(71 85 105 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-600\/30 {
    --tw-shadow-color: rgb(71 85 105 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-600\/40 {
    --tw-shadow-color: rgb(71 85 105 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-600\/5 {
    --tw-shadow-color: rgb(71 85 105 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-600\/50 {
    --tw-shadow-color: rgb(71 85 105 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-600\/60 {
    --tw-shadow-color: rgb(71 85 105 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-600\/70 {
    --tw-shadow-color: rgb(71 85 105 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-600\/80 {
    --tw-shadow-color: rgb(71 85 105 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-600\/90 {
    --tw-shadow-color: rgb(71 85 105 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-700 {
    --tw-shadow-color: #334155;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-700\/10 {
    --tw-shadow-color: rgb(51 65 85 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-700\/20 {
    --tw-shadow-color: rgb(51 65 85 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-700\/30 {
    --tw-shadow-color: rgb(51 65 85 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-700\/40 {
    --tw-shadow-color: rgb(51 65 85 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-700\/5 {
    --tw-shadow-color: rgb(51 65 85 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-700\/50 {
    --tw-shadow-color: rgb(51 65 85 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-700\/60 {
    --tw-shadow-color: rgb(51 65 85 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-700\/70 {
    --tw-shadow-color: rgb(51 65 85 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-700\/80 {
    --tw-shadow-color: rgb(51 65 85 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-700\/90 {
    --tw-shadow-color: rgb(51 65 85 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-800 {
    --tw-shadow-color: #1e293b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-800\/10 {
    --tw-shadow-color: rgb(30 41 59 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-800\/20 {
    --tw-shadow-color: rgb(30 41 59 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-800\/30 {
    --tw-shadow-color: rgb(30 41 59 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-800\/40 {
    --tw-shadow-color: rgb(30 41 59 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-800\/5 {
    --tw-shadow-color: rgb(30 41 59 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-800\/50 {
    --tw-shadow-color: rgb(30 41 59 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-800\/60 {
    --tw-shadow-color: rgb(30 41 59 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-800\/70 {
    --tw-shadow-color: rgb(30 41 59 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-800\/80 {
    --tw-shadow-color: rgb(30 41 59 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-800\/90 {
    --tw-shadow-color: rgb(30 41 59 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-900 {
    --tw-shadow-color: #0f172a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-900\/10 {
    --tw-shadow-color: rgb(15 23 42 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-900\/20 {
    --tw-shadow-color: rgb(15 23 42 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-900\/30 {
    --tw-shadow-color: rgb(15 23 42 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-900\/40 {
    --tw-shadow-color: rgb(15 23 42 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-900\/5 {
    --tw-shadow-color: rgb(15 23 42 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-900\/50 {
    --tw-shadow-color: rgb(15 23 42 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-900\/60 {
    --tw-shadow-color: rgb(15 23 42 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-900\/70 {
    --tw-shadow-color: rgb(15 23 42 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-900\/80 {
    --tw-shadow-color: rgb(15 23 42 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-900\/90 {
    --tw-shadow-color: rgb(15 23 42 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-950 {
    --tw-shadow-color: #020617;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-950\/10 {
    --tw-shadow-color: rgb(2 6 23 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-950\/20 {
    --tw-shadow-color: rgb(2 6 23 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-950\/30 {
    --tw-shadow-color: rgb(2 6 23 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-950\/40 {
    --tw-shadow-color: rgb(2 6 23 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-950\/5 {
    --tw-shadow-color: rgb(2 6 23 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-950\/50 {
    --tw-shadow-color: rgb(2 6 23 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-950\/60 {
    --tw-shadow-color: rgb(2 6 23 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-950\/70 {
    --tw-shadow-color: rgb(2 6 23 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-950\/80 {
    --tw-shadow-color: rgb(2 6 23 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-slate-950\/90 {
    --tw-shadow-color: rgb(2 6 23 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-100 {
    --tw-shadow-color: #f5f5f4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-100\/10 {
    --tw-shadow-color: rgb(245 245 244 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-100\/20 {
    --tw-shadow-color: rgb(245 245 244 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-100\/30 {
    --tw-shadow-color: rgb(245 245 244 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-100\/40 {
    --tw-shadow-color: rgb(245 245 244 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-100\/5 {
    --tw-shadow-color: rgb(245 245 244 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-100\/50 {
    --tw-shadow-color: rgb(245 245 244 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-100\/60 {
    --tw-shadow-color: rgb(245 245 244 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-100\/70 {
    --tw-shadow-color: rgb(245 245 244 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-100\/80 {
    --tw-shadow-color: rgb(245 245 244 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-100\/90 {
    --tw-shadow-color: rgb(245 245 244 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-200 {
    --tw-shadow-color: #e7e5e4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-200\/10 {
    --tw-shadow-color: rgb(231 229 228 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-200\/20 {
    --tw-shadow-color: rgb(231 229 228 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-200\/30 {
    --tw-shadow-color: rgb(231 229 228 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-200\/40 {
    --tw-shadow-color: rgb(231 229 228 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-200\/5 {
    --tw-shadow-color: rgb(231 229 228 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-200\/50 {
    --tw-shadow-color: rgb(231 229 228 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-200\/60 {
    --tw-shadow-color: rgb(231 229 228 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-200\/70 {
    --tw-shadow-color: rgb(231 229 228 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-200\/80 {
    --tw-shadow-color: rgb(231 229 228 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-200\/90 {
    --tw-shadow-color: rgb(231 229 228 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-300 {
    --tw-shadow-color: #d6d3d1;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-300\/10 {
    --tw-shadow-color: rgb(214 211 209 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-300\/20 {
    --tw-shadow-color: rgb(214 211 209 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-300\/30 {
    --tw-shadow-color: rgb(214 211 209 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-300\/40 {
    --tw-shadow-color: rgb(214 211 209 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-300\/5 {
    --tw-shadow-color: rgb(214 211 209 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-300\/50 {
    --tw-shadow-color: rgb(214 211 209 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-300\/60 {
    --tw-shadow-color: rgb(214 211 209 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-300\/70 {
    --tw-shadow-color: rgb(214 211 209 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-300\/80 {
    --tw-shadow-color: rgb(214 211 209 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-300\/90 {
    --tw-shadow-color: rgb(214 211 209 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-400 {
    --tw-shadow-color: #a8a29e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-400\/10 {
    --tw-shadow-color: rgb(168 162 158 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-400\/20 {
    --tw-shadow-color: rgb(168 162 158 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-400\/30 {
    --tw-shadow-color: rgb(168 162 158 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-400\/40 {
    --tw-shadow-color: rgb(168 162 158 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-400\/5 {
    --tw-shadow-color: rgb(168 162 158 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-400\/50 {
    --tw-shadow-color: rgb(168 162 158 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-400\/60 {
    --tw-shadow-color: rgb(168 162 158 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-400\/70 {
    --tw-shadow-color: rgb(168 162 158 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-400\/80 {
    --tw-shadow-color: rgb(168 162 158 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-400\/90 {
    --tw-shadow-color: rgb(168 162 158 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-50 {
    --tw-shadow-color: #fafaf9;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-50\/10 {
    --tw-shadow-color: rgb(250 250 249 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-50\/20 {
    --tw-shadow-color: rgb(250 250 249 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-50\/30 {
    --tw-shadow-color: rgb(250 250 249 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-50\/40 {
    --tw-shadow-color: rgb(250 250 249 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-50\/5 {
    --tw-shadow-color: rgb(250 250 249 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-50\/50 {
    --tw-shadow-color: rgb(250 250 249 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-50\/60 {
    --tw-shadow-color: rgb(250 250 249 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-50\/70 {
    --tw-shadow-color: rgb(250 250 249 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-50\/80 {
    --tw-shadow-color: rgb(250 250 249 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-50\/90 {
    --tw-shadow-color: rgb(250 250 249 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-500 {
    --tw-shadow-color: #78716c;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-500\/10 {
    --tw-shadow-color: rgb(120 113 108 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-500\/20 {
    --tw-shadow-color: rgb(120 113 108 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-500\/30 {
    --tw-shadow-color: rgb(120 113 108 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-500\/40 {
    --tw-shadow-color: rgb(120 113 108 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-500\/5 {
    --tw-shadow-color: rgb(120 113 108 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-500\/50 {
    --tw-shadow-color: rgb(120 113 108 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-500\/60 {
    --tw-shadow-color: rgb(120 113 108 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-500\/70 {
    --tw-shadow-color: rgb(120 113 108 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-500\/80 {
    --tw-shadow-color: rgb(120 113 108 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-500\/90 {
    --tw-shadow-color: rgb(120 113 108 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-600 {
    --tw-shadow-color: #57534e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-600\/10 {
    --tw-shadow-color: rgb(87 83 78 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-600\/20 {
    --tw-shadow-color: rgb(87 83 78 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-600\/30 {
    --tw-shadow-color: rgb(87 83 78 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-600\/40 {
    --tw-shadow-color: rgb(87 83 78 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-600\/5 {
    --tw-shadow-color: rgb(87 83 78 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-600\/50 {
    --tw-shadow-color: rgb(87 83 78 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-600\/60 {
    --tw-shadow-color: rgb(87 83 78 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-600\/70 {
    --tw-shadow-color: rgb(87 83 78 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-600\/80 {
    --tw-shadow-color: rgb(87 83 78 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-600\/90 {
    --tw-shadow-color: rgb(87 83 78 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-700 {
    --tw-shadow-color: #44403c;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-700\/10 {
    --tw-shadow-color: rgb(68 64 60 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-700\/20 {
    --tw-shadow-color: rgb(68 64 60 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-700\/30 {
    --tw-shadow-color: rgb(68 64 60 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-700\/40 {
    --tw-shadow-color: rgb(68 64 60 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-700\/5 {
    --tw-shadow-color: rgb(68 64 60 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-700\/50 {
    --tw-shadow-color: rgb(68 64 60 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-700\/60 {
    --tw-shadow-color: rgb(68 64 60 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-700\/70 {
    --tw-shadow-color: rgb(68 64 60 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-700\/80 {
    --tw-shadow-color: rgb(68 64 60 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-700\/90 {
    --tw-shadow-color: rgb(68 64 60 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-800 {
    --tw-shadow-color: #292524;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-800\/10 {
    --tw-shadow-color: rgb(41 37 36 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-800\/20 {
    --tw-shadow-color: rgb(41 37 36 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-800\/30 {
    --tw-shadow-color: rgb(41 37 36 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-800\/40 {
    --tw-shadow-color: rgb(41 37 36 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-800\/5 {
    --tw-shadow-color: rgb(41 37 36 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-800\/50 {
    --tw-shadow-color: rgb(41 37 36 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-800\/60 {
    --tw-shadow-color: rgb(41 37 36 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-800\/70 {
    --tw-shadow-color: rgb(41 37 36 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-800\/80 {
    --tw-shadow-color: rgb(41 37 36 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-800\/90 {
    --tw-shadow-color: rgb(41 37 36 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-900 {
    --tw-shadow-color: #1c1917;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-900\/10 {
    --tw-shadow-color: rgb(28 25 23 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-900\/20 {
    --tw-shadow-color: rgb(28 25 23 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-900\/30 {
    --tw-shadow-color: rgb(28 25 23 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-900\/40 {
    --tw-shadow-color: rgb(28 25 23 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-900\/5 {
    --tw-shadow-color: rgb(28 25 23 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-900\/50 {
    --tw-shadow-color: rgb(28 25 23 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-900\/60 {
    --tw-shadow-color: rgb(28 25 23 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-900\/70 {
    --tw-shadow-color: rgb(28 25 23 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-900\/80 {
    --tw-shadow-color: rgb(28 25 23 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-900\/90 {
    --tw-shadow-color: rgb(28 25 23 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-950 {
    --tw-shadow-color: #0c0a09;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-950\/10 {
    --tw-shadow-color: rgb(12 10 9 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-950\/20 {
    --tw-shadow-color: rgb(12 10 9 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-950\/30 {
    --tw-shadow-color: rgb(12 10 9 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-950\/40 {
    --tw-shadow-color: rgb(12 10 9 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-950\/5 {
    --tw-shadow-color: rgb(12 10 9 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-950\/50 {
    --tw-shadow-color: rgb(12 10 9 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-950\/60 {
    --tw-shadow-color: rgb(12 10 9 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-950\/70 {
    --tw-shadow-color: rgb(12 10 9 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-950\/80 {
    --tw-shadow-color: rgb(12 10 9 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-stone-950\/90 {
    --tw-shadow-color: rgb(12 10 9 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-100 {
    --tw-shadow-color: #ccfbf1;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-100\/10 {
    --tw-shadow-color: rgb(204 251 241 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-100\/20 {
    --tw-shadow-color: rgb(204 251 241 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-100\/30 {
    --tw-shadow-color: rgb(204 251 241 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-100\/40 {
    --tw-shadow-color: rgb(204 251 241 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-100\/5 {
    --tw-shadow-color: rgb(204 251 241 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-100\/50 {
    --tw-shadow-color: rgb(204 251 241 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-100\/60 {
    --tw-shadow-color: rgb(204 251 241 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-100\/70 {
    --tw-shadow-color: rgb(204 251 241 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-100\/80 {
    --tw-shadow-color: rgb(204 251 241 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-100\/90 {
    --tw-shadow-color: rgb(204 251 241 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-200 {
    --tw-shadow-color: #99f6e4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-200\/10 {
    --tw-shadow-color: rgb(153 246 228 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-200\/20 {
    --tw-shadow-color: rgb(153 246 228 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-200\/30 {
    --tw-shadow-color: rgb(153 246 228 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-200\/40 {
    --tw-shadow-color: rgb(153 246 228 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-200\/5 {
    --tw-shadow-color: rgb(153 246 228 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-200\/50 {
    --tw-shadow-color: rgb(153 246 228 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-200\/60 {
    --tw-shadow-color: rgb(153 246 228 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-200\/70 {
    --tw-shadow-color: rgb(153 246 228 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-200\/80 {
    --tw-shadow-color: rgb(153 246 228 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-200\/90 {
    --tw-shadow-color: rgb(153 246 228 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-300 {
    --tw-shadow-color: #5eead4;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-300\/10 {
    --tw-shadow-color: rgb(94 234 212 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-300\/20 {
    --tw-shadow-color: rgb(94 234 212 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-300\/30 {
    --tw-shadow-color: rgb(94 234 212 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-300\/40 {
    --tw-shadow-color: rgb(94 234 212 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-300\/5 {
    --tw-shadow-color: rgb(94 234 212 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-300\/50 {
    --tw-shadow-color: rgb(94 234 212 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-300\/60 {
    --tw-shadow-color: rgb(94 234 212 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-300\/70 {
    --tw-shadow-color: rgb(94 234 212 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-300\/80 {
    --tw-shadow-color: rgb(94 234 212 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-300\/90 {
    --tw-shadow-color: rgb(94 234 212 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-400 {
    --tw-shadow-color: #2dd4bf;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-400\/10 {
    --tw-shadow-color: rgb(45 212 191 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-400\/20 {
    --tw-shadow-color: rgb(45 212 191 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-400\/30 {
    --tw-shadow-color: rgb(45 212 191 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-400\/40 {
    --tw-shadow-color: rgb(45 212 191 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-400\/5 {
    --tw-shadow-color: rgb(45 212 191 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-400\/50 {
    --tw-shadow-color: rgb(45 212 191 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-400\/60 {
    --tw-shadow-color: rgb(45 212 191 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-400\/70 {
    --tw-shadow-color: rgb(45 212 191 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-400\/80 {
    --tw-shadow-color: rgb(45 212 191 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-400\/90 {
    --tw-shadow-color: rgb(45 212 191 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-50 {
    --tw-shadow-color: #f0fdfa;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-50\/10 {
    --tw-shadow-color: rgb(240 253 250 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-50\/20 {
    --tw-shadow-color: rgb(240 253 250 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-50\/30 {
    --tw-shadow-color: rgb(240 253 250 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-50\/40 {
    --tw-shadow-color: rgb(240 253 250 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-50\/5 {
    --tw-shadow-color: rgb(240 253 250 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-50\/50 {
    --tw-shadow-color: rgb(240 253 250 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-50\/60 {
    --tw-shadow-color: rgb(240 253 250 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-50\/70 {
    --tw-shadow-color: rgb(240 253 250 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-50\/80 {
    --tw-shadow-color: rgb(240 253 250 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-50\/90 {
    --tw-shadow-color: rgb(240 253 250 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-500 {
    --tw-shadow-color: #14b8a6;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-500\/10 {
    --tw-shadow-color: rgb(20 184 166 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-500\/20 {
    --tw-shadow-color: rgb(20 184 166 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-500\/30 {
    --tw-shadow-color: rgb(20 184 166 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-500\/40 {
    --tw-shadow-color: rgb(20 184 166 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-500\/5 {
    --tw-shadow-color: rgb(20 184 166 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-500\/50 {
    --tw-shadow-color: rgb(20 184 166 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-500\/60 {
    --tw-shadow-color: rgb(20 184 166 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-500\/70 {
    --tw-shadow-color: rgb(20 184 166 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-500\/80 {
    --tw-shadow-color: rgb(20 184 166 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-500\/90 {
    --tw-shadow-color: rgb(20 184 166 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-600 {
    --tw-shadow-color: #0d9488;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-600\/10 {
    --tw-shadow-color: rgb(13 148 136 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-600\/20 {
    --tw-shadow-color: rgb(13 148 136 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-600\/30 {
    --tw-shadow-color: rgb(13 148 136 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-600\/40 {
    --tw-shadow-color: rgb(13 148 136 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-600\/5 {
    --tw-shadow-color: rgb(13 148 136 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-600\/50 {
    --tw-shadow-color: rgb(13 148 136 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-600\/60 {
    --tw-shadow-color: rgb(13 148 136 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-600\/70 {
    --tw-shadow-color: rgb(13 148 136 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-600\/80 {
    --tw-shadow-color: rgb(13 148 136 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-600\/90 {
    --tw-shadow-color: rgb(13 148 136 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-700 {
    --tw-shadow-color: #0f766e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-700\/10 {
    --tw-shadow-color: rgb(15 118 110 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-700\/20 {
    --tw-shadow-color: rgb(15 118 110 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-700\/30 {
    --tw-shadow-color: rgb(15 118 110 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-700\/40 {
    --tw-shadow-color: rgb(15 118 110 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-700\/5 {
    --tw-shadow-color: rgb(15 118 110 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-700\/50 {
    --tw-shadow-color: rgb(15 118 110 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-700\/60 {
    --tw-shadow-color: rgb(15 118 110 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-700\/70 {
    --tw-shadow-color: rgb(15 118 110 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-700\/80 {
    --tw-shadow-color: rgb(15 118 110 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-700\/90 {
    --tw-shadow-color: rgb(15 118 110 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-800 {
    --tw-shadow-color: #115e59;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-800\/10 {
    --tw-shadow-color: rgb(17 94 89 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-800\/20 {
    --tw-shadow-color: rgb(17 94 89 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-800\/30 {
    --tw-shadow-color: rgb(17 94 89 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-800\/40 {
    --tw-shadow-color: rgb(17 94 89 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-800\/5 {
    --tw-shadow-color: rgb(17 94 89 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-800\/50 {
    --tw-shadow-color: rgb(17 94 89 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-800\/60 {
    --tw-shadow-color: rgb(17 94 89 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-800\/70 {
    --tw-shadow-color: rgb(17 94 89 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-800\/80 {
    --tw-shadow-color: rgb(17 94 89 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-800\/90 {
    --tw-shadow-color: rgb(17 94 89 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-900 {
    --tw-shadow-color: #134e4a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-900\/10 {
    --tw-shadow-color: rgb(19 78 74 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-900\/20 {
    --tw-shadow-color: rgb(19 78 74 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-900\/30 {
    --tw-shadow-color: rgb(19 78 74 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-900\/40 {
    --tw-shadow-color: rgb(19 78 74 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-900\/5 {
    --tw-shadow-color: rgb(19 78 74 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-900\/50 {
    --tw-shadow-color: rgb(19 78 74 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-900\/60 {
    --tw-shadow-color: rgb(19 78 74 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-900\/70 {
    --tw-shadow-color: rgb(19 78 74 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-900\/80 {
    --tw-shadow-color: rgb(19 78 74 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-900\/90 {
    --tw-shadow-color: rgb(19 78 74 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-950 {
    --tw-shadow-color: #042f2e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-950\/10 {
    --tw-shadow-color: rgb(4 47 46 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-950\/20 {
    --tw-shadow-color: rgb(4 47 46 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-950\/30 {
    --tw-shadow-color: rgb(4 47 46 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-950\/40 {
    --tw-shadow-color: rgb(4 47 46 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-950\/5 {
    --tw-shadow-color: rgb(4 47 46 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-950\/50 {
    --tw-shadow-color: rgb(4 47 46 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-950\/60 {
    --tw-shadow-color: rgb(4 47 46 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-950\/70 {
    --tw-shadow-color: rgb(4 47 46 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-950\/80 {
    --tw-shadow-color: rgb(4 47 46 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-teal-950\/90 {
    --tw-shadow-color: rgb(4 47 46 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-100 {
    --tw-shadow-color: #ede9fe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-100\/10 {
    --tw-shadow-color: rgb(237 233 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-100\/20 {
    --tw-shadow-color: rgb(237 233 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-100\/30 {
    --tw-shadow-color: rgb(237 233 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-100\/40 {
    --tw-shadow-color: rgb(237 233 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-100\/5 {
    --tw-shadow-color: rgb(237 233 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-100\/50 {
    --tw-shadow-color: rgb(237 233 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-100\/60 {
    --tw-shadow-color: rgb(237 233 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-100\/70 {
    --tw-shadow-color: rgb(237 233 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-100\/80 {
    --tw-shadow-color: rgb(237 233 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-100\/90 {
    --tw-shadow-color: rgb(237 233 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-200 {
    --tw-shadow-color: #ddd6fe;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-200\/10 {
    --tw-shadow-color: rgb(221 214 254 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-200\/20 {
    --tw-shadow-color: rgb(221 214 254 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-200\/30 {
    --tw-shadow-color: rgb(221 214 254 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-200\/40 {
    --tw-shadow-color: rgb(221 214 254 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-200\/5 {
    --tw-shadow-color: rgb(221 214 254 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-200\/50 {
    --tw-shadow-color: rgb(221 214 254 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-200\/60 {
    --tw-shadow-color: rgb(221 214 254 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-200\/70 {
    --tw-shadow-color: rgb(221 214 254 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-200\/80 {
    --tw-shadow-color: rgb(221 214 254 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-200\/90 {
    --tw-shadow-color: rgb(221 214 254 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-300 {
    --tw-shadow-color: #c4b5fd;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-300\/10 {
    --tw-shadow-color: rgb(196 181 253 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-300\/20 {
    --tw-shadow-color: rgb(196 181 253 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-300\/30 {
    --tw-shadow-color: rgb(196 181 253 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-300\/40 {
    --tw-shadow-color: rgb(196 181 253 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-300\/5 {
    --tw-shadow-color: rgb(196 181 253 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-300\/50 {
    --tw-shadow-color: rgb(196 181 253 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-300\/60 {
    --tw-shadow-color: rgb(196 181 253 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-300\/70 {
    --tw-shadow-color: rgb(196 181 253 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-300\/80 {
    --tw-shadow-color: rgb(196 181 253 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-300\/90 {
    --tw-shadow-color: rgb(196 181 253 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-400 {
    --tw-shadow-color: #a78bfa;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-400\/10 {
    --tw-shadow-color: rgb(167 139 250 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-400\/20 {
    --tw-shadow-color: rgb(167 139 250 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-400\/30 {
    --tw-shadow-color: rgb(167 139 250 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-400\/40 {
    --tw-shadow-color: rgb(167 139 250 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-400\/5 {
    --tw-shadow-color: rgb(167 139 250 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-400\/50 {
    --tw-shadow-color: rgb(167 139 250 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-400\/60 {
    --tw-shadow-color: rgb(167 139 250 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-400\/70 {
    --tw-shadow-color: rgb(167 139 250 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-400\/80 {
    --tw-shadow-color: rgb(167 139 250 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-400\/90 {
    --tw-shadow-color: rgb(167 139 250 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-50 {
    --tw-shadow-color: #f5f3ff;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-50\/10 {
    --tw-shadow-color: rgb(245 243 255 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-50\/20 {
    --tw-shadow-color: rgb(245 243 255 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-50\/30 {
    --tw-shadow-color: rgb(245 243 255 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-50\/40 {
    --tw-shadow-color: rgb(245 243 255 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-50\/5 {
    --tw-shadow-color: rgb(245 243 255 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-50\/50 {
    --tw-shadow-color: rgb(245 243 255 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-50\/60 {
    --tw-shadow-color: rgb(245 243 255 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-50\/70 {
    --tw-shadow-color: rgb(245 243 255 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-50\/80 {
    --tw-shadow-color: rgb(245 243 255 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-50\/90 {
    --tw-shadow-color: rgb(245 243 255 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-500 {
    --tw-shadow-color: #8b5cf6;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-500\/10 {
    --tw-shadow-color: rgb(139 92 246 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-500\/20 {
    --tw-shadow-color: rgb(139 92 246 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-500\/30 {
    --tw-shadow-color: rgb(139 92 246 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-500\/40 {
    --tw-shadow-color: rgb(139 92 246 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-500\/5 {
    --tw-shadow-color: rgb(139 92 246 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-500\/50 {
    --tw-shadow-color: rgb(139 92 246 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-500\/60 {
    --tw-shadow-color: rgb(139 92 246 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-500\/70 {
    --tw-shadow-color: rgb(139 92 246 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-500\/80 {
    --tw-shadow-color: rgb(139 92 246 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-500\/90 {
    --tw-shadow-color: rgb(139 92 246 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-600 {
    --tw-shadow-color: #7c3aed;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-600\/10 {
    --tw-shadow-color: rgb(124 58 237 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-600\/20 {
    --tw-shadow-color: rgb(124 58 237 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-600\/30 {
    --tw-shadow-color: rgb(124 58 237 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-600\/40 {
    --tw-shadow-color: rgb(124 58 237 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-600\/5 {
    --tw-shadow-color: rgb(124 58 237 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-600\/50 {
    --tw-shadow-color: rgb(124 58 237 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-600\/60 {
    --tw-shadow-color: rgb(124 58 237 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-600\/70 {
    --tw-shadow-color: rgb(124 58 237 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-600\/80 {
    --tw-shadow-color: rgb(124 58 237 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-600\/90 {
    --tw-shadow-color: rgb(124 58 237 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-700 {
    --tw-shadow-color: #6d28d9;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-700\/10 {
    --tw-shadow-color: rgb(109 40 217 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-700\/20 {
    --tw-shadow-color: rgb(109 40 217 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-700\/30 {
    --tw-shadow-color: rgb(109 40 217 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-700\/40 {
    --tw-shadow-color: rgb(109 40 217 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-700\/5 {
    --tw-shadow-color: rgb(109 40 217 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-700\/50 {
    --tw-shadow-color: rgb(109 40 217 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-700\/60 {
    --tw-shadow-color: rgb(109 40 217 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-700\/70 {
    --tw-shadow-color: rgb(109 40 217 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-700\/80 {
    --tw-shadow-color: rgb(109 40 217 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-700\/90 {
    --tw-shadow-color: rgb(109 40 217 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-800 {
    --tw-shadow-color: #5b21b6;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-800\/10 {
    --tw-shadow-color: rgb(91 33 182 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-800\/20 {
    --tw-shadow-color: rgb(91 33 182 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-800\/30 {
    --tw-shadow-color: rgb(91 33 182 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-800\/40 {
    --tw-shadow-color: rgb(91 33 182 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-800\/5 {
    --tw-shadow-color: rgb(91 33 182 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-800\/50 {
    --tw-shadow-color: rgb(91 33 182 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-800\/60 {
    --tw-shadow-color: rgb(91 33 182 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-800\/70 {
    --tw-shadow-color: rgb(91 33 182 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-800\/80 {
    --tw-shadow-color: rgb(91 33 182 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-800\/90 {
    --tw-shadow-color: rgb(91 33 182 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-900 {
    --tw-shadow-color: #4c1d95;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-900\/10 {
    --tw-shadow-color: rgb(76 29 149 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-900\/20 {
    --tw-shadow-color: rgb(76 29 149 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-900\/30 {
    --tw-shadow-color: rgb(76 29 149 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-900\/40 {
    --tw-shadow-color: rgb(76 29 149 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-900\/5 {
    --tw-shadow-color: rgb(76 29 149 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-900\/50 {
    --tw-shadow-color: rgb(76 29 149 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-900\/60 {
    --tw-shadow-color: rgb(76 29 149 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-900\/70 {
    --tw-shadow-color: rgb(76 29 149 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-900\/80 {
    --tw-shadow-color: rgb(76 29 149 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-900\/90 {
    --tw-shadow-color: rgb(76 29 149 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-950 {
    --tw-shadow-color: #2e1065;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-950\/10 {
    --tw-shadow-color: rgb(46 16 101 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-950\/20 {
    --tw-shadow-color: rgb(46 16 101 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-950\/30 {
    --tw-shadow-color: rgb(46 16 101 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-950\/40 {
    --tw-shadow-color: rgb(46 16 101 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-950\/5 {
    --tw-shadow-color: rgb(46 16 101 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-950\/50 {
    --tw-shadow-color: rgb(46 16 101 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-950\/60 {
    --tw-shadow-color: rgb(46 16 101 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-950\/70 {
    --tw-shadow-color: rgb(46 16 101 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-950\/80 {
    --tw-shadow-color: rgb(46 16 101 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-violet-950\/90 {
    --tw-shadow-color: rgb(46 16 101 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-100 {
    --tw-shadow-color: #fef9c3;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-100\/10 {
    --tw-shadow-color: rgb(254 249 195 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-100\/20 {
    --tw-shadow-color: rgb(254 249 195 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-100\/30 {
    --tw-shadow-color: rgb(254 249 195 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-100\/40 {
    --tw-shadow-color: rgb(254 249 195 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-100\/5 {
    --tw-shadow-color: rgb(254 249 195 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-100\/50 {
    --tw-shadow-color: rgb(254 249 195 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-100\/60 {
    --tw-shadow-color: rgb(254 249 195 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-100\/70 {
    --tw-shadow-color: rgb(254 249 195 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-100\/80 {
    --tw-shadow-color: rgb(254 249 195 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-100\/90 {
    --tw-shadow-color: rgb(254 249 195 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-200 {
    --tw-shadow-color: #fef08a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-200\/10 {
    --tw-shadow-color: rgb(254 240 138 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-200\/20 {
    --tw-shadow-color: rgb(254 240 138 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-200\/30 {
    --tw-shadow-color: rgb(254 240 138 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-200\/40 {
    --tw-shadow-color: rgb(254 240 138 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-200\/5 {
    --tw-shadow-color: rgb(254 240 138 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-200\/50 {
    --tw-shadow-color: rgb(254 240 138 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-200\/60 {
    --tw-shadow-color: rgb(254 240 138 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-200\/70 {
    --tw-shadow-color: rgb(254 240 138 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-200\/80 {
    --tw-shadow-color: rgb(254 240 138 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-200\/90 {
    --tw-shadow-color: rgb(254 240 138 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-300 {
    --tw-shadow-color: #fde047;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-300\/10 {
    --tw-shadow-color: rgb(253 224 71 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-300\/20 {
    --tw-shadow-color: rgb(253 224 71 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-300\/30 {
    --tw-shadow-color: rgb(253 224 71 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-300\/40 {
    --tw-shadow-color: rgb(253 224 71 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-300\/5 {
    --tw-shadow-color: rgb(253 224 71 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-300\/50 {
    --tw-shadow-color: rgb(253 224 71 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-300\/60 {
    --tw-shadow-color: rgb(253 224 71 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-300\/70 {
    --tw-shadow-color: rgb(253 224 71 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-300\/80 {
    --tw-shadow-color: rgb(253 224 71 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-300\/90 {
    --tw-shadow-color: rgb(253 224 71 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-400 {
    --tw-shadow-color: #facc15;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-400\/10 {
    --tw-shadow-color: rgb(250 204 21 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-400\/20 {
    --tw-shadow-color: rgb(250 204 21 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-400\/30 {
    --tw-shadow-color: rgb(250 204 21 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-400\/40 {
    --tw-shadow-color: rgb(250 204 21 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-400\/5 {
    --tw-shadow-color: rgb(250 204 21 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-400\/50 {
    --tw-shadow-color: rgb(250 204 21 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-400\/60 {
    --tw-shadow-color: rgb(250 204 21 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-400\/70 {
    --tw-shadow-color: rgb(250 204 21 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-400\/80 {
    --tw-shadow-color: rgb(250 204 21 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-400\/90 {
    --tw-shadow-color: rgb(250 204 21 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-50 {
    --tw-shadow-color: #fefce8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-50\/10 {
    --tw-shadow-color: rgb(254 252 232 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-50\/20 {
    --tw-shadow-color: rgb(254 252 232 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-50\/30 {
    --tw-shadow-color: rgb(254 252 232 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-50\/40 {
    --tw-shadow-color: rgb(254 252 232 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-50\/5 {
    --tw-shadow-color: rgb(254 252 232 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-50\/50 {
    --tw-shadow-color: rgb(254 252 232 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-50\/60 {
    --tw-shadow-color: rgb(254 252 232 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-50\/70 {
    --tw-shadow-color: rgb(254 252 232 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-50\/80 {
    --tw-shadow-color: rgb(254 252 232 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-50\/90 {
    --tw-shadow-color: rgb(254 252 232 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-500 {
    --tw-shadow-color: #eab308;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-500\/10 {
    --tw-shadow-color: rgb(234 179 8 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-500\/20 {
    --tw-shadow-color: rgb(234 179 8 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-500\/30 {
    --tw-shadow-color: rgb(234 179 8 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-500\/40 {
    --tw-shadow-color: rgb(234 179 8 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-500\/5 {
    --tw-shadow-color: rgb(234 179 8 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-500\/50 {
    --tw-shadow-color: rgb(234 179 8 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-500\/60 {
    --tw-shadow-color: rgb(234 179 8 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-500\/70 {
    --tw-shadow-color: rgb(234 179 8 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-500\/80 {
    --tw-shadow-color: rgb(234 179 8 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-500\/90 {
    --tw-shadow-color: rgb(234 179 8 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-600 {
    --tw-shadow-color: #ca8a04;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-600\/10 {
    --tw-shadow-color: rgb(202 138 4 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-600\/20 {
    --tw-shadow-color: rgb(202 138 4 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-600\/30 {
    --tw-shadow-color: rgb(202 138 4 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-600\/40 {
    --tw-shadow-color: rgb(202 138 4 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-600\/5 {
    --tw-shadow-color: rgb(202 138 4 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-600\/50 {
    --tw-shadow-color: rgb(202 138 4 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-600\/60 {
    --tw-shadow-color: rgb(202 138 4 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-600\/70 {
    --tw-shadow-color: rgb(202 138 4 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-600\/80 {
    --tw-shadow-color: rgb(202 138 4 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-600\/90 {
    --tw-shadow-color: rgb(202 138 4 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-700 {
    --tw-shadow-color: #a16207;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-700\/10 {
    --tw-shadow-color: rgb(161 98 7 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-700\/20 {
    --tw-shadow-color: rgb(161 98 7 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-700\/30 {
    --tw-shadow-color: rgb(161 98 7 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-700\/40 {
    --tw-shadow-color: rgb(161 98 7 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-700\/5 {
    --tw-shadow-color: rgb(161 98 7 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-700\/50 {
    --tw-shadow-color: rgb(161 98 7 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-700\/60 {
    --tw-shadow-color: rgb(161 98 7 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-700\/70 {
    --tw-shadow-color: rgb(161 98 7 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-700\/80 {
    --tw-shadow-color: rgb(161 98 7 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-700\/90 {
    --tw-shadow-color: rgb(161 98 7 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-800 {
    --tw-shadow-color: #854d0e;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-800\/10 {
    --tw-shadow-color: rgb(133 77 14 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-800\/20 {
    --tw-shadow-color: rgb(133 77 14 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-800\/30 {
    --tw-shadow-color: rgb(133 77 14 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-800\/40 {
    --tw-shadow-color: rgb(133 77 14 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-800\/5 {
    --tw-shadow-color: rgb(133 77 14 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-800\/50 {
    --tw-shadow-color: rgb(133 77 14 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-800\/60 {
    --tw-shadow-color: rgb(133 77 14 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-800\/70 {
    --tw-shadow-color: rgb(133 77 14 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-800\/80 {
    --tw-shadow-color: rgb(133 77 14 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-800\/90 {
    --tw-shadow-color: rgb(133 77 14 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-900 {
    --tw-shadow-color: #713f12;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-900\/10 {
    --tw-shadow-color: rgb(113 63 18 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-900\/20 {
    --tw-shadow-color: rgb(113 63 18 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-900\/30 {
    --tw-shadow-color: rgb(113 63 18 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-900\/40 {
    --tw-shadow-color: rgb(113 63 18 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-900\/5 {
    --tw-shadow-color: rgb(113 63 18 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-900\/50 {
    --tw-shadow-color: rgb(113 63 18 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-900\/60 {
    --tw-shadow-color: rgb(113 63 18 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-900\/70 {
    --tw-shadow-color: rgb(113 63 18 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-900\/80 {
    --tw-shadow-color: rgb(113 63 18 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-900\/90 {
    --tw-shadow-color: rgb(113 63 18 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-950 {
    --tw-shadow-color: #422006;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-950\/10 {
    --tw-shadow-color: rgb(66 32 6 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-950\/20 {
    --tw-shadow-color: rgb(66 32 6 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-950\/30 {
    --tw-shadow-color: rgb(66 32 6 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-950\/40 {
    --tw-shadow-color: rgb(66 32 6 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-950\/5 {
    --tw-shadow-color: rgb(66 32 6 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-950\/50 {
    --tw-shadow-color: rgb(66 32 6 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-950\/60 {
    --tw-shadow-color: rgb(66 32 6 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-950\/70 {
    --tw-shadow-color: rgb(66 32 6 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-950\/80 {
    --tw-shadow-color: rgb(66 32 6 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-yellow-950\/90 {
    --tw-shadow-color: rgb(66 32 6 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-100 {
    --tw-shadow-color: #f4f4f5;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-100\/10 {
    --tw-shadow-color: rgb(244 244 245 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-100\/20 {
    --tw-shadow-color: rgb(244 244 245 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-100\/30 {
    --tw-shadow-color: rgb(244 244 245 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-100\/40 {
    --tw-shadow-color: rgb(244 244 245 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-100\/5 {
    --tw-shadow-color: rgb(244 244 245 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-100\/50 {
    --tw-shadow-color: rgb(244 244 245 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-100\/60 {
    --tw-shadow-color: rgb(244 244 245 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-100\/70 {
    --tw-shadow-color: rgb(244 244 245 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-100\/80 {
    --tw-shadow-color: rgb(244 244 245 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-100\/90 {
    --tw-shadow-color: rgb(244 244 245 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-200 {
    --tw-shadow-color: #e4e4e7;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-200\/10 {
    --tw-shadow-color: rgb(228 228 231 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-200\/20 {
    --tw-shadow-color: rgb(228 228 231 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-200\/30 {
    --tw-shadow-color: rgb(228 228 231 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-200\/40 {
    --tw-shadow-color: rgb(228 228 231 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-200\/5 {
    --tw-shadow-color: rgb(228 228 231 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-200\/50 {
    --tw-shadow-color: rgb(228 228 231 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-200\/60 {
    --tw-shadow-color: rgb(228 228 231 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-200\/70 {
    --tw-shadow-color: rgb(228 228 231 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-200\/80 {
    --tw-shadow-color: rgb(228 228 231 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-200\/90 {
    --tw-shadow-color: rgb(228 228 231 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-300 {
    --tw-shadow-color: #d4d4d8;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-300\/10 {
    --tw-shadow-color: rgb(212 212 216 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-300\/20 {
    --tw-shadow-color: rgb(212 212 216 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-300\/30 {
    --tw-shadow-color: rgb(212 212 216 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-300\/40 {
    --tw-shadow-color: rgb(212 212 216 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-300\/5 {
    --tw-shadow-color: rgb(212 212 216 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-300\/50 {
    --tw-shadow-color: rgb(212 212 216 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-300\/60 {
    --tw-shadow-color: rgb(212 212 216 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-300\/70 {
    --tw-shadow-color: rgb(212 212 216 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-300\/80 {
    --tw-shadow-color: rgb(212 212 216 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-300\/90 {
    --tw-shadow-color: rgb(212 212 216 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-400 {
    --tw-shadow-color: #a1a1aa;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-400\/10 {
    --tw-shadow-color: rgb(161 161 170 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-400\/20 {
    --tw-shadow-color: rgb(161 161 170 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-400\/30 {
    --tw-shadow-color: rgb(161 161 170 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-400\/40 {
    --tw-shadow-color: rgb(161 161 170 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-400\/5 {
    --tw-shadow-color: rgb(161 161 170 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-400\/50 {
    --tw-shadow-color: rgb(161 161 170 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-400\/60 {
    --tw-shadow-color: rgb(161 161 170 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-400\/70 {
    --tw-shadow-color: rgb(161 161 170 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-400\/80 {
    --tw-shadow-color: rgb(161 161 170 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-400\/90 {
    --tw-shadow-color: rgb(161 161 170 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-50 {
    --tw-shadow-color: #fafafa;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-50\/10 {
    --tw-shadow-color: rgb(250 250 250 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-50\/20 {
    --tw-shadow-color: rgb(250 250 250 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-50\/30 {
    --tw-shadow-color: rgb(250 250 250 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-50\/40 {
    --tw-shadow-color: rgb(250 250 250 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-50\/5 {
    --tw-shadow-color: rgb(250 250 250 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-50\/50 {
    --tw-shadow-color: rgb(250 250 250 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-50\/60 {
    --tw-shadow-color: rgb(250 250 250 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-50\/70 {
    --tw-shadow-color: rgb(250 250 250 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-50\/80 {
    --tw-shadow-color: rgb(250 250 250 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-50\/90 {
    --tw-shadow-color: rgb(250 250 250 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-500 {
    --tw-shadow-color: #71717a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-500\/10 {
    --tw-shadow-color: rgb(113 113 122 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-500\/20 {
    --tw-shadow-color: rgb(113 113 122 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-500\/30 {
    --tw-shadow-color: rgb(113 113 122 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-500\/40 {
    --tw-shadow-color: rgb(113 113 122 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-500\/5 {
    --tw-shadow-color: rgb(113 113 122 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-500\/50 {
    --tw-shadow-color: rgb(113 113 122 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-500\/60 {
    --tw-shadow-color: rgb(113 113 122 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-500\/70 {
    --tw-shadow-color: rgb(113 113 122 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-500\/80 {
    --tw-shadow-color: rgb(113 113 122 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-500\/90 {
    --tw-shadow-color: rgb(113 113 122 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-600 {
    --tw-shadow-color: #52525b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-600\/10 {
    --tw-shadow-color: rgb(82 82 91 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-600\/20 {
    --tw-shadow-color: rgb(82 82 91 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-600\/30 {
    --tw-shadow-color: rgb(82 82 91 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-600\/40 {
    --tw-shadow-color: rgb(82 82 91 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-600\/5 {
    --tw-shadow-color: rgb(82 82 91 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-600\/50 {
    --tw-shadow-color: rgb(82 82 91 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-600\/60 {
    --tw-shadow-color: rgb(82 82 91 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-600\/70 {
    --tw-shadow-color: rgb(82 82 91 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-600\/80 {
    --tw-shadow-color: rgb(82 82 91 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-600\/90 {
    --tw-shadow-color: rgb(82 82 91 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-700 {
    --tw-shadow-color: #3f3f46;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-700\/10 {
    --tw-shadow-color: rgb(63 63 70 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-700\/20 {
    --tw-shadow-color: rgb(63 63 70 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-700\/30 {
    --tw-shadow-color: rgb(63 63 70 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-700\/40 {
    --tw-shadow-color: rgb(63 63 70 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-700\/5 {
    --tw-shadow-color: rgb(63 63 70 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-700\/50 {
    --tw-shadow-color: rgb(63 63 70 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-700\/60 {
    --tw-shadow-color: rgb(63 63 70 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-700\/70 {
    --tw-shadow-color: rgb(63 63 70 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-700\/80 {
    --tw-shadow-color: rgb(63 63 70 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-700\/90 {
    --tw-shadow-color: rgb(63 63 70 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-800 {
    --tw-shadow-color: #27272a;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-800\/10 {
    --tw-shadow-color: rgb(39 39 42 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-800\/20 {
    --tw-shadow-color: rgb(39 39 42 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-800\/30 {
    --tw-shadow-color: rgb(39 39 42 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-800\/40 {
    --tw-shadow-color: rgb(39 39 42 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-800\/5 {
    --tw-shadow-color: rgb(39 39 42 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-800\/50 {
    --tw-shadow-color: rgb(39 39 42 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-800\/60 {
    --tw-shadow-color: rgb(39 39 42 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-800\/70 {
    --tw-shadow-color: rgb(39 39 42 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-800\/80 {
    --tw-shadow-color: rgb(39 39 42 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-800\/90 {
    --tw-shadow-color: rgb(39 39 42 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-900 {
    --tw-shadow-color: #18181b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-900\/10 {
    --tw-shadow-color: rgb(24 24 27 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-900\/20 {
    --tw-shadow-color: rgb(24 24 27 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-900\/30 {
    --tw-shadow-color: rgb(24 24 27 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-900\/40 {
    --tw-shadow-color: rgb(24 24 27 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-900\/5 {
    --tw-shadow-color: rgb(24 24 27 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-900\/50 {
    --tw-shadow-color: rgb(24 24 27 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-900\/60 {
    --tw-shadow-color: rgb(24 24 27 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-900\/70 {
    --tw-shadow-color: rgb(24 24 27 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-900\/80 {
    --tw-shadow-color: rgb(24 24 27 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-900\/90 {
    --tw-shadow-color: rgb(24 24 27 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-950 {
    --tw-shadow-color: #09090b;
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-950\/10 {
    --tw-shadow-color: rgb(9 9 11 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-950\/20 {
    --tw-shadow-color: rgb(9 9 11 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-950\/30 {
    --tw-shadow-color: rgb(9 9 11 / 0.3);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-950\/40 {
    --tw-shadow-color: rgb(9 9 11 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-950\/5 {
    --tw-shadow-color: rgb(9 9 11 / 0.05);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-950\/50 {
    --tw-shadow-color: rgb(9 9 11 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-950\/60 {
    --tw-shadow-color: rgb(9 9 11 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-950\/70 {
    --tw-shadow-color: rgb(9 9 11 / 0.7);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-950\/80 {
    --tw-shadow-color: rgb(9 9 11 / 0.8);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:shadow-zinc-950\/90 {
    --tw-shadow-color: rgb(9 9 11 / 0.9);
    --tw-shadow: var(--tw-shadow-colored);
  }

  .\32xl\:ring-1 {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

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

  .\32xl\:ring-4 {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .\32xl\:ring-8 {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .\32xl\:ring-amber-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 243 199 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-amber-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(253 230 138 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-amber-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(252 211 77 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-amber-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(251 191 36 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-amber-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(255 251 235 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-amber-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(245 158 11 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-amber-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(217 119 6 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-amber-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(180 83 9 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-amber-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(146 64 14 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-amber-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(120 53 15 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-amber-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(69 26 3 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-black {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-blue-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(219 234 254 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-blue-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(191 219 254 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-blue-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(147 197 253 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-blue-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(96 165 250 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-blue-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(239 246 255 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-blue-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-blue-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(37 99 235 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-blue-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(29 78 216 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-blue-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(30 64 175 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-blue-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(30 58 138 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-blue-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(23 37 84 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-cyan-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(207 250 254 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-cyan-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(165 243 252 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-cyan-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(103 232 249 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-cyan-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(34 211 238 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-cyan-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(236 254 255 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-cyan-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(6 182 212 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-cyan-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(8 145 178 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-cyan-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(14 116 144 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-cyan-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(21 94 117 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-cyan-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(22 78 99 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-cyan-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(8 51 68 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-emerald-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(209 250 229 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-emerald-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(167 243 208 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-emerald-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(110 231 183 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-emerald-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(52 211 153 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-emerald-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(236 253 245 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-emerald-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(16 185 129 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-emerald-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(5 150 105 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-emerald-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(4 120 87 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-emerald-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(6 95 70 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-emerald-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(6 78 59 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-emerald-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(2 44 34 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-fuchsia-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(250 232 255 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-fuchsia-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(245 208 254 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-fuchsia-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(240 171 252 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-fuchsia-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(232 121 249 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-fuchsia-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(253 244 255 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-fuchsia-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(217 70 239 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-fuchsia-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(192 38 211 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-fuchsia-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(162 28 175 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-fuchsia-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(134 25 143 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-fuchsia-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(112 26 117 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-fuchsia-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(74 4 78 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-gray-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(243 244 246 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-gray-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-gray-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-gray-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(156 163 175 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-gray-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(249 250 251 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-gray-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(107 114 128 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-gray-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(75 85 99 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-gray-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(55 65 81 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-gray-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(31 41 55 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-gray-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(17 24 39 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-gray-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(3 7 18 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-green-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(220 252 231 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-green-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(187 247 208 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-green-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(134 239 172 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-green-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(74 222 128 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-green-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(240 253 244 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-green-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(34 197 94 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-green-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(22 163 74 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-green-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(21 128 61 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-green-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(22 101 52 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-green-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(20 83 45 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-green-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(5 46 22 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-indigo-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(224 231 255 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-indigo-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(199 210 254 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-indigo-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(165 180 252 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-indigo-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(129 140 248 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-indigo-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(238 242 255 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-indigo-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(99 102 241 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-indigo-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(79 70 229 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-indigo-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(67 56 202 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-indigo-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(55 48 163 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-indigo-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(49 46 129 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-indigo-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(30 27 75 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-lime-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(236 252 203 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-lime-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(217 249 157 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-lime-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(190 242 100 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-lime-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(163 230 53 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-lime-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(247 254 231 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-lime-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(132 204 22 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-lime-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(101 163 13 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-lime-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(77 124 15 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-lime-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(63 98 18 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-lime-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(54 83 20 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-lime-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(26 46 5 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-neutral-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(245 245 245 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-neutral-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(229 229 229 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-neutral-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(212 212 212 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-neutral-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(163 163 163 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-neutral-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(250 250 250 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-neutral-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(115 115 115 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-neutral-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(82 82 82 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-neutral-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(64 64 64 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-neutral-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(38 38 38 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-neutral-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(23 23 23 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-neutral-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(10 10 10 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-orange-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(255 237 213 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-orange-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 215 170 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-orange-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(253 186 116 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-orange-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(251 146 60 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-orange-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(255 247 237 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-orange-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(249 115 22 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-orange-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(234 88 12 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-orange-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(194 65 12 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-orange-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(154 52 18 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-orange-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(124 45 18 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-orange-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(67 20 7 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-pink-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(252 231 243 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-pink-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(251 207 232 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-pink-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(249 168 212 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-pink-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(244 114 182 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-pink-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(253 242 248 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-pink-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(236 72 153 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-pink-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(219 39 119 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-pink-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(190 24 93 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-pink-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(157 23 77 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-pink-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(131 24 67 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-pink-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(80 7 36 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-purple-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(243 232 255 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-purple-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(233 213 255 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-purple-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(216 180 254 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-purple-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(192 132 252 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-purple-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(250 245 255 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-purple-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(168 85 247 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-purple-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(147 51 234 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-purple-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(126 34 206 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-purple-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(107 33 168 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-purple-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(88 28 135 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-purple-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(59 7 100 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-red-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 226 226 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-red-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 202 202 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-red-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(252 165 165 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-red-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(248 113 113 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-red-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 242 242 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-red-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-red-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(220 38 38 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-red-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(185 28 28 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-red-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(153 27 27 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-red-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(127 29 29 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-red-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(69 10 10 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-rose-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(255 228 230 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-rose-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 205 211 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-rose-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(253 164 175 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-rose-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(251 113 133 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-rose-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(255 241 242 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-rose-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(244 63 94 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-rose-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(225 29 72 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-rose-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(190 18 60 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-rose-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(159 18 57 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-rose-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(136 19 55 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-rose-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(76 5 25 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-sky-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(224 242 254 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-sky-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(186 230 253 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-sky-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(125 211 252 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-sky-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(56 189 248 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-sky-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(240 249 255 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-sky-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(14 165 233 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-sky-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(2 132 199 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-sky-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(3 105 161 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-sky-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(7 89 133 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-sky-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(12 74 110 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-sky-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(8 47 73 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-slate-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(241 245 249 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-slate-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(226 232 240 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-slate-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(203 213 225 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-slate-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(148 163 184 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-slate-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(248 250 252 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-slate-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(100 116 139 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-slate-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(71 85 105 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-slate-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(51 65 85 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-slate-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(30 41 59 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-slate-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(15 23 42 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-slate-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(2 6 23 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-stone-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(245 245 244 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-stone-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(231 229 228 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-stone-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(214 211 209 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-stone-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(168 162 158 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-stone-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(250 250 249 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-stone-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(120 113 108 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-stone-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(87 83 78 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-stone-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(68 64 60 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-stone-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(41 37 36 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-stone-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(28 25 23 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-stone-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(12 10 9 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-teal-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(204 251 241 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-teal-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(153 246 228 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-teal-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(94 234 212 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-teal-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(45 212 191 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-teal-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(240 253 250 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-teal-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(20 184 166 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-teal-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(13 148 136 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-teal-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(15 118 110 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-teal-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(17 94 89 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-teal-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(19 78 74 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-teal-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(4 47 46 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-violet-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(237 233 254 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-violet-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(221 214 254 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-violet-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(196 181 253 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-violet-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(167 139 250 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-violet-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(245 243 255 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-violet-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(139 92 246 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-violet-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(124 58 237 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-violet-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(109 40 217 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-violet-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(91 33 182 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-violet-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(76 29 149 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-violet-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(46 16 101 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-white {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-yellow-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 249 195 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-yellow-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 240 138 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-yellow-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(253 224 71 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-yellow-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(250 204 21 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-yellow-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 252 232 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-yellow-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(234 179 8 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-yellow-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(202 138 4 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-yellow-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(161 98 7 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-yellow-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(133 77 14 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-yellow-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(113 63 18 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-yellow-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(66 32 6 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-zinc-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(244 244 245 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-zinc-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(228 228 231 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-zinc-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(212 212 216 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-zinc-400 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(161 161 170 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-zinc-50 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(250 250 250 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-zinc-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(113 113 122 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-zinc-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(82 82 91 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-zinc-700 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(63 63 70 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-zinc-800 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(39 39 42 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-zinc-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(24 24 27 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:ring-zinc-950 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(9 9 11 / var(--tw-ring-opacity, 1));
  }

  .\32xl\:blur-2xl {
    --tw-blur: blur(40px);
    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);
  }

  .\32xl\:blur-3xl {
    --tw-blur: blur(64px);
    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);
  }

  .\32xl\:blur-lg {
    --tw-blur: blur(16px);
    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);
  }

  .\32xl\:blur-md {
    --tw-blur: blur(12px);
    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);
  }

  .\32xl\:blur-sm {
    --tw-blur: blur(4px);
    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);
  }

  .\32xl\:blur-xl {
    --tw-blur: blur(24px);
    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);
  }

  .\32xl\:drop-shadow-lg {
    --tw-drop-shadow: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
    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);
  }

  .\32xl\:drop-shadow-md {
    --tw-drop-shadow: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
    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);
  }

  .\32xl\:drop-shadow-sm {
    --tw-drop-shadow: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05));
    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);
  }

  .\32xl\:backdrop-blur-lg {
    --tw-backdrop-blur: blur(16px);
    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);
  }

  .\32xl\:backdrop-blur-md {
    --tw-backdrop-blur: blur(12px);
    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);
  }

  .\32xl\:motion-blur-in-lg {
    --motion-origin-blur: 16px;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-blur-in-md {
    --motion-origin-blur: 12px;
    --motion-filter-in-animation: motion-filter-in calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-blur-out-lg {
    --motion-end-blur: 16px;
    --motion-filter-out-animation: motion-filter-out calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-out-animation), var(--motion-translate-out-animation), var(--motion-rotate-out-animation), var(--motion-filter-out-animation), var(--motion-opacity-out-animation), var(--motion-background-color-out-animation), var(--motion-text-color-out-animation);
  }

  .\32xl\:motion-blur-out-md {
    --motion-end-blur: 12px;
    --motion-filter-out-animation: motion-filter-out calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both;
    animation: var(--motion-scale-out-animation), var(--motion-translate-out-animation), var(--motion-rotate-out-animation), var(--motion-filter-out-animation), var(--motion-opacity-out-animation), var(--motion-background-color-out-animation), var(--motion-text-color-out-animation);
  }

  .\32xl\:motion-blur-loop-lg {
    --motion-loop-blur: 16px;
    --motion-filter-loop-animation: motion-filter-loop-mirror calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both var(--motion-filter-loop-count, var(--motion-loop-count));
    animation-composition: accumulate;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }

  .\32xl\:motion-blur-loop-md {
    --motion-loop-blur: 12px;
    --motion-filter-loop-animation: motion-filter-loop-mirror calc(var(--motion-filter-duration, var(--motion-duration)) * var(--motion-filter-perceptual-duration-multiplier, var(--motion-perceptual-duration-multiplier))) var(--motion-filter-timing, var(--motion-timing)) var(--motion-filter-delay, var(--motion-delay)) both var(--motion-filter-loop-count, var(--motion-loop-count));
    animation-composition: accumulate;
    animation: var(--motion-scale-in-animation), var(--motion-translate-in-animation), var(--motion-rotate-in-animation), var(--motion-filter-in-animation), var(--motion-opacity-in-animation), var(--motion-background-color-in-animation), var(--motion-text-color-in-animation), var(--motion-scale-loop-animation), var(--motion-translate-loop-animation), var(--motion-rotate-loop-animation), var(--motion-filter-loop-animation), var(--motion-opacity-loop-animation), var(--motion-background-color-loop-animation), var(--motion-text-color-loop-animation);
  }
}
.\[\&\>span\]\:line-clamp-1>span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.\[\&\[data-panel-group-direction\=vertical\]\>div\]\:rotate-90[data-panel-group-direction=vertical]>div {
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.\[\&_svg\]\:pointer-events-none svg {
  pointer-events: none;
}
.\[\&_svg\]\:size-4 svg {
  width: 1rem;
  height: 1rem;
}
.\[\&_svg\]\:shrink-0 svg {
  flex-shrink: 0;
}